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.37 by root, Mon May 26 20:02:22 2008 UTC vs.
Revision 1.42 by root, Tue May 27 06:23:15 2008 UTC

2 2
3no warnings; 3no warnings;
4use strict; 4use strict;
5 5
6use AnyEvent (); 6use AnyEvent ();
7use AnyEvent::Util qw(WSAWOULDBLOCK); 7use AnyEvent::Util qw(WSAEWOULDBLOCK);
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
73The filehandle this L<AnyEvent::Handle> object will operate on. 73The filehandle this L<AnyEvent::Handle> object will operate on.
74 74
75NOTE: The filehandle will be set to non-blocking (using 75NOTE: The filehandle will be set to non-blocking (using
76AnyEvent::Util::fh_nonblocking). 76AnyEvent::Util::fh_nonblocking).
77 77
78=item on_eof => $cb->($self) 78=item on_eof => $cb->($handle)
79 79
80Set the callback to be called on EOF. 80Set the callback to be called on EOF.
81 81
82While not mandatory, it is highly recommended to set an eof callback, 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 83otherwise you might end up with a closed socket while you are still
84waiting for data. 84waiting for data.
85 85
86=item on_error => $cb->($self) 86=item on_error => $cb->($handle)
87 87
88This 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
89occurs, 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
90or a read error. 90or a read error.
91 91
93called. 93called.
94 94
95On callback entrance, the value of C<$!> contains the operating system 95On callback entrance, the value of C<$!> contains the operating system
96error (or C<ENOSPC>, C<EPIPE> or C<EBADMSG>). 96error (or C<ENOSPC>, C<EPIPE> or C<EBADMSG>).
97 97
98The callbakc should throw an exception. If it returns, then 98The callback should throw an exception. If it returns, then
99AnyEvent::Handle will C<croak> for you. 99AnyEvent::Handle will C<croak> for you.
100 100
101While 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
102you will not be notified of errors otherwise. The default simply calls 102you will not be notified of errors otherwise. The default simply calls
103die. 103die.
104 104
105=item on_read => $cb->($self) 105=item on_read => $cb->($handle)
106 106
107This sets the default read callback, which is called when data arrives 107This sets the default read callback, which is called when data arrives
108and no read request is in the queue. 108and no read request is in the queue.
109 109
110To 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 >>
111method or access the C<$self->{rbuf}> member directly. 111method or access the C<$handle->{rbuf}> member directly.
112 112
113When 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
114feed 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
115calling 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
116error will be raised (with C<$!> set to C<EPIPE>). 116error will be raised (with C<$!> set to C<EPIPE>).
117 117
118=item on_drain => $cb->() 118=item on_drain => $cb->($handle)
119 119
120This 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
121(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).
122 122
123To append to the write buffer, use the C<< ->push_write >> method. 123To append to the write buffer, use the C<< ->push_write >> method.
168 168
169Use the given Net::SSLeay::CTX object to create the new TLS connection 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 170(unless a connection object was specified directly). If this parameter is
171missing, then AnyEvent::Handle will use C<AnyEvent::Handle::TLS_CTX>. 171missing, then AnyEvent::Handle will use C<AnyEvent::Handle::TLS_CTX>.
172 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 create and use a
178suitable one, which will write and expect UTF-8 encoded JSON texts.
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
173=back 189=back
174 190
175=cut 191=cut
176 192
177sub new { 193sub new {
199} 215}
200 216
201sub _shutdown { 217sub _shutdown {
202 my ($self) = @_; 218 my ($self) = @_;
203 219
204 delete $self->{rw}; 220 delete $self->{_rw};
205 delete $self->{ww}; 221 delete $self->{_ww};
206 delete $self->{fh}; 222 delete $self->{fh};
207} 223}
208 224
209sub error { 225sub error {
210 my ($self) = @_; 226 my ($self) = @_;
224 240
225This method returns the file handle of the L<AnyEvent::Handle> object. 241This method returns the file handle of the L<AnyEvent::Handle> object.
226 242
227=cut 243=cut
228 244
229sub fh { $_[0]->{fh} } 245sub fh { $_[0]{fh} }
230 246
231=item $handle->on_error ($cb) 247=item $handle->on_error ($cb)
232 248
233Replace 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).
234 250
290=cut 306=cut
291 307
292sub _drain_wbuf { 308sub _drain_wbuf {
293 my ($self) = @_; 309 my ($self) = @_;
294 310
295 if (!$self->{ww} && length $self->{wbuf}) { 311 if (!$self->{_ww} && length $self->{wbuf}) {
296 312
297 Scalar::Util::weaken $self; 313 Scalar::Util::weaken $self;
298 314
299 my $cb = sub { 315 my $cb = sub {
300 my $len = syswrite $self->{fh}, $self->{wbuf}; 316 my $len = syswrite $self->{fh}, $self->{wbuf};
304 320
305 $self->{on_drain}($self) 321 $self->{on_drain}($self)
306 if $self->{low_water_mark} >= length $self->{wbuf} 322 if $self->{low_water_mark} >= length $self->{wbuf}
307 && $self->{on_drain}; 323 && $self->{on_drain};
308 324
309 delete $self->{ww} unless length $self->{wbuf}; 325 delete $self->{_ww} unless length $self->{wbuf};
310 } elsif ($! != EAGAIN && $! != EINTR && $! != WSAWOULDBLOCK) { 326 } elsif ($! != EAGAIN && $! != EINTR && $! != WSAEWOULDBLOCK) {
311 $self->error; 327 $self->error;
312 } 328 }
313 }; 329 };
314 330
315 # try to write data immediately 331 # try to write data immediately
316 $cb->(); 332 $cb->();
317 333
318 # if still data left in wbuf, we need to poll 334 # if still data left in wbuf, we need to poll
319 $self->{ww} = AnyEvent->io (fh => $self->{fh}, poll => "w", cb => $cb) 335 $self->{_ww} = AnyEvent->io (fh => $self->{fh}, poll => "w", cb => $cb)
320 if length $self->{wbuf}; 336 if length $self->{wbuf};
321 }; 337 };
322} 338}
323 339
324our %WH; 340our %WH;
370 my ($self, $string) = @_; 386 my ($self, $string) = @_;
371 387
372 sprintf "%d:%s,", (length $string), $string 388 sprintf "%d:%s,", (length $string), $string
373}; 389};
374 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
401The generated JSON text is guaranteed not to contain any newlines: While
402this module doesn't need delimiters after or between JSON texts to be
403able to read them, many other languages depend on that.
404
405A simple RPC protocol that interoperates easily with others is to send
406JSON arrays (or objects, although arrays are usually the better choice as
407they mimic how function argument passing works) and a newline after each
408JSON text:
409
410 $handle->push_write (json => ["method", "arg1", "arg2"]); # whatever
411 $handle->push_write ("\012");
412
413An AnyEvent::Handle receiver would simply use the C<json> read type and
414rely on the fact that the newline will be skipped as leading whitespace:
415
416 $handle->push_read (json => sub { my $array = $_[1]; ... });
417
418Other languages could read single lines terminated by a newline and pass
419this line into their JSON decoder of choice.
420
421=cut
422
423register_write_type json => sub {
424 my ($self, $ref) = @_;
425
426 require JSON;
427
428 $self->{json} ? $self->{json}->encode ($ref)
429 : JSON::encode_json ($ref)
430};
431
375=item AnyEvent::Handle::register_write_type type => $coderef->($self, @args) 432=item AnyEvent::Handle::register_write_type type => $coderef->($handle, @args)
376 433
377This function (not method) lets you add your own types to C<push_write>. 434This function (not method) lets you add your own types to C<push_write>.
378Whenever the given C<type> is used, C<push_write> will invoke the code 435Whenever the given C<type> is used, C<push_write> will invoke the code
379reference with the handle object and the remaining arguments. 436reference with the handle object and the remaining arguments.
380 437
480 return if $self->{in_drain}; 537 return if $self->{in_drain};
481 local $self->{in_drain} = 1; 538 local $self->{in_drain} = 1;
482 539
483 while (my $len = length $self->{rbuf}) { 540 while (my $len = length $self->{rbuf}) {
484 no strict 'refs'; 541 no strict 'refs';
485 if (my $cb = shift @{ $self->{queue} }) { 542 if (my $cb = shift @{ $self->{_queue} }) {
486 unless ($cb->($self)) { 543 unless ($cb->($self)) {
487 if ($self->{eof}) { 544 if ($self->{_eof}) {
488 # no progress can be made (not enough data and no data forthcoming) 545 # no progress can be made (not enough data and no data forthcoming)
489 $! = &Errno::EPIPE; 546 $! = &Errno::EPIPE;
490 $self->error; 547 $self->error;
491 } 548 }
492 549
493 unshift @{ $self->{queue} }, $cb; 550 unshift @{ $self->{_queue} }, $cb;
494 return; 551 return;
495 } 552 }
496 } elsif ($self->{on_read}) { 553 } elsif ($self->{on_read}) {
497 $self->{on_read}($self); 554 $self->{on_read}($self);
498 555
499 if ( 556 if (
500 $self->{eof} # if no further data will arrive 557 $self->{_eof} # if no further data will arrive
501 && $len == length $self->{rbuf} # and no data has been consumed 558 && $len == length $self->{rbuf} # and no data has been consumed
502 && !@{ $self->{queue} } # and the queue is still empty 559 && !@{ $self->{_queue} } # and the queue is still empty
503 && $self->{on_read} # and we still want to read data 560 && $self->{on_read} # and we still want to read data
504 ) { 561 ) {
505 # then no progress can be made 562 # then no progress can be made
506 $! = &Errno::EPIPE; 563 $! = &Errno::EPIPE;
507 $self->error; 564 $self->error;
508 } 565 }
509 } else { 566 } else {
510 # read side becomes idle 567 # read side becomes idle
511 delete $self->{rw}; 568 delete $self->{_rw};
512 return; 569 return;
513 } 570 }
514 } 571 }
515 572
516 if ($self->{eof}) { 573 if ($self->{_eof}) {
517 $self->_shutdown; 574 $self->_shutdown;
518 $self->{on_eof}($self) 575 $self->{on_eof}($self)
519 if $self->{on_eof}; 576 if $self->{on_eof};
520 } 577 }
521} 578}
587 644
588 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::push_read") 645 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::push_read")
589 ->($self, $cb, @_); 646 ->($self, $cb, @_);
590 } 647 }
591 648
592 push @{ $self->{queue} }, $cb; 649 push @{ $self->{_queue} }, $cb;
593 $self->_drain_rbuf; 650 $self->_drain_rbuf;
594} 651}
595 652
596sub unshift_read { 653sub unshift_read {
597 my $self = shift; 654 my $self = shift;
603 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::unshift_read") 660 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::unshift_read")
604 ->($self, $cb, @_); 661 ->($self, $cb, @_);
605 } 662 }
606 663
607 664
608 unshift @{ $self->{queue} }, $cb; 665 unshift @{ $self->{_queue} }, $cb;
609 $self->_drain_rbuf; 666 $self->_drain_rbuf;
610} 667}
611 668
612=item $handle->push_read (type => @args, $cb) 669=item $handle->push_read (type => @args, $cb)
613 670
620Predefined types are (if you have ideas for additional types, feel free to 677Predefined types are (if you have ideas for additional types, feel free to
621drop by and tell us): 678drop by and tell us):
622 679
623=over 4 680=over 4
624 681
625=item chunk => $octets, $cb->($self, $data) 682=item chunk => $octets, $cb->($handle, $data)
626 683
627Invoke the callback only once C<$octets> bytes have been read. Pass the 684Invoke the callback only once C<$octets> bytes have been read. Pass the
628data read to the callback. The callback will never be called with less 685data read to the callback. The callback will never be called with less
629data. 686data.
630 687
653 710
654sub unshift_read_chunk { 711sub unshift_read_chunk {
655 $_[0]->unshift_read (chunk => $_[1], $_[2]); 712 $_[0]->unshift_read (chunk => $_[1], $_[2]);
656} 713}
657 714
658=item line => [$eol, ]$cb->($self, $line, $eol) 715=item line => [$eol, ]$cb->($handle, $line, $eol)
659 716
660The callback will be called only once a full line (including the end of 717The callback will be called only once a full line (including the end of
661line marker, C<$eol>) has been read. This line (excluding the end of line 718line marker, C<$eol>) has been read. This line (excluding the end of line
662marker) will be passed to the callback as second argument (C<$line>), and 719marker) will be passed to the callback as second argument (C<$line>), and
663the end of line marker as the third argument (C<$eol>). 720the end of line marker as the third argument (C<$eol>).
700sub unshift_read_line { 757sub unshift_read_line {
701 my $self = shift; 758 my $self = shift;
702 $self->unshift_read (line => @_); 759 $self->unshift_read (line => @_);
703} 760}
704 761
705=item netstring => $cb->($string) 762=item netstring => $cb->($handle, $string)
706 763
707A netstring (http://cr.yp.to/proto/netstrings.txt, this is not an endorsement). 764A netstring (http://cr.yp.to/proto/netstrings.txt, this is not an endorsement).
708 765
709Throws an error with C<$!> set to EBADMSG on format violations. 766Throws an error with C<$!> set to EBADMSG on format violations.
710 767
738 795
739 1 796 1
740 } 797 }
741}; 798};
742 799
743=item regex => $accept[, $reject[, $skip], $cb->($data) 800=item regex => $accept[, $reject[, $skip], $cb->($handle, $data)
744 801
745Makes a regex match against the regex object C<$accept> and returns 802Makes a regex match against the regex object C<$accept> and returns
746everything up to and including the match. 803everything up to and including the match.
747 804
748Example: read a single line terminated by '\n'. 805Example: read a single line terminated by '\n'.
809 866
810 () 867 ()
811 } 868 }
812}; 869};
813 870
871=item json => $cb->($handle, $hash_or_arrayref)
872
873Reads a JSON object or array, decodes it and passes it to the callback.
874
875If a C<json> object was passed to the constructor, then that will be used
876for the final decode, otherwise it will create a JSON coder expecting UTF-8.
877
878This read type uses the incremental parser available with JSON version
8792.09 (and JSON::XS version 2.2) and above. You have to provide a
880dependency on your own: this module will load the JSON module, but
881AnyEvent does not depend on it itself.
882
883Since JSON texts are fully self-delimiting, the C<json> read and write
884types are an ideal simple RPC protocol: just exchange JSON datagrams. See
885the C<json> write type description, above, for an actual example.
886
887=cut
888
889register_read_type json => sub {
890 my ($self, $cb, $accept, $reject, $skip) = @_;
891
892 require JSON;
893
894 my $data;
895 my $rbuf = \$self->{rbuf};
896
897 my $json = $self->{json} ||= JSON->new->utf8;
898
899 sub {
900 my $ref = $json->incr_parse ($self->{rbuf});
901
902 if ($ref) {
903 $self->{rbuf} = $json->incr_text;
904 $json->incr_text = "";
905 $cb->($self, $ref);
906
907 1
908 } else {
909 $self->{rbuf} = "";
910 ()
911 }
912 }
913};
914
814=back 915=back
815 916
816=item AnyEvent::Handle::register_read_type type => $coderef->($self, $cb, @args) 917=item AnyEvent::Handle::register_read_type type => $coderef->($handle, $cb, @args)
817 918
818This function (not method) lets you add your own types to C<push_read>. 919This function (not method) lets you add your own types to C<push_read>.
819 920
820Whenever the given C<type> is used, C<push_read> will invoke the code 921Whenever the given C<type> is used, C<push_read> will invoke the code
821reference with the handle object, the callback and the remaining 922reference with the handle object, the callback and the remaining
823 924
824The code reference is supposed to return a callback (usually a closure) 925The code reference is supposed to return a callback (usually a closure)
825that works as a plain read callback (see C<< ->push_read ($cb) >>). 926that works as a plain read callback (see C<< ->push_read ($cb) >>).
826 927
827It should invoke the passed callback when it is done reading (remember to 928It should invoke the passed callback when it is done reading (remember to
828pass C<$self> as first argument as all other callbacks do that). 929pass C<$handle> as first argument as all other callbacks do that).
829 930
830Note that this is a function, and all types registered this way will be 931Note that this is a function, and all types registered this way will be
831global, so try to use unique names. 932global, so try to use unique names.
832 933
833For examples, see the source of this module (F<perldoc -m AnyEvent::Handle>, 934For examples, see the source of this module (F<perldoc -m AnyEvent::Handle>,
845=cut 946=cut
846 947
847sub stop_read { 948sub stop_read {
848 my ($self) = @_; 949 my ($self) = @_;
849 950
850 delete $self->{rw}; 951 delete $self->{_rw};
851} 952}
852 953
853sub start_read { 954sub start_read {
854 my ($self) = @_; 955 my ($self) = @_;
855 956
856 unless ($self->{rw} || $self->{eof}) { 957 unless ($self->{_rw} || $self->{_eof}) {
857 Scalar::Util::weaken $self; 958 Scalar::Util::weaken $self;
858 959
859 $self->{rw} = AnyEvent->io (fh => $self->{fh}, poll => "r", cb => sub { 960 $self->{_rw} = AnyEvent->io (fh => $self->{fh}, poll => "r", cb => sub {
860 my $rbuf = $self->{filter_r} ? \my $buf : \$self->{rbuf}; 961 my $rbuf = $self->{filter_r} ? \my $buf : \$self->{rbuf};
861 my $len = sysread $self->{fh}, $$rbuf, $self->{read_size} || 8192, length $$rbuf; 962 my $len = sysread $self->{fh}, $$rbuf, $self->{read_size} || 8192, length $$rbuf;
862 963
863 if ($len > 0) { 964 if ($len > 0) {
864 $self->{filter_r} 965 $self->{filter_r}
865 ? $self->{filter_r}->($self, $rbuf) 966 ? $self->{filter_r}->($self, $rbuf)
866 : $self->_drain_rbuf; 967 : $self->_drain_rbuf;
867 968
868 } elsif (defined $len) { 969 } elsif (defined $len) {
869 delete $self->{rw}; 970 delete $self->{_rw};
870 $self->{eof} = 1; 971 $self->{_eof} = 1;
871 $self->_drain_rbuf; 972 $self->_drain_rbuf;
872 973
873 } elsif ($! != EAGAIN && $! != EINTR && $! != &AnyEvent::Util::WSAWOULDBLOCK) { 974 } elsif ($! != EAGAIN && $! != EINTR && $! != WSAEWOULDBLOCK) {
874 return $self->error; 975 return $self->error;
875 } 976 }
876 }); 977 });
877 } 978 }
878} 979}
879 980
880sub _dotls { 981sub _dotls {
881 my ($self) = @_; 982 my ($self) = @_;
882 983
883 if (length $self->{tls_wbuf}) { 984 if (length $self->{_tls_wbuf}) {
884 while ((my $len = Net::SSLeay::write ($self->{tls}, $self->{tls_wbuf})) > 0) { 985 while ((my $len = Net::SSLeay::write ($self->{tls}, $self->{_tls_wbuf})) > 0) {
885 substr $self->{tls_wbuf}, 0, $len, ""; 986 substr $self->{_tls_wbuf}, 0, $len, "";
886 } 987 }
887 } 988 }
888 989
889 if (defined (my $buf = Net::SSLeay::BIO_read ($self->{tls_wbio}))) { 990 if (defined (my $buf = Net::SSLeay::BIO_read ($self->{_wbio}))) {
890 $self->{wbuf} .= $buf; 991 $self->{wbuf} .= $buf;
891 $self->_drain_wbuf; 992 $self->_drain_wbuf;
892 } 993 }
893 994
894 while (defined (my $buf = Net::SSLeay::read ($self->{tls}))) { 995 while (defined (my $buf = Net::SSLeay::read ($self->{tls}))) {
919The first argument is the same as the C<tls> constructor argument (either 1020The first argument is the same as the C<tls> constructor argument (either
920C<"connect">, C<"accept"> or an existing Net::SSLeay object). 1021C<"connect">, C<"accept"> or an existing Net::SSLeay object).
921 1022
922The second argument is the optional C<Net::SSLeay::CTX> object that is 1023The second argument is the optional C<Net::SSLeay::CTX> object that is
923used when AnyEvent::Handle has to create its own TLS connection object. 1024used when AnyEvent::Handle has to create its own TLS connection object.
1025
1026The TLS connection object will end up in C<< $handle->{tls} >> after this
1027call and can be used or changed to your liking. Note that the handshake
1028might have already started when this function returns.
924 1029
925=cut 1030=cut
926 1031
927# TODO: maybe document... 1032# TODO: maybe document...
928sub starttls { 1033sub starttls {
947 # http://www.mail-archive.com/openssl-dev@openssl.org/msg22420.html 1052 # http://www.mail-archive.com/openssl-dev@openssl.org/msg22420.html
948 Net::SSLeay::CTX_set_mode ($self->{tls}, 1053 Net::SSLeay::CTX_set_mode ($self->{tls},
949 (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE () } || 1) 1054 (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE () } || 1)
950 | (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER () } || 2)); 1055 | (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER () } || 2));
951 1056
952 $self->{tls_rbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ()); 1057 $self->{_rbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ());
953 $self->{tls_wbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ()); 1058 $self->{_wbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ());
954 1059
955 Net::SSLeay::set_bio ($ssl, $self->{tls_rbio}, $self->{tls_wbio}); 1060 Net::SSLeay::set_bio ($ssl, $self->{_rbio}, $self->{_wbio});
956 1061
957 $self->{filter_w} = sub { 1062 $self->{filter_w} = sub {
958 $_[0]{tls_wbuf} .= ${$_[1]}; 1063 $_[0]{_tls_wbuf} .= ${$_[1]};
959 &_dotls; 1064 &_dotls;
960 }; 1065 };
961 $self->{filter_r} = sub { 1066 $self->{filter_r} = sub {
962 Net::SSLeay::BIO_write ($_[0]{tls_rbio}, ${$_[1]}); 1067 Net::SSLeay::BIO_write ($_[0]{_rbio}, ${$_[1]});
963 &_dotls; 1068 &_dotls;
964 }; 1069 };
965} 1070}
966 1071
967=item $handle->stoptls 1072=item $handle->stoptls
973 1078
974sub stoptls { 1079sub stoptls {
975 my ($self) = @_; 1080 my ($self) = @_;
976 1081
977 Net::SSLeay::free (delete $self->{tls}) if $self->{tls}; 1082 Net::SSLeay::free (delete $self->{tls}) if $self->{tls};
1083
978 delete $self->{tls_rbio}; 1084 delete $self->{_rbio};
979 delete $self->{tls_wbio}; 1085 delete $self->{_wbio};
980 delete $self->{tls_wbuf}; 1086 delete $self->{_tls_wbuf};
981 delete $self->{filter_r}; 1087 delete $self->{filter_r};
982 delete $self->{filter_w}; 1088 delete $self->{filter_w};
983} 1089}
984 1090
985sub DESTROY { 1091sub DESTROY {
1023 } 1129 }
1024} 1130}
1025 1131
1026=back 1132=back
1027 1133
1134=head1 SUBCLASSING AnyEvent::Handle
1135
1136In many cases, you might want to subclass AnyEvent::Handle.
1137
1138To make this easier, a given version of AnyEvent::Handle uses these
1139conventions:
1140
1141=over 4
1142
1143=item * all constructor arguments become object members.
1144
1145At least initially, when you pass a C<tls>-argument to the constructor it
1146will end up in C<< $handle->{tls} >>. Those members might be changes or
1147mutated later on (for example C<tls> will hold the TLS connection object).
1148
1149=item * other object member names are prefixed with an C<_>.
1150
1151All object members not explicitly documented (internal use) are prefixed
1152with an underscore character, so the remaining non-C<_>-namespace is free
1153for use for subclasses.
1154
1155=item * all members not documented here and not prefixed with an underscore
1156are free to use in subclasses.
1157
1158Of course, new versions of AnyEvent::Handle may introduce more "public"
1159member variables, but thats just life, at least it is documented.
1160
1161=back
1162
1028=head1 AUTHOR 1163=head1 AUTHOR
1029 1164
1030Robin Redeker C<< <elmex at ta-sa.org> >>, Marc Lehmann <schmorp@schmorp.de>. 1165Robin Redeker C<< <elmex at ta-sa.org> >>, Marc Lehmann <schmorp@schmorp.de>.
1031 1166
1032=cut 1167=cut

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines