Mark output from DXCron::spawn in dbg
[spider.git] / perl / DXCron.pm
index 1d3dcc6d00b5d3bc1a5aa271f6977f8da7ed1a7d..e90865f385d989217b459494bf3b47644504ddc5 100644 (file)
@@ -3,7 +3,7 @@
 #
 # Copyright (c) 1998 - Dirk Koopman G1TLH
 #
-# $Id$
+#
 #
 
 package DXCron;
@@ -13,6 +13,7 @@ use DXUtil;
 use DXM;
 use DXDebug;
 use IO::File;
+use DXLog;
 
 use strict;
 
@@ -219,7 +220,7 @@ sub last_connect
 {
        my $call = uc shift;
        return $main::systime if DXChannel::get($call);
-       my $user = DXUser->get($call);
+       my $user = DXUser::get($call);
        return $user ? $user->lastin : 0;
 }
 
@@ -242,31 +243,21 @@ 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 {} }";
-                       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},
+                        undef,
+                        sub {
+                                my ($fc, $err, @res) = @_; 
+                                if (defined $err) {
+                                        my $s = "DXCron::spawn: error $err";
+                                        dbg($s);
+                                        return;
+                                }
+                                dbg("DXCron::spawn: $_") for @res;
+                        }
+                       );
 }
 
 # do an rcmd to another cluster from the crontab