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