#!/usr/bin/perl
# timestamp.pl
while(time - $^T<10){
select undef,undef,undef, 0.1;
if ( rand()<0.5) {
print STDERR time(), " warn\n";
} else {
print time(), " info\n"; }
}
print "end\n";
__END__
use IPC::Run qw ( start pump finish timeout );
my $in;
my $out;
my @cmd = qw( perl timestamp.pl);
## Build the harness, open all pipes, and launch the subprocesses
my $h = start \@cmd, \$in, \$out, \$out ;
$in = "" ;
## Now do I/O. start() does no I/O.
pump $h while length $in ; ## Wait for all input to go
## Now do some more I/O.
while (1){
pump $h until $out =~ s/(.+)\n$//gm ;
last if ("end" eq $1);
print time, " : $1\n";
}
## Clean up
finish $h or die "cat returned $?" ;
__END__
1215226647 : 1215226647 info
1215226647 : 1215226647 info
1215226647 : 1215226647 warn
1215226647 : 1215226647 info
1215226647 : 1215226647 warn
1215226647 : 1215226647 warn
1215226647 : 1215226647 info
1215226647 : 1215226647 info
1215226647 : 1215226647 info
1215226648 : 1215226648 warn
s//----->\t/;$~="JAPH";s//\r<$~~/;{s|~$~-|-~$~|||s
|-$~~|$~~-|||s,<$~~,<~$~,,s,~$~>,$~~>,,
$|=1,select$,,$,,$,,1e-1;print;redo}
| [reply] [d/l] |
Thanks for your solution IPC::Run is probably the best way to go.
If you set $|++ in timestamp.pl we have it.
perl -MIPC::Run=run -e '
run( [ "perl", "timestamp.pl" ],
"1>", sub { print "out " . time() . " " , @_ },
"2>", sub { print "err ". time() . " " , @_} )
'
out 1215247029 1215247029 info
err 1215247029 1215247029 warn
err 1215247029 1215247029 warn
out 1215247029 1215247029 info
err 1215247029 1215247029 warn
err 1215247029 1215247029 warn
out 1215247030 1215247030 info
err 1215247030 1215247030 warn
err 1215247030 1215247030 warn
err 1215247030 1215247030 warn
err 1215247030 1215247030 warn
out 1215247030 1215247030 info
err 1215247030 1215247030 warn
out 1215247030 1215247030 info
out 1215247030 1215247030 info
out 1215247031 1215247030 info
out 1215247031 1215247031 info
err 1215247031 1215247031 warn
err 1215247031 1215247031 warn
out 1215247031 1215247031 info
err 1215247031 1215247031 warn
out 1215247031 1215247031 info
out 1215247031 1215247031 info
err 1215247031 1215247031 warn
err 1215247031 1215247031 warn
print+qq(\L@{[ref\&@]}@{['@'x7^'!#2/"!4']});
| [reply] [d/l] [select] |
Hi,
Excuse me for posting to this old threat, but I run in a similar situation where IPC::Run and Log::Log4perl were combined.
I must remark that the title is actually misleading because no one has mentioned log4perl in his/her solution. Thus I will:
use IPC::Run qw(run new_chunker);
# snip-snap-snip
# ...
my @cmd = qw(find /usr/bin -type f);
run(\@cmd, "1>", new_chunker, \&logSdtout, "2>", new_chunker, \&logSdt
+err);
sub logSdtout
{
$logger->info(@_);
}
sub logSdterr
{
$logger->error(@_);
}
edit: you need to pass the filter "new_chunker" to IPC::Run to break the output from your external program into newlines. Otherwise you will run into strange exceptions (undefined values) causing IPC::Run to fail.
Cheers,
Daniel | [reply] [d/l] |