1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
# This file is copyright (C) 2001 Andrew Suffield
# <asuffield@freenode.net>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
package Dancer::Proxy::Connection;
use strict;
use warnings;
use IO::Select;
use IO::Socket;
use Fcntl;
use POSIX;
use Tie::RefHash;
use Carp;
my $select = IO::Select->new();
my %ports = ();
my %socket = ();
sub _nonblock
{
my $socket = shift;
my $flags = fcntl($socket, F_GETFL, 0)
or die "Can't get flags for socket: $!\n";
fcntl($socket, F_SETFL, $flags | O_NONBLOCK)
or die "Can't set O_NONBLOCK on socket: $!\n";
}
sub new_listener
{
my $self = {};
my $port = shift;
my $addr = shift;
$self->{SOCKET} = IO::Socket::INET->new(LocalPort => $port,
Listen => SOMAXCONN,
ReuseAddr => 1,
(defined $addr ? (LocalAddr => $addr) : ()),
Type => SOCK_STREAM)
or carp("Couldn't create a listener on port $port: $@\n"), return undef;
_nonblock($self->{SOCKET});
$select->add($self->{SOCKET});
$socket{$self->{SOCKET}} = $self;
$self->{TYPE} = 'listener';
$self->{INBUF} = '';
$self->{OUTBUF} = '';
$self->{EVENTS} = {map {$_ => []} qw/accept message/};
bless ($self);
return $self;
}
sub new_connection
{
my $self = {};
my $peer = shift;
my $port = shift;
$self->{SOCKET} = IO::Socket::INET->new(PeerAddr => $peer,
PeerPort => $port)
or carp("Couldn't create a connection to $peer:$port: $@\n"), return undef;
_nonblock($self->{SOCKET});
$select->add($self->{SOCKET});
$socket{$self->{SOCKET}} = $self;
$self->{TYPE} = 'connected';
$self->{INBUF} = '';
$self->{OUTBUF} = '';
$self->{EVENTS} = {map {$_ => []} qw/accept message/};
bless ($self);
return $self;
}
sub _accept_connection
{
my $self = {};
my $sock = shift;
_nonblock($sock);
$select->add($sock);
$self->{SOCKET} = $sock;
$self->{TYPE} = 'connected';
$self->{INBUF} = '';
$self->{OUTBUF} = '';
$self->{EVENTS} = {map {$_ => []} qw/accept message/};
$socket{$sock} = $self;
bless $self;
return $self;
}
sub register
{
my $self = shift;
my $event = shift;
my $sub = shift;
push @{$self->{EVENTS}{$event}}, {sub => $sub, parms => \@_};
}
sub unregister
{
my $self = shift;
my $event = shift;
@{$self->{EVENTS}{$event}} = grep {$_ != $event} @{$self->{EVENTS}{$event}};
}
sub type
{
my $self = shift;
return $self->{TYPE};
}
sub close
{
my $self = shift;
my $reason = shift || "";
return if $self->{DESTROYING};
$self->{DESTROYING}++;
my $socket = $self->{SOCKET};
undef $self->{SOCKET};
foreach my $handler (@{$self->{EVENTS}{close}})
{
$handler->{sub}->($self, $handler->{parms});
}
$select->remove($socket);
if (defined $socket)
{
# Don't want to know about it if these fail
eval
{
$socket->send("ERROR :$reason\r\n");
$socket->close;
};
undef $socket;
}
# Delete this to protect against loops
delete $self->{EVENTS};
delete $socket{$self};
}
sub DESTROY
{
my $self = shift;
$self->close();
}
sub send
{
my $self = shift;
my $data = shift;
$self->{OUTBUF} .= $data;
}
sub poll
{
my %ready = ();
tie %ready, 'Tie::RefHash';
return 0 unless $select->count;
foreach my $s ($select->can_read(1))
{
my $conn = $socket{$s};
if ($conn->{TYPE} eq 'listener')
{
my $new_sock = $s->accept();
if (defined $new_sock)
{
my $new_conn = _accept_connection $new_sock;
HANDLER: foreach my $handler (@{$conn->{EVENTS}{accept}})
{
last HANDLER unless defined $handler->{sub}->($new_conn, $conn, $handler->{parms});
}
}
}
if ($conn->{TYPE} eq 'connected')
{
my $data = '';
# <sigh> it's possible that the socket was wiped out earlier in this loop
next unless defined $conn->{SOCKET};
my $rv = $conn->{SOCKET}->recv($data, POSIX::BUFSIZ, 0);
unless (defined $rv and length $data)
{
# Bad, connection might as well be closed
$conn->close("Read error");
next;
}
$conn->{INBUF} .= $data;
while ($conn->{INBUF} =~ s/^(.*?\r?\n)//)
{
push @{$ready{$conn}}, $1;
}
}
}
foreach my $conn (keys %ready)
{
MESSAGE: foreach my $msg (@{$ready{$conn}})
{
foreach my $handler (@{$conn->{EVENTS}{message}})
{
last MESSAGE unless defined $handler->{sub}->($msg, $handler->{parms});
}
}
}
foreach my $s ($select->can_write(1))
{
my $conn = $socket{$s};
next unless length $conn->{OUTBUF};
my $rv = $conn->{SOCKET}->send($conn->{OUTBUF}, 0);
unless (defined $rv)
{
carp "Select said I could write, but send failed\n";
next;
}
if ($rv == length $conn->{OUTBUF} || $! == POSIX::EWOULDBLOCK)
{
# Delete $rv characters from the buffer, we sent them
substr($conn->{OUTBUF}, 0, $rv) = '';
}
else
{
# Something went wrong
$conn->close("Write error");
}
}
return 1;
}
1;
|