X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCron.pm;h=f9a4f07ea12585ab62b30389b1c4734d341fa2eb;hb=68fa2f8ae34d78464cb196851a7ce09ebef61b1b;hp=29b35ca4811d737743e8c35336487bda088e99e0;hpb=5e50c4fa111795e0cea2325d68bf1d2a9ce14f18;p=spider.git diff --git a/perl/DXCron.pm b/perl/DXCron.pm index 29b35ca4..f9a4f07e 100644 --- a/perl/DXCron.pm +++ b/perl/DXCron.pm @@ -13,6 +13,7 @@ use DXUtil; use DXM; use DXDebug; use IO::File; +use DXLog; use strict; @@ -242,33 +243,24 @@ sub start_connect sub spawn { my $line = shift; - - my $pid = fork(); - if (defined $pid) { - if (!$pid) { - # in child, unset warnings, disable debugging and general clean up from us - $^W = 0; - eval "{ package DB; sub DB {} }"; - dbgclose(); - Logclose(); - DXChannel::closeall(); - for (@main::listeners) { - $_->close_server; - } - unless ($main::is_win) { - $SIG{HUP} = 'IGNORE'; - $SIG{CHLD} = $SIG{TERM} = $SIG{INT} = $SIG{__WARN__} = 'DEFAULT'; - alarm(0); - } - exec "$line" or dbg("exec '$line' failed $!") if isdbg('cron'); - } - dbg("spawn of $line started") if isdbg('cron'); - } else { - dbg("can't fork for $line $!") if isdbg('cron'); - } - # coordinate - sleep(1); + my $fc = Mojo::IOLoop::ForkCall->new; + $fc->run( + sub {my @res = `$line`; return @res}, + [], + sub { + my ($fc, $err, @res) = @_; + if (defined $err) { + my $s = "DXCron::spawn: error $err"; + dbg($s); + return; + } + for (@res) { + chomp; + dbg("DXCron::spawn: $_") if isdbg("cron"); + } + } + ); } # do an rcmd to another cluster from the crontab