Include contest_name in us_entry list of contests
[gruntmaster-data.git] / lib / Gruntmaster / Data.pm
CommitLineData
4ed3f8e7 1use utf8;
bbf8209c 2package Gruntmaster::Data;
4ed3f8e7
MG
3
4# Created by DBIx::Class::Schema::Loader
5# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7use strict;
bbf8209c 8use warnings;
014ee8a6 9
4ed3f8e7
MG
10use base 'DBIx::Class::Schema';
11
12__PACKAGE__->load_namespaces;
014ee8a6 13
f7386aab 14
4ed3f8e7
MG
15# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-03-05 13:11:39
16# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dAEmtAexvUaNXLgYz2rNEg
17
347ea1e4 18our $VERSION = '5999.000_011';
4ed3f8e7
MG
19
20use Lingua::EN::Inflect qw/PL_N/;
91203bd5 21use JSON::MaybeXS qw/decode_json/;
15a021b7 22use List::Util qw/sum/;
3473324b 23use PerlX::Maybe qw/maybe/;
4ed3f8e7 24use Sub::Name qw/subname/;
014ee8a6 25
de625c9b
MG
26use constant PROBLEM_PUBLIC_COLUMNS => [qw/id author writer level name owner private statement timeout olimit value/];
27use constant USER_PUBLIC_COLUMNS => [qw/id admin name town university level/];
28use constant JOBS_PER_PAGE => 10;
29
014ee8a6 30sub dynsub{
fb6a4e3d 31 our ($name, $sub) = @_;
dcd72991 32 no strict 'refs'; ## no critic (Strict)
fb6a4e3d 33 *$name = subname $name => $sub
014ee8a6
MG
34}
35
36BEGIN {
adb42d4d 37 for my $rs (qw/contest contest_problem job open problem user problem_status contest_status/) {
4ed3f8e7 38 my $rsname = ucfirst $rs;
dcd72991 39 $rsname =~ s/_([a-z])/\u$1/gs;
4ed3f8e7
MG
40 dynsub PL_N($rs) => sub { $_[0]->resultset($rsname) };
41 dynsub $rs => sub { $_[0]->resultset($rsname)->find($_[1]) };
014ee8a6
MG
42 }
43}
44
15a021b7
MG
45sub calc_score{
46 my ($mxscore, $time, $tries, $totaltime) = @_;
47 my $score = $mxscore;
48 $time = 0 if $time < 0;
49 $time = 300 if $time > $totaltime;
50 $score = ($totaltime - $time) / $totaltime * $score;
51 $score -= $tries / 10 * $mxscore;
52 $score = $mxscore * 3 / 10 if $score < $mxscore * 3 / 10;
53 int $score + 0.5
54}
55
56sub standings {
57 my ($self, $ct) = @_;
58 $ct &&= $self->contest($ct);
59
a2aa46e6
MG
60 my @problems = map { $_->rawproblem } $self->contest_problems->search({contest => $ct && $ct->id}, {qw/join problem order_by problem.level/});
61 my (%scores, %tries, %opens);
62 $opens{$_->rawproblem, $_->rawowner} = $_ for $self->opens->search({contest => $ct && $ct->id});
63 for my $job ($self->jobs->search({contest => $ct && $ct->id}, {qw/order_by me.id prefetch/ => [qw/problem/]})) {
15a021b7 64 if ($ct) {
a2aa46e6 65 my $open = $opens{$job->rawproblem, $job->rawowner};
15a021b7
MG
66 my $time = $job->date - ($open ? $open->time : $ct->start);
67 next if $time < 0;
aaa9eb7d 68 my $value = $job->problem->value;
15a021b7 69 my $factor = $job->result ? 0 : 1;
dcd72991 70 $factor = $1 / 100 if $job->result_text =~ /^(\d+ )/s;
a2aa46e6 71 $scores{$job->rawowner}{$job->rawproblem} = int ($factor * calc_score ($value, $time, $tries{$job->rawowner}{$job->rawproblem}++, $ct->stop - $ct->start));
15a021b7 72 } else {
dcd72991 73 no warnings 'numeric'; ## no critic (ProhibitNoWarnings)
a2aa46e6 74 $scores{$job->rawowner}{$job->rawproblem} = 0 + $job->result_text || ($job->result ? 0 : 100)
15a021b7
MG
75 }
76 }
77
a2aa46e6
MG
78 my %user_to_name = map { $_ => $_->name } $self->users->all;
79
80 my @st = sort { $b->{score} <=> $a->{score} or $a->{user} cmp $b->{user} } map { ## no critic (ProhibitReverseSortBlock)
15a021b7
MG
81 my $user = $_;
82 +{
a2aa46e6
MG
83 user => $user,
84 user_name => $user_to_name{$user},
35596ea8 85 score => sum (values %{$scores{$user}}),
a2aa46e6 86 scores => [map { $scores{$user}{$_} // '-'} @problems],
15a021b7
MG
87 problems => $ct,
88 }
89 } keys %scores;
90
91 $st[0]->{rank} = 1;
92 $st[$_]->{rank} = $st[$_ - 1]->{rank} + ($st[$_]->{score} < $st[$_ - 1]->{score}) for 1 .. $#st;
93 @st
94}
95
de625c9b
MG
96sub user_list {
97 my $rs = $_[0]->users->search(undef, {order_by => 'name', columns => USER_PUBLIC_COLUMNS});
dcd72991 98 [ map { { $_->get_columns } } $rs->all ]
de625c9b
MG
99}
100
101sub user_entry {
102 my ($self, $id) = @_;
adb42d4d
MG
103 my $user = $self->users->find($id, {columns => USER_PUBLIC_COLUMNS, prefetch => [qw/problem_statuses contest_statuses/]});
104 my @problems = map { {problem => $_->get_column('problem'), solved => $_->solved} } $user->problem_statuses;
0803d69d 105 my @contests = map { {contest => $_->contest->id, contest_name => $_->contest->name, rank => $_->rank, score => $_->score} } $user->contest_statuses->search(undef, {prefetch => 'contest'});
adb42d4d 106 +{ $user->get_columns, problems => \@problems, contests => \@contests }
de625c9b
MG
107}
108
109sub problem_list {
110 my ($self, %args) = @_;
111 my $rs = $self->problems->search(undef, {order_by => 'me.name', columns => PROBLEM_PUBLIC_COLUMNS, prefetch => 'owner'});
112 $rs = $rs->search({-or => ['contest_problems.contest' => undef, 'contest.stop' => {'<=', time}], 'me.private' => 0}, {join => {'contest_problems' => 'contest'}, distinct => 1}) unless $args{contest};
113 $rs = $rs->search({'contest_problems.contest' => $args{contest}}, {join => 'contest_problems'}) if $args{contest};
114 $rs = $rs->search({'me.owner' => $args{owner}}) if $args{owner};
115 my %params;
116 $params{contest} = $args{contest} if $args{contest};
117 for ($rs->all) {
118 $params{$_->level} //= [];
35596ea8 119 push @{$params{$_->level}}, {$_->get_columns, owner_name => $_->owner->name} ;
de625c9b
MG
120 }
121 \%params
122}
123
124sub problem_entry {
125 my ($self, $id, $contest, $user) = @_;
de625c9b 126 my $running = $contest && $self->contest($contest)->is_running;
8bd66733
MG
127 my $columns = PROBLEM_PUBLIC_COLUMNS;
128 push @$columns, 'solution' unless $running;
129 my $pb = $self->problems->find($id, {columns => $columns, prefetch => 'owner'});
dcd72991 130 eval { ## no critic (RequireCheckingReturnValueOfEval)
de625c9b
MG
131 $self->opens->create({
132 contest => $contest,
133 problem => $id,
134 owner => $user,
135 time => time,
136 })
137 } if $running;
2431260b
MG
138 $contest &&= $self->contest($contest);
139 +{ $pb->get_columns, owner_name => $pb->owner->name, cansubmit => $contest ? $running : 1, $running ? (contest_start => $contest->start, contest_stop => $contest->stop) : () }
de625c9b
MG
140}
141
142sub contest_list {
143 my ($self, %args) = @_;
144 my $rs = $self->contests->search(undef, {order_by => {-desc => 'start'}, prefetch => 'owner'});
145 $rs = $rs->search({owner => $args{owner}}) if $args{owner};
146 my %params;
147 for ($rs->all) {
148 my $state = $_->is_pending ? 'pending' : $_->is_running ? 'running' : 'finished';
149 $params{$state} //= [];
35596ea8 150 push @{$params{$state}}, { $_->get_columns, started => !$_->is_pending, owner_name => $_->owner->name };
de625c9b
MG
151 }
152 \%params
153}
154
155sub contest_entry {
156 my ($self, $id) = @_;
157 my $ct = $self->contest($id);
158 +{ $ct->get_columns, started => !$ct->is_pending, owner_name => $ct->owner->name }
159}
160
161sub job_list {
162 my ($self, %args) = @_;
163 $args{page} //= 1;
3473324b 164 my $rs = $self->jobs->search(undef, {order_by => {-desc => 'me.id'}, prefetch => ['problem', 'owner'], rows => JOBS_PER_PAGE, page => $args{page}});
526b9e80
MG
165 $rs = $rs->search({'me.owner' => $args{owner}}) if $args{owner};
166 $rs = $rs->search({contest => $args{contest}}) if $args{contest};
167 $rs = $rs->search({problem => $args{problem}}) if $args{problem};
3473324b
MG
168 return {
169 log => [map {
170 my %params = $_->get_columns;
171 $params{owner_name} = $_->owner->name;
172 $params{problem_name} = $_->problem->name;
173 $params{results} &&= decode_json $params{results};
174 $params{size} = length $params{source};
175 delete $params{source};
176 \%params
177 } $rs->all],
178 current_page => $rs->pager->current_page,
179 maybe previous_page => $rs->pager->previous_page,
180 maybe next_page => $rs->pager->next_page,
181 maybe last_page => $rs->pager->last_page,
182 }
de625c9b
MG
183}
184
185sub job_entry {
186 my ($self, $id) = @_;
187 my $job = $self->jobs->find($id, {prefetch => ['problem', 'owner']});
188 my %params = $job->get_columns;
189 $params{owner_name} = $job->owner->name;
190 $params{problem_name} = $job->problem->name;
191 $params{results} &&= decode_json $params{results};
192 $params{size} = length $params{source};
193 delete $params{source};
194 \%params
195}
196
adb42d4d
MG
197sub update_status {
198 my ($self) = @_;
199 my @jobs = $self->jobs->search(undef, {cache => 1})->all;
a2aa46e6 200
adb42d4d 201 my %hash;
a2aa46e6 202 $hash{$_->get_column('problem'), $_->get_column('owner')} = [$_->id, $_->result ? 1 : 0] for @jobs;
adb42d4d
MG
203 my @problem_statuses = map { [split ($;), @{$hash{$_}} ] } keys %hash;
204
205 my @contest_statuses = map {
206 my $contest = $_->id;
207 my @standings = $self->standings($contest);
208 map { [$contest, $_->{user}, $_->{score}, $_->{rank}] } @standings;
209 } $self->contests->all;
210
211 my $txn = sub {
212 $self->problem_statuses->delete;
213 $self->problem_statuses->populate([[qw/problem owner job solved/], @problem_statuses]);
214 $self->contest_statuses->delete;
215 $self->contest_statuses->populate([[qw/contest owner score rank/], @contest_statuses]);
216 };
217
218 $self->txn_do($txn);
219}
220
f7386aab 2211;
4a8747ef
MG
222
223__END__
224
225=encoding utf-8
226
227=head1 NAME
228
229Gruntmaster::Data - Gruntmaster 6000 Online Judge -- database interface and tools
230
231=head1 SYNOPSIS
232
233 my $db = Gruntmaster::Data->connect('dbi:Pg:');
cbb36c78
MG
234
235 my $problem = $db->problem('my_problem');
236 $problem->update({timeout => 2.5}); # Set time limit to 2.5 seconds
237 $problem->rerun; # And rerun all jobs for this problem
238
239 # ...
240
241 my $contest = $db->contests->create({ # Create a new contest
242 id => 'my_contest',
243 name => 'My Awesome Contest',
244 start => time + 100,
245 end => time + 1900,
246 });
247 $db->contest_problems->create({ # Add a problem to the contest
248 contest => 'my_contest',
249 problem => 'my_problem',
250 });
251
252 say 'The contest has not started yet' if $contest->is_pending;
253
254 # ...
255
256 my @jobs = $db->jobs->search({contest => 'my_contest', owner => 'MGV'})->all;
257 $_->rerun for @jobs; # Rerun all jobs sent by MGV in my_contest
4a8747ef
MG
258
259=head1 DESCRIPTION
260
cbb36c78
MG
261Gruntmaster::Data is the interface to the Gruntmaster 6000 database. Read the L<DBIx::Class> documentation for usage information.
262
263In addition to the typical DBIx::Class::Schema methods, this module contains several convenience methods:
264
265=over
266
267=item contests
268
269Equivalent to C<< $schema->resultset('Contest') >>
270
271=item contest_problems
272
273Equivalent to C<< $schema->resultset('ContestProblem') >>
274
275=item jobs
276
277Equivalent to C<< $schema->resultset('Job') >>
278
279=item problems
280
281Equivalent to C<< $schema->resultset('Problem') >>
282
283=item users
284
285Equivalent to C<< $schema->resultset('User') >>
286
287=item contest($id)
288
289Equivalent to C<< $schema->resultset('Contest')->find($id) >>
290
291=item job($id)
292
293Equivalent to C<< $schema->resultset('Job')->find($id) >>
294
295=item problem($id)
296
297Equivalent to C<< $schema->resultset('Problem')->find($id) >>
298
299=item user($id)
300
301Equivalent to C<< $schema->resultset('User')->find($id) >>
302
de625c9b
MG
303=item user_list
304
305Returns a list of users as an arrayref containing hashrefs.
306
307=item user_entry($id)
308
309Returns a hashref with information about the user $id.
310
311=item problem_list([%args])
312
313Returns a list of problems grouped by level. A hashref with levels as keys.
314
315Takes the following arguments:
316
317=over
318
319=item owner
320
321Only show problems owned by this user
322
323=item contest
324
325Only show problems in this contest
326
327=back
328
329=item problem_entry($id, [$contest, $user])
330
331Returns a hashref with information about the problem $id. If $contest and $user are present, problem open data is updated.
332
333=item contest_list([%args])
334
335Returns a list of contests grouped by state. A hashref with the following keys:
336
337=over
338
339=item pending
340
341An arrayref of hashrefs representing pending contests
342
343=item running
344
345An arrayref of hashrefs representing running contests
346
347=item finished
348
349An arrayref of hashrefs representing finished contests
350
351=back
352
353Takes the following arguments:
354
355=over
356
357=item owner
358
359Only show contests owned by this user.
360
361=back
362
363=item contest_entry($id)
364
365Returns a hashref with information about the contest $id.
366
367=item job_list([%args])
368
369Returns a list of jobs as an arrayref containing hashrefs. Takes the following arguments:
370
371=over
372
373=item owner
374
375Only show jobs submitted by this user.
376
377=item contest
378
379Only show jobs submitted in this contest.
380
381=item problem
382
383Only show jobs submitted for this problem.
384
385=item page
386
387Show this page of results. Defaults to 1. Pages have 10 entries, and the first page has the most recent jobs.
388
389=back
390
391=item job_entry($id)
392
393Returns a hashref with information about the job $id.
394
cbb36c78 395=back
4a8747ef
MG
396
397=head1 AUTHOR
398
399Marius Gavrilescu E<lt>marius@ieval.roE<gt>
400
401=head1 COPYRIGHT AND LICENSE
402
403Copyright (C) 2014 by Marius Gavrilescu
404
9d2e740e
MG
405This library is free software; you can redistribute it and/or modify
406it under the same terms as Perl itself, either Perl version 5.18.1 or,
407at your option, any later version of Perl 5 you may have available.
4a8747ef
MG
408
409
410=cut
This page took 0.041444 seconds and 4 git commands to generate.