File Coverage

blib/lib/Object/Remote/Node.pm
Criterion Covered Total %
statement 0 23 0.0
branch 0 2 0.0
condition n/a
subroutine 0 6 0.0
pod 0 1 0.0
total 0 32 0.0


line stmt bran cond sub pod time code
1             package Object::Remote::Node;
2              
3             use strictures 1;
4             use Object::Remote::Connector::STDIO;
5             use Object::Remote::Logging qw(:log :dlog);
6             use Object::Remote::WatchDog;
7             use Object::Remote;
8              
9             sub run {
10 0     0 0   my ($class, %args) = @_;
11 0     0     log_trace { "run() has been invoked on remote node" };
  0            
12              
13 0           my $c = Object::Remote::Connector::STDIO->new->connect;
14              
15 0           $c->register_class_call_handler;
16              
17 0           my $loop = Object::Remote->current_loop;
18              
19             $c->on_close->on_ready(sub {
20 0     0     log_debug { "Node connection with call handler has closed" };
  0            
21 0           $loop->want_stop
22 0           });
23              
24 0     0     Dlog_trace { "Node is sending 'Shere' to $_" } $c->send_to_fh;
  0            
25 0           print { $c->send_to_fh } "Shere\n";
  0            
26              
27 0     0     log_debug { "Node is going to start the run loop" };
  0            
28             #TODO the alarm should be reset after the run loop starts
29             #at a minimum - the remote side node should probably send
30             #a command that clears the alarm in all instances - even
31             #if the Object::Remote::Watchdog is not being used
32 0 0         if ($args{watchdog_timeout}) {
33 0           Object::Remote::WatchDog->instance(timeout => $args{watchdog_timeout});
34             } else {
35             #reset connection watchdog from the fatnode
36 0           alarm(0);
37             }
38 0           $loop->want_run;
39 0           $loop->run_while_wanted;
40 0     0     log_debug { "Run loop invocation in node has completed" };
  0            
41             }
42              
43             1;