mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-02 18:19:33 +01:00
42 lines
833 B
Perl
Executable File
42 lines
833 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
# 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) {
|
|
print "Fatal error compiling: $!; try again later\n";
|
|
die $!;
|
|
}
|
|
|
|
my $nick = shift @ARGV;
|
|
my $channel = shift @ARGV;
|
|
my $code = join ' ', @ARGV;
|
|
|
|
my $lang = "c11";
|
|
|
|
if($code =~ s/-lang=([^ ]+)//) {
|
|
$lang = lc $1;
|
|
}
|
|
|
|
print $sock "compile:$nick:$channel:$lang\n";
|
|
print $sock "$code\n";
|
|
print $sock "compile:end\n";
|
|
|
|
while(my $line = <$sock>) {
|
|
print "$line";
|
|
}
|
|
|
|
close $sock;
|