Bump version and update Changes
[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
df95d578 18our $VERSION = '5999.000_010';
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) = @_;
014ee8a6 32 no strict 'refs';
fb6a4e3d 33 *$name = subname $name => $sub
014ee8a6
MG
34}
35
36BEGIN {
4ed3f8e7
MG
37 for my $rs (qw/contest contest_problem job open problem user/) {
38 my $rsname = ucfirst $rs;
39 $rsname =~ s/_([a-z])/\u$1/g;
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
45use constant LEVEL_VALUES => {
46 beginner => 100,
47 easy => 250,
48 medium => 500,
49 hard => 1000,
50};
51
52sub calc_score{
53 my ($mxscore, $time, $tries, $totaltime) = @_;
54 my $score = $mxscore;
55 $time = 0 if $time < 0;
56 $time = 300 if $time > $totaltime;
57 $score = ($totaltime - $time) / $totaltime * $score;
58 $score -= $tries / 10 * $mxscore;
59 $score = $mxscore * 3 / 10 if $score < $mxscore * 3 / 10;
60 int $score + 0.5
61}
62
63sub standings {
64 my ($self, $ct) = @_;
65 $ct &&= $self->contest($ct);
66
67 my @problems = map { $_->problem } $self->contest_problems->search({contest => $ct && $ct->id}, {qw/join problem order_by problem.level/});
68 my (%scores, %tries);
69 for my $job ($self->jobs->search({contest => $ct && $ct->id}, {order_by => 'id'})) {
70 if ($ct) {
71 my $open = $self->opens->find($ct->id, $job->problem->id, $job->owner->id);
72 my $time = $job->date - ($open ? $open->time : $ct->start);
73 next if $time < 0;
74 my $value = $job->problem->value // LEVEL_VALUES->{$job->problem->level};
75 my $factor = $job->result ? 0 : 1;
76 $factor = $1 / 100 if $job->result_text =~ /^(\d+ )/;
77 $scores{$job->owner->id}{$job->problem->id} = int ($factor * calc_score ($value, $time, $tries{$job->owner->id}{$job->problem->id}++, $ct->stop - $ct->start));
78 } else {
79 no warnings 'numeric';
80 $scores{$job->owner->id}{$job->problem->id} = 0 + $job->result_text || ($job->result ? 0 : 100)
81 }
82 }
83
84 my @st = sort { $b->{score} <=> $a->{score} or $a->{user}->id cmp $b->{user}->id} map {
85 my $user = $_;
86 +{
87 user => $self->user($user),
35596ea8 88 score => sum (values %{$scores{$user}}),
15a021b7
MG
89 scores => [map { $scores{$user}{$_->id} // '-'} @problems],
90 problems => $ct,
91 }
92 } keys %scores;
93
94 $st[0]->{rank} = 1;
95 $st[$_]->{rank} = $st[$_ - 1]->{rank} + ($st[$_]->{score} < $st[$_ - 1]->{score}) for 1 .. $#st;
96 @st
97}
98
de625c9b
MG
99sub user_list {
100 my $rs = $_[0]->users->search(undef, {order_by => 'name', columns => USER_PUBLIC_COLUMNS});
101 [ map +{ $_->get_columns }, $rs->all ]
102}
103
104sub user_entry {
105 my ($self, $id) = @_;
106 +{ $self->users->find($id, {columns => USER_PUBLIC_COLUMNS})->get_columns }
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) = @_;
126 my $pb = $self->problems->find($id, {columns => PROBLEM_PUBLIC_COLUMNS, prefetch => 'owner'});
127 my $running = $contest && $self->contest($contest)->is_running;
128 eval {
129 $self->opens->create({
130 contest => $contest,
131 problem => $id,
132 owner => $user,
133 time => time,
134 })
135 } if $running;
136 +{ $pb->get_columns, owner_name => $pb->owner->name, cansubmit => $contest ? $running : 1 }
137}
138
139sub contest_list {
140 my ($self, %args) = @_;
141 my $rs = $self->contests->search(undef, {order_by => {-desc => 'start'}, prefetch => 'owner'});
142 $rs = $rs->search({owner => $args{owner}}) if $args{owner};
143 my %params;
144 for ($rs->all) {
145 my $state = $_->is_pending ? 'pending' : $_->is_running ? 'running' : 'finished';
146 $params{$state} //= [];
35596ea8 147 push @{$params{$state}}, { $_->get_columns, started => !$_->is_pending, owner_name => $_->owner->name };
de625c9b
MG
148 }
149 \%params
150}
151
152sub contest_entry {
153 my ($self, $id) = @_;
154 my $ct = $self->contest($id);
155 +{ $ct->get_columns, started => !$ct->is_pending, owner_name => $ct->owner->name }
156}
157
158sub job_list {
159 my ($self, %args) = @_;
160 $args{page} //= 1;
3473324b 161 my $rs = $self->jobs->search(undef, {order_by => {-desc => 'me.id'}, prefetch => ['problem', 'owner'], rows => JOBS_PER_PAGE, page => $args{page}});
526b9e80
MG
162 $rs = $rs->search({'me.owner' => $args{owner}}) if $args{owner};
163 $rs = $rs->search({contest => $args{contest}}) if $args{contest};
164 $rs = $rs->search({problem => $args{problem}}) if $args{problem};
3473324b
MG
165 return {
166 log => [map {
167 my %params = $_->get_columns;
168 $params{owner_name} = $_->owner->name;
169 $params{problem_name} = $_->problem->name;
170 $params{results} &&= decode_json $params{results};
171 $params{size} = length $params{source};
172 delete $params{source};
173 \%params
174 } $rs->all],
175 current_page => $rs->pager->current_page,
176 maybe previous_page => $rs->pager->previous_page,
177 maybe next_page => $rs->pager->next_page,
178 maybe last_page => $rs->pager->last_page,
179 }
de625c9b
MG
180}
181
182sub job_entry {
183 my ($self, $id) = @_;
184 my $job = $self->jobs->find($id, {prefetch => ['problem', 'owner']});
185 my %params = $job->get_columns;
186 $params{owner_name} = $job->owner->name;
187 $params{problem_name} = $job->problem->name;
188 $params{results} &&= decode_json $params{results};
189 $params{size} = length $params{source};
190 delete $params{source};
191 \%params
192}
193
f7386aab 1941;
4a8747ef
MG
195
196__END__
197
198=encoding utf-8
199
200=head1 NAME
201
202Gruntmaster::Data - Gruntmaster 6000 Online Judge -- database interface and tools
203
204=head1 SYNOPSIS
205
206 my $db = Gruntmaster::Data->connect('dbi:Pg:');
cbb36c78
MG
207
208 my $problem = $db->problem('my_problem');
209 $problem->update({timeout => 2.5}); # Set time limit to 2.5 seconds
210 $problem->rerun; # And rerun all jobs for this problem
211
212 # ...
213
214 my $contest = $db->contests->create({ # Create a new contest
215 id => 'my_contest',
216 name => 'My Awesome Contest',
217 start => time + 100,
218 end => time + 1900,
219 });
220 $db->contest_problems->create({ # Add a problem to the contest
221 contest => 'my_contest',
222 problem => 'my_problem',
223 });
224
225 say 'The contest has not started yet' if $contest->is_pending;
226
227 # ...
228
229 my @jobs = $db->jobs->search({contest => 'my_contest', owner => 'MGV'})->all;
230 $_->rerun for @jobs; # Rerun all jobs sent by MGV in my_contest
4a8747ef
MG
231
232=head1 DESCRIPTION
233
cbb36c78
MG
234Gruntmaster::Data is the interface to the Gruntmaster 6000 database. Read the L<DBIx::Class> documentation for usage information.
235
236In addition to the typical DBIx::Class::Schema methods, this module contains several convenience methods:
237
238=over
239
240=item contests
241
242Equivalent to C<< $schema->resultset('Contest') >>
243
244=item contest_problems
245
246Equivalent to C<< $schema->resultset('ContestProblem') >>
247
248=item jobs
249
250Equivalent to C<< $schema->resultset('Job') >>
251
252=item problems
253
254Equivalent to C<< $schema->resultset('Problem') >>
255
256=item users
257
258Equivalent to C<< $schema->resultset('User') >>
259
260=item contest($id)
261
262Equivalent to C<< $schema->resultset('Contest')->find($id) >>
263
264=item job($id)
265
266Equivalent to C<< $schema->resultset('Job')->find($id) >>
267
268=item problem($id)
269
270Equivalent to C<< $schema->resultset('Problem')->find($id) >>
271
272=item user($id)
273
274Equivalent to C<< $schema->resultset('User')->find($id) >>
275
de625c9b
MG
276=item user_list
277
278Returns a list of users as an arrayref containing hashrefs.
279
280=item user_entry($id)
281
282Returns a hashref with information about the user $id.
283
284=item problem_list([%args])
285
286Returns a list of problems grouped by level. A hashref with levels as keys.
287
288Takes the following arguments:
289
290=over
291
292=item owner
293
294Only show problems owned by this user
295
296=item contest
297
298Only show problems in this contest
299
300=back
301
302=item problem_entry($id, [$contest, $user])
303
304Returns a hashref with information about the problem $id. If $contest and $user are present, problem open data is updated.
305
306=item contest_list([%args])
307
308Returns a list of contests grouped by state. A hashref with the following keys:
309
310=over
311
312=item pending
313
314An arrayref of hashrefs representing pending contests
315
316=item running
317
318An arrayref of hashrefs representing running contests
319
320=item finished
321
322An arrayref of hashrefs representing finished contests
323
324=back
325
326Takes the following arguments:
327
328=over
329
330=item owner
331
332Only show contests owned by this user.
333
334=back
335
336=item contest_entry($id)
337
338Returns a hashref with information about the contest $id.
339
340=item job_list([%args])
341
342Returns a list of jobs as an arrayref containing hashrefs. Takes the following arguments:
343
344=over
345
346=item owner
347
348Only show jobs submitted by this user.
349
350=item contest
351
352Only show jobs submitted in this contest.
353
354=item problem
355
356Only show jobs submitted for this problem.
357
358=item page
359
360Show this page of results. Defaults to 1. Pages have 10 entries, and the first page has the most recent jobs.
361
362=back
363
364=item job_entry($id)
365
366Returns a hashref with information about the job $id.
367
cbb36c78 368=back
4a8747ef
MG
369
370=head1 AUTHOR
371
372Marius Gavrilescu E<lt>marius@ieval.roE<gt>
373
374=head1 COPYRIGHT AND LICENSE
375
376Copyright (C) 2014 by Marius Gavrilescu
377
9d2e740e
MG
378This library is free software; you can redistribute it and/or modify
379it under the same terms as Perl itself, either Perl version 5.18.1 or,
380at your option, any later version of Perl 5 you may have available.
4a8747ef
MG
381
382
383=cut
This page took 0.035461 seconds and 4 git commands to generate.