2012-09-18 03:32:07 +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/.
|
|
|
|
|
2012-09-18 03:32:07 +02:00
|
|
|
# compiler_client.pl connects to compiler_server.pl hosted at PeerAddr/PeerPort below
|
|
|
|
# and sends a nick, language and code, then retreives and prints the compilation/execution output.
|
|
|
|
#
|
|
|
|
# this way we can run the compiler virtual machine on any remote server.
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
use IO::Socket;
|
|
|
|
|
|
|
|
my $sock = IO::Socket::INET->new(
|
|
|
|
PeerAddr => '192.168.0.42',
|
|
|
|
PeerPort => 9000,
|
|
|
|
Proto => 'tcp');
|
|
|
|
|
|
|
|
if(not defined $sock) {
|
2013-06-03 19:04:24 +02:00
|
|
|
print "Fatal error compiling: $!; try again later\n";
|
2012-09-18 03:32:07 +02:00
|
|
|
die $!;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $nick = shift @ARGV;
|
2014-03-04 22:40:51 +01:00
|
|
|
my $channel = shift @ARGV;
|
2012-09-18 03:32:07 +02:00
|
|
|
my $code = join ' ', @ARGV;
|
|
|
|
|
|
|
|
#$code = "{ $code";
|
|
|
|
$code =~ s/\s*}\s*$//;
|
|
|
|
|
2015-01-23 22:46:18 +01:00
|
|
|
my $lang = "c11";
|
2012-09-18 03:32:07 +02:00
|
|
|
|
|
|
|
if($code =~ s/-lang=([^ ]+)//) {
|
2015-01-23 22:46:18 +01:00
|
|
|
$lang = lc $1;
|
2012-09-18 03:32:07 +02:00
|
|
|
}
|
|
|
|
|
2014-03-04 22:40:51 +01:00
|
|
|
print $sock "compile:$nick:$channel:$lang\n";
|
2012-09-18 03:32:07 +02:00
|
|
|
print $sock "$code\n";
|
|
|
|
print $sock "compile:end\n";
|
|
|
|
|
|
|
|
while(my $line = <$sock>) {
|
|
|
|
print "$line";
|
|
|
|
}
|
|
|
|
|
|
|
|
close $sock;
|