Add table and column comments
[gruntmaster-data.git] / lib / Gruntmaster / Data / Result / Contest.pm
CommitLineData
4ed3f8e7
MG
1use utf8;
2package Gruntmaster::Data::Result::Contest;
3
4# Created by DBIx::Class::Schema::Loader
5# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7=head1 NAME
8
be2f7678 9Gruntmaster::Data::Result::Contest - List of contests
4ed3f8e7
MG
10
11=cut
12
13use strict;
14use warnings;
15
16use base 'DBIx::Class::Core';
17
18=head1 TABLE: C<contests>
19
20=cut
21
22__PACKAGE__->table("contests");
23
24=head1 ACCESSORS
25
26=head2 id
27
28 data_type: 'text'
29 is_nullable: 0
30
31=head2 name
32
33 data_type: 'text'
34 is_nullable: 0
35
36=head2 start
37
38 data_type: 'integer'
39 is_nullable: 0
40
be2f7678
MG
41Unix time when contest starts
42
4ed3f8e7
MG
43=head2 stop
44
45 data_type: 'integer'
46 is_nullable: 0
47
be2f7678
MG
48Unix time when contest ends
49
4ed3f8e7
MG
50=head2 owner
51
52 data_type: 'text'
53 is_foreign_key: 1
54 is_nullable: 0
55
56=cut
57
58__PACKAGE__->add_columns(
59 "id",
60 { data_type => "text", is_nullable => 0 },
61 "name",
62 { data_type => "text", is_nullable => 0 },
63 "start",
64 { data_type => "integer", is_nullable => 0 },
65 "stop",
66 { data_type => "integer", is_nullable => 0 },
67 "owner",
68 { data_type => "text", is_foreign_key => 1, is_nullable => 0 },
69);
70
71=head1 PRIMARY KEY
72
73=over 4
74
75=item * L</id>
76
77=back
78
79=cut
80
81__PACKAGE__->set_primary_key("id");
82
83=head1 RELATIONS
84
85=head2 contest_problems
86
87Type: has_many
88
89Related object: L<Gruntmaster::Data::Result::ContestProblem>
90
91=cut
92
93__PACKAGE__->has_many(
94 "contest_problems",
95 "Gruntmaster::Data::Result::ContestProblem",
96 { "foreign.contest" => "self.id" },
97 { cascade_copy => 0, cascade_delete => 0 },
98);
99
adb42d4d
MG
100=head2 contest_statuses
101
102Type: has_many
103
104Related object: L<Gruntmaster::Data::Result::ContestStatus>
105
106=cut
107
108__PACKAGE__->has_many(
109 "contest_statuses",
110 "Gruntmaster::Data::Result::ContestStatus",
111 { "foreign.contest" => "self.id" },
112 { cascade_copy => 0, cascade_delete => 0 },
113);
114
4ed3f8e7
MG
115=head2 jobs
116
117Type: has_many
118
119Related object: L<Gruntmaster::Data::Result::Job>
120
121=cut
122
123__PACKAGE__->has_many(
124 "jobs",
125 "Gruntmaster::Data::Result::Job",
126 { "foreign.contest" => "self.id" },
127 { cascade_copy => 0, cascade_delete => 0 },
128);
129
130=head2 opens
131
132Type: has_many
133
134Related object: L<Gruntmaster::Data::Result::Open>
135
136=cut
137
138__PACKAGE__->has_many(
139 "opens",
140 "Gruntmaster::Data::Result::Open",
141 { "foreign.contest" => "self.id" },
142 { cascade_copy => 0, cascade_delete => 0 },
143);
144
145=head2 owner
146
147Type: belongs_to
148
149Related object: L<Gruntmaster::Data::Result::User>
150
151=cut
152
153__PACKAGE__->belongs_to(
154 "owner",
155 "Gruntmaster::Data::Result::User",
156 { id => "owner" },
9bb39921 157 { is_deferrable => 0, on_delete => "CASCADE", on_update => "NO ACTION" },
4ed3f8e7
MG
158);
159
160=head2 problems
161
162Type: many_to_many
163
164Composing rels: L</contest_problems> -> problem
165
166=cut
167
168__PACKAGE__->many_to_many("problems", "contest_problems", "problem");
169
170
be2f7678
MG
171# Created by DBIx::Class::Schema::Loader v0.07042 @ 2014-12-19 16:54:00
172# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IxxZqQwKisBwDabCNUD55Q
4ed3f8e7 173
751c70b5
MG
174use List::Util qw/sum/;
175
4a8747ef
MG
176sub is_pending {
177 my ($self, $time) = @_;
178 $self->start > ($time // time)
179}
180
181sub is_finished {
182 my ($self, $time) = @_;
183 $self->stop <= ($time // time)
184}
185
186sub is_running {
187 my ($self, $time) = @_;
188 !$self->is_pending($time) && !$self->is_finished($time)
189}
4ed3f8e7 190
751c70b5
MG
191sub calc_score{
192 my ($mxscore, $time, $tries, $totaltime) = @_;
193 my $score = $mxscore;
194 $time = 0 if $time < 0;
195 $time = 300 if $time > $totaltime;
196 $score = ($totaltime - $time) / $totaltime * $score;
197 $score -= $tries / 10 * $mxscore;
198 $score = $mxscore * 3 / 10 if $score < $mxscore * 3 / 10;
199 int $score + 0.5
200}
201
202sub standings {
203 my ($self) = @_;
204 my $ct = $self->id;
205
206 my @problems = map { $_->rawproblem } $self->contest_problems->search({contest => $ct}, {qw/join problem order_by problem.level/});
207 my (%scores, %tries, %opens);
208 $opens{$_->rawproblem, $_->rawowner} = $_ for $self->opens->search({contest => $ct});
209 for my $job ($self->jobs->search({contest => $ct}, {qw/order_by me.id prefetch/ => [qw/problem/]})) {
210 my $open = $opens{$job->rawproblem, $job->rawowner};
211 my $time = $job->date - ($open ? $open->time : $self->start);
212 next if $time < 0;
213 my $value = $job->problem->value;
214 my $factor = $job->result ? 0 : 1;
215 $factor = $1 / 100 if $job->result_text =~ /^(\d+ )/s;
216 $scores{$job->rawowner}{$job->rawproblem} = int ($factor * calc_score ($value, $time, $tries{$job->rawowner}{$job->rawproblem}++, $self->stop - $self->start));
217 }
218
1de10923 219 my %user_to_name = map { $_->id => $_->name } $self->result_source->schema->users->all;
751c70b5
MG
220
221 my @st = sort { $b->{score} <=> $a->{score} or $a->{user} cmp $b->{user} } map { ## no critic (ProhibitReverseSortBlock)
222 my $user = $_;
223 +{
224 user => $user,
225 user_name => $user_to_name{$user},
226 score => sum (values %{$scores{$user}}),
227 scores => [map { $scores{$user}{$_} // '-'} @problems],
228 }
229 } keys %scores;
230
231 $st[0]->{rank} = 1;
232 $st[$_]->{rank} = $st[$_ - 1]->{rank} + ($st[$_]->{score} < $st[$_ - 1]->{score}) for 1 .. $#st;
233 @st
234}
235
4ed3f8e7 2361;
4a8747ef
MG
237
238__END__
239
240=head1 METHODS
241
242=head2 is_pending(I<[$time]>)
243
244Returns true if the contest is pending at time I<$time> (which defaults to C<time>).
245
246=head2 is_finished(I<[$time]>)
247
248Returns true if the contest is finished at time I<$time> (which defaults to C<time>).
249
250=head2 is_running(I<[$time]>)
251
252Returns true if the contest is running at time I<$time> (which defaults to C<time>).
253
254=head1 AUTHOR
255
256Marius Gavrilescu E<lt>marius@ieval.roE<gt>
257
258=head1 COPYRIGHT AND LICENSE
259
260Copyright (C) 2014 by Marius Gavrilescu
261
262This library is free software; you can redistribute it and/or modify
263it under the same terms as Perl itself, either Perl version 5.18.1 or,
264at your option, any later version of Perl 5 you may have available.
265
266
267=cut
This page took 0.026392 seconds and 4 git commands to generate.