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.73 by root, Thu Jul 17 15:21:02 2008 UTC vs.
Revision 1.83 by root, Thu Aug 21 19:11:37 2008 UTC

1package AnyEvent::Handle; 1package AnyEvent::Handle;
2 2
3no warnings; 3no warnings;
4use strict; 4use strict qw(subs vars);
5 5
6use AnyEvent (); 6use AnyEvent ();
7use AnyEvent::Util qw(WSAEWOULDBLOCK); 7use AnyEvent::Util qw(WSAEWOULDBLOCK);
8use Scalar::Util (); 8use Scalar::Util ();
9use Carp (); 9use Carp ();
14 14
15AnyEvent::Handle - non-blocking I/O on file handles via AnyEvent 15AnyEvent::Handle - non-blocking I/O on file handles via AnyEvent
16 16
17=cut 17=cut
18 18
19our $VERSION = 4.22; 19our $VERSION = 4.232;
20 20
21=head1 SYNOPSIS 21=head1 SYNOPSIS
22 22
23 use AnyEvent; 23 use AnyEvent;
24 use AnyEvent::Handle; 24 use AnyEvent::Handle;
70 70
71=item fh => $filehandle [MANDATORY] 71=item fh => $filehandle [MANDATORY]
72 72
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 mode (using
76AnyEvent::Util::fh_nonblocking). 76C<AnyEvent::Util::fh_nonblocking>) by the constructor and needs to stay in
77that mode.
77 78
78=item on_eof => $cb->($handle) 79=item on_eof => $cb->($handle)
79 80
80Set the callback to be called when an end-of-file condition is detcted, 81Set the callback to be called when an end-of-file condition is detected,
81i.e. in the case of a socket, when the other side has closed the 82i.e. in the case of a socket, when the other side has closed the
82connection cleanly. 83connection cleanly.
83 84
85For sockets, this just means that the other side has stopped sending data,
86you can still try to write data, and, in fact, one can return from the eof
87callback and continue writing data, as only the read part has been shut
88down.
89
84While not mandatory, it is highly recommended to set an eof callback, 90While not mandatory, it is I<highly> recommended to set an eof callback,
85otherwise you might end up with a closed socket while you are still 91otherwise you might end up with a closed socket while you are still
86waiting for data. 92waiting for data.
93
94If an EOF condition has been detected but no C<on_eof> callback has been
95set, then a fatal error will be raised with C<$!> set to <0>.
87 96
88=item on_error => $cb->($handle, $fatal) 97=item on_error => $cb->($handle, $fatal)
89 98
90This is the error callback, which is called when, well, some error 99This is the error callback, which is called when, well, some error
91occured, such as not being able to resolve the hostname, failure to 100occured, such as not being able to resolve the hostname, failure to
92connect or a read error. 101connect or a read error.
93 102
94Some errors are fatal (which is indicated by C<$fatal> being true). On 103Some errors are fatal (which is indicated by C<$fatal> being true). On
95fatal errors the handle object will be shut down and will not be 104fatal errors the handle object will be shut down and will not be usable
105(but you are free to look at the current C< ->rbuf >). Examples of fatal
106errors are an EOF condition with active (but unsatisifable) read watchers
107(C<EPIPE>) or I/O errors.
108
96usable. Non-fatal errors can be retried by simply returning, but it is 109Non-fatal errors can be retried by simply returning, but it is recommended
97recommended to simply ignore this parameter and instead abondon the handle 110to simply ignore this parameter and instead abondon the handle object
98object when this callback is invoked. 111when this callback is invoked. Examples of non-fatal errors are timeouts
112C<ETIMEDOUT>) or badly-formatted data (C<EBADMSG>).
99 113
100On callback entrance, the value of C<$!> contains the operating system 114On callback entrance, the value of C<$!> contains the operating system
101error (or C<ENOSPC>, C<EPIPE>, C<ETIMEDOUT> or C<EBADMSG>). 115error (or C<ENOSPC>, C<EPIPE>, C<ETIMEDOUT> or C<EBADMSG>).
102 116
103While not mandatory, it is I<highly> recommended to set this callback, as 117While not mandatory, it is I<highly> recommended to set this callback, as
225You can also provide your own TLS connection object, but you have 239You can also provide your own TLS connection object, but you have
226to make sure that you call either C<Net::SSLeay::set_connect_state> 240to make sure that you call either C<Net::SSLeay::set_connect_state>
227or C<Net::SSLeay::set_accept_state> on it before you pass it to 241or C<Net::SSLeay::set_accept_state> on it before you pass it to
228AnyEvent::Handle. 242AnyEvent::Handle.
229 243
230See the C<starttls> method if you need to start TLs negotiation later. 244See the C<starttls> method if you need to start TLS negotiation later.
231 245
232=item tls_ctx => $ssl_ctx 246=item tls_ctx => $ssl_ctx
233 247
234Use the given Net::SSLeay::CTX object to create the new TLS connection 248Use the given Net::SSLeay::CTX object to create the new TLS connection
235(unless a connection object was specified directly). If this parameter is 249(unless a connection object was specified directly). If this parameter is
288 delete $self->{_rw}; 302 delete $self->{_rw};
289 delete $self->{_ww}; 303 delete $self->{_ww};
290 delete $self->{fh}; 304 delete $self->{fh};
291 305
292 $self->stoptls; 306 $self->stoptls;
307
308 delete $self->{on_read};
309 delete $self->{_queue};
293} 310}
294 311
295sub _error { 312sub _error {
296 my ($self, $errno, $fatal) = @_; 313 my ($self, $errno, $fatal) = @_;
297 314
726 743
727 if ( 744 if (
728 defined $self->{rbuf_max} 745 defined $self->{rbuf_max}
729 && $self->{rbuf_max} < length $self->{rbuf} 746 && $self->{rbuf_max} < length $self->{rbuf}
730 ) { 747 ) {
731 return $self->_error (&Errno::ENOSPC, 1); 748 $self->_error (&Errno::ENOSPC, 1), return;
732 } 749 }
733 750
734 while () { 751 while () {
735 no strict 'refs';
736
737 my $len = length $self->{rbuf}; 752 my $len = length $self->{rbuf};
738 753
739 if (my $cb = shift @{ $self->{_queue} }) { 754 if (my $cb = shift @{ $self->{_queue} }) {
740 unless ($cb->($self)) { 755 unless ($cb->($self)) {
741 if ($self->{_eof}) { 756 if ($self->{_eof}) {
742 # no progress can be made (not enough data and no data forthcoming) 757 # no progress can be made (not enough data and no data forthcoming)
743 $self->_error (&Errno::EPIPE, 1), last; 758 $self->_error (&Errno::EPIPE, 1), return;
744 } 759 }
745 760
746 unshift @{ $self->{_queue} }, $cb; 761 unshift @{ $self->{_queue} }, $cb;
747 last; 762 last;
748 } 763 }
756 && !@{ $self->{_queue} } # and the queue is still empty 771 && !@{ $self->{_queue} } # and the queue is still empty
757 && $self->{on_read} # but we still have on_read 772 && $self->{on_read} # but we still have on_read
758 ) { 773 ) {
759 # no further data will arrive 774 # no further data will arrive
760 # so no progress can be made 775 # so no progress can be made
761 $self->_error (&Errno::EPIPE, 1), last 776 $self->_error (&Errno::EPIPE, 1), return
762 if $self->{_eof}; 777 if $self->{_eof};
763 778
764 last; # more data might arrive 779 last; # more data might arrive
765 } 780 }
766 } else { 781 } else {
768 delete $self->{_rw}; 783 delete $self->{_rw};
769 last; 784 last;
770 } 785 }
771 } 786 }
772 787
788 if ($self->{_eof}) {
789 if ($self->{on_eof}) {
773 $self->{on_eof}($self) 790 $self->{on_eof}($self)
774 if $self->{_eof} && $self->{on_eof}; 791 } else {
792 $self->_error (0, 1);
793 }
794 }
775 795
776 # may need to restart read watcher 796 # may need to restart read watcher
777 unless ($self->{_rw}) { 797 unless ($self->{_rw}) {
778 $self->start_read 798 $self->start_read
779 if $self->{on_read} || @{ $self->{_queue} }; 799 if $self->{on_read} || @{ $self->{_queue} };
905 $cb->($_[0], substr $_[0]{rbuf}, 0, $len, ""); 925 $cb->($_[0], substr $_[0]{rbuf}, 0, $len, "");
906 1 926 1
907 } 927 }
908}; 928};
909 929
910# compatibility with older API
911sub push_read_chunk {
912 $_[0]->push_read (chunk => $_[1], $_[2]);
913}
914
915sub unshift_read_chunk {
916 $_[0]->unshift_read (chunk => $_[1], $_[2]);
917}
918
919=item line => [$eol, ]$cb->($handle, $line, $eol) 930=item line => [$eol, ]$cb->($handle, $line, $eol)
920 931
921The callback will be called only once a full line (including the end of 932The callback will be called only once a full line (including the end of
922line marker, C<$eol>) has been read. This line (excluding the end of line 933line marker, C<$eol>) has been read. This line (excluding the end of line
923marker) will be passed to the callback as second argument (C<$line>), and 934marker) will be passed to the callback as second argument (C<$line>), and
938=cut 949=cut
939 950
940register_read_type line => sub { 951register_read_type line => sub {
941 my ($self, $cb, $eol) = @_; 952 my ($self, $cb, $eol) = @_;
942 953
943 $eol = qr|(\015?\012)| if @_ < 3; 954 if (@_ < 3) {
955 # this is more than twice as fast as the generic code below
956 sub {
957 $_[0]{rbuf} =~ s/^([^\015\012]*)(\015?\012)// or return;
958
959 $cb->($_[0], $1, $2);
960 1
961 }
962 } else {
944 $eol = quotemeta $eol unless ref $eol; 963 $eol = quotemeta $eol unless ref $eol;
945 $eol = qr|^(.*?)($eol)|s; 964 $eol = qr|^(.*?)($eol)|s;
946 965
947 sub { 966 sub {
948 $_[0]{rbuf} =~ s/$eol// or return; 967 $_[0]{rbuf} =~ s/$eol// or return;
949 968
950 $cb->($_[0], $1, $2); 969 $cb->($_[0], $1, $2);
970 1
951 1 971 }
952 } 972 }
953}; 973};
954
955# compatibility with older API
956sub push_read_line {
957 my $self = shift;
958 $self->push_read (line => @_);
959}
960
961sub unshift_read_line {
962 my $self = shift;
963 $self->unshift_read (line => @_);
964}
965 974
966=item regex => $accept[, $reject[, $skip], $cb->($handle, $data) 975=item regex => $accept[, $reject[, $skip], $cb->($handle, $data)
967 976
968Makes a regex match against the regex object C<$accept> and returns 977Makes a regex match against the regex object C<$accept> and returns
969everything up to and including the match. 978everything up to and including the match.
1090register_read_type packstring => sub { 1099register_read_type packstring => sub {
1091 my ($self, $cb, $format) = @_; 1100 my ($self, $cb, $format) = @_;
1092 1101
1093 sub { 1102 sub {
1094 # when we can use 5.10 we can use ".", but for 5.8 we use the re-pack method 1103 # when we can use 5.10 we can use ".", but for 5.8 we use the re-pack method
1095 defined (my $len = eval { unpack $format, $_[0]->{rbuf} }) 1104 defined (my $len = eval { unpack $format, $_[0]{rbuf} })
1096 or return; 1105 or return;
1097 1106
1107 $format = length pack $format, $len;
1108
1109 # bypass unshift if we already have the remaining chunk
1110 if ($format + $len <= length $_[0]{rbuf}) {
1111 my $data = substr $_[0]{rbuf}, $format, $len;
1112 substr $_[0]{rbuf}, 0, $format + $len, "";
1113 $cb->($_[0], $data);
1114 } else {
1098 # remove prefix 1115 # remove prefix
1099 substr $_[0]->{rbuf}, 0, (length pack $format, $len), ""; 1116 substr $_[0]{rbuf}, 0, $format, "";
1100 1117
1101 # read rest 1118 # read remaining chunk
1102 $_[0]->unshift_read (chunk => $len, $cb); 1119 $_[0]->unshift_read (chunk => $len, $cb);
1120 }
1103 1121
1104 1 1122 1
1105 } 1123 }
1106}; 1124};
1107 1125
1164 1182
1165 require Storable; 1183 require Storable;
1166 1184
1167 sub { 1185 sub {
1168 # when we can use 5.10 we can use ".", but for 5.8 we use the re-pack method 1186 # when we can use 5.10 we can use ".", but for 5.8 we use the re-pack method
1169 defined (my $len = eval { unpack "w", $_[0]->{rbuf} }) 1187 defined (my $len = eval { unpack "w", $_[0]{rbuf} })
1170 or return; 1188 or return;
1171 1189
1190 my $format = length pack "w", $len;
1191
1192 # bypass unshift if we already have the remaining chunk
1193 if ($format + $len <= length $_[0]{rbuf}) {
1194 my $data = substr $_[0]{rbuf}, $format, $len;
1195 substr $_[0]{rbuf}, 0, $format + $len, "";
1196 $cb->($_[0], Storable::thaw ($data));
1197 } else {
1172 # remove prefix 1198 # remove prefix
1173 substr $_[0]->{rbuf}, 0, (length pack "w", $len), ""; 1199 substr $_[0]{rbuf}, 0, $format, "";
1174 1200
1175 # read rest 1201 # read remaining chunk
1176 $_[0]->unshift_read (chunk => $len, sub { 1202 $_[0]->unshift_read (chunk => $len, sub {
1177 if (my $ref = eval { Storable::thaw ($_[1]) }) { 1203 if (my $ref = eval { Storable::thaw ($_[1]) }) {
1178 $cb->($_[0], $ref); 1204 $cb->($_[0], $ref);
1179 } else { 1205 } else {
1180 $self->_error (&Errno::EBADMSG); 1206 $self->_error (&Errno::EBADMSG);
1207 }
1181 } 1208 });
1182 }); 1209 }
1210
1211 1
1183 } 1212 }
1184}; 1213};
1185 1214
1186=back 1215=back
1187 1216
1448=over 4 1477=over 4
1449 1478
1450=item * all constructor arguments become object members. 1479=item * all constructor arguments become object members.
1451 1480
1452At least initially, when you pass a C<tls>-argument to the constructor it 1481At least initially, when you pass a C<tls>-argument to the constructor it
1453will end up in C<< $handle->{tls} >>. Those members might be changes or 1482will end up in C<< $handle->{tls} >>. Those members might be changed or
1454mutated later on (for example C<tls> will hold the TLS connection object). 1483mutated later on (for example C<tls> will hold the TLS connection object).
1455 1484
1456=item * other object member names are prefixed with an C<_>. 1485=item * other object member names are prefixed with an C<_>.
1457 1486
1458All object members not explicitly documented (internal use) are prefixed 1487All object members not explicitly documented (internal use) are prefixed

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines