X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=blobdiff_plain;f=lib%2FGruntmaster%2FDaemon%2FFormat.pm;h=8fee953c5ed55785557ec5ef47f69364bc0987fb;hp=948e25a9bb68bb2c554c16fd8de384d669ecae09;hb=f5e29130f62b7a9dfd13bcfc5ee65359b1010b92;hpb=ddceb393c90f620dd194c22e5e85d8c9fe87ee34 diff --git a/lib/Gruntmaster/Daemon/Format.pm b/lib/Gruntmaster/Daemon/Format.pm index 948e25a..8fee953 100644 --- a/lib/Gruntmaster/Daemon/Format.pm +++ b/lib/Gruntmaster/Daemon/Format.pm @@ -4,27 +4,33 @@ use 5.014000; use strict; use warnings; use parent qw/Exporter/; +no if $] > 5.017011, warnings => 'experimental::smartmatch'; use POSIX qw//; use File::Basename qw/fileparse/; +use File::Slurp qw/write_file/; use Gruntmaster::Daemon::Constants qw/TLE OLE DIED NZX/; -use Log::Log4perl qw/get_logger/; use Time::HiRes qw/alarm/; use List::MoreUtils qw/natatime/; +use Log::Log4perl qw/get_logger/; use IPC::Signal qw/sig_name sig_num/; -use IPC::Open3 qw/open3/; -use File::Spec::Functions qw/devnull/; -use Fcntl qw/F_GETFD F_SETFD FD_CLOEXEC/; -our $VERSION = '0.001'; -our @EXPORT_OK = qw/mkrun/; +our $VERSION = "5999-TRIAL"; +our @EXPORT_OK = qw/prepare_files/; ################################################## sub command_and_args{ my ($format, $basename) = @_; - return "./$basename" if $format eq 'CPP'; - die + + given($format) { + "./$basename" when [qw/C CPP PASCAL/]; + "./$basename.exe" when 'MONO'; + "java $basename" when 'JAVA'; + "perl $basename" when 'PERL'; + "python $basename" when 'PYTHON'; + default { die "Don't know how to execute format $format" } + } } sub mkrun{ @@ -59,8 +65,83 @@ sub mkrun{ } } exec 'gruntmaster-exec', $args{mlimit} // 0, $args{olimit} // 0, command_and_args($format, $basename), exists $args{args} ? @{$args{args}} : (); + exit 42 } } } -1 +sub prepare{ + my ($name, $format) = @_; + our $errors; + my $basename = fileparse $name, qr/\.[^.]*/; + get_logger->trace("Preparing file $name..."); + + $errors .= `gruntmaster-compile $format $basename $name 2>&1`; + $errors .= "\n"; + die 'Compile error' if $? +} + +sub prepare_files{ + my $meta = shift; + + for my $file (values $meta->{files}) { + my ($format, $name, $content) = @{$file}{qw/format name content/}; + + $file->{run} = mkrun($format); + write_file $name, $content; + prepare $name, $format; + } +} + +1; +__END__ + +=encoding utf-8 + +=head1 NAME + +Gruntmaster::Daemon::Format - Utility functions for handling source files + +=head1 SYNOPSIS + + use Gruntmaster::Daemon::Format qw/prepare_files/; + prepare_files { files => { + prog => { + name => 'prog.pl', + format => 'PERL', + content => 'print "Hello, world!"' + }, + ver => { + name => 'ver.cpp', + format => 'CPP', + content => ... + }, + }}; + +=head1 DESCRIPTION + +Gruntmaster::Daemon::Format exports utility functions for handling source files. + +=over + +=item B I<$meta> + +Compiles all the source files in C<< $meta->{files} >>. + +=back + +=head1 AUTHOR + +Marius Gavrilescu Emarius@ieval.roE + +=head1 COPYRIGHT AND LICENSE + +Copyright (C) 2014 by Marius Gavrilescu + +This library is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + + +=cut