ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/lib/AnyEvent/Handle.pm
(Generate patch)

Comparing AnyEvent/lib/AnyEvent/Handle.pm (file contents):
Revision 1.15 by root, Sat May 17 21:34:15 2008 UTC vs.
Revision 1.40 by root, Tue May 27 05:36:27 2008 UTC

2 2
3no warnings; 3no warnings;
4use strict; 4use strict;
5 5
6use AnyEvent (); 6use AnyEvent ();
7use AnyEvent::Util (); 7use AnyEvent::Util qw(WSAWOULDBLOCK);
8use Scalar::Util (); 8use Scalar::Util ();
9use Carp (); 9use Carp ();
10use Fcntl (); 10use Fcntl ();
11use Errno qw/EAGAIN EINTR/; 11use Errno qw/EAGAIN EINTR/;
12 12
13=head1 NAME 13=head1 NAME
14 14
15AnyEvent::Handle - non-blocking I/O on filehandles via AnyEvent 15AnyEvent::Handle - non-blocking I/O on file handles via AnyEvent
16
17This module is experimental.
18 16
19=cut 17=cut
20 18
21our $VERSION = '0.04'; 19our $VERSION = '0.04';
22 20
25 use AnyEvent; 23 use AnyEvent;
26 use AnyEvent::Handle; 24 use AnyEvent::Handle;
27 25
28 my $cv = AnyEvent->condvar; 26 my $cv = AnyEvent->condvar;
29 27
30 my $ae_fh = AnyEvent::Handle->new (fh => \*STDIN); 28 my $handle =
31
32 #TODO
33
34 # or use the constructor to pass the callback:
35
36 my $ae_fh2 =
37 AnyEvent::Handle->new ( 29 AnyEvent::Handle->new (
38 fh => \*STDIN, 30 fh => \*STDIN,
39 on_eof => sub { 31 on_eof => sub {
40 $cv->broadcast; 32 $cv->broadcast;
41 }, 33 },
42 #TODO
43 ); 34 );
44 35
45 $cv->wait; 36 # send some request line
37 $handle->push_write ("getinfo\015\012");
38
39 # read the response line
40 $handle->push_read (line => sub {
41 my ($handle, $line) = @_;
42 warn "read line <$line>\n";
43 $cv->send;
44 });
45
46 $cv->recv;
46 47
47=head1 DESCRIPTION 48=head1 DESCRIPTION
48 49
49This module is a helper module to make it easier to do event-based I/O on 50This module is a helper module to make it easier to do event-based I/O on
50filehandles. For utility functions for doing non-blocking connects and accepts 51filehandles. For utility functions for doing non-blocking connects and accepts
72The filehandle this L<AnyEvent::Handle> object will operate on. 73The filehandle this L<AnyEvent::Handle> object will operate on.
73 74
74NOTE: The filehandle will be set to non-blocking (using 75NOTE: The filehandle will be set to non-blocking (using
75AnyEvent::Util::fh_nonblocking). 76AnyEvent::Util::fh_nonblocking).
76 77
77=item on_eof => $cb->($self) [MANDATORY] 78=item on_eof => $cb->($handle)
78 79
79Set the callback to be called on EOF. 80Set the callback to be called on EOF.
80 81
82While not mandatory, it is highly recommended to set an eof callback,
83otherwise you might end up with a closed socket while you are still
84waiting for data.
85
81=item on_error => $cb->($self) 86=item on_error => $cb->($handle)
82 87
83This is the fatal error callback, that is called when, well, a fatal error 88This is the fatal error callback, that is called when, well, a fatal error
84ocurs, such as not being able to resolve the hostname, failure to connect 89occurs, such as not being able to resolve the hostname, failure to connect
85or a read error. 90or a read error.
86 91
87The object will not be in a usable state when this callback has been 92The object will not be in a usable state when this callback has been
88called. 93called.
89 94
90On callback entrance, the value of C<$!> contains the operating system 95On callback entrance, the value of C<$!> contains the operating system
91error (or C<ENOSPC> or C<EPIPE>). 96error (or C<ENOSPC>, C<EPIPE> or C<EBADMSG>).
97
98The callback should throw an exception. If it returns, then
99AnyEvent::Handle will C<croak> for you.
92 100
93While not mandatory, it is I<highly> recommended to set this callback, as 101While not mandatory, it is I<highly> recommended to set this callback, as
94you will not be notified of errors otherwise. The default simply calls 102you will not be notified of errors otherwise. The default simply calls
95die. 103die.
96 104
97=item on_read => $cb->($self) 105=item on_read => $cb->($handle)
98 106
99This sets the default read callback, which is called when data arrives 107This sets the default read callback, which is called when data arrives
100and no read request is in the queue. 108and no read request is in the queue.
101 109
102To access (and remove data from) the read buffer, use the C<< ->rbuf >> 110To access (and remove data from) the read buffer, use the C<< ->rbuf >>
103method or acces sthe C<$self->{rbuf}> member directly. 111method or access the C<$handle->{rbuf}> member directly.
104 112
105When an EOF condition is detected then AnyEvent::Handle will first try to 113When an EOF condition is detected then AnyEvent::Handle will first try to
106feed all the remaining data to the queued callbacks and C<on_read> before 114feed all the remaining data to the queued callbacks and C<on_read> before
107calling the C<on_eof> callback. If no progress can be made, then a fatal 115calling the C<on_eof> callback. If no progress can be made, then a fatal
108error will be raised (with C<$!> set to C<EPIPE>). 116error will be raised (with C<$!> set to C<EPIPE>).
109 117
110=item on_drain => $cb->() 118=item on_drain => $cb->($handle)
111 119
112This sets the callback that is called when the write buffer becomes empty 120This sets the callback that is called when the write buffer becomes empty
113(or when the callback is set and the buffer is empty already). 121(or when the callback is set and the buffer is empty already).
114 122
115To append to the write buffer, use the C<< ->push_write >> method. 123To append to the write buffer, use the C<< ->push_write >> method.
135 143
136Sets the amount of bytes (default: C<0>) that make up an "empty" write 144Sets the amount of bytes (default: C<0>) that make up an "empty" write
137buffer: If the write reaches this size or gets even samller it is 145buffer: If the write reaches this size or gets even samller it is
138considered empty. 146considered empty.
139 147
148=item tls => "accept" | "connect" | Net::SSLeay::SSL object
149
150When this parameter is given, it enables TLS (SSL) mode, that means it
151will start making tls handshake and will transparently encrypt/decrypt
152data.
153
154TLS mode requires Net::SSLeay to be installed (it will be loaded
155automatically when you try to create a TLS handle).
156
157For the TLS server side, use C<accept>, and for the TLS client side of a
158connection, use C<connect> mode.
159
160You can also provide your own TLS connection object, but you have
161to make sure that you call either C<Net::SSLeay::set_connect_state>
162or C<Net::SSLeay::set_accept_state> on it before you pass it to
163AnyEvent::Handle.
164
165See the C<starttls> method if you need to start TLs negotiation later.
166
167=item tls_ctx => $ssl_ctx
168
169Use the given Net::SSLeay::CTX object to create the new TLS connection
170(unless a connection object was specified directly). If this parameter is
171missing, then AnyEvent::Handle will use C<AnyEvent::Handle::TLS_CTX>.
172
173=item json => JSON or JSON::XS object
174
175This is the json coder object used by the C<json> read and write types.
176
177If you don't supply it, then AnyEvent::Handle will use C<encode_json> and
178C<decode_json>.
179
180Note that you are responsible to depend on the JSON module if you want to
181use this functionality, as AnyEvent does not have a dependency itself.
182
183=item filter_r => $cb
184
185=item filter_w => $cb
186
187These exist, but are undocumented at this time.
188
140=back 189=back
141 190
142=cut 191=cut
143 192
144sub new { 193sub new {
148 197
149 $self->{fh} or Carp::croak "mandatory argument fh is missing"; 198 $self->{fh} or Carp::croak "mandatory argument fh is missing";
150 199
151 AnyEvent::Util::fh_nonblocking $self->{fh}, 1; 200 AnyEvent::Util::fh_nonblocking $self->{fh}, 1;
152 201
153 $self->on_eof ((delete $self->{on_eof} ) or Carp::croak "mandatory argument on_eof is missing"); 202 if ($self->{tls}) {
203 require Net::SSLeay;
204 $self->starttls (delete $self->{tls}, delete $self->{tls_ctx});
205 }
154 206
207 $self->on_eof (delete $self->{on_eof} ) if $self->{on_eof};
155 $self->on_error (delete $self->{on_error}) if $self->{on_error}; 208 $self->on_error (delete $self->{on_error}) if $self->{on_error};
156 $self->on_drain (delete $self->{on_drain}) if $self->{on_drain}; 209 $self->on_drain (delete $self->{on_drain}) if $self->{on_drain};
157 $self->on_read (delete $self->{on_read} ) if $self->{on_read}; 210 $self->on_read (delete $self->{on_read} ) if $self->{on_read};
158 211
159 $self->start_read; 212 $self->start_read;
162} 215}
163 216
164sub _shutdown { 217sub _shutdown {
165 my ($self) = @_; 218 my ($self) = @_;
166 219
167 delete $self->{rw}; 220 delete $self->{_rw};
168 delete $self->{ww}; 221 delete $self->{_ww};
169 delete $self->{fh}; 222 delete $self->{fh};
170} 223}
171 224
172sub error { 225sub error {
173 my ($self) = @_; 226 my ($self) = @_;
175 { 228 {
176 local $!; 229 local $!;
177 $self->_shutdown; 230 $self->_shutdown;
178 } 231 }
179 232
180 if ($self->{on_error}) {
181 $self->{on_error}($self); 233 $self->{on_error}($self)
182 } else { 234 if $self->{on_error};
235
183 die "AnyEvent::Handle uncaught fatal error: $!"; 236 Carp::croak "AnyEvent::Handle uncaught fatal error: $!";
184 }
185} 237}
186 238
187=item $fh = $handle->fh 239=item $fh = $handle->fh
188 240
189This method returns the filehandle of the L<AnyEvent::Handle> object. 241This method returns the file handle of the L<AnyEvent::Handle> object.
190 242
191=cut 243=cut
192 244
193sub fh { $_[0]->{fh} } 245sub fh { $_[0]{fh} }
194 246
195=item $handle->on_error ($cb) 247=item $handle->on_error ($cb)
196 248
197Replace the current C<on_error> callback (see the C<on_error> constructor argument). 249Replace the current C<on_error> callback (see the C<on_error> constructor argument).
198 250
222for reading. 274for reading.
223 275
224The write queue is very simple: you can add data to its end, and 276The write queue is very simple: you can add data to its end, and
225AnyEvent::Handle will automatically try to get rid of it for you. 277AnyEvent::Handle will automatically try to get rid of it for you.
226 278
227When data could be writtena nd the write buffer is shorter then the low 279When data could be written and the write buffer is shorter then the low
228water mark, the C<on_drain> callback will be invoked. 280water mark, the C<on_drain> callback will be invoked.
229 281
230=over 4 282=over 4
231 283
232=item $handle->on_drain ($cb) 284=item $handle->on_drain ($cb)
251want (only limited by the available memory), as C<AnyEvent::Handle> 303want (only limited by the available memory), as C<AnyEvent::Handle>
252buffers it independently of the kernel. 304buffers it independently of the kernel.
253 305
254=cut 306=cut
255 307
256sub push_write { 308sub _drain_wbuf {
257 my ($self, $data) = @_; 309 my ($self) = @_;
258 310
259 $self->{wbuf} .= $data; 311 if (!$self->{_ww} && length $self->{wbuf}) {
260 312
261 unless ($self->{ww}) {
262 Scalar::Util::weaken $self; 313 Scalar::Util::weaken $self;
314
263 my $cb = sub { 315 my $cb = sub {
264 my $len = syswrite $self->{fh}, $self->{wbuf}; 316 my $len = syswrite $self->{fh}, $self->{wbuf};
265 317
266 if ($len > 0) { 318 if ($len >= 0) {
267 substr $self->{wbuf}, 0, $len, ""; 319 substr $self->{wbuf}, 0, $len, "";
268
269 320
270 $self->{on_drain}($self) 321 $self->{on_drain}($self)
271 if $self->{low_water_mark} >= length $self->{wbuf} 322 if $self->{low_water_mark} >= length $self->{wbuf}
272 && $self->{on_drain}; 323 && $self->{on_drain};
273 324
274 delete $self->{ww} unless length $self->{wbuf}; 325 delete $self->{_ww} unless length $self->{wbuf};
275 } elsif ($! != EAGAIN && $! != EINTR) { 326 } elsif ($! != EAGAIN && $! != EINTR && $! != WSAWOULDBLOCK) {
276 $self->error; 327 $self->error;
277 } 328 }
278 }; 329 };
279 330
331 # try to write data immediately
332 $cb->();
333
334 # if still data left in wbuf, we need to poll
280 $self->{ww} = AnyEvent->io (fh => $self->{fh}, poll => "w", cb => $cb); 335 $self->{_ww} = AnyEvent->io (fh => $self->{fh}, poll => "w", cb => $cb)
281 336 if length $self->{wbuf};
282 $cb->($self);
283 }; 337 };
284} 338}
339
340our %WH;
341
342sub register_write_type($$) {
343 $WH{$_[0]} = $_[1];
344}
345
346sub push_write {
347 my $self = shift;
348
349 if (@_ > 1) {
350 my $type = shift;
351
352 @_ = ($WH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::push_write")
353 ->($self, @_);
354 }
355
356 if ($self->{filter_w}) {
357 $self->{filter_w}->($self, \$_[0]);
358 } else {
359 $self->{wbuf} .= $_[0];
360 $self->_drain_wbuf;
361 }
362}
363
364=item $handle->push_write (type => @args)
365
366=item $handle->unshift_write (type => @args)
367
368Instead of formatting your data yourself, you can also let this module do
369the job by specifying a type and type-specific arguments.
370
371Predefined types are (if you have ideas for additional types, feel free to
372drop by and tell us):
373
374=over 4
375
376=item netstring => $string
377
378Formats the given value as netstring
379(http://cr.yp.to/proto/netstrings.txt, this is not a recommendation to use them).
380
381=back
382
383=cut
384
385register_write_type netstring => sub {
386 my ($self, $string) = @_;
387
388 sprintf "%d:%s,", (length $string), $string
389};
390
391=item json => $array_or_hashref
392
393Encodes the given hash or array reference into a JSON object. Unless you
394provide your own JSON object, this means it will be encoded to JSON text
395in UTF-8.
396
397JSON objects (and arrays) are self-delimiting, so you can write JSON at
398one end of a handle and read them at the other end without using any
399additional framing.
400
401=cut
402
403register_write_type json => sub {
404 my ($self, $ref) = @_;
405
406 require JSON;
407
408 $self->{json} ? $self->{json}->encode ($ref)
409 : JSON::encode_json ($ref)
410};
411
412=item AnyEvent::Handle::register_write_type type => $coderef->($handle, @args)
413
414This function (not method) lets you add your own types to C<push_write>.
415Whenever the given C<type> is used, C<push_write> will invoke the code
416reference with the handle object and the remaining arguments.
417
418The code reference is supposed to return a single octet string that will
419be appended to the write buffer.
420
421Note that this is a function, and all types registered this way will be
422global, so try to use unique names.
423
424=cut
285 425
286############################################################################# 426#############################################################################
287 427
288=back 428=back
289 429
364=cut 504=cut
365 505
366sub _drain_rbuf { 506sub _drain_rbuf {
367 my ($self) = @_; 507 my ($self) = @_;
368 508
509 if (
510 defined $self->{rbuf_max}
511 && $self->{rbuf_max} < length $self->{rbuf}
512 ) {
513 $! = &Errno::ENOSPC;
514 $self->error;
515 }
516
369 return if $self->{in_drain}; 517 return if $self->{in_drain};
370 local $self->{in_drain} = 1; 518 local $self->{in_drain} = 1;
371 519
372 while (my $len = length $self->{rbuf}) { 520 while (my $len = length $self->{rbuf}) {
373 no strict 'refs'; 521 no strict 'refs';
374 if (my $cb = shift @{ $self->{queue} }) { 522 if (my $cb = shift @{ $self->{_queue} }) {
375 if (!$cb->($self)) { 523 unless ($cb->($self)) {
376 if ($self->{eof}) { 524 if ($self->{_eof}) {
377 # no progress can be made (not enough data and no data forthcoming) 525 # no progress can be made (not enough data and no data forthcoming)
378 $! = &Errno::EPIPE; return $self->error; 526 $! = &Errno::EPIPE;
527 $self->error;
379 } 528 }
380 529
381 unshift @{ $self->{queue} }, $cb; 530 unshift @{ $self->{_queue} }, $cb;
382 return; 531 return;
383 } 532 }
384 } elsif ($self->{on_read}) { 533 } elsif ($self->{on_read}) {
385 $self->{on_read}($self); 534 $self->{on_read}($self);
386 535
387 if ( 536 if (
388 $self->{eof} # if no further data will arrive 537 $self->{_eof} # if no further data will arrive
389 && $len == length $self->{rbuf} # and no data has been consumed 538 && $len == length $self->{rbuf} # and no data has been consumed
390 && !@{ $self->{queue} } # and the queue is still empty 539 && !@{ $self->{_queue} } # and the queue is still empty
391 && $self->{on_read} # and we still want to read data 540 && $self->{on_read} # and we still want to read data
392 ) { 541 ) {
393 # then no progress can be made 542 # then no progress can be made
394 $! = &Errno::EPIPE; return $self->error; 543 $! = &Errno::EPIPE;
544 $self->error;
395 } 545 }
396 } else { 546 } else {
397 # read side becomes idle 547 # read side becomes idle
398 delete $self->{rw}; 548 delete $self->{_rw};
399 return; 549 return;
400 } 550 }
401 } 551 }
402 552
403 if ($self->{eof}) { 553 if ($self->{_eof}) {
404 $self->_shutdown; 554 $self->_shutdown;
405 $self->{on_eof}($self); 555 $self->{on_eof}($self)
556 if $self->{on_eof};
406 } 557 }
407} 558}
408 559
409=item $handle->on_read ($cb) 560=item $handle->on_read ($cb)
410 561
444Append the given callback to the end of the queue (C<push_read>) or 595Append the given callback to the end of the queue (C<push_read>) or
445prepend it (C<unshift_read>). 596prepend it (C<unshift_read>).
446 597
447The callback is called each time some additional read data arrives. 598The callback is called each time some additional read data arrives.
448 599
449It must check wether enough data is in the read buffer already. 600It must check whether enough data is in the read buffer already.
450 601
451If not enough data is available, it must return the empty list or a false 602If not enough data is available, it must return the empty list or a false
452value, in which case it will be called repeatedly until enough data is 603value, in which case it will be called repeatedly until enough data is
453available (or an error condition is detected). 604available (or an error condition is detected).
454 605
456interested in (which can be none at all) and return a true value. After returning 607interested in (which can be none at all) and return a true value. After returning
457true, it will be removed from the queue. 608true, it will be removed from the queue.
458 609
459=cut 610=cut
460 611
612our %RH;
613
614sub register_read_type($$) {
615 $RH{$_[0]} = $_[1];
616}
617
461sub push_read { 618sub push_read {
462 my ($self, $cb) = @_; 619 my $self = shift;
620 my $cb = pop;
463 621
622 if (@_) {
623 my $type = shift;
624
625 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::push_read")
626 ->($self, $cb, @_);
627 }
628
464 push @{ $self->{queue} }, $cb; 629 push @{ $self->{_queue} }, $cb;
465 $self->_drain_rbuf; 630 $self->_drain_rbuf;
466} 631}
467 632
468sub unshift_read { 633sub unshift_read {
469 my ($self, $cb) = @_; 634 my $self = shift;
635 my $cb = pop;
470 636
637 if (@_) {
638 my $type = shift;
639
640 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::unshift_read")
641 ->($self, $cb, @_);
642 }
643
644
471 push @{ $self->{queue} }, $cb; 645 unshift @{ $self->{_queue} }, $cb;
472 $self->_drain_rbuf; 646 $self->_drain_rbuf;
473} 647}
474 648
475=item $handle->push_read_chunk ($len, $cb->($self, $data)) 649=item $handle->push_read (type => @args, $cb)
476 650
477=item $handle->unshift_read_chunk ($len, $cb->($self, $data)) 651=item $handle->unshift_read (type => @args, $cb)
478 652
479Append the given callback to the end of the queue (C<push_read_chunk>) or 653Instead of providing a callback that parses the data itself you can chose
480prepend it (C<unshift_read_chunk>). 654between a number of predefined parsing formats, for chunks of data, lines
655etc.
481 656
482The callback will be called only once C<$len> bytes have been read, and 657Predefined types are (if you have ideas for additional types, feel free to
483these C<$len> bytes will be passed to the callback. 658drop by and tell us):
484 659
485=cut 660=over 4
486 661
487sub _read_chunk($$) { 662=item chunk => $octets, $cb->($handle, $data)
663
664Invoke the callback only once C<$octets> bytes have been read. Pass the
665data read to the callback. The callback will never be called with less
666data.
667
668Example: read 2 bytes.
669
670 $handle->push_read (chunk => 2, sub {
671 warn "yay ", unpack "H*", $_[1];
672 });
673
674=cut
675
676register_read_type chunk => sub {
488 my ($self, $len, $cb) = @_; 677 my ($self, $cb, $len) = @_;
489 678
490 sub { 679 sub {
491 $len <= length $_[0]{rbuf} or return; 680 $len <= length $_[0]{rbuf} or return;
492 $cb->($_[0], substr $_[0]{rbuf}, 0, $len, ""); 681 $cb->($_[0], substr $_[0]{rbuf}, 0, $len, "");
493 1 682 1
494 } 683 }
495} 684};
496 685
686# compatibility with older API
497sub push_read_chunk { 687sub push_read_chunk {
498 $_[0]->push_read (&_read_chunk); 688 $_[0]->push_read (chunk => $_[1], $_[2]);
499} 689}
500
501 690
502sub unshift_read_chunk { 691sub unshift_read_chunk {
503 $_[0]->unshift_read (&_read_chunk); 692 $_[0]->unshift_read (chunk => $_[1], $_[2]);
504} 693}
505 694
506=item $handle->push_read_line ([$eol, ]$cb->($self, $line, $eol)) 695=item line => [$eol, ]$cb->($handle, $line, $eol)
507
508=item $handle->unshift_read_line ([$eol, ]$cb->($self, $line, $eol))
509
510Append the given callback to the end of the queue (C<push_read_line>) or
511prepend it (C<unshift_read_line>).
512 696
513The callback will be called only once a full line (including the end of 697The callback will be called only once a full line (including the end of
514line marker, C<$eol>) has been read. This line (excluding the end of line 698line marker, C<$eol>) has been read. This line (excluding the end of line
515marker) will be passed to the callback as second argument (C<$line>), and 699marker) will be passed to the callback as second argument (C<$line>), and
516the end of line marker as the third argument (C<$eol>). 700the end of line marker as the third argument (C<$eol>).
527Partial lines at the end of the stream will never be returned, as they are 711Partial lines at the end of the stream will never be returned, as they are
528not marked by the end of line marker. 712not marked by the end of line marker.
529 713
530=cut 714=cut
531 715
532sub _read_line($$) { 716register_read_type line => sub {
533 my $self = shift; 717 my ($self, $cb, $eol) = @_;
534 my $cb = pop;
535 my $eol = @_ ? shift : qr|(\015?\012)|;
536 my $pos;
537 718
719 $eol = qr|(\015?\012)| if @_ < 3;
538 $eol = quotemeta $eol unless ref $eol; 720 $eol = quotemeta $eol unless ref $eol;
539 $eol = qr|^(.*?)($eol)|s; 721 $eol = qr|^(.*?)($eol)|s;
540 722
541 sub { 723 sub {
542 $_[0]{rbuf} =~ s/$eol// or return; 724 $_[0]{rbuf} =~ s/$eol// or return;
543 725
544 $cb->($_[0], $1, $2); 726 $cb->($_[0], $1, $2);
545 1 727 1
546 } 728 }
547} 729};
548 730
731# compatibility with older API
549sub push_read_line { 732sub push_read_line {
550 $_[0]->push_read (&_read_line); 733 my $self = shift;
734 $self->push_read (line => @_);
551} 735}
552 736
553sub unshift_read_line { 737sub unshift_read_line {
554 $_[0]->unshift_read (&_read_line); 738 my $self = shift;
739 $self->unshift_read (line => @_);
555} 740}
741
742=item netstring => $cb->($handle, $string)
743
744A netstring (http://cr.yp.to/proto/netstrings.txt, this is not an endorsement).
745
746Throws an error with C<$!> set to EBADMSG on format violations.
747
748=cut
749
750register_read_type netstring => sub {
751 my ($self, $cb) = @_;
752
753 sub {
754 unless ($_[0]{rbuf} =~ s/^(0|[1-9][0-9]*)://) {
755 if ($_[0]{rbuf} =~ /[^0-9]/) {
756 $! = &Errno::EBADMSG;
757 $self->error;
758 }
759 return;
760 }
761
762 my $len = $1;
763
764 $self->unshift_read (chunk => $len, sub {
765 my $string = $_[1];
766 $_[0]->unshift_read (chunk => 1, sub {
767 if ($_[1] eq ",") {
768 $cb->($_[0], $string);
769 } else {
770 $! = &Errno::EBADMSG;
771 $self->error;
772 }
773 });
774 });
775
776 1
777 }
778};
779
780=item regex => $accept[, $reject[, $skip], $cb->($handle, $data)
781
782Makes a regex match against the regex object C<$accept> and returns
783everything up to and including the match.
784
785Example: read a single line terminated by '\n'.
786
787 $handle->push_read (regex => qr<\n>, sub { ... });
788
789If C<$reject> is given and not undef, then it determines when the data is
790to be rejected: it is matched against the data when the C<$accept> regex
791does not match and generates an C<EBADMSG> error when it matches. This is
792useful to quickly reject wrong data (to avoid waiting for a timeout or a
793receive buffer overflow).
794
795Example: expect a single decimal number followed by whitespace, reject
796anything else (not the use of an anchor).
797
798 $handle->push_read (regex => qr<^[0-9]+\s>, qr<[^0-9]>, sub { ... });
799
800If C<$skip> is given and not C<undef>, then it will be matched against
801the receive buffer when neither C<$accept> nor C<$reject> match,
802and everything preceding and including the match will be accepted
803unconditionally. This is useful to skip large amounts of data that you
804know cannot be matched, so that the C<$accept> or C<$reject> regex do not
805have to start matching from the beginning. This is purely an optimisation
806and is usually worth only when you expect more than a few kilobytes.
807
808Example: expect a http header, which ends at C<\015\012\015\012>. Since we
809expect the header to be very large (it isn't in practise, but...), we use
810a skip regex to skip initial portions. The skip regex is tricky in that
811it only accepts something not ending in either \015 or \012, as these are
812required for the accept regex.
813
814 $handle->push_read (regex =>
815 qr<\015\012\015\012>,
816 undef, # no reject
817 qr<^.*[^\015\012]>,
818 sub { ... });
819
820=cut
821
822register_read_type regex => sub {
823 my ($self, $cb, $accept, $reject, $skip) = @_;
824
825 my $data;
826 my $rbuf = \$self->{rbuf};
827
828 sub {
829 # accept
830 if ($$rbuf =~ $accept) {
831 $data .= substr $$rbuf, 0, $+[0], "";
832 $cb->($self, $data);
833 return 1;
834 }
835
836 # reject
837 if ($reject && $$rbuf =~ $reject) {
838 $! = &Errno::EBADMSG;
839 $self->error;
840 }
841
842 # skip
843 if ($skip && $$rbuf =~ $skip) {
844 $data .= substr $$rbuf, 0, $+[0], "";
845 }
846
847 ()
848 }
849};
850
851=item json => $cb->($handle, $hash_or_arrayref)
852
853Reads a JSON object or array, decodes it and passes it to the callback.
854
855If a C<json> object was passed to the constructor, then that will be used
856for the final decode, otherwise it will create a JSON coder expecting UTF-8.
857
858This read type uses the incremental parser available with JSON version
8592.09 (and JSON::XS version 2.2) and above. You have to provide a
860dependency on your own: this module will load the JSON module, but
861AnyEvent does not depend on it itself.
862
863Since JSON texts are fully self-delimiting, the C<json> read and write
864types are an ideal simple RPC protocol: just exchange JSON datagrams.
865
866=cut
867
868register_read_type json => sub {
869 my ($self, $cb, $accept, $reject, $skip) = @_;
870
871 require JSON;
872
873 my $data;
874 my $rbuf = \$self->{rbuf};
875
876 my $json = $self->{json} ||= JSON::XS->new->utf8;
877
878 sub {
879 my $ref = $json->incr_parse ($self->{rbuf});
880
881 if ($ref) {
882 $self->{rbuf} = $json->incr_text;
883 $json->incr_text = "";
884 $cb->($self, $ref);
885
886 1
887 } else {
888 $self->{rbuf} = "";
889 ()
890 }
891 }
892};
893
894=back
895
896=item AnyEvent::Handle::register_read_type type => $coderef->($handle, $cb, @args)
897
898This function (not method) lets you add your own types to C<push_read>.
899
900Whenever the given C<type> is used, C<push_read> will invoke the code
901reference with the handle object, the callback and the remaining
902arguments.
903
904The code reference is supposed to return a callback (usually a closure)
905that works as a plain read callback (see C<< ->push_read ($cb) >>).
906
907It should invoke the passed callback when it is done reading (remember to
908pass C<$handle> as first argument as all other callbacks do that).
909
910Note that this is a function, and all types registered this way will be
911global, so try to use unique names.
912
913For examples, see the source of this module (F<perldoc -m AnyEvent::Handle>,
914search for C<register_read_type>)).
556 915
557=item $handle->stop_read 916=item $handle->stop_read
558 917
559=item $handle->start_read 918=item $handle->start_read
560 919
561In rare cases you actually do not want to read anything form the 920In rare cases you actually do not want to read anything from the
562socket. In this case you can call C<stop_read>. Neither C<on_read> no 921socket. In this case you can call C<stop_read>. Neither C<on_read> no
563any queued callbacks will be executed then. To start readign again, call 922any queued callbacks will be executed then. To start reading again, call
564C<start_read>. 923C<start_read>.
565 924
566=cut 925=cut
567 926
568sub stop_read { 927sub stop_read {
569 my ($self) = @_; 928 my ($self) = @_;
570 929
571 delete $self->{rw}; 930 delete $self->{_rw};
572} 931}
573 932
574sub start_read { 933sub start_read {
575 my ($self) = @_; 934 my ($self) = @_;
576 935
577 unless ($self->{rw} || $self->{eof}) { 936 unless ($self->{_rw} || $self->{_eof}) {
578 Scalar::Util::weaken $self; 937 Scalar::Util::weaken $self;
579 938
580 $self->{rw} = AnyEvent->io (fh => $self->{fh}, poll => "r", cb => sub { 939 $self->{_rw} = AnyEvent->io (fh => $self->{fh}, poll => "r", cb => sub {
940 my $rbuf = $self->{filter_r} ? \my $buf : \$self->{rbuf};
581 my $len = sysread $self->{fh}, $self->{rbuf}, $self->{read_size} || 8192, length $self->{rbuf}; 941 my $len = sysread $self->{fh}, $$rbuf, $self->{read_size} || 8192, length $$rbuf;
582 942
583 if ($len > 0) { 943 if ($len > 0) {
584 if (defined $self->{rbuf_max}) { 944 $self->{filter_r}
585 if ($self->{rbuf_max} < length $self->{rbuf}) { 945 ? $self->{filter_r}->($self, $rbuf)
586 $! = &Errno::ENOSPC; return $self->error; 946 : $self->_drain_rbuf;
587 }
588 }
589 947
590 } elsif (defined $len) { 948 } elsif (defined $len) {
591 $self->{eof} = 1;
592 delete $self->{rw}; 949 delete $self->{_rw};
950 $self->{_eof} = 1;
951 $self->_drain_rbuf;
593 952
594 } elsif ($! != EAGAIN && $! != EINTR) { 953 } elsif ($! != EAGAIN && $! != EINTR && $! != &AnyEvent::Util::WSAWOULDBLOCK) {
595 return $self->error; 954 return $self->error;
596 } 955 }
597
598 $self->_drain_rbuf;
599 }); 956 });
600 } 957 }
601} 958}
602 959
960sub _dotls {
961 my ($self) = @_;
962
963 if (length $self->{_tls_wbuf}) {
964 while ((my $len = Net::SSLeay::write ($self->{tls}, $self->{_tls_wbuf})) > 0) {
965 substr $self->{_tls_wbuf}, 0, $len, "";
966 }
967 }
968
969 if (defined (my $buf = Net::SSLeay::BIO_read ($self->{_wbio}))) {
970 $self->{wbuf} .= $buf;
971 $self->_drain_wbuf;
972 }
973
974 while (defined (my $buf = Net::SSLeay::read ($self->{tls}))) {
975 $self->{rbuf} .= $buf;
976 $self->_drain_rbuf;
977 }
978
979 my $err = Net::SSLeay::get_error ($self->{tls}, -1);
980
981 if ($err!= Net::SSLeay::ERROR_WANT_READ ()) {
982 if ($err == Net::SSLeay::ERROR_SYSCALL ()) {
983 $self->error;
984 } elsif ($err == Net::SSLeay::ERROR_SSL ()) {
985 $! = &Errno::EIO;
986 $self->error;
987 }
988
989 # all others are fine for our purposes
990 }
991}
992
993=item $handle->starttls ($tls[, $tls_ctx])
994
995Instead of starting TLS negotiation immediately when the AnyEvent::Handle
996object is created, you can also do that at a later time by calling
997C<starttls>.
998
999The first argument is the same as the C<tls> constructor argument (either
1000C<"connect">, C<"accept"> or an existing Net::SSLeay object).
1001
1002The second argument is the optional C<Net::SSLeay::CTX> object that is
1003used when AnyEvent::Handle has to create its own TLS connection object.
1004
1005The TLS connection object will end up in C<< $handle->{tls} >> after this
1006call and can be used or changed to your liking. Note that the handshake
1007might have already started when this function returns.
1008
1009=cut
1010
1011# TODO: maybe document...
1012sub starttls {
1013 my ($self, $ssl, $ctx) = @_;
1014
1015 $self->stoptls;
1016
1017 if ($ssl eq "accept") {
1018 $ssl = Net::SSLeay::new ($ctx || TLS_CTX ());
1019 Net::SSLeay::set_accept_state ($ssl);
1020 } elsif ($ssl eq "connect") {
1021 $ssl = Net::SSLeay::new ($ctx || TLS_CTX ());
1022 Net::SSLeay::set_connect_state ($ssl);
1023 }
1024
1025 $self->{tls} = $ssl;
1026
1027 # basically, this is deep magic (because SSL_read should have the same issues)
1028 # but the openssl maintainers basically said: "trust us, it just works".
1029 # (unfortunately, we have to hardcode constants because the abysmally misdesigned
1030 # and mismaintained ssleay-module doesn't even offer them).
1031 # http://www.mail-archive.com/openssl-dev@openssl.org/msg22420.html
1032 Net::SSLeay::CTX_set_mode ($self->{tls},
1033 (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE () } || 1)
1034 | (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER () } || 2));
1035
1036 $self->{_rbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ());
1037 $self->{_wbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ());
1038
1039 Net::SSLeay::set_bio ($ssl, $self->{_rbio}, $self->{_wbio});
1040
1041 $self->{filter_w} = sub {
1042 $_[0]{_tls_wbuf} .= ${$_[1]};
1043 &_dotls;
1044 };
1045 $self->{filter_r} = sub {
1046 Net::SSLeay::BIO_write ($_[0]{_rbio}, ${$_[1]});
1047 &_dotls;
1048 };
1049}
1050
1051=item $handle->stoptls
1052
1053Destroys the SSL connection, if any. Partial read or write data will be
1054lost.
1055
1056=cut
1057
1058sub stoptls {
1059 my ($self) = @_;
1060
1061 Net::SSLeay::free (delete $self->{tls}) if $self->{tls};
1062
1063 delete $self->{_rbio};
1064 delete $self->{_wbio};
1065 delete $self->{_tls_wbuf};
1066 delete $self->{filter_r};
1067 delete $self->{filter_w};
1068}
1069
1070sub DESTROY {
1071 my $self = shift;
1072
1073 $self->stoptls;
1074}
1075
1076=item AnyEvent::Handle::TLS_CTX
1077
1078This function creates and returns the Net::SSLeay::CTX object used by
1079default for TLS mode.
1080
1081The context is created like this:
1082
1083 Net::SSLeay::load_error_strings;
1084 Net::SSLeay::SSLeay_add_ssl_algorithms;
1085 Net::SSLeay::randomize;
1086
1087 my $CTX = Net::SSLeay::CTX_new;
1088
1089 Net::SSLeay::CTX_set_options $CTX, Net::SSLeay::OP_ALL
1090
1091=cut
1092
1093our $TLS_CTX;
1094
1095sub TLS_CTX() {
1096 $TLS_CTX || do {
1097 require Net::SSLeay;
1098
1099 Net::SSLeay::load_error_strings ();
1100 Net::SSLeay::SSLeay_add_ssl_algorithms ();
1101 Net::SSLeay::randomize ();
1102
1103 $TLS_CTX = Net::SSLeay::CTX_new ();
1104
1105 Net::SSLeay::CTX_set_options ($TLS_CTX, Net::SSLeay::OP_ALL ());
1106
1107 $TLS_CTX
1108 }
1109}
1110
603=back 1111=back
604 1112
1113=head1 SUBCLASSING AnyEvent::Handle
1114
1115In many cases, you might want to subclass AnyEvent::Handle.
1116
1117To make this easier, a given version of AnyEvent::Handle uses these
1118conventions:
1119
1120=over 4
1121
1122=item * all constructor arguments become object members.
1123
1124At least initially, when you pass a C<tls>-argument to the constructor it
1125will end up in C<< $handle->{tls} >>. Those members might be changes or
1126mutated later on (for example C<tls> will hold the TLS connection object).
1127
1128=item * other object member names are prefixed with an C<_>.
1129
1130All object members not explicitly documented (internal use) are prefixed
1131with an underscore character, so the remaining non-C<_>-namespace is free
1132for use for subclasses.
1133
1134=item * all members not documented here and not prefixed with an underscore
1135are free to use in subclasses.
1136
1137Of course, new versions of AnyEvent::Handle may introduce more "public"
1138member variables, but thats just life, at least it is documented.
1139
1140=back
1141
605=head1 AUTHOR 1142=head1 AUTHOR
606 1143
607Robin Redeker C<< <elmex at ta-sa.org> >>, Marc Lehmann <schmorp@schmorp.de>. 1144Robin Redeker C<< <elmex at ta-sa.org> >>, Marc Lehmann <schmorp@schmorp.de>.
608 1145
609=cut 1146=cut

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines