-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathjava.pm
executable file
·52 lines (39 loc) · 1.09 KB
/
java.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/perl
# SPDX-FileCopyrightText: 2021 Pragmatic Software <[email protected]>
# SPDX-License-Identifier: MIT
use warnings;
use strict;
package java;
use parent '_default';
sub preprocess {
my $self = shift;
$self->SUPER::preprocess;
if ($self->{cmdline} =~ m/-version/) {
$self->{done} = 1;
}
}
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";
}
my $input_quoted = quotemeta $self->{input};
$input_quoted =~ s/\\"/"'\\"'"/g;
my ($retval, $result) = $self->execute(60, "bash -c \"date -s \@$self->{date}; ulimit -t 5; echo $input_quoted | java prog $self->{arguments} > .output\"", '/bin/sh');
$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;