]>
Commit | Line | Data |
---|---|---|
5c5cd38a MG |
1 | package Gruntmaster::Daemon::Runner::Interactive; |
2 | ||
3 | use 5.014000; | |
4 | use strict; | |
5 | use warnings; | |
6 | ||
7 | use File::Slurp qw/slurp/; | |
8 | use Gruntmaster::Daemon::Constants qw/WA/; | |
9 | use Log::Log4perl qw/get_logger/; | |
10 | use POSIX qw/mkfifo/; | |
11 | use Try::Tiny; | |
12 | ||
3e7fd903 | 13 | our $VERSION = '5999.000_004'; |
bc372959 | 14 | |
5c5cd38a MG |
15 | ################################################## |
16 | ||
17 | sub run{ | |
a722431b MG |
18 | my ($test, $meta) = @_; |
19 | get_logger->trace("Running on test $test..."); | |
20 | ||
99d37110 MG |
21 | mkfifo 'fifo1', 0600 or die "$!\n" unless -e 'fifo1'; |
22 | mkfifo 'fifo2', 0600 or die "$!\n" unless -e 'fifo2'; | |
a722431b MG |
23 | |
24 | my $ret = fork // get_logger->logdie("Fork failed: $!"); | |
25 | if ($ret) { | |
c020b922 | 26 | try { |
fdb99417 | 27 | my @fds = $ENV{GRUNTMASTER_VM} ? qw,0 /dev/ttyS1 1 >/dev/ttyS1, : qw/0 fifo1 1 >fifo2/; |
11ddb278 | 28 | $meta->{files}{prog}{run}->($meta->{files}{prog}{name}, fds => \@fds, map { $_ => $meta->{$_} } qw/timeout mlimit/); |
c020b922 | 29 | } catch { |
99d37110 | 30 | die $_ ## no critic (RequireCarping) |
c020b922 MG |
31 | } finally { |
32 | waitpid $ret, 0; | |
33 | }; | |
99d37110 | 34 | die [WA, 'Wrong Answer'] if $?; ## no critic (RequireCarping) |
a722431b MG |
35 | } else { |
36 | try { | |
fdb99417 | 37 | my @fds = $ENV{GRUNTMASTER_VM} ? qw,1 >/dev/ttyS1 0 /dev/ttyS1, : qw/1 >fifo1 0 fifo2/; |
11ddb278 | 38 | $meta->{files}{ver}{run}->($meta->{files}{ver}{name}, fds => [@fds, qw,4 >result,], args => [$test], map { $_ => $meta->{$_} } qw/timeout mlimit/); |
a722431b MG |
39 | } catch { |
40 | exit 1; | |
41 | }; | |
42 | exit | |
43 | } | |
44 | ||
40b036b5 MG |
45 | unlink 'fifo1'; |
46 | unlink 'fifo2'; | |
47 | ||
34a91d9a | 48 | scalar slurp 'result' or 'Ok' |
5c5cd38a MG |
49 | } |
50 | ||
8aec2ffe MG |
51 | 1; |
52 | __END__ | |
53 | ||
54 | =encoding utf-8 | |
55 | ||
56 | =head1 NAME | |
57 | ||
58 | Gruntmaster::Daemon::Runner::Interactive - Make an interactive verifier talk to the program | |
59 | ||
60 | =head1 SYNOPSIS | |
61 | ||
62 | use Gruntmaster::Daemon::Runner::Interactive; | |
0005d3ad | 63 | Gruntmaster::Daemon::Runner::Interactive::run(5, $meta); |
8aec2ffe MG |
64 | |
65 | =head1 DESCRIPTION | |
66 | ||
67 | B<WARNING: This runner is experimental!> | |
68 | ||
0005d3ad | 69 | Gruntmaster::Daemon::Runner::Interactive is a runner which runs the program and an interactive verifier in parallel, connecting each program's STDIN to the other's STDOUT. The verifier, C<< $meta->{files}{ver} >>, should return nonzero if the program gives an incorrect answer, or print the test score to fd 4 then return 0 if the answer is correct. |
8aec2ffe MG |
70 | |
71 | =head1 AUTHOR | |
72 | ||
73 | Marius Gavrilescu E<lt>marius@ieval.roE<gt> | |
74 | ||
75 | =head1 COPYRIGHT AND LICENSE | |
76 | ||
77 | Copyright (C) 2014 by Marius Gavrilescu | |
78 | ||
79 | This library is free software: you can redistribute it and/or modify | |
80 | it under the terms of the GNU Affero General Public License as published by | |
81 | the Free Software Foundation, either version 3 of the License, or | |
82 | (at your option) any later version. | |
83 | ||
84 | ||
85 | =cut |