App-nrun
view release on metacpan or search on metacpan
lib/NRun/Loggers/LoggerExitCode.pm view on Meta::CPAN
use File::Basename;
use NRun::Logger;
our @ISA = qw(NRun::Logger);
BEGIN {
NRun::Logger::register ( {
'LOGGER' => "result",
'DESC' => "log only the exit code",
'NAME' => __PACKAGE__,
} );
}
###
# create a new object.
#
# <- the new object
sub new {
my $_pkg = shift;
my $_obj = shift;
my $self = {};
bless $self, $_pkg;
return $self;
}
###
# initialize this logger module.
#
# $_cfg - parameter hash where
# {
# 'log_directory' - the base directory the logfile should be created in
# }
# <- the new object
sub init {
my $_self = shift;
my $_cfg = shift;
$_self->{log_directory} = $_cfg->{log_directory};
$_self->{logfile} = "$_self->{log_directory}/result.log";
select(LOG);
$| = 1;
select(STDOUT);
open(LOG, ">>$_self->{logfile}") or die("$_self->{logfile}: $!");
$_self->{LOG} = \*LOG;
}
###
# handle one line of data written on stdout.
#
# expected data format:
#
# HOSTNAME;[stdout|stderr];TSTAMP;PID;PID(CHILD);[debug|error|exit|output|end];"OUTPUT"
#
# $_data - the data to be handled
sub stdout {
my $_self = shift;
my $_data = shift;
my @data = split(/;/, $_data);
my ($message) = ($_data =~ m/[^"]"(.*)"[^"]*/);
if ($data[5] eq "exit") {
$_self->{data}->{$data[0]} = $message;
} elsif ($data[5] eq "end") {
my $code = delete($_self->{data}->{$data[0]});
print {$_self->{LOG}} "$data[0]: $code\n" if (defined($code));
}
}
###
# handle one line of data written on stderr.
#
# expected data format:
#
# HOSTNAME;[stdout|stderr];TSTAMP;PID;PID(CHILD);[debug|error|exit|output|end];"OUTPUT"
#
# $_data - the data to be handled
sub stderr {
my $_self = shift;
my $_data = shift;
}
DESTROY {
my $_self = shift;
close($_self->{LOG});
};
1;
( run in 0.467 second using v1.01-cache-2.11-cpan-d8267643d1d )