Remove object oriented elements
[gruntmaster-data.git] / lib / Gruntmaster / Data.pm
CommitLineData
bbf8209c 1package Gruntmaster::Data;
23aa7eca 2use v5.14;
bbf8209c 3use warnings;
014ee8a6 4
edfc5928 5use parent qw/Exporter/;
9e130d3b 6our $VERSION = '5999.000_013';
62a58bf3 7our @EXPORT = qw/purge user_list user_entry problem_list problem_entry contest_list contest_entry contest_full contest_has_problem job_list job_entry job_full create_job standings update_status/; ## no critic (ProhibitAutomaticExportation)
4ed3f8e7 8
91203bd5 9use JSON::MaybeXS qw/decode_json/;
edfc5928 10use HTTP::Tiny;
3473324b 11use PerlX::Maybe qw/maybe/;
52172a1a
MG
12
13use DBI;
14use DBIx::Simple;
15use List::Util qw/sum/;
16use SQL::Abstract;
014ee8a6 17
d5046b3d 18use constant CONTEST_PUBLIC_COLUMNS => [qw/id name description start stop owner/];
e890b3ae 19use constant PROBLEM_PUBLIC_COLUMNS => [qw/id author writer level name owner private timeout olimit value/];
73243865 20use constant USER_PUBLIC_COLUMNS => [qw/id admin name town university country level/];
e1250e20 21use constant JOBS_PER_PAGE => 50;
de625c9b 22
52172a1a
MG
23my %statements = (
24 user_list_sth => 'SELECT * FROM user_list LIMIT 200',
25 user_entry_sth => 'SELECT * FROM user_data WHERE id = ?',
26
27 problem_status_sth => 'SELECT problem,solved FROM problem_status WHERE owner = ?',
28 contest_status_sth => 'SELECT contest,score,rank FROM contest_status WHERE owner = ?',
29
30 contest_list_sth => 'SELECT * FROM contest_entry',
31 contest_entry_sth => 'SELECT * FROM contest_entry WHERE id = ?',
32 contest_full_sth => 'SELECT * FROM contests WHERE id = ?',
33 contest_problems_sth => 'SELECT problem FROM contest_problems JOIN problems pb ON problem=pb.id WHERE contest = ? ORDER BY pb.value',
34 contest_has_problem_sth => 'SELECT EXISTS(SELECT 1 FROM contest_problems WHERE contest = ? AND problem = ?)',
35 opens_sth => 'SELECT problem,owner,time FROM opens WHERE contest = ?',
36
37 problem_entry_sth => 'SELECT ' . (join ',', @{PROBLEM_PUBLIC_COLUMNS()}, 'statement', 'solution') . ' FROM problems WHERE id = ?',
38 limits_sth => 'SELECT format,timeout FROM limits WHERE problem = ?',
39 problem_values_sth => 'SELECT id,value FROM problems',
40
41 job_entry_sth => 'SELECT * FROM job_entry WHERE id = ?',
42 job_full_sth => 'SELECT * FROM jobs WHERE id = ?',
43);
44
62a58bf3 45my $db;
23aa7eca 46
62a58bf3
MG
47sub init {
48 $db = DBIx::Simple->new(@_);
49 $db->keep_statements = 100;
52172a1a
MG
50};
51
52sub purge;
53
54sub query {
62a58bf3
MG
55 my ($stat, @extra) = @_;
56 $db->query($statements{$stat} // $stat, @extra)
52172a1a
MG
57}
58
59my (%name_cache, %name_cache_time);
60use constant NAME_CACHE_MAX_AGE => 5;
61
62sub object_name {
62a58bf3 63 my ($table, $id) = @_;
52172a1a
MG
64 $name_cache_time{$table} //= 0;
65 if (time - $name_cache_time{$table} > NAME_CACHE_MAX_AGE) {
66 $name_cache_time{$table} = time;
67 $name_cache{$table} = {};
62a58bf3 68 $name_cache{$table} = $db->select($table, 'id,name')->map;
52172a1a
MG
69 }
70
71 $name_cache{$table}{$id}
72}
73
74
62a58bf3
MG
75sub add_names ($) {
76 my ($el) = @_;
52172a1a 77 if (ref $el eq 'ARRAY') {
62a58bf3 78 &add_names ($_) for @$el
52172a1a
MG
79 } else {
80 for my $object (qw/contest owner problem/) {
81 my $table = $object eq 'owner' ? 'users' : "${object}s";
62a58bf3 82 $el->{"${object}_name"} = object_name $table, $el->{$object} if defined $el->{$object}
52172a1a
MG
83 }
84 }
85
86 $el
87}
88
62a58bf3 89sub user_list { scalar query('user_list_sth')->hashes }
52172a1a
MG
90
91sub user_entry {
62a58bf3
MG
92 my ($id) = @_;
93 my $ret = query('user_entry_sth', $id)->hash;
94 $ret->{problems} = add_names query('problem_status_sth', $id)->hashes;
95 $ret->{contests} = add_names query('contest_status_sth', $id)->hashes;
52172a1a 96
52172a1a
MG
97 $ret;
98}
99
52172a1a 100sub problem_list {
62a58bf3 101 my (%args) = @_;
52172a1a
MG
102 my @columns = @{PROBLEM_PUBLIC_COLUMNS()};
103 push @columns, 'solution' if $args{solution};
104 my %where;
105 $where{private} = 0 unless $args{contest} || $args{private};
106 $where{'cp.contest'} = $args{contest} if $args{contest};
107 $where{owner} = $args{owner} if $args{owner};
108
109 my $table = $args{contest} ? 'problems JOIN contest_problems cp ON cp.problem = id' : 'problems';
62a58bf3 110 my $ret = add_names $db->select(\$table, \@columns, \%where, 'name')->hashes;
52172a1a
MG
111
112 my %params;
113 for (@$ret) {
114 $params{$_->{level}} //= [];
115 push @{$params{$_->{level}}}, $_
116 }
117 \%params
118}
119
52172a1a 120sub problem_entry {
62a58bf3
MG
121 my ($id, $contest, $user) = @_;
122 $contest &&= contest_entry $contest;
123 my $ret = add_names query(problem_entry_sth => $id)->hash;
124 my $limits = query(limits_sth => $id)->hashes;
52172a1a
MG
125 $ret->{limits} = $limits if @$limits;
126
127 if ($contest) {
128 $ret->{contest_start} = $contest->{start};
129 $ret->{contest_stop} = $contest->{stop};
130 }
131
132 $ret
133}
134
52172a1a 135sub contest_list {
62a58bf3 136 my $ret = add_names query('contest_list_sth')->hashes;
52172a1a
MG
137
138 my %ret;
139 for (@$ret) {
140 my $state = $_->{finished} ? 'finished' : $_->{started} ? 'running' : 'pending';
141 $ret{$state} //= [];
142 push @{$ret{$state}}, $_;
143 }
144
145 \%ret
146}
147
148sub contest_entry {
62a58bf3
MG
149 my ($id) = @_;
150 add_names query(contest_entry_sth => $id)->hash;
52172a1a
MG
151}
152
153sub contest_full {
62a58bf3
MG
154 my ($id) = @_;
155 scalar query(contest_full_sth => $id)->hash;
52172a1a
MG
156}
157
158sub contest_has_problem {
62a58bf3
MG
159 my ($contest, $problem) = @_;
160 query('contest_has_problem_sth', $contest, $problem)->flat
52172a1a
MG
161}
162
52172a1a 163sub job_list {
62a58bf3 164 my (%args) = @_;
52172a1a
MG
165 $args{page} //= 1;
166 my %where = (
167 maybe contest => $args{contest},
168 maybe owner => $args{owner},
169 maybe problem => $args{problem},
170 maybe result => $args{result},
171 );
172 $where{private} = 0 unless $args{private};
173
62a58bf3 174 my $rows = $db->select('job_entry', 'COUNT(*)', \%where)->list;
52172a1a 175 my $pages = int (($rows + JOBS_PER_PAGE - 1) / JOBS_PER_PAGE);
62a58bf3
MG
176 my ($stmt, @bind) = $db->abstract->select('job_entry', '*', \%where, {-desc => 'id'});
177 my $jobs = $db->query("$stmt LIMIT " . JOBS_PER_PAGE . ' OFFSET ' . ($args{page} - 1) * JOBS_PER_PAGE, @bind)->hashes;
52172a1a 178 my %ret = (
62a58bf3 179 log => add_names $jobs,
52172a1a
MG
180 current_page => $args{page},
181 last_page => $pages,
182 );
52172a1a
MG
183 $ret{previous_page} = $args{page} - 1 if $args{page} - 1;
184 $ret{next_page} = $args{page} + 1 if $args{page} < $pages;
185
186 \%ret;
187}
188
189sub job_entry {
62a58bf3
MG
190 my ($id) = @_;
191 my $ret = add_names query(job_entry_sth => $id)->hash;
52172a1a 192 $ret->{results} &&= decode_json $ret->{results};
62a58bf3 193 $ret
52172a1a
MG
194}
195
196sub job_full {
62a58bf3
MG
197 my ($id) = @_;
198 scalar query(job_full_sth => $id)->hash
52172a1a
MG
199}
200
201sub create_job {
62a58bf3
MG
202 my (%args) = @_;
203 $db->update('users', {lastjob => time});
52172a1a 204 purge '/log/';
62a58bf3 205 scalar $db->insert('jobs', \%args, {returning => 'id'})->list
52172a1a
MG
206}
207
208sub calc_score {
209 my ($mxscore, $time, $tries, $totaltime) = @_;
210 my $score = $mxscore;
211 $time = 0 if $time < 0;
212 $time = 300 if $time > $totaltime;
213 $score = ($totaltime - $time) / $totaltime * $score;
214 $score -= $tries / 10 * $mxscore;
215 $score = $mxscore * 3 / 10 if $score < $mxscore * 3 / 10;
216 int $score + 0.5
217}
218
219sub standings {
62a58bf3
MG
220 my ($ct) = @_;
221 $ct = contest_entry $ct;
52172a1a 222
62a58bf3
MG
223 my @problems = query(contest_problems_sth => $ct->{id})->flat;
224 my $pblist = problem_list;
225 my %values = query('problem_values_sth')->map;
52172a1a
MG
226# $values{$_} = $values{$_}->{value} for keys %values;
227
228 my (%scores, %tries, %opens);
62a58bf3 229 my $opens = query(opens_sth => $ct->{id});
52172a1a
MG
230 while ($opens->into(my ($problem, $owner, $time))) {
231 $opens{$problem, $owner} = $time;
232 }
233
62a58bf3 234 my $jobs = $db->select('job_entry', '*', {contest => $ct->{id}}, 'id');
52172a1a
MG
235
236 while (my $job = $jobs->hash) {
237 my $open = $opens{$job->{problem}, $job->{owner}} // $ct->{start};
238 my $time = $job->{date} - $open;
239 next if $time < 0;
240 my $value = $values{$job->{problem}};
241 my $factor = $job->{result} ? 0 : 1;
242 $factor = $1 / 100 if $job->{result_text} =~ /^(\d+ )/s;
243 $scores{$job->{owner}}{$job->{problem}} = int ($factor * calc_score ($value, $time, $tries{$job->{owner}}{$job->{problem}}++, $ct->{stop} - $ct->{start}));
244 }
245
246 my @st = sort { $b->{score} <=> $a->{score} or $a->{user} cmp $b->{user} } map { ## no critic (ProhibitReverseSortBlock)
247 my $user = $_;
248 +{
249 user => $user,
62a58bf3 250 user_name => object_name(users => $user),
52172a1a
MG
251 score => sum (values %{$scores{$user}}),
252 scores => [map { $scores{$user}{$_} // '-'} @problems],
253 }
254 } keys %scores;
255
256 $st[0]->{rank} = 1 if @st;
257 $st[$_]->{rank} = $st[$_ - 1]->{rank} + ($st[$_]->{score} < $st[$_ - 1]->{score}) for 1 .. $#st;
258 +{
259 st => \@st,
62a58bf3 260 problems => [map { [ $_, object_name(problems => $_)] } @problems],
52172a1a
MG
261 }
262}
263
52172a1a 264sub update_status {
62a58bf3 265 my $jobs = $db->select('jobs', 'id,owner,problem,result', {}, 'id');
52172a1a
MG
266
267 my %hash;
268 while ($jobs->into(my ($id, $owner, $problem, $result))) {
269 $hash{$problem, $owner} = [$id, $result ? 0 : 1];
270 }
271
272 my @problem_statuses = map { [split ($;), @{$hash{$_}} ] } keys %hash;
273
274 my @contest_statuses = map {
275 my $ct = $_;
62a58bf3
MG
276 map { [$ct, $_->{user}, $_->{score}, $_->{rank}] } @{standings($ct)->{st}}
277 } $db->select('contests', 'id')->flat;
278
279 $db->begin;
280 $db->delete('problem_status');
281 $db->query('INSERT INTO problem_status (problem,owner,job,solved) VALUES (??)', @$_) for @problem_statuses;
282 $db->delete('contest_status');
283 $db->query('INSERT INTO contest_status (contest,owner,score,rank) VALUES (??)', @$_) for @contest_statuses;
284 $db->commit
52172a1a
MG
285}
286
edfc5928
MG
287my @PURGE_HOSTS = exists $ENV{PURGE_HOSTS} ? split ' ', $ENV{PURGE_HOSTS} : ();
288my $ht = HTTP::Tiny->new;
289
de7226ca
MG
290sub purge {
291 $ht->request(PURGE => "http://$_$_[0]") for @PURGE_HOSTS;
292}
edfc5928 293
f7386aab 2941;
4a8747ef
MG
295
296__END__
297
298=encoding utf-8
299
300=head1 NAME
301
302Gruntmaster::Data - Gruntmaster 6000 Online Judge -- database interface and tools
303
304=head1 SYNOPSIS
305
306 my $db = Gruntmaster::Data->connect('dbi:Pg:');
cbb36c78
MG
307
308 my $problem = $db->problem('my_problem');
309 $problem->update({timeout => 2.5}); # Set time limit to 2.5 seconds
310 $problem->rerun; # And rerun all jobs for this problem
311
312 # ...
313
314 my $contest = $db->contests->create({ # Create a new contest
315 id => 'my_contest',
316 name => 'My Awesome Contest',
317 start => time + 100,
318 end => time + 1900,
319 });
320 $db->contest_problems->create({ # Add a problem to the contest
321 contest => 'my_contest',
322 problem => 'my_problem',
323 });
324
325 say 'The contest has not started yet' if $contest->is_pending;
326
327 # ...
328
329 my @jobs = $db->jobs->search({contest => 'my_contest', owner => 'MGV'})->all;
330 $_->rerun for @jobs; # Rerun all jobs sent by MGV in my_contest
4a8747ef
MG
331
332=head1 DESCRIPTION
333
cbb36c78
MG
334Gruntmaster::Data is the interface to the Gruntmaster 6000 database. Read the L<DBIx::Class> documentation for usage information.
335
336In addition to the typical DBIx::Class::Schema methods, this module contains several convenience methods:
337
338=over
339
340=item contests
341
342Equivalent to C<< $schema->resultset('Contest') >>
343
344=item contest_problems
345
346Equivalent to C<< $schema->resultset('ContestProblem') >>
347
348=item jobs
349
350Equivalent to C<< $schema->resultset('Job') >>
351
352=item problems
353
354Equivalent to C<< $schema->resultset('Problem') >>
355
356=item users
357
358Equivalent to C<< $schema->resultset('User') >>
359
360=item contest($id)
361
362Equivalent to C<< $schema->resultset('Contest')->find($id) >>
363
364=item job($id)
365
366Equivalent to C<< $schema->resultset('Job')->find($id) >>
367
368=item problem($id)
369
370Equivalent to C<< $schema->resultset('Problem')->find($id) >>
371
372=item user($id)
373
374Equivalent to C<< $schema->resultset('User')->find($id) >>
375
de625c9b
MG
376=item user_list
377
378Returns a list of users as an arrayref containing hashrefs.
379
380=item user_entry($id)
381
382Returns a hashref with information about the user $id.
383
384=item problem_list([%args])
385
386Returns a list of problems grouped by level. A hashref with levels as keys.
387
388Takes the following arguments:
389
390=over
391
392=item owner
393
394Only show problems owned by this user
395
396=item contest
397
398Only show problems in this contest
399
400=back
401
402=item problem_entry($id, [$contest, $user])
403
404Returns a hashref with information about the problem $id. If $contest and $user are present, problem open data is updated.
405
406=item contest_list([%args])
407
408Returns a list of contests grouped by state. A hashref with the following keys:
409
410=over
411
412=item pending
413
414An arrayref of hashrefs representing pending contests
415
416=item running
417
418An arrayref of hashrefs representing running contests
419
420=item finished
421
422An arrayref of hashrefs representing finished contests
423
424=back
425
426Takes the following arguments:
427
428=over
429
430=item owner
431
432Only show contests owned by this user.
433
434=back
435
436=item contest_entry($id)
437
438Returns a hashref with information about the contest $id.
439
440=item job_list([%args])
441
442Returns a list of jobs as an arrayref containing hashrefs. Takes the following arguments:
443
444=over
445
446=item owner
447
448Only show jobs submitted by this user.
449
450=item contest
451
452Only show jobs submitted in this contest.
453
454=item problem
455
456Only show jobs submitted for this problem.
457
458=item page
459
460Show this page of results. Defaults to 1. Pages have 10 entries, and the first page has the most recent jobs.
461
462=back
463
464=item job_entry($id)
465
466Returns a hashref with information about the job $id.
467
cbb36c78 468=back
4a8747ef
MG
469
470=head1 AUTHOR
471
472Marius Gavrilescu E<lt>marius@ieval.roE<gt>
473
474=head1 COPYRIGHT AND LICENSE
475
476Copyright (C) 2014 by Marius Gavrilescu
477
9d2e740e
MG
478This library is free software; you can redistribute it and/or modify
479it under the same terms as Perl itself, either Perl version 5.18.1 or,
480at your option, any later version of Perl 5 you may have available.
4a8747ef
MG
481
482
483=cut
This page took 0.054572 seconds and 4 git commands to generate.