/usr/share/perl5/AnyEvent/Handle/UDP.pm is in libanyevent-handle-udp-perl 0.048-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 | package AnyEvent::Handle::UDP;
$AnyEvent::Handle::UDP::VERSION = '0.048';
use strict;
use warnings;
use AnyEvent ();
use AnyEvent::Util ();
use AnyEvent::Socket ();
use Carp ();
use Errno ();
use Scalar::Util ();
use Socket ();
use Symbol ();
BEGIN {
*subname = eval { require Sub::Name } ? \&Sub::Name::subname : sub { $_[1] };
}
use namespace::clean;
my %non_fatal = map { ( $_ => 1 ) } Errno::EAGAIN, Errno::EWOULDBLOCK, Errno::EINTR;
sub new {
my ($class, %args) = @_;
my $self = bless {
on_recv => $args{on_recv} || Carp::croak('on_recv not given'),
reuse_addr => exists $args{reuse_addr} ? !!$args{reuse_addr} : 1,
receive_size => $args{receive_size} || 1500,
family => $args{family} || 0,
autoflush => $args{autoflush} || 0,
buffers => [],
}, $class;
$self->{$_} = $args{$_} for grep { exists $args{$_} } qw/on_drain on_error on_timeout on_rtimeout on_wtimeout/;
$self->{$_} = AE::now() for qw/activity ractivity wactivity/;
$self->{fh} = bless Symbol::gensym(), 'IO::Socket';
$self->_bind_to($self->{fh}, $args{bind}) if exists $args{bind};
$self->_connect_to($self->{fh}, $args{connect}) if exists $args{connect};
$self->$_($args{$_}) for grep { exists $args{$_} } qw/timeout rtimeout wtimeout/;
$self->_drained;
return $self;
}
sub _insert {
my ($name, $sub) = @_;
no strict 'refs';
*{$name} = subname $name, $sub;
}
for my $name (qw/on_recv on_error on_timeout on_rtimeout on_wtimeout autoflush receive_size/) {
_insert($name, sub {
my $self = shift;
$self->{$name} = shift if @_;
return $self->{$name};
});
}
for my $name (qw/sockname peername/) {
_insert($name, sub {
my $self = shift;
return $self->{fh}->$name;
});
}
sub fh {
my $self = shift;
return $self->{fh};
}
sub on_drain {
my $self = shift;
if (@_) {
$self->{on_drain} = shift;
$self->_drained if not @{ $self->{buffers} };
}
return $self->{on_drain};
}
sub _drained {
my $self = shift;
$self->{on_drain}->($self) if defined $self->{on_drain};
}
for my $dir ('', 'r', 'w') {
my $timeout = "${dir}timeout";
my $activity = "${dir}activity";
my $on_timeout = "on_$timeout";
my $timer = "${dir}timer";
my $clear_timeout = "clear_$timeout";
my $timeout_reset = "${timeout}_reset";
my $callback;
$callback = sub {
my $self = shift;
if (not exists $self->{$timeout} or not $self->{fh}) {
delete $self->{$timer};
return;
}
my $now = AE::now;
my $after = $self->{$activity} + $self->{$timeout} - $now;
if ($after <= 0) {
$self->{$activity} = $now;
my $time = $self->{$on_timeout};
my $error = do { local $! = Errno::ETIMEDOUT; "$!" };
$time ? $time->($self) : $self->_error->(0, $error);
return if not exists $self->{$timeout};
}
Scalar::Util::weaken($self);
return if not $self;
$self->{$timer} = AE::timer($after, 0, sub {
delete $self->{$timer};
$callback->($self);
});
};
_insert($timeout, sub {
my $self = shift;
if (@_) {
my $value = shift;
$self->{$timeout} = $value;
if ($value == 0) {
delete $self->{$timer};
delete $self->{$timeout};
return;
}
else {
$callback->($self);
}
}
return $self->{$timeout};
});
_insert($clear_timeout, sub {
my $self = shift;
delete $self->{$timeout};
return;
});
_insert($timeout_reset, sub {
my $self = shift;
$self->{$activity} = AE::now;
});
}
sub bind_to {
my ($self, $addr) = @_;
return $self->_bind_to($self->{fh}, $addr);
}
my $add_reader = sub {
my $self = shift;
$self->{reader} = AE::io($self->{fh}, 0, sub {
while (defined (my $addr = recv $self->{fh}, my ($buffer), $self->{receive_size}, 0)) {
$self->timeout_reset;
$self->rtimeout_reset;
$self->{on_recv}->($buffer, $self, $addr);
}
$self->_error(1, "Couldn't recv: $!") if not $non_fatal{$! + 0};
return;
});
};
sub _bind_to {
my ($self, $fh, $addr) = @_;
my $bind_to = sub {
my ($domain, $type, $proto, $sockaddr) = @_;
if (!Scalar::Util::openhandle($fh)) {
socket $fh, $domain, $type, $proto or redo;
AnyEvent::Util::fh_nonblocking $fh, 1;
setsockopt $fh, Socket::SOL_SOCKET, Socket::SO_REUSEADDR, 1 or $self->_error(1, "Couldn't set so_reuseaddr: $!") if $self->{reuse_addr};
$add_reader->($self);
}
bind $fh, $sockaddr or $self->_error(1, "Could not bind: $!");
};
if (ref $addr) {
my ($host, $port) = @{$addr};
_on_addr($self, $fh, $host, $port, $bind_to);
}
else {
$bind_to->(Socket::sockaddr_family($addr), Socket::SOCK_DGRAM, 0, $addr);
}
return;
}
sub connect_to {
my ($self, $addr) = @_;
return $self->_connect_to($self->{fh}, $addr);
}
sub _connect_to {
my ($self, $fh, $addr) = @_;
my $connect_to = sub {
my ($domain, $type, $proto, $sockaddr) = @_;
if (!Scalar::Util::openhandle($fh)) {
socket $fh, $domain, $type, $proto or redo;
AnyEvent::Util::fh_nonblocking $fh, 1;
$add_reader->($self);
}
connect $fh, $sockaddr or $self->_error(1, "Could not connect: $!");
};
if (ref $addr) {
my ($host, $port) = @{$addr};
_on_addr($self, $fh, $host, $port, $connect_to);
}
else {
$connect_to->(Socket::sockaddr_family($addr), Socket::SOCK_DGRAM, 0, $addr);
}
return;
}
my $get_family = sub {
my ($self, $fh) = @_;
return $self->{family} if !Scalar::Util::openhandle($fh) || !getsockname $fh;
my $family = Socket::sockaddr_family(getsockname $fh);
return +($family == Socket::AF_INET) ? 4 : ($family == Socket::AF_INET6) ? 6 : $self->{family};
};
sub _on_addr {
my ($self, $fh, $host, $port, $on_success) = @_;
AnyEvent::Socket::resolve_sockaddr($host, $port, 'udp', $get_family->($self, $fh), Socket::SOCK_DGRAM, sub {
my @targets = @_;
while (1) {
my $target = shift @targets or $self->_error(1, "Could not resolve $host:$port");
$on_success->(@{$target});
last;
}
});
return;
}
sub _error {
my ($self, $fatal, $message) = @_;
if (exists $self->{on_error}) {
$self->{on_error}->($self, $fatal, $message);
$self->destroy if $fatal;
} else {
$self->destroy;
Carp::croak("AnyEvent::Handle::UDP uncaught error: $message");
}
return;
}
sub push_send {
my ($self, $message, $to, $cv) = @_;
$to = AnyEvent::Socket::pack_sockaddr($to->[1], defined $to->[0] ? AnyEvent::Socket::parse_address($to->[0]) : Socket::INADDR_ANY) if ref $to;
$cv ||= AnyEvent::CondVar->new if defined wantarray;
if ($self->{autoflush} and ! @{ $self->{buffers} }) {
my $ret = $self->_send($message, $to, $cv);
$self->_push_writer($message, $to, $cv) if not defined $ret and $non_fatal{$! + 0};
$self->_drained if $ret;
}
else {
$self->_push_writer($message, $to, $cv);
}
return $cv;
}
sub _send {
my ($self, $message, $to, $cv) = @_;
my $ret = defined $to ? send $self->{fh}, $message, 0, $to : send $self->{fh}, $message, 0;
$self->_error(1, "Could not send: $!") if not defined $ret and !$non_fatal{$! + 0};
if (defined $ret) {
$self->timeout_reset;
$self->wtimeout_reset;
$cv->($ret) if defined $cv;
}
return $ret;
}
sub _push_writer {
my ($self, $message, $to, $condvar) = @_;
push @{ $self->{buffers} }, [ $message, $to, $condvar ];
$self->{writer} ||= AE::io $self->{fh}, 1, sub {
if (@{ $self->{buffers} }) {
while (my $entry = shift @{ $self->{buffers} }) {
my ($msg, $to, $cv) = @{$entry};
my $ret = $self->_send($msg, $to, $cv);
if (not defined $ret) {
unshift @{ $self->{buffers} }, $entry if $self->{buffers};
last;
}
}
}
else {
$self->_drained;
}
delete $self->{writer} if not @{ $self->{buffers} };
};
return $condvar;
}
sub destroy {
my $self = shift;
delete @{$self}{qw/reader writer/};
close $self->{fh};
$self->timeout(0);
$self->rtimeout(0);
$self->wtimeout(0);
return;
}
1;
# ABSTRACT: client/server UDP handles for AnyEvent
__END__
=pod
=encoding UTF-8
=head1 NAME
AnyEvent::Handle::UDP - client/server UDP handles for AnyEvent
=head1 VERSION
version 0.048
=head1 SYNOPSIS
my $echo_server = AnyEvent::Handle::UDP->new(
bind => ['0.0.0.0', 4000],
on_recv => sub {
my ($data, $ae_handle, $client_addr) = @_;
$ae_handle->push_send($data, $client_addr);
},
);
=head1 DESCRIPTION
This module is an abstraction around UDP sockets for use with AnyEvent.
=head1 ATTRIBUTES
=head2 on_recv
The callback for when a package arrives. It takes three arguments: the datagram, the handle and the address the datagram was received from.
=head2 on_error
The callback for when an error occurs. It takes three arguments: the handle, a boolean indicating the error is fatal or not, and the error message.
=head2 on_drain
This sets the callback that is called when the send buffer becomes empty. The callback takes the handle as its only argument.
=head2 autoflush
Always attempt to send data to the operating system immediately, without waiting for the loop to indicate the filehandle is write-ready.
=head2 receive_size
The buffer size for the receiving in bytes. It defaults to 1500, which is slightly more than the MTA on ethernet.
=head2 family
Sets the socket family. The default is C<0>, which means either IPv4 or IPv6. The values C<4> and C<6> mean IPv4 and IPv6 respectively.
=head2 fh
The underlying filehandle. Note that this doesn't cooperate with the C<connect> and C<bind> parameters.
=head2 reuse_addr
If true will enable quick reuse of the bound address
=head2 timeout
=head2 rtimeout
=head2 wtimeout
If non-zero, then these enables an "inactivity" timeout: whenever this many seconds pass without a successful read or write on the underlying file handle (or a call to C<timeout_reset>), the on_timeout callback will be invoked (and if that one is missing, a non-fatal ETIMEDOUT error will be raised).
There are three variants of the timeouts that work independently of each other, for both read and write (triggered when nothing was read OR written), just read (triggered when nothing was read), and just write: timeout, rtimeout and wtimeout, with corresponding callbacks on_timeout, on_rtimeout and on_wtimeout, and reset functions timeout_reset, rtimeout_reset, and wtimeout_reset.
Note that timeout processing is active even when you do not have any outstanding read or write requests: If you plan to keep the connection idle then you should disable the timeout temporarily or ignore the timeout in the corresponding on_timeout callback, in which case AnyEvent::Handle will simply restart the timeout.
Calling C<clear_timeout> (or setting it to zero, which does the same) disables the corresponding timeout.
=head2 on_timeout
=head2 on_rtimeout
=head2 on_wtimeout
The callback that's called whenever the inactivity timeout passes. If you return from this callback, then the timeout will be reset as if some activity had happened, so this condition is not fatal in any way.
=head1 METHODS
=head2 new
Create a new UDP handle. As arguments it accepts any attribute, as well as these two:
=over 4
=item * connect
Set the address to which datagrams are sent by default, and the only address from which datagrams are received. It must be either a packed sockaddr struct or an arrayref containing a hostname and a portnumber.
=item * bind
The address to bind the socket to. It must be either a packed sockaddr struct or an arrayref containing a hostname and a portnumber.
=back
All except C<on_recv> are optional, though using either C<connect> or C<bind> (or both) is strongly recommended unless you give it a connected/bound C<fh>.
=head2 bind_to($address)
Bind to the specified addres. Note that a bound socket may be rebound to another address. C<$address> must be in the same form as the bind argument to new.
=head2 connect_to($address)
Connect to the specified address. Note that a connected socket may be reconnected to another address. C<$address> must be in the same form as the connect argument to new.
=head2 push_send($message, $to = undef, $cv = AnyEvent::CondVar->new)
Try to send a message. If a socket is not connected a receptient address must also be given. If it is connected giving a receptient may not work as expected, depending on your platform. It returns C<$cv>, which will become true when C<$message> is sent.
=head2 timeout_reset
=head2 rtimeout_reset
=head2 wtimeout_reset
Reset the activity timeout, as if data was received or sent.
=head2 sockname
Get the local address, per C<getsockname>.
=head2 peername
Get the peer's address, per C<getpeername>.
=head2 destroy
Destroy the handle.
=head1 BACKWARDS COMPATIBILITY
This module is B<not> backwards compatible in any way with the defunct previous module of the same name by Jan Henning Thorsen.
=for Pod::Coverage clear_timeout
clear_rtimeout
clear_wtimeout
=end
=head1 AUTHOR
Leon Timmermans <leont@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Leon Timmermans.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|