fix incorrect indentation
[scpubgit/Object-Remote.git] / lib / Object / Remote / Role / Connector / PerlInterpreter.pm
CommitLineData
a9fdb55e 1package Object::Remote::Role::Connector::PerlInterpreter;
2
5953edf6 3use IPC::Open2;
90a3a7f2 4use IPC::Open3;
4c8c83d7 5use IO::Handle;
b1f39f94 6use Symbol;
69aaad21 7use Object::Remote::Logging qw( :log :dlog );
a9fdb55e 8use Object::Remote::ModuleSender;
9use Object::Remote::Handle;
fbd3b8ec 10use Object::Remote::Future;
69aaad21 11use Scalar::Util qw(blessed weaken);
a9fdb55e 12use Moo::Role;
13
14with 'Object::Remote::Role::Connector';
15
03f41c0e 16has module_sender => (is => 'lazy');
1a7f821f 17has ulimit => ( is => 'ro' );
18has nice => ( is => 'ro' );
e5b3f03f 19has watchdog_timeout => ( is => 'ro', required => 1, default => sub { undef } );
20has perl_command => (is => 'lazy');
69aaad21 21
5953edf6 22#if no child_stderr file handle is specified then stderr
23#of the child will be connected to stderr of the parent
69aaad21 24has stderr => ( is => 'rw', default => sub { undef } );
03f41c0e 25
26sub _build_module_sender {
18e789ab 27 my ($hook) =
28 grep {blessed($_) && $_->isa('Object::Remote::ModuleLoader::Hook') }
29 @INC;
03f41c0e 30 return $hook ? $hook->sender : Object::Remote::ModuleSender->new;
31}
32
1a7f821f 33sub _build_perl_command {
34 my ($self) = @_;
35 my $nice = $self->nice;
364015c9 36 my $ulimit = $self->ulimit;
37 my $shell_code = '';
1a7f821f 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
364015c9 47 $shell_code .= 'perl -';
48
49 return [ 'sh', '-c', $shell_code ];
1a7f821f 50}
498c4ad5 51
03f41c0e 52around connect => sub {
53 my ($orig, $self) = (shift, shift);
fbd3b8ec 54 my $f = $self->$start::start($orig => @_);
55 return future {
56 $f->on_done(sub {
57 my ($conn) = $f->get;
69aaad21 58 $self->_setup_watchdog_reset($conn);
23591f5f 59 my $sub = $conn->remote_sub('Object::Remote::Logging::init_logging_forwarding');
60 $sub->('Object::Remote::Logging', Object::Remote::Logging->arg_router);
fbd3b8ec 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;
a9fdb55e 71};
72
498c4ad5 73sub final_perl_command { shift->perl_command }
a9fdb55e 74
7efea51f 75sub _start_perl {
a9fdb55e 76 my $self = shift;
5953edf6 77 my $given_stderr = $self->stderr;
78 my $foreign_stderr;
79
07105aca 80 Dlog_debug { "invoking connection to perl interpreter using command line: $_" } @{$self->final_perl_command};
8ed52376 81
5953edf6 82 if (defined($given_stderr)) {
c023aad2 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();
5953edf6 88 } else {
c023aad2 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";
5953edf6 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)) {
c023aad2 103 Dlog_debug { "Child process STDERR is being handled via run loop" };
5953edf6 104
c023aad2 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 );
5953edf6 118 } else {
c023aad2 119 Dlog_trace { "got $len characters of stderr data for connection" };
120 print $given_stderr $buf or die "could not send stderr data: $!";
5953edf6 121 }
b51a8453 122 }
5953edf6 123 );
124 }
125
69aaad21 126 return ($foreign_stdin, $foreign_stdout, $pid);
7efea51f 127}
128
129sub _open2_for {
130 my $self = shift;
131 my ($foreign_stdin, $foreign_stdout, $pid) = $self->_start_perl(@_);
fbd3b8ec 132 my $to_send = $self->fatnode_text;
0511910e 133 log_debug { my $len = length($to_send); "Sending contents of fat node to remote node; size is '$len' characters" };
fbd3b8ec 134 Object::Remote->current_loop
135 ->watch_io(
136 handle => $foreign_stdin,
137 on_write_ready => sub {
07105aca 138 my $len = syswrite($foreign_stdin, $to_send, 32768);
fbd3b8ec 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
b1f39f94 144 if (!defined($len) or 0 == length($to_send)) {
0511910e 145 log_trace { "Got EOF or error when writing fatnode data to filehandle, unwatching it" };
fbd3b8ec 146 Object::Remote->current_loop
147 ->unwatch_io(
148 handle => $foreign_stdin,
149 on_write_ready => 1
c023aad2 150 );
0511910e 151 } else {
152 log_trace { "Sent $len bytes of fatnode data to remote side" };
fbd3b8ec 153 }
154 }
155 );
a9fdb55e 156 return ($foreign_stdin, $foreign_stdout, $pid);
157}
158
69aaad21 159sub _setup_watchdog_reset {
c023aad2 160 my ($self, $conn) = @_;
161 my $timer_id;
69aaad21 162
c023aad2 163 return unless $self->watchdog_timeout;
69aaad21 164
c023aad2 165 Dlog_trace { "Creating Watchdog management timer for connection id $_" } $conn->_id;
bd20b1bf 166
c023aad2 167 weaken($conn);
bd20b1bf 168
c023aad2 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 }
69aaad21 177
c023aad2 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 );
69aaad21 185}
186
b1cbd5be 187sub fatnode_text {
188 my ($self) = @_;
b1cbd5be 189 my $text = '';
69aaad21 190
191 require Object::Remote::FatNode;
192
bd20b1bf 193 if (defined($self->watchdog_timeout)) {
194 $text = "my \$WATCHDOG_TIMEOUT = '" . $self->watchdog_timeout . "';\n";
69aaad21 195 $text .= "alarm(\$WATCHDOG_TIMEOUT);\n";
bd20b1bf 196 } else {
c023aad2 197 $text = "my \$WATCHDOG_TIMEOUT = undef;\n";
69aaad21 198 }
bd20b1bf 199
b1cbd5be 200 $text .= <<'END';
201$INC{'Object/Remote/FatNode.pm'} = __FILE__;
202$Object::Remote::FatNode::DATA = <<'ENDFAT';
203END
fbd3b8ec 204 $text .= do { no warnings 'once'; $Object::Remote::FatNode::DATA };
b1cbd5be 205 $text .= "ENDFAT\n";
206 $text .= <<'END';
207eval $Object::Remote::FatNode::DATA;
1a2d795f 208die $@ if $@;
b1cbd5be 209END
69aaad21 210
b1cbd5be 211 $text .= "__END__\n";
212 return $text;
213}
214
a9fdb55e 2151;