Add contest support to filesystem infiles/okfiles
[gruntmaster-daemon.git] / gruntmaster-compile
1 #!/usr/bin/perl -w
2 use v5.14;
3 no if $] > 5.017011, warnings => 'experimental::smartmatch';
4
5 use File::Copy qw/copy/;
6 use File::Basename qw/fileparse/;
7
8 my ($format, $name) = @ARGV;
9 my $basename = fileparse $name, qr/\..*/;
10
11 my $ret = fork // die $!;
12 if ($ret) {
13 $SIG{ALRM} = sub {kill KILL => $ret};
14 alarm 5;
15 wait;
16 exit $? >> 8
17 } else {
18 given ($format){
19 exec 'gcc', qw/-DONLINE_JUDGE -std=gnu11 -Wall -Wextra -O2 -o/, $basename, $name when 'C';
20 exec 'g++', qw/-DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o/, $basename, $name when 'CPP';
21 exec 'gmcs', '-d:ONLINE_JUDGE', $name when 'MONO';
22 exec 'javac', $name when 'JAVA';
23 exec 'fpc', qw/-dONLINE_JUDGE -O2 -n/, $name when 'PASCAL';
24 copy $name, $basename when ['PERL', 'PYTHON']
25 }
26 }
27
28 __END__
29
30 =encoding utf-8
31
32 =head1 NAME
33
34 gruntmaster-compile - Gruntmaster 6000 compiler frontend
35
36 =head1 SYNOPSIS
37
38 gruntmaster-compile CPP file.cpp
39 gruntmaster-compile JAVA file.java
40
41 =head1 DESCRIPTION
42
43 gruntmaster-compile is a very simple frontend to various comilers. It takes two arguments: the file format and the file name, and produces a compiled executable. The executable's name is the basename of the input file.
44
45 Compile commands for each format:
46
47 =over
48
49 =item C
50
51 gcc -DONLINE_JUDGE -std=gnu11 -Wall -Wextra -O2 -o $output $input
52
53 =item CPP
54
55 g++ -DONLINE_JUDGE -std=gnu11 -fabi-version=6 -Wall -Wextra -O2 -o $output $input
56
57 =item MONO
58
59 gmcs -d:ONLINE_JUDGE $input
60
61 =item JAVA
62
63 javac $input
64
65 =item PASCAL
66
67 fpc -dONLINE_JUDGE -O2 -n $input
68
69 =item PERL
70
71 cp $input $output
72
73 =item PYTHON
74
75 cp $input $output
76
77 =back
78
79 =head1 AUTHOR
80
81 Marius Gavrilescu E<lt>marius@ieval.roE<gt>
82
83 =head1 COPYRIGHT AND LICENSE
84
85 Copyright (C) 2014 by Marius Gavrilescu
86
87 This program is free software: you can redistribute it and/or modify
88 it under the terms of the GNU Affero General Public License as published by
89 the Free Software Foundation, either version 3 of the License, or
90 (at your option) any later version.
91
92
93 =cut
This page took 0.022748 seconds and 4 git commands to generate.