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.40 by root, Tue May 27 05:36:27 2008 UTC

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 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
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 && $! != WSAWOULDBLOCK) {
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
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
375=item AnyEvent::Handle::register_write_type type => $coderef->($self, @args) 412=item AnyEvent::Handle::register_write_type type => $coderef->($handle, @args)
376 413
377This function (not method) lets you add your own types to C<push_write>. 414This 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 415Whenever the given C<type> is used, C<push_write> will invoke the code
379reference with the handle object and the remaining arguments. 416reference with the handle object and the remaining arguments.
380 417
480 return if $self->{in_drain}; 517 return if $self->{in_drain};
481 local $self->{in_drain} = 1; 518 local $self->{in_drain} = 1;
482 519
483 while (my $len = length $self->{rbuf}) { 520 while (my $len = length $self->{rbuf}) {
484 no strict 'refs'; 521 no strict 'refs';
485 if (my $cb = shift @{ $self->{queue} }) { 522 if (my $cb = shift @{ $self->{_queue} }) {
486 unless ($cb->($self)) { 523 unless ($cb->($self)) {
487 if ($self->{eof}) { 524 if ($self->{_eof}) {
488 # 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)
489 $! = &Errno::EPIPE; 526 $! = &Errno::EPIPE;
490 $self->error; 527 $self->error;
491 } 528 }
492 529
493 unshift @{ $self->{queue} }, $cb; 530 unshift @{ $self->{_queue} }, $cb;
494 return; 531 return;
495 } 532 }
496 } elsif ($self->{on_read}) { 533 } elsif ($self->{on_read}) {
497 $self->{on_read}($self); 534 $self->{on_read}($self);
498 535
499 if ( 536 if (
500 $self->{eof} # if no further data will arrive 537 $self->{_eof} # if no further data will arrive
501 && $len == length $self->{rbuf} # and no data has been consumed 538 && $len == length $self->{rbuf} # and no data has been consumed
502 && !@{ $self->{queue} } # and the queue is still empty 539 && !@{ $self->{_queue} } # and the queue is still empty
503 && $self->{on_read} # and we still want to read data 540 && $self->{on_read} # and we still want to read data
504 ) { 541 ) {
505 # then no progress can be made 542 # then no progress can be made
506 $! = &Errno::EPIPE; 543 $! = &Errno::EPIPE;
507 $self->error; 544 $self->error;
508 } 545 }
509 } else { 546 } else {
510 # read side becomes idle 547 # read side becomes idle
511 delete $self->{rw}; 548 delete $self->{_rw};
512 return; 549 return;
513 } 550 }
514 } 551 }
515 552
516 if ($self->{eof}) { 553 if ($self->{_eof}) {
517 $self->_shutdown; 554 $self->_shutdown;
518 $self->{on_eof}($self) 555 $self->{on_eof}($self)
519 if $self->{on_eof}; 556 if $self->{on_eof};
520 } 557 }
521} 558}
587 624
588 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::push_read") 625 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::push_read")
589 ->($self, $cb, @_); 626 ->($self, $cb, @_);
590 } 627 }
591 628
592 push @{ $self->{queue} }, $cb; 629 push @{ $self->{_queue} }, $cb;
593 $self->_drain_rbuf; 630 $self->_drain_rbuf;
594} 631}
595 632
596sub unshift_read { 633sub unshift_read {
597 my $self = shift; 634 my $self = shift;
603 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::unshift_read") 640 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::unshift_read")
604 ->($self, $cb, @_); 641 ->($self, $cb, @_);
605 } 642 }
606 643
607 644
608 unshift @{ $self->{queue} }, $cb; 645 unshift @{ $self->{_queue} }, $cb;
609 $self->_drain_rbuf; 646 $self->_drain_rbuf;
610} 647}
611 648
612=item $handle->push_read (type => @args, $cb) 649=item $handle->push_read (type => @args, $cb)
613 650
620Predefined types are (if you have ideas for additional types, feel free to 657Predefined types are (if you have ideas for additional types, feel free to
621drop by and tell us): 658drop by and tell us):
622 659
623=over 4 660=over 4
624 661
625=item chunk => $octets, $cb->($self, $data) 662=item chunk => $octets, $cb->($handle, $data)
626 663
627Invoke the callback only once C<$octets> bytes have been read. Pass the 664Invoke 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 665data read to the callback. The callback will never be called with less
629data. 666data.
630 667
653 690
654sub unshift_read_chunk { 691sub unshift_read_chunk {
655 $_[0]->unshift_read (chunk => $_[1], $_[2]); 692 $_[0]->unshift_read (chunk => $_[1], $_[2]);
656} 693}
657 694
658=item line => [$eol, ]$cb->($self, $line, $eol) 695=item line => [$eol, ]$cb->($handle, $line, $eol)
659 696
660The 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
661line 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
662marker) 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
663the end of line marker as the third argument (C<$eol>). 700the end of line marker as the third argument (C<$eol>).
700sub unshift_read_line { 737sub unshift_read_line {
701 my $self = shift; 738 my $self = shift;
702 $self->unshift_read (line => @_); 739 $self->unshift_read (line => @_);
703} 740}
704 741
705=item netstring => $cb->($string) 742=item netstring => $cb->($handle, $string)
706 743
707A netstring (http://cr.yp.to/proto/netstrings.txt, this is not an endorsement). 744A netstring (http://cr.yp.to/proto/netstrings.txt, this is not an endorsement).
708 745
709Throws an error with C<$!> set to EBADMSG on format violations. 746Throws an error with C<$!> set to EBADMSG on format violations.
710 747
738 775
739 1 776 1
740 } 777 }
741}; 778};
742 779
743=item regex => $accept[, $reject[, $skip], $cb->($data) 780=item regex => $accept[, $reject[, $skip], $cb->($handle, $data)
744 781
745Makes a regex match against the regex object C<$accept> and returns 782Makes a regex match against the regex object C<$accept> and returns
746everything up to and including the match. 783everything up to and including the match.
747 784
748Example: read a single line terminated by '\n'. 785Example: read a single line terminated by '\n'.
809 846
810 () 847 ()
811 } 848 }
812}; 849};
813 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
814=back 894=back
815 895
816=item AnyEvent::Handle::register_read_type type => $coderef->($self, $cb, @args) 896=item AnyEvent::Handle::register_read_type type => $coderef->($handle, $cb, @args)
817 897
818This function (not method) lets you add your own types to C<push_read>. 898This function (not method) lets you add your own types to C<push_read>.
819 899
820Whenever the given C<type> is used, C<push_read> will invoke the code 900Whenever the given C<type> is used, C<push_read> will invoke the code
821reference with the handle object, the callback and the remaining 901reference with the handle object, the callback and the remaining
823 903
824The code reference is supposed to return a callback (usually a closure) 904The code reference is supposed to return a callback (usually a closure)
825that works as a plain read callback (see C<< ->push_read ($cb) >>). 905that works as a plain read callback (see C<< ->push_read ($cb) >>).
826 906
827It should invoke the passed callback when it is done reading (remember to 907It should invoke the passed callback when it is done reading (remember to
828pass C<$self> as first argument as all other callbacks do that). 908pass C<$handle> as first argument as all other callbacks do that).
829 909
830Note that this is a function, and all types registered this way will be 910Note that this is a function, and all types registered this way will be
831global, so try to use unique names. 911global, so try to use unique names.
832 912
833For examples, see the source of this module (F<perldoc -m AnyEvent::Handle>, 913For examples, see the source of this module (F<perldoc -m AnyEvent::Handle>,
845=cut 925=cut
846 926
847sub stop_read { 927sub stop_read {
848 my ($self) = @_; 928 my ($self) = @_;
849 929
850 delete $self->{rw}; 930 delete $self->{_rw};
851} 931}
852 932
853sub start_read { 933sub start_read {
854 my ($self) = @_; 934 my ($self) = @_;
855 935
856 unless ($self->{rw} || $self->{eof}) { 936 unless ($self->{_rw} || $self->{_eof}) {
857 Scalar::Util::weaken $self; 937 Scalar::Util::weaken $self;
858 938
859 $self->{rw} = AnyEvent->io (fh => $self->{fh}, poll => "r", cb => sub { 939 $self->{_rw} = AnyEvent->io (fh => $self->{fh}, poll => "r", cb => sub {
860 my $rbuf = $self->{filter_r} ? \my $buf : \$self->{rbuf}; 940 my $rbuf = $self->{filter_r} ? \my $buf : \$self->{rbuf};
861 my $len = sysread $self->{fh}, $$rbuf, $self->{read_size} || 8192, length $$rbuf; 941 my $len = sysread $self->{fh}, $$rbuf, $self->{read_size} || 8192, length $$rbuf;
862 942
863 if ($len > 0) { 943 if ($len > 0) {
864 $self->{filter_r} 944 $self->{filter_r}
865 ? $self->{filter_r}->($self, $rbuf) 945 ? $self->{filter_r}->($self, $rbuf)
866 : $self->_drain_rbuf; 946 : $self->_drain_rbuf;
867 947
868 } elsif (defined $len) { 948 } elsif (defined $len) {
869 delete $self->{rw}; 949 delete $self->{_rw};
870 $self->{eof} = 1; 950 $self->{_eof} = 1;
871 $self->_drain_rbuf; 951 $self->_drain_rbuf;
872 952
873 } elsif ($! != EAGAIN && $! != EINTR && $! != &AnyEvent::Util::WSAWOULDBLOCK) { 953 } elsif ($! != EAGAIN && $! != EINTR && $! != &AnyEvent::Util::WSAWOULDBLOCK) {
874 return $self->error; 954 return $self->error;
875 } 955 }
878} 958}
879 959
880sub _dotls { 960sub _dotls {
881 my ($self) = @_; 961 my ($self) = @_;
882 962
883 if (length $self->{tls_wbuf}) { 963 if (length $self->{_tls_wbuf}) {
884 while ((my $len = Net::SSLeay::write ($self->{tls}, $self->{tls_wbuf})) > 0) { 964 while ((my $len = Net::SSLeay::write ($self->{tls}, $self->{_tls_wbuf})) > 0) {
885 substr $self->{tls_wbuf}, 0, $len, ""; 965 substr $self->{_tls_wbuf}, 0, $len, "";
886 } 966 }
887 } 967 }
888 968
889 if (defined (my $buf = Net::SSLeay::BIO_read ($self->{tls_wbio}))) { 969 if (defined (my $buf = Net::SSLeay::BIO_read ($self->{_wbio}))) {
890 $self->{wbuf} .= $buf; 970 $self->{wbuf} .= $buf;
891 $self->_drain_wbuf; 971 $self->_drain_wbuf;
892 } 972 }
893 973
894 while (defined (my $buf = Net::SSLeay::read ($self->{tls}))) { 974 while (defined (my $buf = Net::SSLeay::read ($self->{tls}))) {
919The first argument is the same as the C<tls> constructor argument (either 999The first argument is the same as the C<tls> constructor argument (either
920C<"connect">, C<"accept"> or an existing Net::SSLeay object). 1000C<"connect">, C<"accept"> or an existing Net::SSLeay object).
921 1001
922The second argument is the optional C<Net::SSLeay::CTX> object that is 1002The second argument is the optional C<Net::SSLeay::CTX> object that is
923used when AnyEvent::Handle has to create its own TLS connection object. 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.
924 1008
925=cut 1009=cut
926 1010
927# TODO: maybe document... 1011# TODO: maybe document...
928sub starttls { 1012sub starttls {
947 # http://www.mail-archive.com/openssl-dev@openssl.org/msg22420.html 1031 # http://www.mail-archive.com/openssl-dev@openssl.org/msg22420.html
948 Net::SSLeay::CTX_set_mode ($self->{tls}, 1032 Net::SSLeay::CTX_set_mode ($self->{tls},
949 (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE () } || 1) 1033 (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE () } || 1)
950 | (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER () } || 2)); 1034 | (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER () } || 2));
951 1035
952 $self->{tls_rbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ()); 1036 $self->{_rbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ());
953 $self->{tls_wbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ()); 1037 $self->{_wbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ());
954 1038
955 Net::SSLeay::set_bio ($ssl, $self->{tls_rbio}, $self->{tls_wbio}); 1039 Net::SSLeay::set_bio ($ssl, $self->{_rbio}, $self->{_wbio});
956 1040
957 $self->{filter_w} = sub { 1041 $self->{filter_w} = sub {
958 $_[0]{tls_wbuf} .= ${$_[1]}; 1042 $_[0]{_tls_wbuf} .= ${$_[1]};
959 &_dotls; 1043 &_dotls;
960 }; 1044 };
961 $self->{filter_r} = sub { 1045 $self->{filter_r} = sub {
962 Net::SSLeay::BIO_write ($_[0]{tls_rbio}, ${$_[1]}); 1046 Net::SSLeay::BIO_write ($_[0]{_rbio}, ${$_[1]});
963 &_dotls; 1047 &_dotls;
964 }; 1048 };
965} 1049}
966 1050
967=item $handle->stoptls 1051=item $handle->stoptls
973 1057
974sub stoptls { 1058sub stoptls {
975 my ($self) = @_; 1059 my ($self) = @_;
976 1060
977 Net::SSLeay::free (delete $self->{tls}) if $self->{tls}; 1061 Net::SSLeay::free (delete $self->{tls}) if $self->{tls};
1062
978 delete $self->{tls_rbio}; 1063 delete $self->{_rbio};
979 delete $self->{tls_wbio}; 1064 delete $self->{_wbio};
980 delete $self->{tls_wbuf}; 1065 delete $self->{_tls_wbuf};
981 delete $self->{filter_r}; 1066 delete $self->{filter_r};
982 delete $self->{filter_w}; 1067 delete $self->{filter_w};
983} 1068}
984 1069
985sub DESTROY { 1070sub DESTROY {
1023 } 1108 }
1024} 1109}
1025 1110
1026=back 1111=back
1027 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
1028=head1 AUTHOR 1142=head1 AUTHOR
1029 1143
1030Robin 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>.
1031 1145
1032=cut 1146=cut

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines