——————use
strict;
use
warnings;
package
Net::Server::Coro;
use
AnyEvent;
use
Coro;
use
Coro::Specific;
use
Coro::Util ();
use
Socket ();
$VERSION
=
'1.3'
;
=head1 NAME
Net::Server::Coro - A co-operative multithreaded server using Coro
=head1 SYNOPSIS
use Coro;
use base qw/Net::Server::Coro/;
__PACKAGE__->new->run;
sub process_request {
...
cede;
...
}
=head1 DESCRIPTION
L<Net::Server::Coro> implements multithreaded server for the
L<Net::Server> architecture, using L<Coro> and L<Coro::Socket> to make
all reads and writes non-blocking. Additionally, it supports
non-blocking SSL negotiation.
=head1 METHODS
Most methods are inherited from L<Net::Server> -- see it for further
usage details.
=cut
=head2 new
Create new Net::Server::Coro object. It accepts these parameters (in
addition to L<Net::Server> parameters):
=over
=item server_cert
Path to the SSL certificate that the server should use. This can be
either relative or absolute path. Defaults to
F<certs/server-cert.pem>
=item server_key
Path to the SSL certificate key that the server should use. This can
be either relative or absolute path. Defaults to
F<certs/server-key.pem>
=back
=cut
sub
new {
my
$class
=
shift
;
my
%args
=
@_
;
my
$self
=
$class
->SUPER::new(
@_
);
# Set up certificates
$self
->server_cert(
$args
{
'server_cert'
})
if
exists
$args
{
'server_cert'
};
$self
->server_key(
$args
{
'server_key'
})
if
exists
$args
{
'server_key'
};
return
$self
;
}
sub
post_bind_hook {
my
$self
=
shift
;
my
$prop
=
$self
->{server};
delete
$prop
->{
select
};
# set up coro::specific variables
foreach
my
$key
(
qw(client sockaddr sockport sockhost peeraddr peerport peerhost peername)
) {
tie
$prop
->{
$key
}, Coro::Specific::;
}
}
=head2 proto_object HOST, PORT, PROTO
Wraps socket creation, turning all socket types into
L<Net::Server::Proto::Coro> objects.
=cut
sub
proto_object {
my
$self
=
shift
;
my
(
$info
) =
@_
;
my
$is_ssl
= (
$info
->{proto} =~ /^SSL(EAY)?$/);
my
$socket
=
$self
->SUPER::proto_object(
{ %{
$info
},
$is_ssl
? (
proto
=>
"TCP"
) : () },
);
$socket
= Net::Server::Proto::Coro->new_from_fh(
$socket
,
forward_class
=>
ref
(
$socket
),
server_cert
=>
$self
->server_cert,
server_key
=>
$self
->server_key,
expects_ssl
=>
$is_ssl
,
);
return
$socket
;
}
sub
coro_instance {
my
$self
=
shift
;
my
$fh
=
shift
;
my
$prop
=
$self
->{server};
$Coro::current
->desc(
"Active connection"
);
$prop
->{client} =
$fh
;
$self
->run_client_connection;
}
sub
get_client_info {
my
$self
=
shift
;
my
$prop
=
$self
->{
'server'
};
my
$client
=
shift
||
$prop
->{
'client'
};
if
(
$client
->sockname) {
$prop
->{
'sockaddr'
} =
$client
->sockhost;
$prop
->{
'sockport'
} =
$client
->sockport;
}
else
{
@{
$prop
}{
qw(sockaddr sockhost sockport)
} = (
$ENV
{
'REMOTE_HOST'
} ||
'0.0.0.0'
,
'inet.test'
, 0);
# commandline
}
my
$addr
;
if
(
$prop
->{
'peername'
} =
$client
->peername) {
$addr
=
$client
->peeraddr;
$prop
->{
'peeraddr'
} =
$client
->peerhost;
$prop
->{
'peerport'
} =
$client
->peerport;
}
else
{
@{
$prop
}{
qw(peeraddr peerhost peerport)
} = (
'0.0.0.0'
,
'inet.test'
, 0);
# commandline
}
if
(
$addr
&&
defined
$prop
->{
'reverse_lookups'
}) {
$prop
->{peerhost} = Coro::Util::
gethostbyaddr
(
$addr
, Socket::AF_INET);
}
$self
->
log
(3,
$self
->log_time
.
" CONNECT "
.
$client
->NS_proto
.
" Peer: \"[$prop->{'peeraddr'}]:$prop->{'peerport'}\""
.
" Local: \"[$prop->{'sockaddr'}]:$prop->{'sockport'}\""
)
if
$prop
->{
'log_level'
} && 3 <=
$prop
->{
'log_level'
};
}
=head2 loop
The main loop uses starts a number of L<Coro> coroutines:
=over 4
=item *
One for each listening socket.
=item *
One for each active connection. Since these may respawn on a firlay
frequent basis, L<Coro/async_pool> is used to maintain a pool of
coroutines.
=item *
An L<AnyEvent> infinite wait, which equates to the "run the event loop."
=back
=cut
sub
loop {
my
$self
=
shift
;
my
$prop
=
$self
->{server};
$prop
->{no_client_stdout} = 1;
for
my
$socket
( @{
$prop
->{sock} } ) {
async {
$Coro::current
->desc(
"Listening on port @{[$socket->sockport]}"
);
while
(1) {
my
$accepted
=
scalar
$socket
->
accept
;
next
unless
$accepted
;
async_pool \
&coro_instance
,
$self
,
$accepted
;
}
};
}
async {
# We want this to be higher priority so it gets timeslices
# when other things cede; this guarantees that we notice
# socket activity and deal.
$Coro::current
->prio(3);
$Coro::current
->desc(
"Event loop"
);
my
$exit
= AnyEvent->condvar;
my
@shutdown
=
map
{ AnyEvent->signal(
signal
=>
$_
,
cb
=>
sub
{
$self
->server_close;
$exit
->
send
; }
) }
qw/INT TERM QUIT/
;
$exit
->
recv
;
};
schedule;
}
=head2 server_cert [PATH]
Gets or sets the path of the SSL certificate used by the server.
=cut
sub
server_cert {
my
$self
=
shift
;
if
(
@_
) {
my
$cert
=
shift
;
die
"SSL certificate file ($cert) is not readable!"
unless
-r
$cert
;
$self
->{
'server_cert'
} =
$cert
;
}
return
$self
->{
'server_cert'
};
}
=head2 server_key [PATH]
Gets or sets the path of the SSL key file used by the server.
=cut
sub
server_key {
my
$self
=
shift
;
if
(
@_
) {
my
$key
=
shift
;
die
"SSL key file ($key) is not readable!"
unless
-r
$key
;
$self
->{
'server_key'
} =
$key
;
}
return
$self
->{
'server_key'
};
}
=head1 DEPENDENCIES
L<Coro>, L<AnyEvent>, L<Net::Server>
=head1 BUGS AND LIMITATIONS
The client filehandle, socket, and peer information all use
L<Coro::Specific> in order to constrain their information to their
coroutine. Attempting to access them from a different coroutine will
yield possibly unexpected results.
Generally, all those of L<Coro>. Please report any bugs or feature
requests specific to L<Net::Server::Coro> to
C<bug-net-server-coro@rt.cpan.org>, or through the web interface at
=head1 AUTHORS
Alex Vandiver C<< <alexmv@bestpractical.com> >>; code originally from
Audrey Tang C<< <cpan@audreyt.org> >>
=head1 COPYRIGHT
Copyright 2006 by Audrey Tang <cpan@audreyt.org>
Copyright 2007-2008 by Best Practical Solutions
This software is released under the MIT license cited below.
=head2 The "MIT" License
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=cut
## Due to outstanding rt.cpan.org #31437 for Net::Server
package
# Hide from PAUSE indexer
Net::Server::Proto::TCP;
no
warnings
'redefine'
;
sub
accept
{
my
(
$sock
,
$class
) = (
@_
);
my
(
$client
,
$peername
) =
$sock
->SUPER::
accept
(
$class
);
if
(
defined
$client
) {
$client
->NS_port(
$sock
->NS_port);
}
return
wantarray
? (
$client
,
$peername
) :
$client
;
}
1;