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.38 by root, Mon May 26 21:28:33 2008 UTC vs.
Revision 1.41 by root, Tue May 27 05:47:36 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
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
173=item filter_r => $cb 183=item filter_r => $cb
174 184
175=item filter_w => $cb 185=item filter_w => $cb
176 186
177These exist, but are undocumented at this time. 187These exist, but are undocumented at this time.
376 my ($self, $string) = @_; 386 my ($self, $string) = @_;
377 387
378 sprintf "%d:%s,", (length $string), $string 388 sprintf "%d:%s,", (length $string), $string
379}; 389};
380 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
381=item AnyEvent::Handle::register_write_type type => $coderef->($self, @args) 432=item AnyEvent::Handle::register_write_type type => $coderef->($handle, @args)
382 433
383This 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>.
384Whenever 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
385reference with the handle object and the remaining arguments. 436reference with the handle object and the remaining arguments.
386 437
626Predefined 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
627drop by and tell us): 678drop by and tell us):
628 679
629=over 4 680=over 4
630 681
631=item chunk => $octets, $cb->($self, $data) 682=item chunk => $octets, $cb->($handle, $data)
632 683
633Invoke 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
634data 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
635data. 686data.
636 687
659 710
660sub unshift_read_chunk { 711sub unshift_read_chunk {
661 $_[0]->unshift_read (chunk => $_[1], $_[2]); 712 $_[0]->unshift_read (chunk => $_[1], $_[2]);
662} 713}
663 714
664=item line => [$eol, ]$cb->($self, $line, $eol) 715=item line => [$eol, ]$cb->($handle, $line, $eol)
665 716
666The 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
667line 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
668marker) 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
669the end of line marker as the third argument (C<$eol>). 720the end of line marker as the third argument (C<$eol>).
706sub unshift_read_line { 757sub unshift_read_line {
707 my $self = shift; 758 my $self = shift;
708 $self->unshift_read (line => @_); 759 $self->unshift_read (line => @_);
709} 760}
710 761
711=item netstring => $cb->($string) 762=item netstring => $cb->($handle, $string)
712 763
713A 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).
714 765
715Throws an error with C<$!> set to EBADMSG on format violations. 766Throws an error with C<$!> set to EBADMSG on format violations.
716 767
744 795
745 1 796 1
746 } 797 }
747}; 798};
748 799
749=item regex => $accept[, $reject[, $skip], $cb->($data) 800=item regex => $accept[, $reject[, $skip], $cb->($handle, $data)
750 801
751Makes a regex match against the regex object C<$accept> and returns 802Makes a regex match against the regex object C<$accept> and returns
752everything up to and including the match. 803everything up to and including the match.
753 804
754Example: read a single line terminated by '\n'. 805Example: read a single line terminated by '\n'.
815 866
816 () 867 ()
817 } 868 }
818}; 869};
819 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
820=back 915=back
821 916
822=item AnyEvent::Handle::register_read_type type => $coderef->($self, $cb, @args) 917=item AnyEvent::Handle::register_read_type type => $coderef->($handle, $cb, @args)
823 918
824This 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>.
825 920
826Whenever 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
827reference with the handle object, the callback and the remaining 922reference with the handle object, the callback and the remaining
829 924
830The code reference is supposed to return a callback (usually a closure) 925The code reference is supposed to return a callback (usually a closure)
831that works as a plain read callback (see C<< ->push_read ($cb) >>). 926that works as a plain read callback (see C<< ->push_read ($cb) >>).
832 927
833It 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
834pass C<$self> as first argument as all other callbacks do that). 929pass C<$handle> as first argument as all other callbacks do that).
835 930
836Note 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
837global, so try to use unique names. 932global, so try to use unique names.
838 933
839For 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>,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines