Rework DXCron::spawn for Mojo
authorDirk Koopman <djk@tobit.co.uk>
Fri, 25 Mar 2016 22:31:56 +0000 (22:31 +0000)
committerDirk Koopman <djk@tobit.co.uk>
Fri, 25 Mar 2016 22:31:56 +0000 (22:31 +0000)
Changes
perl/DXCron.pm
perl/DXLog.pm

diff --git a/Changes b/Changes
index 136b9a7eb690e98acc52c00f0203855370f7e88b..dbe3a1b1ae5574d146043cd695ac6059e1d6b5a4 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+25Mar16=======================================================================
+1. Rework DXCron::spawn command to use Mojo::IOLoop::ForkCall
 04Jan16=======================================================================
 1. Add CTY-2601 prefix file
 02Jan16=======================================================================
index 29b35ca4811d737743e8c35336487bda088e99e0..ccbb78d4773a6a7466e81a6625e968cd15ffca92 100644 (file)
@@ -13,6 +13,7 @@ use DXUtil;
 use DXM;
 use DXDebug;
 use IO::File;
+use DXLog;
 
 use strict;
 
@@ -242,33 +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 {} }";
-                       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},
+                        undef,
+                        sub {
+                                my ($fc, $err, @res) = @_; 
+                                if (defined $err) {
+                                        my $s = "DXCron::spawn: error $err";
+                                        dbg($s);
+                                        return;
+                                }
+                                dbg($_) for @res;
+                        }
+                       );
 }
 
 # do an rcmd to another cluster from the crontab
index ede817aa446fdae1dc89ae634488401206bc74d5..1113bc247b2d0a58d412d80104a18987320cb225 100644 (file)
@@ -148,6 +148,7 @@ sub unixtoj($$)
 sub write($$$)
 {
        my ($self, $jdate, $line) = @_;
+       return unless $self && $jdate;
        if (!$self->{fh} || 
                $self->{mode} ne ">>" || 
                $jdate->year != $self->{jdate}->year ||