2 # This has been taken from the 'Advanced Perl Programming' book by Sriram Srinivasan
4 # I am presuming that the code is distributed on the same basis as perl itself.
6 # I have modified it to suit my devious purposes (Dirk Koopman G1TLH)
18 use Mojo::IOLoop::Stream;
23 use vars qw($now %conns $noconns $cnum $total_in $total_out $connect_timeout $disc_waittime);
25 $total_in = $total_out = 0;
36 #-----------------------------------------------------------------
37 # Generalised initializer
41 my ($pkg, $rproc) = @_;
43 my $class = $obj || $pkg;
54 cnum => (($cnum < 999) ? (++$cnum) : ($cnum = 1)),
59 dbg("$class Connection created (total $noconns)") if isdbg('connll');
60 return bless $conn, $class;
67 $conn->{sock}->on(error => sub {$callback->($_[1]);});
74 $conn->{sock}->on(close => sub {$callback->()});
81 $conn->{rproc} = $callback;
92 $call = $pkg->{call} unless $call;
93 return undef unless $call;
94 dbg((ref $pkg) . " changing $pkg->{call} to $call") if isdbg('connll') && exists $pkg->{call} && $call ne $pkg->{call};
95 delete $conns{$pkg->{call}} if exists $pkg->{call} && exists $conns{$pkg->{call}} && $pkg->{call} ne $call;
97 $ref = $conns{$call} = $pkg;
98 dbg((ref $pkg) . " Connection $pkg->{cnum} $call stored") if isdbg('connll');
100 $ref = $conns{$call};
105 # this is only called by any dependent processes going away unexpectedly
108 my ($pkg, $pid) = @_;
110 my @pid = grep {$_->{pid} == $pid} values %conns;
111 foreach my $p (@pid) {
112 &{$p->{eproc}}($p, "$pid has gorn") if exists $p->{eproc};
120 return $conn->{csort} eq 'ax25';
126 unless ($conn->{peerhost}) {
127 $conn->{peerhost} ||= 'ax25' if $conn->ax25;
128 $conn->{peerhost} ||= $conn->{sock}->handle->peerhost if $conn->{sock};
129 $conn->{peerhost} ||= 'UNKNOWN';
131 return $conn->{peerhost};
134 #-----------------------------------------------------------------
142 my $sock = $conn->{sock} = Mojo::IOLoop::Stream->new($handle);
143 $sock->on(read => sub {$conn->_rcv($_[1]);} );
144 $sock->on(error => sub {delete $conn->{sock}; $conn->disconnect;});
145 $sock->on(close => sub {delete $conn->{sock}; $conn->disconnect;});
148 $conn->{peerhost} = eval { $handle->peerhost; };
149 dbg((ref $conn) . " connected $conn->{cnum} to $conn->{peerhost}:$conn->{peerport}") if isdbg('connll');
150 if ($conn->{on_connect}) {
151 &{$conn->{on_connect}}($conn, $handle);
158 my $sock = $conn->{sock};
159 return ref $sock && $sock->isa('Mojo::IOLoop::Stream');
163 my ($pkg, $to_host, $to_port, %args) = @_;
164 my $timeout = delete $args{timeout} || $connect_timeout;
166 # Create a connection end-point object
169 my $rproc = delete $args{rproc};
170 $conn = $pkg->new($rproc);
172 $conn->{peerhost} = $to_host;
173 $conn->{peerport} = $to_port;
174 $conn->{sort} = 'Outgoing';
176 dbg((ref $conn) . " connecting $conn->{cnum} to $to_host:$to_port") if isdbg('connll');
179 $conn->{sock} = $sock = Mojo::IOLoop::Client->new;
180 $sock->on(connect => sub {$conn->_on_connect($_[1])} );
181 $sock->on(error => sub {&{$conn->{eproc}}($conn, $_[1]) if exists $conn->{eproc}; $conn->disconnect});
182 $sock->on(close => sub {$conn->disconnect});
184 # copy any args like on_connect, on_disconnect etc
185 while (my ($k, $v) = each %args) {
189 $sock->connect(address => $to_host, port => $to_port, timeout => $timeout);
196 my ($conn, $line, $sort) = @_;
199 # local $^F = 10000; # make sure it ain't closed on exec
200 # my ($a, $b) = $io_socket->socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC);
205 # if (defined $pid) {
208 # $conn->{sock} = $a;
209 # $conn->{csort} = $sort;
210 # $conn->{lineend} = "\cM" if $sort eq 'ax25';
211 # $conn->{pid} = $pid;
212 # if ($conn->{rproc}) {
213 # my $callback = sub {$conn->_rcv};
214 # Msg::set_event_handler ($a, read => $callback);
216 # dbg("connect $conn->{cnum}: started pid: $conn->{pid} as $line") if isdbg('connect');
223 # *STDIN = IO::File->new_from_fd($b, 'r') or die;
224 # *STDOUT = IO::File->new_from_fd($b, 'w') or die;
225 # *STDERR = IO::File->new_from_fd($b, 'w') or die;
227 # unless ($main::is_win) {
228 # # $SIG{HUP} = 'IGNORE';
229 # $SIG{HUP} = $SIG{CHLD} = $SIG{TERM} = $SIG{INT} = 'DEFAULT';
232 # exec "$line" or dbg("exec '$line' failed $!");
235 # dbg("cannot fork for $line");
238 # dbg("no socket pair $! for $line");
246 my $count = $conn->{disconnecting}++;
247 if (isdbg('connll')) {
248 my ($pkg, $fn, $line) = caller;
249 dbg((ref $conn) . "::disconnect on call $conn->{call} attempt $conn->{disconnecting} called from ${pkg}::${fn} line $line ");
254 my $sock = $conn->{sock};
257 # remove me from the active list
259 if ($call = $conn->{call}) {
260 my $ref = $conns{$call};
261 delete $conns{$call} if $ref && $ref == $conn;
263 $conn->{delay} = Mojo::IOLoop->delay (
264 # Mojo::IOLoop->delay (
267 dbg("before drain $call");
268 $sock->on(drain => $delay->begin);
277 $conn->{delay}->wait;
279 $delqueue{$conn} = $conn; # save this connection until everything is finished
281 dbg((ref $conn) . " socket missing on $conn->{call}") if isdbg('connll');
289 my $sock = delete $conn->{sock};
290 $conn->{state} = 'E';
291 $conn->{timeout}->del if $conn->{timeout};
293 if (isdbg('connll')) {
294 my ($pkg, $fn, $line) = caller;
295 dbg((ref $conn) . "::_close_it on call $conn->{call} attempt $conn->{disconnecting} called from ${pkg}::${fn} line $line ");
298 # be careful to delete the correct one
300 if ($call = $conn->{call}) {
301 my $ref = $conns{$call};
302 delete $conns{$call} if $ref && $ref == $conn;
304 $call ||= 'unallocated';
306 dbg((ref $conn) . " Connection $conn->{cnum} $call starting to close") if isdbg('connll');
308 if ($conn->{on_disconnect}) {
309 &{$conn->{on_disconnect}}($conn);
313 dbg((ref $conn) . " Connection $conn->{cnum} $call closing gracefully") if isdbg('connll');
314 $sock->close_gracefully;
317 # get rid of any references
319 if (ref($conn->{$_})) {
324 delete $delqueue{$conn}; # finally remove the $conn
326 unless ($main::is_win) {
327 kill 'TERM', $conn->{pid} if exists $conn->{pid};
334 my $rq = $conn->{outqueue};
335 my $sock = $conn->{sock};
336 return unless defined $sock;
337 return if $conn->{disconnecting};
340 my $data = shift @$rq;
341 my $lth = length $data;
342 my $call = $conn->{call} || 'none';
345 dbgdump('raw', "$call send $lth: ", $lth);
352 dbg("_send_stuff $call ending data ignored: $data");
358 my ($conn, $msg) = @_;
359 $conn->enqueue($msg);
369 my ($conn, $msg) = @_;
370 push @{$conn->{outqueue}}, $msg;
376 push @{$conn->{outqueue}}, defined $_[0] ? $_[0] : '';
387 $conn->{sock}->on(drain => sub {$conn->disconnect;});
390 #-----------------------------------------------------------------
391 # Receive side routines
395 # @_ == 4 || die "Msg->new_server (myhost, myport, login_proc)\n";
396 my ($pkg, $my_host, $my_port, $login_proc) = @_;
397 my $conn = $pkg->new($login_proc);
399 my $sock = $conn->{sock} = Mojo::IOLoop::Server->new;
400 $sock->on(accept=>sub{$conn->new_client($_[1]);});
401 $sock->listen(address=>$my_host, port=>$my_port);
404 die "Could not create socket: $! \n" unless $conn->{sock};
417 return if $conn->{disconnecting};
419 if ($conn->{msg} =~ /\cJ/) {
420 my @lines = split /\cM?\cJ/, $conn->{msg};
421 if ($conn->{msg} =~ /\cM?\cJ$/) {
424 $conn->{msg} = pop @lines;
427 last if $conn->{disconnecting};
428 &{$conn->{rproc}}($conn, defined $_ ? $_ : '');
433 sub _rcv { # Complement to _send
434 my $conn = shift; # $rcv_now complement of $flush
436 my $sock = $conn->{sock};
437 return unless defined($sock);
438 return if $conn->{disconnecting};
440 $total_in += length $msg;
444 my $call = $conn->{call} || 'none';
445 my $lth = length $msg;
446 dbgdump('raw', "$call read $lth: ", $msg);
449 my @ch = split //, $msg;
454 $conn->{msg} =~ s/.$//;
461 $conn->send_raw($out);
464 $conn->{msg} .= $msg;
467 unless ($conn->{disable_read}) {
468 $conn->dequeue if exists $conn->{msg};
473 my $server_conn = shift;
476 my $conn = $server_conn->new($server_conn->{rproc});
477 my $sock = $conn->{sock} = Mojo::IOLoop::Stream->new($handle);
478 $sock->on(read => sub {$conn->_rcv($_[1])});
481 dbg((ref $conn) . "accept $conn->{cnum} from $conn->{peerhost} $conn->{peerport}") if isdbg('connll');
483 my ($rproc, $eproc) = &{$server_conn->{rproc}} ($conn, $conn->{peerhost} = $handle->peerhost, $conn->{peerport} = $handle->peerport);
484 $conn->{sort} = 'Incoming';
486 $conn->{eproc} = $eproc;
489 $conn->{rproc} = $rproc;
490 } else { # Login failed
491 &{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
500 delete $conn->{sock};
503 # close all clients (this is for forking really)
504 sub close_all_clients
506 foreach my $conn (values %conns) {
514 return defined $_[0] ? $conn->{disable_read} = $_[0] : $_[0];
519 #----------------------------------------------------
520 # Event loop routines used by both client and server
522 sub set_event_handler {
525 my ($pkg, $fn, $line) = caller;
527 foreach (my ($k,$v) = each %args) {
531 dbg("Msg::set_event_handler called from ${pkg}::${fn} line $line doing $s");
536 my ($pkg, $interval) = @_;
538 while (time - $now < $interval) {
546 my $call = $conn->{call} || 'unallocated';
548 if (isdbg('connll')) {
549 my ($pkg, $fn, $line) = caller;
550 dbg((ref $conn) . "::DESTROY on call $call called from ${pkg}::${fn} line $line ");
554 my $call = $conn->{call} || 'unallocated';
555 my $host = $conn->{peerhost} || '';
556 my $port = $conn->{peerport} || '';
557 my $sock = $conn->{sock};
560 $sock->close_gracefully;
564 dbg((ref $conn) . " Connection $conn->{cnum} $call [$host $port] being destroyed (total $noconns)") if isdbg('connll');