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

Comparing AnyEvent/lib/AnyEvent.pm (file contents):
Revision 1.198 by root, Thu Mar 26 20:17:44 2009 UTC vs.
Revision 1.210 by root, Wed May 13 15:19:43 2009 UTC

6 6
7=head1 SYNOPSIS 7=head1 SYNOPSIS
8 8
9 use AnyEvent; 9 use AnyEvent;
10 10
11 # file descriptor readable
11 my $w = AnyEvent->io (fh => $fh, poll => "r|w", cb => sub { ... }); 12 my $w = AnyEvent->io (fh => $fh, poll => "r", cb => sub { ... });
12 13
14 # one-shot or repeating timers
13 my $w = AnyEvent->timer (after => $seconds, cb => sub { ... }); 15 my $w = AnyEvent->timer (after => $seconds, cb => sub { ... });
14 my $w = AnyEvent->timer (after => $seconds, interval => $seconds, cb => ... 16 my $w = AnyEvent->timer (after => $seconds, interval => $seconds, cb => ...
15 17
16 print AnyEvent->now; # prints current event loop time 18 print AnyEvent->now; # prints current event loop time
17 print AnyEvent->time; # think Time::HiRes::time or simply CORE::time. 19 print AnyEvent->time; # think Time::HiRes::time or simply CORE::time.
18 20
21 # POSIX signal
19 my $w = AnyEvent->signal (signal => "TERM", cb => sub { ... }); 22 my $w = AnyEvent->signal (signal => "TERM", cb => sub { ... });
20 23
24 # child process exit
21 my $w = AnyEvent->child (pid => $pid, cb => sub { 25 my $w = AnyEvent->child (pid => $pid, cb => sub {
22 my ($pid, $status) = @_; 26 my ($pid, $status) = @_;
23 ... 27 ...
24 }); 28 });
29
30 # called when event loop idle (if applicable)
31 my $w = AnyEvent->idle (cb => sub { ... });
25 32
26 my $w = AnyEvent->condvar; # stores whether a condition was flagged 33 my $w = AnyEvent->condvar; # stores whether a condition was flagged
27 $w->send; # wake up current and all future recv's 34 $w->send; # wake up current and all future recv's
28 $w->recv; # enters "main loop" till $condvar gets ->send 35 $w->recv; # enters "main loop" till $condvar gets ->send
29 # use a condvar in callback mode: 36 # use a condvar in callback mode:
168=head2 I/O WATCHERS 175=head2 I/O WATCHERS
169 176
170You can create an I/O watcher by calling the C<< AnyEvent->io >> method 177You can create an I/O watcher by calling the C<< AnyEvent->io >> method
171with the following mandatory key-value pairs as arguments: 178with the following mandatory key-value pairs as arguments:
172 179
173C<fh> the Perl I<file handle> (I<not> file descriptor) to watch for events 180C<fh> is the Perl I<file handle> (I<not> file descriptor) to watch
174(AnyEvent might or might not keep a reference to this file handle). C<poll> 181for events (AnyEvent might or might not keep a reference to this file
182handle). Note that only file handles pointing to things for which
183non-blocking operation makes sense are allowed. This includes sockets,
184most character devices, pipes, fifos and so on, but not for example files
185or block devices.
186
175must be a string that is either C<r> or C<w>, which creates a watcher 187C<poll> must be a string that is either C<r> or C<w>, which creates a
176waiting for "r"eadable or "w"ritable events, respectively. C<cb> is the 188watcher waiting for "r"eadable or "w"ritable events, respectively.
189
177callback to invoke each time the file handle becomes ready. 190C<cb> is the callback to invoke each time the file handle becomes ready.
178 191
179Although the callback might get passed parameters, their value and 192Although the callback might get passed parameters, their value and
180presence is undefined and you cannot rely on them. Portable AnyEvent 193presence is undefined and you cannot rely on them. Portable AnyEvent
181callbacks cannot use arguments passed to I/O watcher callbacks. 194callbacks cannot use arguments passed to I/O watcher callbacks.
182 195
313 326
314In either case, if you care (and in most cases, you don't), then you 327In either case, if you care (and in most cases, you don't), then you
315can get whatever behaviour you want with any event loop, by taking the 328can get whatever behaviour you want with any event loop, by taking the
316difference between C<< AnyEvent->time >> and C<< AnyEvent->now >> into 329difference between C<< AnyEvent->time >> and C<< AnyEvent->now >> into
317account. 330account.
331
332=item AnyEvent->now_update
333
334Some event loops (such as L<EV> or L<AnyEvent::Impl::Perl>) cache
335the current time for each loop iteration (see the discussion of L<<
336AnyEvent->now >>, above).
337
338When a callback runs for a long time (or when the process sleeps), then
339this "current" time will differ substantially from the real time, which
340might affect timers and time-outs.
341
342When this is the case, you can call this method, which will update the
343event loop's idea of "current time".
344
345Note that updating the time I<might> cause some events to be handled.
318 346
319=back 347=back
320 348
321=head2 SIGNAL WATCHERS 349=head2 SIGNAL WATCHERS
322 350
389 ); 417 );
390 418
391 # do something else, then wait for process exit 419 # do something else, then wait for process exit
392 $done->recv; 420 $done->recv;
393 421
422=head2 IDLE WATCHERS
423
424Sometimes there is a need to do something, but it is not so important
425to do it instantly, but only when there is nothing better to do. This
426"nothing better to do" is usually defined to be "no other events need
427attention by the event loop".
428
429Idle watchers ideally get invoked when the event loop has nothing
430better to do, just before it would block the process to wait for new
431events. Instead of blocking, the idle watcher is invoked.
432
433Most event loops unfortunately do not really support idle watchers (only
434EV, Event and Glib do it in a usable fashion) - for the rest, AnyEvent
435will simply call the callback "from time to time".
436
437Example: read lines from STDIN, but only process them when the
438program is otherwise idle:
439
440 my @lines; # read data
441 my $idle_w;
442 my $io_w = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
443 push @lines, scalar <STDIN>;
444
445 # start an idle watcher, if not already done
446 $idle_w ||= AnyEvent->idle (cb => sub {
447 # handle only one line, when there are lines left
448 if (my $line = shift @lines) {
449 print "handled when idle: $line";
450 } else {
451 # otherwise disable the idle watcher again
452 undef $idle_w;
453 }
454 });
455 });
456
394=head2 CONDITION VARIABLES 457=head2 CONDITION VARIABLES
395 458
396If you are familiar with some event loops you will know that all of them 459If you are familiar with some event loops you will know that all of them
397require you to run some blocking "loop", "run" or similar function that 460require you to run some blocking "loop", "run" or similar function that
398will actively watch for new events and call your callbacks. 461will actively watch for new events and call your callbacks.
867no warnings; 930no warnings;
868use strict qw(vars subs); 931use strict qw(vars subs);
869 932
870use Carp; 933use Carp;
871 934
872our $VERSION = 4.341; 935our $VERSION = 4.41;
873our $MODEL; 936our $MODEL;
874 937
875our $AUTOLOAD; 938our $AUTOLOAD;
876our @ISA; 939our @ISA;
877 940
909 [POE::Kernel:: => AnyEvent::Impl::POE::], # lasciate ogni speranza 972 [POE::Kernel:: => AnyEvent::Impl::POE::], # lasciate ogni speranza
910 [Wx:: => AnyEvent::Impl::POE::], 973 [Wx:: => AnyEvent::Impl::POE::],
911 [Prima:: => AnyEvent::Impl::POE::], 974 [Prima:: => AnyEvent::Impl::POE::],
912); 975);
913 976
914our %method = map +($_ => 1), qw(io timer time now signal child condvar one_event DESTROY); 977our %method = map +($_ => 1),
978 qw(io timer time now now_update signal child idle condvar one_event DESTROY);
915 979
916our @post_detect; 980our @post_detect;
917 981
918sub post_detect(&) { 982sub post_detect(&) {
919 my ($cb) = @_; 983 my ($cb) = @_;
924 1 988 1
925 } else { 989 } else {
926 push @post_detect, $cb; 990 push @post_detect, $cb;
927 991
928 defined wantarray 992 defined wantarray
929 ? bless \$cb, "AnyEvent::Util::PostDetect" 993 ? bless \$cb, "AnyEvent::Util::postdetect"
930 : () 994 : ()
931 } 995 }
932} 996}
933 997
934sub AnyEvent::Util::PostDetect::DESTROY { 998sub AnyEvent::Util::postdetect::DESTROY {
935 @post_detect = grep $_ != ${$_[0]}, @post_detect; 999 @post_detect = grep $_ != ${$_[0]}, @post_detect;
936} 1000}
937 1001
938sub detect() { 1002sub detect() {
939 unless ($MODEL) { 1003 unless ($MODEL) {
976 last; 1040 last;
977 } 1041 }
978 } 1042 }
979 1043
980 $MODEL 1044 $MODEL
981 or die "No event module selected for AnyEvent and autodetect failed. Install any one of these modules: EV, Event or Glib."; 1045 or die "No event module selected for AnyEvent and autodetect failed. Install any one of these modules: EV, Event or Glib.\n";
982 } 1046 }
983 } 1047 }
984 1048
985 push @{"$MODEL\::ISA"}, "AnyEvent::Base"; 1049 push @{"$MODEL\::ISA"}, "AnyEvent::Base";
986 1050
1016 my ($rw, $mode) = $poll eq "r" ? ($r, "<") 1080 my ($rw, $mode) = $poll eq "r" ? ($r, "<")
1017 : $poll eq "w" ? ($w, ">") 1081 : $poll eq "w" ? ($w, ">")
1018 : Carp::croak "AnyEvent->io requires poll set to either 'r' or 'w'"; 1082 : Carp::croak "AnyEvent->io requires poll set to either 'r' or 'w'";
1019 1083
1020 open my $fh2, "$mode&" . fileno $fh 1084 open my $fh2, "$mode&" . fileno $fh
1021 or die "cannot dup() filehandle: $!"; 1085 or die "cannot dup() filehandle: $!,";
1022 1086
1023 # we assume CLOEXEC is already set by perl in all important cases 1087 # we assume CLOEXEC is already set by perl in all important cases
1024 1088
1025 ($fh2, $rw) 1089 ($fh2, $rw)
1026} 1090}
1027 1091
1028package AnyEvent::Base; 1092package AnyEvent::Base;
1029 1093
1030# default implementation for now and time 1094# default implementations for many methods
1031 1095
1032BEGIN { 1096BEGIN {
1033 if (eval "use Time::HiRes (); time (); 1") { 1097 if (eval "use Time::HiRes (); Time::HiRes::time (); 1") {
1034 *_time = \&Time::HiRes::time; 1098 *_time = \&Time::HiRes::time;
1035 # if (eval "use POSIX (); (POSIX::times())... 1099 # if (eval "use POSIX (); (POSIX::times())...
1036 } else { 1100 } else {
1037 *_time = sub { time }; # epic fail 1101 *_time = sub { time }; # epic fail
1038 } 1102 }
1039} 1103}
1040 1104
1041sub time { _time } 1105sub time { _time }
1042sub now { _time } 1106sub now { _time }
1107sub now_update { }
1043 1108
1044# default implementation for ->condvar 1109# default implementation for ->condvar
1045 1110
1046sub condvar { 1111sub condvar {
1047 bless { @_ == 3 ? (_ae_cb => $_[2]) : () }, AnyEvent::CondVar:: 1112 bless { @_ == 3 ? (_ae_cb => $_[2]) : () }, "AnyEvent::CondVar"
1048} 1113}
1049 1114
1050# default implementation for ->signal 1115# default implementation for ->signal
1051 1116
1052our ($SIGPIPE_R, $SIGPIPE_W, %SIG_CB, %SIG_EV, $SIG_IO); 1117our ($SIGPIPE_R, $SIGPIPE_W, %SIG_CB, %SIG_EV, $SIG_IO);
1064 1129
1065sub signal { 1130sub signal {
1066 my (undef, %arg) = @_; 1131 my (undef, %arg) = @_;
1067 1132
1068 unless ($SIGPIPE_R) { 1133 unless ($SIGPIPE_R) {
1134 require Fcntl;
1135
1069 if (AnyEvent::WIN32) { 1136 if (AnyEvent::WIN32) {
1137 require AnyEvent::Util;
1138
1070 ($SIGPIPE_R, $SIGPIPE_W) = AnyEvent::Util::portable_pipe (); 1139 ($SIGPIPE_R, $SIGPIPE_W) = AnyEvent::Util::portable_pipe ();
1071 AnyEvent::Util::fh_nonblocking ($SIGPIPE_R) if $SIGPIPE_R; 1140 AnyEvent::Util::fh_nonblocking ($SIGPIPE_R) if $SIGPIPE_R;
1072 AnyEvent::Util::fh_nonblocking ($SIGPIPE_W) if $SIGPIPE_W; # just in case 1141 AnyEvent::Util::fh_nonblocking ($SIGPIPE_W) if $SIGPIPE_W; # just in case
1073 } else { 1142 } else {
1074 pipe $SIGPIPE_R, $SIGPIPE_W; 1143 pipe $SIGPIPE_R, $SIGPIPE_W;
1075 require Fcntl;
1076 fcntl $SIGPIPE_R, &Fcntl::F_SETFL, &Fcntl::O_NONBLOCK if $SIGPIPE_R; 1144 fcntl $SIGPIPE_R, &Fcntl::F_SETFL, &Fcntl::O_NONBLOCK if $SIGPIPE_R;
1077 fcntl $SIGPIPE_W, &Fcntl::F_SETFL, &Fcntl::O_NONBLOCK if $SIGPIPE_W; # just in case 1145 fcntl $SIGPIPE_W, &Fcntl::F_SETFL, &Fcntl::O_NONBLOCK if $SIGPIPE_W; # just in case
1078 } 1146 }
1079 1147
1080 $SIGPIPE_R 1148 $SIGPIPE_R
1081 or Carp::croak "AnyEvent: unable to create a signal reporting pipe: $!\n"; 1149 or Carp::croak "AnyEvent: unable to create a signal reporting pipe: $!\n";
1082 1150
1151 # not strictly required, as $^F is normally 2, but let's make sure...
1152 fcntl $SIGPIPE_R, &Fcntl::F_SETFD, &Fcntl::FD_CLOEXEC;
1153 fcntl $SIGPIPE_W, &Fcntl::F_SETFD, &Fcntl::FD_CLOEXEC;
1154
1083 $SIG_IO = AnyEvent->io (fh => $SIGPIPE_R, poll => "r", cb => \&_signal_exec); 1155 $SIG_IO = AnyEvent->io (fh => $SIGPIPE_R, poll => "r", cb => \&_signal_exec);
1084 } 1156 }
1085 1157
1086 my $signal = uc $arg{signal} 1158 my $signal = uc $arg{signal}
1087 or Carp::croak "required option 'signal' is missing"; 1159 or Carp::croak "required option 'signal' is missing";
1088 1160
1089 $SIG_CB{$signal}{$arg{cb}} = $arg{cb}; 1161 $SIG_CB{$signal}{$arg{cb}} = $arg{cb};
1090 $SIG{$signal} ||= sub { 1162 $SIG{$signal} ||= sub {
1163 local $!;
1091 syswrite $SIGPIPE_W, "\x00", 1 unless %SIG_EV; 1164 syswrite $SIGPIPE_W, "\x00", 1 unless %SIG_EV;
1092 undef $SIG_EV{$signal}; 1165 undef $SIG_EV{$signal};
1093 }; 1166 };
1094 1167
1095 bless [$signal, $arg{cb}], "AnyEvent::Base::Signal" 1168 bless [$signal, $arg{cb}], "AnyEvent::Base::signal"
1096} 1169}
1097 1170
1098sub AnyEvent::Base::Signal::DESTROY { 1171sub AnyEvent::Base::signal::DESTROY {
1099 my ($signal, $cb) = @{$_[0]}; 1172 my ($signal, $cb) = @{$_[0]};
1100 1173
1101 delete $SIG_CB{$signal}{$cb}; 1174 delete $SIG_CB{$signal}{$cb};
1102 1175
1176 # delete doesn't work with older perls - they then
1177 # print weird messages, or just unconditionally exit
1178 # instead of getting the default action.
1103 delete $SIG{$signal} unless keys %{ $SIG_CB{$signal} }; 1179 undef $SIG{$signal} unless keys %{ $SIG_CB{$signal} };
1104} 1180}
1105 1181
1106# default implementation for ->child 1182# default implementation for ->child
1107 1183
1108our %PID_CB; 1184our %PID_CB;
1109our $CHLD_W; 1185our $CHLD_W;
1110our $CHLD_DELAY_W; 1186our $CHLD_DELAY_W;
1111our $PID_IDLE;
1112our $WNOHANG; 1187our $WNOHANG;
1113 1188
1114sub _child_wait { 1189sub _sigchld {
1115 while (0 < (my $pid = waitpid -1, $WNOHANG)) { 1190 while (0 < (my $pid = waitpid -1, $WNOHANG)) {
1116 $_->($pid, $?) for (values %{ $PID_CB{$pid} || {} }), 1191 $_->($pid, $?) for (values %{ $PID_CB{$pid} || {} }),
1117 (values %{ $PID_CB{0} || {} }); 1192 (values %{ $PID_CB{0} || {} });
1118 } 1193 }
1119
1120 undef $PID_IDLE;
1121}
1122
1123sub _sigchld {
1124 # make sure we deliver these changes "synchronous" with the event loop.
1125 $CHLD_DELAY_W ||= AnyEvent->timer (after => 0, cb => sub {
1126 undef $CHLD_DELAY_W;
1127 &_child_wait;
1128 });
1129} 1194}
1130 1195
1131sub child { 1196sub child {
1132 my (undef, %arg) = @_; 1197 my (undef, %arg) = @_;
1133 1198
1134 defined (my $pid = $arg{pid} + 0) 1199 defined (my $pid = $arg{pid} + 0)
1135 or Carp::croak "required option 'pid' is missing"; 1200 or Carp::croak "required option 'pid' is missing";
1136 1201
1137 $PID_CB{$pid}{$arg{cb}} = $arg{cb}; 1202 $PID_CB{$pid}{$arg{cb}} = $arg{cb};
1138 1203
1139 unless ($WNOHANG) {
1140 $WNOHANG = eval { local $SIG{__DIE__}; require POSIX; &POSIX::WNOHANG } || 1; 1204 $WNOHANG ||= eval { local $SIG{__DIE__}; require POSIX; &POSIX::WNOHANG } || 1;
1141 }
1142 1205
1143 unless ($CHLD_W) { 1206 unless ($CHLD_W) {
1144 $CHLD_W = AnyEvent->signal (signal => 'CHLD', cb => \&_sigchld); 1207 $CHLD_W = AnyEvent->signal (signal => 'CHLD', cb => \&_sigchld);
1145 # child could be a zombie already, so make at least one round 1208 # child could be a zombie already, so make at least one round
1146 &_sigchld; 1209 &_sigchld;
1147 } 1210 }
1148 1211
1149 bless [$pid, $arg{cb}], "AnyEvent::Base::Child" 1212 bless [$pid, $arg{cb}], "AnyEvent::Base::child"
1150} 1213}
1151 1214
1152sub AnyEvent::Base::Child::DESTROY { 1215sub AnyEvent::Base::child::DESTROY {
1153 my ($pid, $cb) = @{$_[0]}; 1216 my ($pid, $cb) = @{$_[0]};
1154 1217
1155 delete $PID_CB{$pid}{$cb}; 1218 delete $PID_CB{$pid}{$cb};
1156 delete $PID_CB{$pid} unless keys %{ $PID_CB{$pid} }; 1219 delete $PID_CB{$pid} unless keys %{ $PID_CB{$pid} };
1157 1220
1158 undef $CHLD_W unless keys %PID_CB; 1221 undef $CHLD_W unless keys %PID_CB;
1222}
1223
1224# idle emulation is done by simply using a timer, regardless
1225# of whether the process is idle or not, and not letting
1226# the callback use more than 50% of the time.
1227sub idle {
1228 my (undef, %arg) = @_;
1229
1230 my ($cb, $w, $rcb) = $arg{cb};
1231
1232 $rcb = sub {
1233 if ($cb) {
1234 $w = _time;
1235 &$cb;
1236 $w = _time - $w;
1237
1238 # never use more then 50% of the time for the idle watcher,
1239 # within some limits
1240 $w = 0.0001 if $w < 0.0001;
1241 $w = 5 if $w > 5;
1242
1243 $w = AnyEvent->timer (after => $w, cb => $rcb);
1244 } else {
1245 # clean up...
1246 undef $w;
1247 undef $rcb;
1248 }
1249 };
1250
1251 $w = AnyEvent->timer (after => 0.05, cb => $rcb);
1252
1253 bless \\$cb, "AnyEvent::Base::idle"
1254}
1255
1256sub AnyEvent::Base::idle::DESTROY {
1257 undef $${$_[0]};
1159} 1258}
1160 1259
1161package AnyEvent::CondVar; 1260package AnyEvent::CondVar;
1162 1261
1163our @ISA = AnyEvent::CondVar::Base::; 1262our @ISA = AnyEvent::CondVar::Base::;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines