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

Comparing EV/README (file contents):
Revision 1.7 by root, Sat Nov 3 16:25:49 2007 UTC vs.
Revision 1.10 by root, Wed Nov 14 21:25:46 2007 UTC

9 9
10 my $w = EV::timer 2, 0, sub { 10 my $w = EV::timer 2, 0, sub {
11 warn "is called after 2s"; 11 warn "is called after 2s";
12 }; 12 };
13 13
14 my $w = EV::timer 2, 1, sub { 14 my $w = EV::timer 2, 2, sub {
15 warn "is called roughly every 2s (repeat = 1)"; 15 warn "is called roughly every 2s (repeat = 2)";
16 }; 16 };
17 17
18 undef $w; # destroy event watcher again 18 undef $w; # destroy event watcher again
19 19
20 my $w = EV::periodic 0, 60, sub { 20 my $w = EV::periodic 0, 60, 0, sub {
21 warn "is called every minute, on the minute, exactly"; 21 warn "is called every minute, on the minute, exactly";
22 }; 22 };
23 23
24 # IO 24 # IO
25 25
26 my $w = EV::io *STDIN, EV::READ, sub { 26 my $w = EV::io *STDIN, EV::READ, sub {
27 my ($w, $revents) = @_; # all callbacks get the watcher object and event mask 27 my ($w, $revents) = @_; # all callbacks receive the watcher and event mask
28 warn "stdin is readable, you entered: ", <STDIN>; 28 warn "stdin is readable, you entered: ", <STDIN>;
29 }; 29 };
30 30
31 # SIGNALS 31 # SIGNALS
32 32
33 my $w = EV::signal 'QUIT', sub { 33 my $w = EV::signal 'QUIT', sub {
34 warn "sigquit received\n"; 34 warn "sigquit received\n";
35 }; 35 };
36 36
37 my $w = EV::signal 3, sub {
38 warn "sigquit received (this is GNU/Linux, right?)\n";
39 };
40
41 # CHILD/PID STATUS CHANGES 37 # CHILD/PID STATUS CHANGES
42 38
43 my $w = EV::child 666, sub { 39 my $w = EV::child 666, sub {
44 my ($w, $revents) = @_; 40 my ($w, $revents) = @_;
45 # my $pid = $w->rpid;
46 my $status = $w->rstatus; 41 my $status = $w->rstatus;
47 }; 42 };
48 43
49 # MAINLOOP 44 # MAINLOOP
50 EV::loop; # loop until EV::loop_done is called 45 EV::loop; # loop until EV::unloop is called or all watchers stop
51 EV::loop EV::LOOP_ONESHOT; # block until at least one event could be handled 46 EV::loop EV::LOOP_ONESHOT; # block until at least one event could be handled
52 EV::loop EV::LOOP_NONBLOCK; # try to handle same events, but do not block 47 EV::loop EV::LOOP_NONBLOCK; # try to handle same events, but do not block
53 48
54DESCRIPTION 49DESCRIPTION
55 This module provides an interface to libev 50 This module provides an interface to libev
75 Returns an integer describing the backend used by libev 70 Returns an integer describing the backend used by libev
76 (EV::METHOD_SELECT or EV::METHOD_EPOLL). 71 (EV::METHOD_SELECT or EV::METHOD_EPOLL).
77 72
78 EV::loop [$flags] 73 EV::loop [$flags]
79 Begin checking for events and calling callbacks. It returns when a 74 Begin checking for events and calling callbacks. It returns when a
80 callback calls EV::loop_done. 75 callback calls EV::unloop.
81 76
82 The $flags argument can be one of the following: 77 The $flags argument can be one of the following:
83 78
84 0 as above 79 0 as above
85 EV::LOOP_ONESHOT block at most once (wait, but do not loop) 80 EV::LOOP_ONESHOT block at most once (wait, but do not loop)
86 EV::LOOP_NONBLOCK do not block at all (fetch/handle events but do not wait) 81 EV::LOOP_NONBLOCK do not block at all (fetch/handle events but do not wait)
87 82
88 EV::loop_done [$how] 83 EV::unloop [$how]
89 When called with no arguments or an argument of 1, makes the 84 When called with no arguments or an argument of EV::UNLOOP_ONE,
90 innermost call to EV::loop return. 85 makes the innermost call to EV::loop return.
91 86
92 When called with an agrument of 2, all calls to EV::loop will return 87 When called with an argument of EV::UNLOOP_ALL, all calls to
93 as fast as possible. 88 EV::loop will return as fast as possible.
94 89
95 WATCHER 90 WATCHER
96 A watcher is an object that gets created to record your interest in some 91 A watcher is an object that gets created to record your interest in some
97 event. For instance, if you want to wait for STDIN to become readable, 92 event. For instance, if you want to wait for STDIN to become readable,
98 you would create an EV::io watcher for that: 93 you would create an EV::io watcher for that:
146 callback invocation), regardless of wether the watcher was active or 141 callback invocation), regardless of wether the watcher was active or
147 not. 142 not.
148 143
149 $bool = $w->is_active 144 $bool = $w->is_active
150 Returns true if the watcher is active, false otherwise. 145 Returns true if the watcher is active, false otherwise.
146
147 $current_data = $w->data
148 $old_data = $w->data ($new_data)
149 Queries a freely usable data scalar on the watcher and optionally
150 changes it. This is a way to associate custom data with a watcher:
151
152 my $w = EV::timer 60, 0, sub {
153 warn $_[0]->data;
154 };
155 $w->data ("print me!");
151 156
152 $current_cb = $w->cb 157 $current_cb = $w->cb
153 $old_cb = $w->cb ($new_cb) 158 $old_cb = $w->cb ($new_cb)
154 Queries the callback on the watcher and optionally changes it. You 159 Queries the callback on the watcher and optionally changes it. You
155 can do this at any time without the watcher restarting. 160 can do this at any time without the watcher restarting.
197 Calls the callback after $after seconds. If $repeat is non-zero, the 202 Calls the callback after $after seconds. If $repeat is non-zero, the
198 timer will be restarted (with the $repeat value as $after) after the 203 timer will be restarted (with the $repeat value as $after) after the
199 callback returns. 204 callback returns.
200 205
201 This means that the callback would be called roughly after $after 206 This means that the callback would be called roughly after $after
202 seconds, and then every $repeat seconds. "Roughly" because the time 207 seconds, and then every $repeat seconds. The timer does his best not
203 of callback processing is not taken into account, so the timer will 208 to drift, but it will not invoke the timer more often then once per
204 slowly drift. If that isn't acceptable, look at EV::periodic. 209 event loop iteration, and might drift in other cases. If that isn't
210 acceptable, look at EV::periodic, which can provide long-term stable
211 timers.
205 212
206 The timer is based on a monotonic clock, that is if somebody is 213 The timer is based on a monotonic clock, that is, if somebody is
207 sitting in front of the machine while the timer is running and 214 sitting in front of the machine while the timer is running and
208 changes the system clock, the timer will nevertheless run (roughly) 215 changes the system clock, the timer will nevertheless run (roughly)
209 the same time. 216 the same time.
210 217
211 The "timer_ns" variant doesn't start (activate) the newly created 218 The "timer_ns" variant doesn't start (activate) the newly created
217 224
218 $w->again 225 $w->again
219 Similar to the "start" method, but has special semantics for 226 Similar to the "start" method, but has special semantics for
220 repeating timers: 227 repeating timers:
221 228
229 If the timer is active and non-repeating, it will be stopped.
230
222 If the timer is active and repeating, reset the timeout to occur 231 If the timer is active and repeating, reset the timeout to occur
223 $repeat seconds after now. 232 $repeat seconds after now.
224 233
225 If the timer is active and non-repeating, it will be stopped.
226
227 If the timer is in active and repeating, start it. 234 If the timer is inactive and repeating, start it using the repeat
235 value.
228 236
229 Otherwise do nothing. 237 Otherwise do nothing.
230 238
231 This behaviour is useful when you have a timeout for some IO 239 This behaviour is useful when you have a timeout for some IO
232 operation. You create a timer object with the same value for $after 240 operation. You create a timer object with the same value for $after
233 and $repeat, and then, in the read/write watcher, run the "again" 241 and $repeat, and then, in the read/write watcher, run the "again"
234 method on the timeout. 242 method on the timeout.
235 243
236 $w = EV::periodic $at, $interval, $callback 244 $w = EV::periodic $at, $interval, $reschedule_cb, $callback
237 $w = EV::periodic_ns $at, $interval, $callback 245 $w = EV::periodic_ns $at, $interval, $reschedule_cb, $callback
238 Similar to EV::timer, but the time is given as an absolute point in 246 Similar to EV::timer, but is not based on relative timeouts but on
239 time ($at), plus an optional $interval. 247 absolute times. Apart from creating "simple" timers that trigger
248 "at" the specified time, it can also be used for non-drifting
249 absolute timers and more complex, cron-like, setups that are not
250 adversely affected by time jumps (i.e. when the system clock is
251 changed by explicit date -s or other means such as ntpd). It is also
252 the most complex watcher type in EV.
240 253
241 If the $interval is zero, then the callback will be called at the 254 It has three distinct "modes":
242 time $at if that is in the future, or as soon as possible if it is
243 in the past. It will not automatically repeat.
244 255
245 If the $interval is nonzero, then the watcher will always be 256 * absolute timer ($interval = $reschedule_cb = 0)
246 scheduled to time out at the next "$at + N * $interval" time. 257 This time simply fires at the wallclock time $at and doesn't
258 repeat. It will not adjust when a time jump occurs, that is, if
259 it is to be run at January 1st 2011 then it will run when the
260 system time reaches or surpasses this time.
247 261
248 This can be used to schedule a callback to run at very regular 262 * non-repeating interval timer ($interval > 0, $reschedule_cb = 0)
249 intervals, as long as the processing time is less then the interval 263 In this mode the watcher will always be scheduled to time out at
250 (otherwise obviously events will be skipped). 264 the next "$at + N * $interval" time (for some integer N) and
265 then repeat, regardless of any time jumps.
251 266
267 This can be used to create timers that do not drift with respect
268 to system time:
269
270 my $hourly = EV::periodic 0, 3600, 0, sub { print "once/hour\n" };
271
272 That doesn't mean there will always be 3600 seconds in between
273 triggers, but only that the the clalback will be called when the
274 system time shows a full hour (UTC).
275
252 Another way to think about it (for the mathematically inclined) is 276 Another way to think about it (for the mathematically inclined)
253 that EV::periodic will try to run the callback at the next possible 277 is that EV::periodic will try to run the callback in this mode
254 time where "$time = $at (mod $interval)", regardless of any time 278 at the next possible time where "$time = $at (mod $interval)",
255 jumps. 279 regardless of any time jumps.
256 280
257 This periodic timer is based on "wallclock time", that is, if the 281 * manual reschedule mode ($reschedule_cb = coderef)
258 clock changes ("ntp", "date -s" etc.), then the timer will 282 In this mode $interval and $at are both being ignored. Instead,
259 nevertheless run at the specified time. This means it will never 283 each time the periodic watcher gets scheduled, the reschedule
260 drift (it might jitter, but it will not drift). 284 callback ($reschedule_cb) will be called with the watcher as
285 first, and the current time as second argument.
286
287 *This callback MUST NOT stop or destroy this or any other
288 periodic watcher, ever*. If you need to stop it, return 1e30 and
289 stop it afterwards.
290
291 It must return the next time to trigger, based on the passed
292 time value (that is, the lowest time value larger than to the
293 second argument). It will usually be called just before the
294 callback will be triggered, but might be called at other times,
295 too.
296
297 This can be used to create very complex timers, such as a timer
298 that triggers on each midnight, local time (actually 24 hours
299 after the last midnight, to keep the example simple. If you know
300 a way to do it correctly in about the same space (without
301 requiring elaborate modules), drop me a note :):
302
303 my $daily = EV::periodic 0, 0, sub {
304 my ($w, $now) = @_;
305
306 use Time::Local ();
307 my (undef, undef, undef, $d, $m, $y) = localtime $now;
308 86400 + Time::Local::timelocal 0, 0, 0, $d, $m, $y
309 }, sub {
310 print "it's midnight or likely shortly after, now\n";
311 };
261 312
262 The "periodic_ns" variant doesn't start (activate) the newly created 313 The "periodic_ns" variant doesn't start (activate) the newly created
263 watcher. 314 watcher.
264 315
265 $w->set ($at, $interval) 316 $w->set ($at, $interval, $reschedule_cb)
266 Reconfigures the watcher, see the constructor above for details. Can 317 Reconfigures the watcher, see the constructor above for details. Can
267 be at any time. 318 be at any time.
319
320 $w->again
321 Simply stops and starts the watcher again.
268 322
269 $w = EV::signal $signal, $callback 323 $w = EV::signal $signal, $callback
270 $w = EV::signal_ns $signal, $callback 324 $w = EV::signal_ns $signal, $callback
271 Call the callback when $signal is received (the signal can be 325 Call the callback when $signal is received (the signal can be
272 specified by number or by name, just as with kill or %SIG). 326 specified by number or by name, just as with kill or %SIG).

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines