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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
#
# Copyright (C) 2009-2021 Alexis Bienvenüe <paamc@passoire.fr>
#
# This file is part of Auto-Multiple-Choice
#
# Auto-Multiple-Choice is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, either version 2 of
# the License, or (at your option) any later version.
#
# Auto-Multiple-Choice is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Auto-Multiple-Choice. If not, see
# <http://www.gnu.org/licenses/>.
use warnings;
use 5.012;
package AMC::Exec;
use AMC::Basic;
sub new {
my ($nom) = @_;
my $self = {
pid => '',
nom => $nom || 'AMC',
};
bless($self);
return ($self);
}
sub catch_signal {
my ( $self, $signame ) = @_;
if ( $self->{pid} ) {
debug "*** $self->{nom} : signal $signame, killing $self->{pid}...\n";
kill 9, $self->{pid};
}
die "$self->{nom} killed";
}
sub signalise {
my ($self) = @_;
$SIG{INT} = sub { my $s = shift; $self->catch_signal($s); };
}
sub execute {
my ( $self, @c ) = @_;
my $prg = $c[0];
if ($prg) {
if ( !commande_accessible($prg) ) {
debug "*** WARNING: program \"$prg\" not found in PATH!";
}
my $cmd_pid = fork();
my @t = times();
if ($cmd_pid) {
$self->{pid} = $cmd_pid;
debug "Command [$cmd_pid] : " . join( ' ', @c );
waitpid( $cmd_pid, 0 );
my @tb = times();
debug "Cmd PID=$cmd_pid returns $?";
debug sprintf(
"Total parent exec times during $cmd_pid: [%7.02f,%7.02f]",
$tb[0] + $tb[1] - $t[0] - $t[1],
$tb[2] + $tb[3] - $t[2] - $t[3]
);
} else {
exec(@c);
die "Commande inexistante : $prg";
}
} else {
debug "Command: no executable! " . join( ' ', @c );
}
}
1;
|