2015-04-10 12:43:45 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
2017-03-05 22:33:31 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2015-04-10 12:43:45 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
package java;
|
|
|
|
use parent '_default';
|
|
|
|
|
2015-05-19 05:48:15 +02:00
|
|
|
sub preprocess {
|
|
|
|
my $self = shift;
|
|
|
|
$self->SUPER::preprocess;
|
|
|
|
|
|
|
|
if ($self->{cmdline} =~ m/-version/) {
|
|
|
|
$self->{done} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-10 12:43:45 +02:00
|
|
|
sub postprocess {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# no errors compiling, but if output contains something, it must be diagnostic messages
|
|
|
|
if(length $self->{output}) {
|
|
|
|
$self->{output} =~ s/^\s+//;
|
|
|
|
$self->{output} =~ s/\s+$//;
|
|
|
|
$self->{output} = "[$self->{output}]\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "Executing java\n";
|
2015-09-04 06:32:44 +02:00
|
|
|
my $input_quoted = quotemeta $self->{input};
|
|
|
|
$input_quoted =~ s/\\"/"'\\"'"/g;
|
2017-09-16 01:41:36 +02:00
|
|
|
my ($retval, $result) = $self->execute(60, "bash -c \"date -s \@$self->{date}; ulimit -t 5; echo $input_quoted | java prog $self->{arguments} > .output\"");
|
2015-04-10 12:43:45 +02:00
|
|
|
|
|
|
|
$result = "";
|
|
|
|
open(FILE, '.output');
|
|
|
|
while(<FILE>) {
|
|
|
|
$result .= $_;
|
|
|
|
last if length $result >= 1024 * 20;
|
|
|
|
}
|
|
|
|
close(FILE);
|
|
|
|
|
|
|
|
$result =~ s/\s+$//;
|
|
|
|
|
|
|
|
if (not length $result) {
|
|
|
|
$self->{no_output} = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$self->{output} .= $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|