spider/perl/Msg.pm

627 lines
16 KiB
Perl
Raw Normal View History

1998-06-15 23:20:05 +00:00
#
# This has been taken from the 'Advanced Perl Programming' book by Sriram Srinivasan
#
# I am presuming that the code is distributed on the same basis as perl itself.
#
# I have modified it to suit my devious purposes (Dirk Koopman G1TLH)
#
# $Id$
#
1998-06-15 23:20:05 +00:00
package Msg;
use strict;
use vars qw($VERSION $BRANCH);
$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0;
$main::build += $VERSION;
$main::branch += $BRANCH;
1998-06-15 23:20:05 +00:00
use IO::Select;
use IO::Socket;
use DXDebug;
use Timer;
1998-06-15 23:20:05 +00:00
2001-04-15 17:35:52 +00:00
use vars qw(%rd_callbacks %wt_callbacks %er_callbacks $rd_handles $wt_handles $er_handles $now %conns $noconns $blocking_supported $cnum);
1998-06-15 23:20:05 +00:00
%rd_callbacks = ();
%wt_callbacks = ();
%er_callbacks = ();
1998-06-15 23:20:05 +00:00
$rd_handles = IO::Select->new();
$wt_handles = IO::Select->new();
$er_handles = IO::Select->new();
1998-06-15 23:20:05 +00:00
$now = time;
BEGIN {
# Checks if blocking is supported
eval {
require POSIX; POSIX->import(qw(O_NONBLOCK F_SETFL F_GETFL))
};
if ($@ || $main::is_win) {
2001-04-15 17:19:11 +00:00
# print STDERR "POSIX Blocking *** NOT *** supported $@\n";
$blocking_supported = 0;
} else {
$blocking_supported = 1;
2001-04-15 17:19:11 +00:00
# print STDERR "POSIX Blocking enabled\n";
}
# import as many of these errno values as are available
eval {
require Errno; Errno->import(qw(EAGAIN EINPROGRESS EWOULDBLOCK));
};
# http://support.microsoft.com/support/kb/articles/Q150/5/37.asp
# defines EINPROGRESS as 10035. We provide it here because some
# Win32 users report POSIX::EINPROGRESS is not vendor-supported.
if ($^O eq 'MSWin32') {
eval '*EINPROGRESS = sub { 10036 };';
eval '*EWOULDBLOCK = *EAGAIN = sub { 10035 };';
2002-01-11 00:44:05 +00:00
eval '*F_GETFL = sub { 0 };';
eval '*F_SETFL = sub { 0 };';
$blocking_supported = 1;
}
}
my $w = $^W;
$^W = 0;
my $eagain = eval {EAGAIN()};
my $einprogress = eval {EINPROGRESS()};
my $ewouldblock = eval {EWOULDBLOCK()};
$^W = $w;
2001-04-15 17:35:52 +00:00
$cnum = 0;
1998-06-15 23:20:05 +00:00
2001-03-02 13:37:03 +00:00
#
#-----------------------------------------------------------------
# Generalised initializer
sub new
{
my ($pkg, $rproc) = @_;
my $obj = ref($pkg);
my $class = $obj || $pkg;
my $conn = {
rproc => $rproc,
inqueue => [],
outqueue => [],
2001-03-02 13:37:03 +00:00
state => 0,
lineend => "\r\n",
csort => 'telnet',
2001-03-04 13:41:21 +00:00
timeval => 60,
blocking => 0,
2001-04-15 17:35:52 +00:00
cnum => (($cnum < 999) ? (++$cnum) : ($cnum = 1)),
2001-03-02 13:37:03 +00:00
};
2001-04-15 17:35:52 +00:00
$noconns++;
2001-08-08 15:56:49 +00:00
dbg("Connection created ($noconns)") if isdbg('connll');
2001-03-02 13:37:03 +00:00
return bless $conn, $class;
}
sub set_error
{
my $conn = shift;
my $callback = shift;
$conn->{eproc} = $callback;
set_event_handler($conn->{sock}, error => $callback) if exists $conn->{sock};
}
sub set_rproc
{
my $conn = shift;
my $callback = shift;
$conn->{rproc} = $callback;
}
sub blocking
{
return unless $blocking_supported;
# Make the handle stop blocking, the Windows way.
2002-01-11 00:38:14 +00:00
if ($main::iswin) {
# 126 is FIONBIO (some docs say 0x7F << 16)
ioctl( $_[0],
0x80000000 | (4 << 16) | (ord('f') << 8) | 126,
2002-01-11 00:38:14 +00:00
"$_[1]"
);
} else {
2002-01-11 00:41:31 +00:00
my $flags = fcntl ($_[0], F_GETFL, 0);
if ($_[1]) {
$flags &= ~O_NONBLOCK;
} else {
$flags |= O_NONBLOCK;
}
fcntl ($_[0], F_SETFL, $flags);
}
}
2001-03-05 21:11:15 +00:00
# save it
sub conns
{
my $pkg = shift;
my $call = shift;
my $ref;
if (ref $pkg) {
$call = $pkg->{call} unless $call;
return undef unless $call;
2001-08-08 15:56:49 +00:00
dbg("changing $pkg->{call} to $call") if isdbg('connll') && exists $pkg->{call} && $call ne $pkg->{call};
2001-04-15 17:35:52 +00:00
delete $conns{$pkg->{call}} if exists $pkg->{call} && exists $conns{$pkg->{call}} && $pkg->{call} ne $call;
2001-03-05 21:11:15 +00:00
$pkg->{call} = $call;
$ref = $conns{$call} = $pkg;
2001-08-08 15:56:49 +00:00
dbg("Connection $pkg->{cnum} $call stored") if isdbg('connll');
2001-03-05 21:11:15 +00:00
} else {
$ref = $conns{$call};
}
return $ref;
}
# this is only called by any dependent processes going away unexpectedly
sub pid_gone
{
my ($pkg, $pid) = @_;
my @pid = grep {$_->{pid} == $pid} values %conns;
2001-04-09 22:06:29 +00:00
foreach my $p (@pid) {
&{$p->{eproc}}($p, "$pid has gorn") if exists $p->{eproc};
$p->disconnect;
2001-03-05 21:11:15 +00:00
}
}
1998-06-15 23:20:05 +00:00
#-----------------------------------------------------------------
# Send side routines
sub connect {
2001-03-02 13:37:03 +00:00
my ($pkg, $to_host, $to_port, $rproc) = @_;
2001-03-04 13:41:21 +00:00
# Create a connection end-point object
my $conn = $pkg;
unless (ref $pkg) {
$conn = $pkg->new($rproc);
}
$conn->{peerhost} = $to_host;
$conn->{peerport} = $to_port;
$conn->{sort} = 'Outgoing';
2001-03-04 13:41:21 +00:00
1998-06-15 23:20:05 +00:00
# Create a new internet socket
my $sock = IO::Socket::INET->new();
1998-06-15 23:20:05 +00:00
return undef unless $sock;
my $proto = getprotobyname('tcp');
$sock->socket(AF_INET, SOCK_STREAM, $proto) or return undef;
blocking($sock, 0);
$conn->{blocking} = 0;
my $ip = gethostbyname($to_host);
2001-03-14 17:00:06 +00:00
# my $r = $sock->connect($to_port, $ip);
my $r = connect($sock, pack_sockaddr_in($to_port, $ip));
2001-03-17 13:30:00 +00:00
return undef unless $r || _err_will_block($!);
2001-03-02 13:37:03 +00:00
$conn->{sock} = $sock;
1998-06-15 23:20:05 +00:00
2001-03-02 13:37:03 +00:00
if ($conn->{rproc}) {
my $callback = sub {$conn->_rcv};
set_event_handler ($sock, read => $callback);
1998-06-15 23:20:05 +00:00
}
2001-03-02 13:37:03 +00:00
return $conn;
1998-06-15 23:20:05 +00:00
}
sub disconnect {
my $conn = shift;
return if exists $conn->{disconnecting};
$conn->{disconnecting} = 1;
1998-06-15 23:20:05 +00:00
my $sock = delete $conn->{sock};
2001-03-02 13:37:03 +00:00
$conn->{state} = 'E';
$conn->{timeout}->del if $conn->{timeout};
2001-03-05 21:11:15 +00:00
# be careful to delete the correct one
my $call;
if ($call = $conn->{call}) {
2001-03-05 21:11:15 +00:00
my $ref = $conns{$call};
delete $conns{$call} if $ref && $ref == $conn;
}
$call ||= 'unallocated';
2001-08-08 15:56:49 +00:00
dbg("Connection $conn->{cnum} $call disconnected") if isdbg('connll');
2001-03-05 21:11:15 +00:00
# get rid of any references
for (keys %$conn) {
if (ref($conn->{$_})) {
delete $conn->{$_};
}
}
if (defined($sock)) {
set_event_handler ($sock, read => undef, write => undef, error => undef);
shutdown($sock, 3);
close($sock);
}
unless ($main::is_win) {
kill 'TERM', $conn->{pid} if exists $conn->{pid};
}
1998-06-15 23:20:05 +00:00
}
sub send_now {
my ($conn, $msg) = @_;
2001-03-02 13:37:03 +00:00
$conn->enqueue($msg);
1998-06-15 23:20:05 +00:00
$conn->_send (1); # 1 ==> flush
}
sub send_later {
my ($conn, $msg) = @_;
2001-03-02 13:37:03 +00:00
$conn->enqueue($msg);
1998-06-15 23:20:05 +00:00
my $sock = $conn->{sock};
return unless defined($sock);
set_event_handler ($sock, write => sub {$conn->_send(0)});
1998-06-15 23:20:05 +00:00
}
2001-03-02 13:37:03 +00:00
sub enqueue {
my $conn = shift;
push (@{$conn->{outqueue}}, defined $_[0] ? $_[0] : '');
1998-06-15 23:20:05 +00:00
}
sub _send {
my ($conn, $flush) = @_;
my $sock = $conn->{sock};
return unless defined($sock);
2001-03-02 23:07:59 +00:00
my $rq = $conn->{outqueue};
1998-06-15 23:20:05 +00:00
# If $flush is set, set the socket to blocking, and send all
# messages in the queue - return only if there's an error
# If $flush is 0 (deferred mode) make the socket non-blocking, and
# return to the event loop only after every message, or if it
# is likely to block in the middle of a message.
if ($conn->{blocking} != $flush) {
blocking($sock, $flush);
$conn->{blocking} = $flush;
}
1998-06-15 23:20:05 +00:00
my $offset = (exists $conn->{send_offset}) ? $conn->{send_offset} : 0;
while (@$rq) {
my $msg = $rq->[0];
my $mlth = length($msg);
my $bytes_to_write = $mlth - $offset;
1998-06-15 23:20:05 +00:00
my $bytes_written = 0;
confess("Negative Length! msg: '$msg' lth: $mlth offset: $offset") if $bytes_to_write < 0;
while ($bytes_to_write > 0) {
1998-06-15 23:20:05 +00:00
$bytes_written = syswrite ($sock, $msg,
$bytes_to_write, $offset);
if (!defined($bytes_written)) {
if (_err_will_block($!)) {
# Should happen only in deferred mode. Record how
# much we have already sent.
$conn->{send_offset} = $offset;
# Event handler should already be set, so we will
# be called back eventually, and will resume sending
return 1;
} else { # Uh, oh
&{$conn->{eproc}}($conn, $!) if exists $conn->{eproc};
$conn->disconnect;
1998-06-15 23:20:05 +00:00
return 0; # fail. Message remains in queue ..
}
2001-03-30 20:13:51 +00:00
} elsif (isdbg('raw')) {
my $call = $conn->{call} || 'none';
dbgdump('raw', "$call send $bytes_written: ", $msg);
}
1998-06-15 23:20:05 +00:00
$offset += $bytes_written;
$bytes_to_write -= $bytes_written;
}
delete $conn->{send_offset};
$offset = 0;
shift @$rq;
2001-04-17 20:24:16 +00:00
#last unless $flush; # Go back to select and wait
1998-06-15 23:20:05 +00:00
# for it to fire again.
}
# Call me back if queue has not been drained.
2001-04-17 20:24:16 +00:00
unless (@$rq) {
set_event_handler ($sock, write => undef);
if (exists $conn->{close_on_empty}) {
&{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
$conn->disconnect;
}
1998-06-15 23:20:05 +00:00
}
1; # Success
}
2001-03-22 15:25:09 +00:00
sub dup_sock
{
my $conn = shift;
my $oldsock = $conn->{sock};
my $rc = $rd_callbacks{$oldsock};
my $wc = $wt_callbacks{$oldsock};
my $ec = $er_callbacks{$oldsock};
my $sock = $oldsock->new_from_fd($oldsock, "w+");
if ($sock) {
set_event_handler($oldsock, read=>undef, write=>undef, error=>undef);
$conn->{sock} = $sock;
set_event_handler($sock, read=>$rc, write=>$wc, error=>$ec);
$oldsock->close;
}
}
1998-06-15 23:20:05 +00:00
sub _err_will_block {
return 0 unless $blocking_supported;
return ($_[0] == $eagain || $_[0] == $ewouldblock || $_[0] == $einprogress);
1998-06-15 23:20:05 +00:00
}
sub close_on_empty
{
my $conn = shift;
$conn->{close_on_empty} = 1;
1998-06-15 23:20:05 +00:00
}
#-----------------------------------------------------------------
# Receive side routines
sub new_server {
2001-03-02 13:37:03 +00:00
@_ == 4 || die "Msg->new_server (myhost, myport, login_proc\n";
1998-06-15 23:20:05 +00:00
my ($pkg, $my_host, $my_port, $login_proc) = @_;
2001-03-02 13:37:03 +00:00
my $self = $pkg->new($login_proc);
$self->{sock} = IO::Socket::INET->new (
LocalAddr => "$my_host:$my_port",
# LocalPort => $my_port,
Listen => SOMAXCONN,
1998-06-15 23:20:05 +00:00
Proto => 'tcp',
2002-01-06 03:34:44 +00:00
Reuse => 1);
2001-03-02 13:37:03 +00:00
die "Could not create socket: $! \n" unless $self->{sock};
set_event_handler ($self->{sock}, read => sub { $self->new_client } );
2001-03-02 13:37:03 +00:00
return $self;
}
2002-01-11 00:38:14 +00:00
my $oldw = $^W;
$^W = 0;
eval "use Socket qw(IPPROTO_TCP TCP_NODELAY)";
2002-01-11 00:38:14 +00:00
$^W = $oldw;
if ($@ && !$main::inwin) {
sub IPPROTO_TCP {6;}
sub TCP_NODELAY {1;};
}
sub nolinger
{
my $conn = shift;
if (isdbg('sock')) {
my ($l, $t) = unpack "ll", getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER);
my $k = unpack 'l', getsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE);
my $n = unpack "l", getsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY);
dbg("Linger is: $l $t, keepalive: $k, nagle: $n");
2002-01-10 22:03:32 +00:00
}
2002-01-10 23:46:17 +00:00
setsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER, pack("ll", 0, 0)) or confess "setsockopt linger: $!";
setsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE, 1) or confess "setsockopt keepalive: $!";
setsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY, 1) or confess "setsockopt: $!" unless $main::iswin;
$conn->{sock}->autoflush(0);
if (isdbg('sock')) {
my ($l, $t) = unpack "ll", getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER);
my $k = unpack 'l', getsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE);
my $n = unpack "l", getsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY);
dbg("Linger is: $l $t, keepalive: $k, nagle: $n");
2002-01-10 22:03:32 +00:00
}
}
2001-03-02 13:37:03 +00:00
sub dequeue
{
my $conn = shift;
if ($conn->{msg} =~ /\n/) {
my @lines = split /\r?\n/, $conn->{msg};
if ($conn->{msg} =~ /\n$/) {
delete $conn->{msg};
} else {
$conn->{msg} = pop @lines;
}
for (@lines) {
&{$conn->{rproc}}($conn, defined $_ ? $_ : '');
}
2001-03-02 13:37:03 +00:00
}
1998-06-15 23:20:05 +00:00
}
sub _rcv { # Complement to _send
my $conn = shift; # $rcv_now complement of $flush
1998-06-15 23:20:05 +00:00
# Find out how much has already been received, if at all
my ($msg, $offset, $bytes_to_read, $bytes_read);
my $sock = $conn->{sock};
return unless defined($sock);
my @lines;
if ($conn->{blocking}) {
blocking($sock, 0);
$conn->{blocking} = 0;
}
$bytes_read = sysread ($sock, $msg, 1024, 0);
if (defined ($bytes_read)) {
if ($bytes_read > 0) {
2001-03-30 20:13:51 +00:00
if (isdbg('raw')) {
my $call = $conn->{call} || 'none';
dbgdump('raw', "$call read $bytes_read: ", $msg);
}
if ($conn->{echo}) {
my @ch = split //, $msg;
my $out;
for (@ch) {
if (/[\cH\x7f]/) {
$out .= "\cH \cH";
$conn->{msg} =~ s/.$//;
} else {
$out .= $_;
$conn->{msg} .= $_;
}
}
if (defined $out) {
set_event_handler ($sock, write => sub{$conn->_send(0)});
push @{$conn->{outqueue}}, $out;
}
} else {
$conn->{msg} .= $msg;
}
}
} else {
if (_err_will_block($!)) {
return ;
} else {
$bytes_read = 0;
}
1998-06-15 23:20:05 +00:00
}
FINISH:
if (defined $bytes_read && $bytes_read == 0) {
&{$conn->{eproc}}($conn, $!) if exists $conn->{eproc};
$conn->disconnect;
2001-03-02 13:37:03 +00:00
} else {
unless ($conn->{disable_read}) {
$conn->dequeue if exists $conn->{msg};
}
}
1998-06-15 23:20:05 +00:00
}
2001-03-02 13:37:03 +00:00
sub new_client {
my $server_conn = shift;
my $sock = $server_conn->{sock}->accept();
2001-03-30 11:16:44 +00:00
if ($sock) {
my $conn = $server_conn->new($server_conn->{rproc});
$conn->{sock} = $sock;
blocking($sock, 0);
$conn->nolinger;
$conn->{blocking} = 0;
2001-03-30 11:16:44 +00:00
my ($rproc, $eproc) = &{$server_conn->{rproc}} ($conn, $conn->{peerhost} = $sock->peerhost(), $conn->{peerport} = $sock->peerport());
$conn->{sort} = 'Incoming';
if ($eproc) {
$conn->{eproc} = $eproc;
set_event_handler ($sock, error => $eproc);
}
if ($rproc) {
$conn->{rproc} = $rproc;
my $callback = sub {$conn->_rcv};
set_event_handler ($sock, read => $callback);
} else { # Login failed
&{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
$conn->disconnect();
}
} else {
2001-08-08 15:56:49 +00:00
dbg("Msg: error on accept ($!)") if isdbg('err');
}
1998-06-15 23:20:05 +00:00
}
sub close_server
{
2001-03-02 13:37:03 +00:00
my $conn = shift;
set_event_handler ($conn->{sock}, read => undef, write => undef, error => undef );
2001-03-02 13:37:03 +00:00
$conn->{sock}->close;
}
# close all clients (this is for forking really)
sub close_all_clients
{
2001-04-09 22:06:29 +00:00
foreach my $conn (values %conns) {
$conn->disconnect;
}
}
sub disable_read
{
my $conn = shift;
set_event_handler ($conn->{sock}, read => undef);
return $_[0] ? $conn->{disable_read} = $_[0] : $_[0];
}
#
1998-06-15 23:20:05 +00:00
#----------------------------------------------------
# Event loop routines used by both client and server
sub set_event_handler {
shift unless ref($_[0]); # shift if first arg is package name
my ($handle, %args) = @_;
my $callback;
if (exists $args{'write'}) {
$callback = $args{'write'};
if ($callback) {
$wt_callbacks{$handle} = $callback;
$wt_handles->add($handle);
} else {
delete $wt_callbacks{$handle};
$wt_handles->remove($handle);
}
}
if (exists $args{'read'}) {
$callback = $args{'read'};
if ($callback) {
$rd_callbacks{$handle} = $callback;
$rd_handles->add($handle);
} else {
delete $rd_callbacks{$handle};
$rd_handles->remove($handle);
}
}
if (exists $args{'error'}) {
$callback = $args{'error'};
if ($callback) {
$er_callbacks{$handle} = $callback;
$er_handles->add($handle);
} else {
delete $er_callbacks{$handle};
$er_handles->remove($handle);
}
}
2001-03-02 13:37:03 +00:00
}
1998-06-15 23:20:05 +00:00
sub event_loop {
my ($pkg, $loop_count, $timeout) = @_; # event_loop(1) to process events once
my ($conn, $r, $w, $e, $rset, $wset, $eset);
1998-06-15 23:20:05 +00:00
while (1) {
2001-03-02 13:37:03 +00:00
# Quit the loop if no handles left to process
1998-06-15 23:20:05 +00:00
last unless ($rd_handles->count() || $wt_handles->count());
2001-03-02 13:37:03 +00:00
($rset, $wset, $eset) = IO::Select->select($rd_handles, $wt_handles, $er_handles, $timeout);
2001-03-02 13:37:03 +00:00
foreach $e (@$eset) {
&{$er_callbacks{$e}}($e) if exists $er_callbacks{$e};
}
1998-06-15 23:20:05 +00:00
foreach $r (@$rset) {
&{$rd_callbacks{$r}}($r) if exists $rd_callbacks{$r};
1998-06-15 23:20:05 +00:00
}
foreach $w (@$wset) {
&{$wt_callbacks{$w}}($w) if exists $wt_callbacks{$w};
}
2001-03-02 13:37:03 +00:00
Timer::handler;
2001-03-02 13:37:03 +00:00
1998-06-15 23:20:05 +00:00
if (defined($loop_count)) {
last unless --$loop_count;
}
}
}
sub sleep
{
my ($pkg, $interval) = @_;
my $now = time;
while (time - $now < $interval) {
$pkg->event_loop(10, 0.01);
}
}
sub DESTROY
{
my $conn = shift;
my $call = $conn->{call} || 'unallocated';
my $host = $conn->{peerhost} || '';
my $port = $conn->{peerport} || '';
2001-08-08 15:56:49 +00:00
dbg("Connection $conn->{cnum} $call [$host $port] being destroyed") if isdbg('connll');
$noconns--;
}
1998-06-15 23:20:05 +00:00
1;
__END__