package AnyEvent::WebSocket::Server; use strict; use warnings; use Carp; use AnyEvent::Handle; use Protocol::WebSocket::Handshake::Server; use Try::Tiny; use AnyEvent::WebSocket::Connection;
our $VERSION = "0.10";
sub new { my ($class, %args) = @; my $validator = $args{validator}; if(defined($validator) && ref($validator) ne "CODE") { croak "validator parameter must be a code-ref"; } my $handshake = defined($args{handshake}) ? $args{handshake} : defined($validator) ? sub { my ($req, $res) = @; return ($res, $validator->($req)); } : sub { $[1] }; if(ref($handshake) ne "CODE") { croak "handshake parameter must be a code-ref"; } my $self = bless { handshake => $handshake, map { ($ => $args{$_}) } qw(ssl_key_file ssl_cert_file max_payload_size), }, $class; return $self; }
sub _create_onerror { my ($cv) = @; return sub { my ($handle, $fatal, $message) = @_; if($fatal) { $cv->croak("connection error: $message"); }else { warn $message; } }; }
sub _handle_argstls { my ($self) = @; if(!defined($self->{ssl_key_file}) && !defined($self->{ssl_cert_file})) { return (); } if(!defined($self->{ssl_cert_file})) { croak "Only ssl_key_file is specified. You need to specify ssl_cert_file, too."; } return ( tls => "accept", tls_ctx => { cert_file => $self->{ssl_cert_file}, defined($self->{ssl_key_file}) ? (key_file => $self->{ssl_key_file}) : () } ); }
sub _do_handshake { my ($self, $cvconnection, $fh, $handshake) = @; my $handshake_code = $self->{handshake}; my $handle = AnyEvent::Handle->new( $self->_handle_args_tls, fh => $fh, on_error => _create_on_error($cv_connection) ); my $read_cb = sub {
## is imported in this closure so that $handle becomes
## half-immortal.
try {
if(!defined($handshake->parse($handle->{rbuf}))) {
die "handshake error: " . $handshake->error . "\n";
}
return if !$handshake->is_done;
if($handshake->version ne "draft-ietf-hybi-17") {
die "handshake error: unsupported WebSocket protocol version " . $handshake->version . "\n";
}
my ($res, @other_results) = $handshake_code->($handshake->req, $handshake->res);
if(!defined($res)) {
croak "handshake response was undef";
}
if(ref($res) eq "Protocol::WebSocket::Response") {
$res = $res->to_string;
}
$handle->push_write("$res");
$cv_connection->send(
AnyEvent::WebSocket::Connection->new(handle => $handle, max_payload_size => $self->{max_payload_size}),
@other_results
);
undef $handle;
undef $cv_connection;
}catch {
my $e = shift;
$cv_connection->croak($e);
undef $handle;
undef $cv_connection;
};
};
$handle->{rbuf} = "";
$read_cb->(); ## in case the whole request is already consumed
$handle->on_read($read_cb) if defined $handle;
}
sub establish { my ($self, $fh) = @_; my $cv_connection = AnyEvent->condvar; if(!defined($fh)) { $cv_connection->croak("fh parameter is mandatory for establish() method"); return $cv_connection; } my $handshake = Protocol::WebSocket::Handshake::Server->new; $self->_do_handshake($cv_connection, $fh, $handshake); return $cv_connection; }
sub establishpsgi { my ($self, $env, $fh) = @; my $cv_connection = AnyEvent->condvar; if(!defined($env)) { $cv_connection->croak("psgi_env parameter is mandatory"); return $cv_connection; } $fh = $env->{"psgix.io"} if not defined $fh; if(!defined($fh)) { $cv_connection->croak("No connection file handle provided. Maybe the PSGI server does not support psgix.io extension."); return $cv_connection; } my $handshake = Protocol::WebSocket::Handshake::Server->new_from_psgi($env); $self->_do_handshake($cv_connection, $fh, $handshake); return $cv_connection; }
1;
END
=pod
=head1 NAME
AnyEvent::WebSocket::Server - WebSocket server for AnyEvent
=head1 SYNOPSIS
use AnyEvent::Socket qw(tcp_server);
use AnyEvent::WebSocket::Server;
my $server = AnyEvent::WebSocket::Server->new();
my $tcp_server;
$tcp_server = tcp_server undef, 8080, sub {
my ($fh) = @_;
$server->establish($fh)->cb(sub {
my $connection = eval { shift->recv };
if($@) {
warn "Invalid connection request: $@\n";
close($fh);
return;
}
$connection->on(each_message => sub {
my ($connection, $message) = @_;
$connection->send($message); ## echo
});
$connection->on(finish => sub {
undef $connection;
});
});
};
=head1 DESCRIPTION
This class is an implementation of the WebSocket server in an L
=over
=item *
Currently this module supports WebSocket protocol version 13 only. See L<RFC 6455|https://tools.ietf.org/html/rfc6455> for detail.
=back
=head1 CLASS METHODS
=head2 $server = AnyEvent::WebSocket::Server->new(%args)
The constructor.
Fields in C<%args> are:
=over
=item C
A subroutine reference to customize the WebSocket handshake process. You can use this option to validate and preprocess the handshake request and customize the handshake response.
For each request, the handshake code is called like
($response, @other_results) = $handshake->($request, $default_response)
where C<$request> is a L
The return value C<$response> is the handshake response returned to the client.
It must be either a L
The argument C<$default_response> is a L
handshake => sub { $_[1] }
is the minimal valid code for C
In addition to C<$response>, you can return C<@other_results> if you want. Those C<@other_results> can be obtained later from the condition variable of C<establish()> method.
If you throw an exception from C<$handshake> code, we think you reject the C<$request>. In this case, the condition variable of C<establish()> method croaks.
=item C
B<< This option is only for backward compatibility. Use C
A subroutine reference to validate the incoming WebSocket request. If omitted, it accepts the request.
The validator is called like
@other_results = $validator->($request)
where C<$request> is a L
If you reject the C<$request>, throw an exception.
If you accept the C<$request>, don't throw any exception. The return values of the C<$validator> are sent to the condition variable of C<establish()> method.
=item C
A string of the filepath to the SSL/TLS private key file in PEM format.
If you set this option, you have to set C
If this option or C
=item C
A string of the filepath to the SSL/TLS certificate file in PEM format.
The file may contain both the certificate and corresponding private key. In that case, C
If this option is set, L
=item C
The maximum payload size for received frames. Currently defaults to whatever L
=back
=head1 OBJECT METHODS
=head2 $conn_cv = $server->establish($fh)
Establish a WebSocket connection to a client via the given connection filehandle.
C<$fh> is a filehandle for a connection socket, which is usually obtained by C<tcp_server()> function in L
Return value C<$conn_cv> is an L
In success, C<< $conn_cv->recv >> returns an L
($connection, @other_results) = eval { $conn_cv->recv };
## or in scalar context, it returns $connection only.
$connection = eval { $conn_cv->recv };
if($@) {
my $error = $@;
...
return;
}
do_something_with($connection);
You can use C<$connection> to send and receive data through WebSocket. See L
Note that even if C<$conn_cv> croaks, the connection socket C<$fh> remains intact. You can communicate with the client via C<$fh> unless the client has already closed it.
=head2 $conn_cv = $server->establish_psgi($psgi_env, [$fh])
The same as C<establish()> method except that the request is in the form of L
C<$psgi_env> is a L
=head1 EXAMPLES
=head2 handshake option
The following server accepts WebSocket URLs such as Cws://localhost:8080/2013/10.
use AnyEvent::Socket qw(tcp_server);
use AnyEvent::WebSocket::Server;
my $server = AnyEvent::WebSocket::Server->new(
handshake => sub {
my ($req, $res) = @_;
## $req is a Protocol::WebSocket::Request
## $res is a Protocol::WebSocket::Response
## validating and parsing request.
my $path = $req->resource_name;
die "Invalid format" if $path !~ m{^/(\d{4})/(\d{2})};
my ($year, $month) = ($1, $2);
die "Invalid month" if $month <= 0 || $month > 12;
## setting WebSocket subprotocol in response
$res->subprotocol("mytest");
return ($res, $year, $month);
}
);
tcp_server undef, 8080, sub {
my ($fh) = @_;
$server->establish($fh)->cb(sub {
my ($conn, $year, $month) = eval { shift->recv };
if($@) {
my $error = $@;
error_response($fh, $error);
return;
}
$conn->send("You are accessing YEAR = $year, MONTH = $month");
$conn->on(finish => sub { undef $conn });
});
};
=head1 SEE ALSO
=over
=item L
L
=item L
Minimalistic stand-alone WebSocket server. It uses its own event loop mechanism.
=item L
Stand-alone WebSocket server and client implementation using L
=back
=head1 AUTHOR
Toshio Ito, C<<
=head1 CONTRIBUTORS
mephinet (Philipp Gortan)
=head1 REPOSITORY
Lhttps://github.com/debug-ito/AnyEvent-WebSocket-Server
=head1 ACKNOWLEDGEMENTS
Graham Ollis (plicease) - author of L
=head1 LICENSE AND COPYRIGHT
Copyright 2013 Toshio Ito.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.