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

Comparing EV/EV.pm (file contents):
Revision 1.73 by root, Fri Dec 21 05:10:01 2007 UTC vs.
Revision 1.82 by root, Fri Jan 25 15:45:08 2008 UTC

35 warn "sigquit received\n"; 35 warn "sigquit received\n";
36 }; 36 };
37 37
38 # CHILD/PID STATUS CHANGES 38 # CHILD/PID STATUS CHANGES
39 39
40 my $w = EV::child 666, sub { 40 my $w = EV::child 666, 0, sub {
41 my ($w, $revents) = @_; 41 my ($w, $revents) = @_;
42 my $status = $w->rstatus; 42 my $status = $w->rstatus;
43 }; 43 };
44 44
45 # STAT CHANGES 45 # STAT CHANGES
68package EV; 68package EV;
69 69
70use strict; 70use strict;
71 71
72BEGIN { 72BEGIN {
73 our $VERSION = '2.0'; 73 our $VERSION = '2.01';
74 use XSLoader; 74 use XSLoader;
75 XSLoader::load "EV", $VERSION; 75 XSLoader::load "EV", $VERSION;
76} 76}
77 77
78@EV::IO::ISA = 78@EV::IO::ISA =
102selecting a working backend (which for example rules out kqueue on most 102selecting a working backend (which for example rules out kqueue on most
103BSDs). Modules should, unless they have "special needs" always use the 103BSDs). Modules should, unless they have "special needs" always use the
104default loop as this is fastest (perl-wise), best supported by other 104default loop as this is fastest (perl-wise), best supported by other
105modules (e.g. AnyEvent or Coro) and most portable event loop. 105modules (e.g. AnyEvent or Coro) and most portable event loop.
106 106
107For specific programs you cna create additional event loops dynamically. 107For specific programs you can create additional event loops dynamically.
108 108
109=over 4 109=over 4
110 110
111=item $loop = new EV::loop [$flags] 111=item $loop = new EV::loop [$flags]
112 112
126Must be called after a fork in the child, before entering or continuing 126Must be called after a fork in the child, before entering or continuing
127the event loop. An alternative is to use C<EV::FLAG_FORKCHECK> which calls 127the event loop. An alternative is to use C<EV::FLAG_FORKCHECK> which calls
128this fucntion automatically, at some performance loss (refer to the libev 128this fucntion automatically, at some performance loss (refer to the libev
129documentation). 129documentation).
130 130
131=item $loop = EV::default_loop [$flags]
132
133Return the default loop (which is a singleton object).
134
131=back 135=back
132 136
133 137
134=head1 BASIC INTERFACE 138=head1 BASIC INTERFACE
135 139
140Must contain a reference to a function that is called when a callback 144Must contain a reference to a function that is called when a callback
141throws an exception (with $@ containing the error). The default prints an 145throws an exception (with $@ containing the error). The default prints an
142informative message and continues. 146informative message and continues.
143 147
144If this callback throws an exception it will be silently ignored. 148If this callback throws an exception it will be silently ignored.
149
150=item $flags = EV::supported_backends
151
152=item $flags = EV::recommended_backends
153
154=item $flags = EV::embeddable_backends
155
156Returns the set (see C<EV::BACKEND_*> flags) of backends supported by this
157instance of EV, the set of recommended backends (supposed to be good) for
158this platform and the set of embeddable backends (see EMBED WATCHERS).
159
160=item EV::sleep $seconds
161
162Block the process for the given number of (fractional) seconds.
145 163
146=item $time = EV::time 164=item $time = EV::time
147 165
148Returns the current time in (fractional) seconds since the epoch. 166Returns the current time in (fractional) seconds since the epoch.
149 167
208If timeout is C<undef> or negative, then there will be no 226If timeout is C<undef> or negative, then there will be no
209timeout. Otherwise a EV::timer with this value will be started. 227timeout. Otherwise a EV::timer with this value will be started.
210 228
211When an error occurs or either the timeout or I/O watcher triggers, then 229When an error occurs or either the timeout or I/O watcher triggers, then
212the callback will be called with the received event set (in general 230the callback will be called with the received event set (in general
213you can expect it to be a combination of C<EV:ERROR>, C<EV::READ>, 231you can expect it to be a combination of C<EV::ERROR>, C<EV::READ>,
214C<EV::WRITE> and C<EV::TIMEOUT>). 232C<EV::WRITE> and C<EV::TIMEOUT>).
215 233
216EV::once doesn't return anything: the watchers stay active till either 234EV::once doesn't return anything: the watchers stay active till either
217of them triggers, then they will be stopped and freed, and the callback 235of them triggers, then they will be stopped and freed, and the callback
218invoked. 236invoked.
228=item EV::feed_signal_event ($signal) 246=item EV::feed_signal_event ($signal)
229 247
230Feed a signal event into EV. EV will react to this call as if the signal 248Feed a signal event into EV. EV will react to this call as if the signal
231specified by C<$signal> had occured. 249specified by C<$signal> had occured.
232 250
251=item EV::set_io_collect_interval $time
252
253=item $loop->set_io_collect_interval ($time)
254
255=item EV::set_timeout_collect_interval $time
256
257=item $loop->set_timeout_collect_interval ($time)
258
259These advanced functions set the minimum block interval when polling for I/O events and the minimum
260wait interval for timer events. See the libev documentation at
261L<http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#FUNCTIONS_CONTROLLING_THE_EVENT_LOOP> for
262a more detailed discussion.
263
233=back 264=back
234 265
235 266
236=head1 WATCHER OBJECTS 267=head1 WATCHER OBJECTS
237 268
239event. For instance, if you want to wait for STDIN to become readable, you 270event. For instance, if you want to wait for STDIN to become readable, you
240would create an EV::io watcher for that: 271would create an EV::io watcher for that:
241 272
242 my $watcher = EV::io *STDIN, EV::READ, sub { 273 my $watcher = EV::io *STDIN, EV::READ, sub {
243 my ($watcher, $revents) = @_; 274 my ($watcher, $revents) = @_;
244 warn "yeah, STDIN should not be readable without blocking!\n" 275 warn "yeah, STDIN should now be readable without blocking!\n"
245 }; 276 };
246 277
247All watchers can be active (waiting for events) or inactive (paused). Only 278All watchers can be active (waiting for events) or inactive (paused). Only
248active watchers will have their callbacks invoked. All callbacks will be 279active watchers will have their callbacks invoked. All callbacks will be
249called with at least two arguments: the watcher and a bitmask of received 280called with at least two arguments: the watcher and a bitmask of received
333Feed some events on this watcher into EV. EV will react to this call as if 364Feed some events on this watcher into EV. EV will react to this call as if
334the watcher had received the given C<$revents> mask. 365the watcher had received the given C<$revents> mask.
335 366
336=item $revents = $w->clear_pending 367=item $revents = $w->clear_pending
337 368
338If the watcher is pending, this function returns clears its pending status 369If the watcher is pending, this function clears its pending status and
339and returns its C<$revents> bitset (as if its callback was invoked). If the 370returns its C<$revents> bitset (as if its callback was invoked). If the
340watcher isn't pending it does nothing and returns C<0>. 371watcher isn't pending it does nothing and returns C<0>.
341 372
342=item $previous_state = $w->keepalive ($bool) 373=item $previous_state = $w->keepalive ($bool)
343 374
344Normally, C<EV::loop> will return when there are no active watchers 375Normally, C<EV::loop> will return when there are no active watchers
345(which is a "deadlock" because no progress can be made anymore). This is 376(which is a "deadlock" because no progress can be made anymore). This is
346convinient because it allows you to start your watchers (and your jobs), 377convinient because it allows you to start your watchers (and your jobs),
347call C<EV::loop> once and when it returns you know that all your jobs are 378call C<EV::loop> once and when it returns you know that all your jobs are
348finished (or they forgot to register some watchers for their task :). 379finished (or they forgot to register some watchers for their task :).
349 380
350Sometimes, however, this gets in your way, for example when you the module 381Sometimes, however, this gets in your way, for example when the module
351that calls C<EV::loop> (usually the main program) is not the same module 382that calls C<EV::loop> (usually the main program) is not the same module
352as a long-living watcher (for example a DNS client module written by 383as a long-living watcher (for example a DNS client module written by
353somebody else even). Then you might want any outstanding requests to be 384somebody else even). Then you might want any outstanding requests to be
354handled, but you would not want to keep C<EV::loop> from returning just 385handled, but you would not want to keep C<EV::loop> from returning just
355because you happen to have this long-running UDP port watcher. 386because you happen to have this long-running UDP port watcher.
363Example: Register an I/O watcher for some UDP socket but do not keep the 394Example: Register an I/O watcher for some UDP socket but do not keep the
364event loop from running just because of that watcher. 395event loop from running just because of that watcher.
365 396
366 my $udp_socket = ... 397 my $udp_socket = ...
367 my $udp_watcher = EV::io $udp_socket, EV::READ, sub { ... }; 398 my $udp_watcher = EV::io $udp_socket, EV::READ, sub { ... };
368 $udp_watcher->keepalive (0); 399 $1000udp_watcher->keepalive (0);
400
401=item $loop = $w->loop
402
403Return the loop that this watcher is attached to.
369 404
370=back 405=back
371 406
372 407
373=head1 WATCHER TYPES 408=head1 WATCHER TYPES
380 415
381=item $w = EV::io $fileno_or_fh, $eventmask, $callback 416=item $w = EV::io $fileno_or_fh, $eventmask, $callback
382 417
383=item $w = EV::io_ns $fileno_or_fh, $eventmask, $callback 418=item $w = EV::io_ns $fileno_or_fh, $eventmask, $callback
384 419
385=item $w = $loop->io 8$fileno_or_fh, $eventmask, $callback) 420=item $w = $loop->io ($fileno_or_fh, $eventmask, $callback)
386 421
387=item $w = $loop->io_ns ($fileno_or_fh, $eventmask, $callback) 422=item $w = $loop->io_ns ($fileno_or_fh, $eventmask, $callback)
388 423
389As long as the returned watcher object is alive, call the C<$callback> 424As long as the returned watcher object is alive, call the C<$callback>
390when at least one of events specified in C<$eventmask> occurs. 425when at least one of events specified in C<$eventmask> occurs.
609 644
610=head3 CHILD WATCHERS - watch out for process status changes 645=head3 CHILD WATCHERS - watch out for process status changes
611 646
612=over 4 647=over 4
613 648
614=item $w = EV::child $pid, $callback 649=item $w = EV::child $pid, $trace, $callback
615 650
616=item $w = EV::child_ns $pid, $callback 651=item $w = EV::child_ns $pid, $trace, $callback
617 652
618=item $w = $loop->child ($pid, $callback) 653=item $w = $loop->child ($pid, $trace, $callback)
619 654
620=item $w = $loop->child_ns ($pid, $callback) 655=item $w = $loop->child_ns ($pid, $trace, $callback)
621 656
622Call the callback when a status change for pid C<$pid> (or any pid if 657Call the callback when a status change for pid C<$pid> (or any pid
623C<$pid> is 0) has been received. More precisely: when the process receives 658if C<$pid> is 0) has been received (a status change happens when the
659process terminates or is killed, or, when trace is true, additionally when
660it is stopped or continued). More precisely: when the process receives
624a C<SIGCHLD>, EV will fetch the outstanding exit/wait status for all 661a C<SIGCHLD>, EV will fetch the outstanding exit/wait status for all
625changed/zombie children and call the callback. 662changed/zombie children and call the callback.
626 663
627It is valid (and fully supported) to install a child watcher after a child 664It is valid (and fully supported) to install a child watcher after a child
628has exited but before the event loop has started its next iteration (for 665has exited but before the event loop has started its next iteration (for
635You can have as many pid watchers per pid as you want, they will all be 672You can have as many pid watchers per pid as you want, they will all be
636called. 673called.
637 674
638The C<child_ns> variant doesn't start (activate) the newly created watcher. 675The C<child_ns> variant doesn't start (activate) the newly created watcher.
639 676
640=item $w->set ($pid) 677=item $w->set ($pid, $trace)
641 678
642Reconfigures the watcher, see the constructor above for details. Can be called at 679Reconfigures the watcher, see the constructor above for details. Can be called at
643any time. 680any time.
644 681
645=item $current_pid = $w->pid 682=item $current_pid = $w->pid
646
647=item $old_pid = $w->pid ($new_pid)
648 683
649Returns the previously set process id and optionally set a new one. 684Returns the previously set process id and optionally set a new one.
650 685
651=item $exit_status = $w->rstatus 686=item $exit_status = $w->rstatus
652 687
787 822
788=item $w = EV::prepare_ns $callback 823=item $w = EV::prepare_ns $callback
789 824
790=item $w = $loop->prepare ($callback) 825=item $w = $loop->prepare ($callback)
791 826
792=item $w = $loop->prepare_ns 8$callback) 827=item $w = $loop->prepare_ns ($callback)
793 828
794Call the callback just before the process would block. You can still 829Call the callback just before the process would block. You can still
795create/modify any watchers at this point. 830create/modify any watchers at this point.
796 831
797See the EV::check watcher, below, for explanations and an example. 832See the EV::check watcher, below, for explanations and an example.
886The C<fork_ns> variant doesn't start (activate) the newly created watcher. 921The C<fork_ns> variant doesn't start (activate) the newly created watcher.
887 922
888=back 923=back
889 924
890 925
926=head3 EMBED WATCHERS - when one backend isn't enough...
927
928This is a rather advanced watcher type that lets you embed one event loop
929into another (currently only IO events are supported in the embedded
930loop, other types of watchers might be handled in a delayed or incorrect
931fashion and must not be used).
932
933See the libev documentation at
934L<http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#code_ev_embed_code_when_one_backend_>
935for more details.
936
937In short, this watcher is most useful on BSD systems without working
938kqueue to still be able to handle a large number of sockets:
939
940 my $socket_loop;
941
942 # check wether we use SELECT or POLL _and_ KQUEUE is supported
943 if (
944 (EV::backend & (EV::BACKEND_POLL | EV::BACKEND_SELECT))
945 && (EV::supported_backends & EV::embeddable_backends & EV::BACKEND_KQUEUE)
946 ) {
947 # use kqueue for sockets
948 $socket_loop = new EV::Loop EV::BACKEND_KQUEUE | EV::FLAG_NOENV;
949 }
950
951 # use the default loop otherwise
952 $socket_loop ||= EV::default_loop;
953
954=over 4
955
956=item $w = EV::embed $otherloop, $callback
957
958=item $w = EV::embed_ns $otherloop, $callback
959
960=item $w = $loop->embed ($otherloop, $callback)
961
962=item $w = $loop->embed_ns ($otherloop, $callback)
963
964Call the callback when the embedded event loop (C<$otherloop>) has any
965I/O activity. The C<$callback> should alwas be specified as C<undef> in
966this version of EV, which means the embedded event loop will be managed
967automatically.
968
969The C<embed_ns> variant doesn't start (activate) the newly created watcher.
970
971=back
972
973
891=head1 PERL SIGNALS 974=head1 PERL SIGNALS
892 975
893While Perl signal handling (C<%SIG>) is not affected by EV, the behaviour 976While Perl signal handling (C<%SIG>) is not affected by EV, the behaviour
894with EV is as the same as any other C library: Perl-signals will only be 977with EV is as the same as any other C library: Perl-signals will only be
895handled when Perl runs, which means your signal handler might be invoked 978handled when Perl runs, which means your signal handler might be invoked
902to be called on every event loop iteration by installing a C<EV::check> 985to be called on every event loop iteration by installing a C<EV::check>
903watcher: 986watcher:
904 987
905 my $async_check = EV::check sub { }; 988 my $async_check = EV::check sub { };
906 989
907This ensures that perl shortly gets into control for a short time, and 990This ensures that perl gets into control for a short time to handle any
908also ensures slower overall operation. 991pending signals, and also ensures (slightly) slower overall operation.
909 992
910=head1 THREADS 993=head1 THREADS
911 994
912Threads are not supported by this module in any way. Perl pseudo-threads 995Threads are not supported by this module in any way. Perl pseudo-threads
913is evil stuff and must die. As soon as Perl gains real threads I will work 996is evil stuff and must die. As soon as Perl gains real threads I will work

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines