alarm() in fatnode is now set to value of connection timeout and is always used even...
[scpubgit/Object-Remote.git] / lib / Object / Remote / Role / Connector / PerlInterpreter.pm
1 package Object::Remote::Role::Connector::PerlInterpreter;
2
3 use IPC::Open2;
4 use IPC::Open3; 
5 use IO::Handle;
6 use Symbol; 
7 use Object::Remote::Logging qw( :log :dlog get_router );
8 use Object::Remote::ModuleSender;
9 use Object::Remote::Handle;
10 use Object::Remote::Future;
11 use Scalar::Util qw(blessed weaken);
12 use Moo::Role;
13
14 with 'Object::Remote::Role::Connector';
15
16 has module_sender => (is => 'lazy');
17 has ulimit => ( is => 'ro' );
18 has nice => ( is => 'ro' );
19 has watchdog_timeout => ( is => 'ro', required => 1, default => sub { undef } );
20 has perl_command => (is => 'lazy');
21
22 #if no child_stderr file handle is specified then stderr
23 #of the child will be connected to stderr of the parent
24 has stderr => ( is => 'rw', default => sub { undef } );
25
26 sub _build_module_sender {
27   my ($hook) =
28     grep {blessed($_) && $_->isa('Object::Remote::ModuleLoader::Hook') }
29       @INC;
30   return $hook ? $hook->sender : Object::Remote::ModuleSender->new;
31 }
32
33 sub _build_perl_command {
34     my ($self) = @_; 
35     my $nice = $self->nice;
36     my $ulimit = $self->ulimit;
37     my $shell_code = '';  
38     
39     if (defined($ulimit)) {
40         $shell_code .= "ulimit -v $ulimit; ";
41     }
42     
43     if (defined($nice)) {
44         $shell_code .= "nice -n $nice ";
45     }
46     
47     $shell_code .= 'perl -';
48         
49     return [ 'sh', '-c', $shell_code ];        
50 }
51
52 around connect => sub {
53   my ($orig, $self) = (shift, shift);
54   my $f = $self->$start::start($orig => @_);
55   return future {
56     $f->on_done(sub {
57       my ($conn) = $f->get;
58       $self->_setup_watchdog_reset($conn); 
59       my $sub = $conn->remote_sub('Object::Remote::Logging::init_logging_forwarding');
60       $sub->('Object::Remote::Logging', router => get_router, connection_id => $conn->_id);
61       Object::Remote::Handle->new(
62         connection => $conn,
63         class => 'Object::Remote::ModuleLoader',
64         args => { module_sender => $self->module_sender }
65       )->disarm_free;
66       require Object::Remote::Prompt;
67       Object::Remote::Prompt::maybe_set_prompt_command_on($conn);
68     });
69     $f;
70   } 2;
71 };
72
73 sub final_perl_command { shift->perl_command }
74
75 sub _start_perl {
76   my $self = shift;
77   my $given_stderr = $self->stderr;
78   my $foreign_stderr;
79  
80   Dlog_debug { "invoking connection to perl interpreter using command line: $_" } @{$self->final_perl_command};
81     
82   if (defined($given_stderr)) {
83     #if the stderr data goes to an existing file handle
84     #an anonymous file handle is required
85     #as the other half of a pipe style file handle pair
86     #so the file handles can go into the run loop
87     $foreign_stderr = gensym();
88   } else {
89     #if no file handle has been specified
90     #for the child's stderr then connect
91     #the child stderr to the parent stderr
92     $foreign_stderr = ">&STDERR";
93   }
94   
95   my $pid = open3(
96     my $foreign_stdin,
97     my $foreign_stdout,
98     $foreign_stderr,
99     @{$self->final_perl_command},
100   ) or die "Failed to run perl at '$_[0]': $!";
101   
102   if (defined($given_stderr)) {   
103     Dlog_debug { "Child process STDERR is being handled via run loop" };
104         
105     Object::Remote->current_loop
106                   ->watch_io(
107                       handle => $foreign_stderr,
108                       on_read_ready => sub {
109                         my $buf = ''; 
110                         my $len = sysread($foreign_stderr, $buf, 32768);
111                         if (!defined($len) or $len == 0) {
112                           log_trace { "Got EOF or error on child stderr, removing from watcher" };
113                           $self->stderr(undef);
114                           Object::Remote->current_loop->unwatch_io(
115                                          handle => $foreign_stderr,
116                                          on_read_ready => 1
117                                        );
118                           } else {
119                             Dlog_trace { "got $len characters of stderr data for connection" };
120                             print $given_stderr $buf or die "could not send stderr data: $!";
121                           }
122                          } 
123                       );     
124   }
125       
126   return ($foreign_stdin, $foreign_stdout, $pid);
127 }
128
129 sub _open2_for {
130   my $self = shift;
131   my ($foreign_stdin, $foreign_stdout, $pid) = $self->_start_perl(@_);
132   my $to_send = $self->fatnode_text;
133   log_debug { my $len = length($to_send); "Sending contents of fat node to remote node; size is '$len' characters"  };
134   Object::Remote->current_loop
135                 ->watch_io(
136                     handle => $foreign_stdin,
137                     on_write_ready => sub {
138                       my $len = syswrite($foreign_stdin, $to_send, 32768);
139                       if (defined $len) {
140                         substr($to_send, 0, $len) = '';
141                       }
142                       # if the stdin went away, we'll never get Shere
143                       # so it's not a big deal to simply give up on !defined
144                       if (!defined($len) or 0 == length($to_send)) {
145                         log_trace { "Got EOF or error when writing fatnode data to filehandle, unwatching it" };
146                         Object::Remote->current_loop
147                                       ->unwatch_io(
148                                           handle => $foreign_stdin,
149                                           on_write_ready => 1
150                                       );
151                       } else {
152                           log_trace { "Sent $len bytes of fatnode data to remote side" };
153                       }
154                     }
155                   );
156   return ($foreign_stdin, $foreign_stdout, $pid);
157 }
158
159 sub _setup_watchdog_reset {
160   my ($self, $conn) = @_;
161   my $timer_id; 
162     
163   return unless $self->watchdog_timeout; 
164         
165   Dlog_trace { "Creating Watchdog management timer for connection id $_" } $conn->_id;
166     
167   weaken($conn);
168         
169   $timer_id = Object::Remote->current_loop->watch_time(
170     every => $self->watchdog_timeout / 3,
171     code => sub {
172       unless(defined($conn)) {
173         log_trace { "Weak reference to connection in Watchdog was lost, terminating update timer $timer_id" };
174         Object::Remote->current_loop->unwatch_time($timer_id);
175         return;  
176       }
177             
178       Dlog_trace { "Reseting Watchdog for connection id $_" } $conn->_id;
179       #we do not want to block in the run loop so send the
180       #update off and ignore any result, we don't need it
181       #anyway
182       $conn->send_class_call(0, 'Object::Remote::WatchDog', 'reset');
183     }
184   );     
185 }
186
187 sub fatnode_text {
188   my ($self) = @_;
189   my $connection_timeout = $self->timeout;
190   my $watchdog_timeout = $self->watchdog_timeout;
191   my $text = '';
192
193   require Object::Remote::FatNode;
194   
195   if (defined($connection_timeout)) {
196     $text .= "alarm($connection_timeout);\n";
197   }
198   
199   if (defined($watchdog_timeout)) {
200     $text .= "my \$WATCHDOG_TIMEOUT = $watchdog_timeout;\n";   
201   } else {
202     $text .= "my \$WATCHDOG_TIMEOUT = undef;\n";
203   }
204   
205   $text .= <<'END';
206 $INC{'Object/Remote/FatNode.pm'} = __FILE__;
207 $Object::Remote::FatNode::DATA = <<'ENDFAT';
208 END
209   $text .= do { no warnings 'once'; $Object::Remote::FatNode::DATA };
210   $text .= "ENDFAT\n";
211   $text .= <<'END';
212 eval $Object::Remote::FatNode::DATA;
213 die $@ if $@;
214 END
215   
216   $text .= "__END__\n";
217   return $text;
218 }
219
220 1;