1 |
=head1 NAME |
2 |
|
3 |
libev - a high performance full-featured event loop written in C |
4 |
|
5 |
=head1 SYNOPSIS |
6 |
|
7 |
#include <ev.h> |
8 |
|
9 |
=head1 DESCRIPTION |
10 |
|
11 |
Libev is an event loop: you register interest in certain events (such as a |
12 |
file descriptor being readable or a timeout occuring), and it will manage |
13 |
these event sources and provide your program with events. |
14 |
|
15 |
To do this, it must take more or less complete control over your process |
16 |
(or thread) by executing the I<event loop> handler, and will then |
17 |
communicate events via a callback mechanism. |
18 |
|
19 |
You register interest in certain events by registering so-called I<event |
20 |
watchers>, which are relatively small C structures you initialise with the |
21 |
details of the event, and then hand it over to libev by I<starting> the |
22 |
watcher. |
23 |
|
24 |
=head1 FEATURES |
25 |
|
26 |
Libev supports select, poll, the linux-specific epoll and the bsd-specific |
27 |
kqueue mechanisms for file descriptor events, relative timers, absolute |
28 |
timers with customised rescheduling, signal events, process status change |
29 |
events (related to SIGCHLD), and event watchers dealing with the event |
30 |
loop mechanism itself (idle, prepare and check watchers). It also is quite |
31 |
fast (see this L<benchmark|http://libev.schmorp.de/bench.html> comparing |
32 |
it to libevent for example). |
33 |
|
34 |
=head1 CONVENTIONS |
35 |
|
36 |
Libev is very configurable. In this manual the default configuration |
37 |
will be described, which supports multiple event loops. For more info |
38 |
about various configuration options please have a look at the file |
39 |
F<README.embed> in the libev distribution. If libev was configured without |
40 |
support for multiple event loops, then all functions taking an initial |
41 |
argument of name C<loop> (which is always of type C<struct ev_loop *>) |
42 |
will not have this argument. |
43 |
|
44 |
=head1 TIME AND OTHER GLOBAL FUNCTIONS |
45 |
|
46 |
Libev represents time as a single floating point number, representing the |
47 |
(fractional) number of seconds since the (POSIX) epoch (somewhere near |
48 |
the beginning of 1970, details are complicated, don't ask). This type is |
49 |
called C<ev_tstamp>, which is what you should use too. It usually aliases |
50 |
to the double type in C. |
51 |
|
52 |
=over 4 |
53 |
|
54 |
=item ev_tstamp ev_time () |
55 |
|
56 |
Returns the current time as libev would use it. |
57 |
|
58 |
=item int ev_version_major () |
59 |
|
60 |
=item int ev_version_minor () |
61 |
|
62 |
You can find out the major and minor version numbers of the library |
63 |
you linked against by calling the functions C<ev_version_major> and |
64 |
C<ev_version_minor>. If you want, you can compare against the global |
65 |
symbols C<EV_VERSION_MAJOR> and C<EV_VERSION_MINOR>, which specify the |
66 |
version of the library your program was compiled against. |
67 |
|
68 |
Usually, its a good idea to terminate if the major versions mismatch, |
69 |
as this indicates an incompatible change. Minor versions are usually |
70 |
compatible to older versions, so a larger minor version alone is usually |
71 |
not a problem. |
72 |
|
73 |
=item ev_set_allocator (void *(*cb)(void *ptr, long size)) |
74 |
|
75 |
Sets the allocation function to use (the prototype is similar to the |
76 |
realloc C function, the semantics are identical). It is used to allocate |
77 |
and free memory (no surprises here). If it returns zero when memory |
78 |
needs to be allocated, the library might abort or take some potentially |
79 |
destructive action. The default is your system realloc function. |
80 |
|
81 |
You could override this function in high-availability programs to, say, |
82 |
free some memory if it cannot allocate memory, to use a special allocator, |
83 |
or even to sleep a while and retry until some memory is available. |
84 |
|
85 |
=item ev_set_syserr_cb (void (*cb)(const char *msg)); |
86 |
|
87 |
Set the callback function to call on a retryable syscall error (such |
88 |
as failed select, poll, epoll_wait). The message is a printable string |
89 |
indicating the system call or subsystem causing the problem. If this |
90 |
callback is set, then libev will expect it to remedy the sitution, no |
91 |
matter what, when it returns. That is, libev will generally retry the |
92 |
requested operation, or, if the condition doesn't go away, do bad stuff |
93 |
(such as abort). |
94 |
|
95 |
=back |
96 |
|
97 |
=head1 FUNCTIONS CONTROLLING THE EVENT LOOP |
98 |
|
99 |
An event loop is described by a C<struct ev_loop *>. The library knows two |
100 |
types of such loops, the I<default> loop, which supports signals and child |
101 |
events, and dynamically created loops which do not. |
102 |
|
103 |
If you use threads, a common model is to run the default event loop |
104 |
in your main thread (or in a separate thrad) and for each thread you |
105 |
create, you also create another event loop. Libev itself does no locking |
106 |
whatsoever, so if you mix calls to the same event loop in different |
107 |
threads, make sure you lock (this is usually a bad idea, though, even if |
108 |
done correctly, because its hideous and inefficient). |
109 |
|
110 |
=over 4 |
111 |
|
112 |
=item struct ev_loop *ev_default_loop (unsigned int flags) |
113 |
|
114 |
This will initialise the default event loop if it hasn't been initialised |
115 |
yet and return it. If the default loop could not be initialised, returns |
116 |
false. If it already was initialised it simply returns it (and ignores the |
117 |
flags). |
118 |
|
119 |
If you don't know what event loop to use, use the one returned from this |
120 |
function. |
121 |
|
122 |
The flags argument can be used to specify special behaviour or specific |
123 |
backends to use, and is usually specified as 0 (or EVFLAG_AUTO) |
124 |
|
125 |
It supports the following flags: |
126 |
|
127 |
=over 4 |
128 |
|
129 |
=item EVFLAG_AUTO |
130 |
|
131 |
The default flags value. Use this if you have no clue (its the right |
132 |
thing, believe me). |
133 |
|
134 |
=item EVFLAG_NOENV |
135 |
|
136 |
If this flag bit is ored into the flag value then libev will I<not> look |
137 |
at the environment variable C<LIBEV_FLAGS>. Otherwise (the default), this |
138 |
environment variable will override the flags completely. This is useful |
139 |
to try out specific backends to tets their performance, or to work around |
140 |
bugs. |
141 |
|
142 |
=item EVMETHOD_SELECT portable select backend |
143 |
|
144 |
=item EVMETHOD_POLL poll backend (everywhere except windows) |
145 |
|
146 |
=item EVMETHOD_EPOLL linux only |
147 |
|
148 |
=item EVMETHOD_KQUEUE some bsds only |
149 |
|
150 |
=item EVMETHOD_DEVPOLL solaris 8 only |
151 |
|
152 |
=item EVMETHOD_PORT solaris 10 only |
153 |
|
154 |
If one or more of these are ored into the flags value, then only these |
155 |
backends will be tried (in the reverse order as given here). If one are |
156 |
specified, any backend will do. |
157 |
|
158 |
=back |
159 |
|
160 |
=item struct ev_loop *ev_loop_new (unsigned int flags) |
161 |
|
162 |
Similar to C<ev_default_loop>, but always creates a new event loop that is |
163 |
always distinct from the default loop. Unlike the default loop, it cannot |
164 |
handle signal and child watchers, and attempts to do so will be greeted by |
165 |
undefined behaviour (or a failed assertion if assertions are enabled). |
166 |
|
167 |
=item ev_default_destroy () |
168 |
|
169 |
Destroys the default loop again (frees all memory and kernel state |
170 |
etc.). This stops all registered event watchers (by not touching them in |
171 |
any way whatsoever, although you cnanot rely on this :). |
172 |
|
173 |
=item ev_loop_destroy (loop) |
174 |
|
175 |
Like C<ev_default_destroy>, but destroys an event loop created by an |
176 |
earlier call to C<ev_loop_new>. |
177 |
|
178 |
=item ev_default_fork () |
179 |
|
180 |
This function reinitialises the kernel state for backends that have |
181 |
one. Despite the name, you can call it anytime, but it makes most sense |
182 |
after forking, in either the parent or child process (or both, but that |
183 |
again makes little sense). |
184 |
|
185 |
You I<must> call this function after forking if and only if you want to |
186 |
use the event library in both processes. If you just fork+exec, you don't |
187 |
have to call it. |
188 |
|
189 |
The function itself is quite fast and its usually not a problem to call |
190 |
it just in case after a fork. To make this easy, the function will fit in |
191 |
quite nicely into a call to C<pthread_atfork>: |
192 |
|
193 |
pthread_atfork (0, 0, ev_default_fork); |
194 |
|
195 |
=item ev_loop_fork (loop) |
196 |
|
197 |
Like C<ev_default_fork>, but acts on an event loop created by |
198 |
C<ev_loop_new>. Yes, you have to call this on every allocated event loop |
199 |
after fork, and how you do this is entirely your own problem. |
200 |
|
201 |
=item unsigned int ev_method (loop) |
202 |
|
203 |
Returns one of the C<EVMETHOD_*> flags indicating the event backend in |
204 |
use. |
205 |
|
206 |
=item ev_tstamp = ev_now (loop) |
207 |
|
208 |
Returns the current "event loop time", which is the time the event loop |
209 |
got events and started processing them. This timestamp does not change |
210 |
as long as callbacks are being processed, and this is also the base time |
211 |
used for relative timers. You can treat it as the timestamp of the event |
212 |
occuring (or more correctly, the mainloop finding out about it). |
213 |
|
214 |
=item ev_loop (loop, int flags) |
215 |
|
216 |
Finally, this is it, the event handler. This function usually is called |
217 |
after you initialised all your watchers and you want to start handling |
218 |
events. |
219 |
|
220 |
If the flags argument is specified as 0, it will not return until either |
221 |
no event watchers are active anymore or C<ev_unloop> was called. |
222 |
|
223 |
A flags value of C<EVLOOP_NONBLOCK> will look for new events, will handle |
224 |
those events and any outstanding ones, but will not block your process in |
225 |
case there are no events. |
226 |
|
227 |
A flags value of C<EVLOOP_ONESHOT> will look for new events (waiting if |
228 |
neccessary) and will handle those and any outstanding ones. It will block |
229 |
your process until at least one new event arrives. |
230 |
|
231 |
This flags value could be used to implement alternative looping |
232 |
constructs, but the C<prepare> and C<check> watchers provide a better and |
233 |
more generic mechanism. |
234 |
|
235 |
=item ev_unloop (loop, how) |
236 |
|
237 |
Can be used to make a call to C<ev_loop> return early. The C<how> argument |
238 |
must be either C<EVUNLOOP_ONCE>, which will make the innermost C<ev_loop> |
239 |
call return, or C<EVUNLOOP_ALL>, which will make all nested C<ev_loop> |
240 |
calls return. |
241 |
|
242 |
=item ev_ref (loop) |
243 |
|
244 |
=item ev_unref (loop) |
245 |
|
246 |
Ref/unref can be used to add or remove a refcount on the event loop: Every |
247 |
watcher keeps one reference. If you have a long-runing watcher you never |
248 |
unregister that should not keep ev_loop from running, ev_unref() after |
249 |
starting, and ev_ref() before stopping it. Libev itself uses this for |
250 |
example for its internal signal pipe: It is not visible to you as a user |
251 |
and should not keep C<ev_loop> from exiting if the work is done. It is |
252 |
also an excellent way to do this for generic recurring timers or from |
253 |
within third-party libraries. Just remember to unref after start and ref |
254 |
before stop. |
255 |
|
256 |
=back |
257 |
|
258 |
=head1 ANATOMY OF A WATCHER |
259 |
|
260 |
A watcher is a structure that you create and register to record your |
261 |
interest in some event. For instance, if you want to wait for STDIN to |
262 |
become readable, you would create an ev_io watcher for that: |
263 |
|
264 |
static void my_cb (struct ev_loop *loop, struct ev_io *w, int revents) |
265 |
{ |
266 |
ev_io_stop (w); |
267 |
ev_unloop (loop, EVUNLOOP_ALL); |
268 |
} |
269 |
|
270 |
struct ev_loop *loop = ev_default_loop (0); |
271 |
struct ev_io stdin_watcher; |
272 |
ev_init (&stdin_watcher, my_cb); |
273 |
ev_io_set (&stdin_watcher, STDIN_FILENO, EV_READ); |
274 |
ev_io_start (loop, &stdin_watcher); |
275 |
ev_loop (loop, 0); |
276 |
|
277 |
As you can see, you are responsible for allocating the memory for your |
278 |
watcher structures (and it is usually a bad idea to do this on the stack, |
279 |
although this can sometimes be quite valid). |
280 |
|
281 |
Each watcher structure must be initialised by a call to C<ev_init |
282 |
(watcher *, callback)>, which expects a callback to be provided. This |
283 |
callback gets invoked each time the event occurs (or, in the case of io |
284 |
watchers, each time the event loop detects that the file descriptor given |
285 |
is readable and/or writable). |
286 |
|
287 |
Each watcher type has its own C<< ev_<type>_set (watcher *, ...) >> macro |
288 |
with arguments specific to this watcher type. There is also a macro |
289 |
to combine initialisation and setting in one call: C<< ev_<type>_init |
290 |
(watcher *, callback, ...) >>. |
291 |
|
292 |
To make the watcher actually watch out for events, you have to start it |
293 |
with a watcher-specific start function (C<< ev_<type>_start (loop, watcher |
294 |
*) >>), and you can stop watching for events at any time by calling the |
295 |
corresponding stop function (C<< ev_<type>_stop (loop, watcher *) >>. |
296 |
|
297 |
As long as your watcher is active (has been started but not stopped) you |
298 |
must not touch the values stored in it. Most specifically you must never |
299 |
reinitialise it or call its set method. |
300 |
|
301 |
You cna check whether an event is active by calling the C<ev_is_active |
302 |
(watcher *)> macro. To see whether an event is outstanding (but the |
303 |
callback for it has not been called yet) you cna use the C<ev_is_pending |
304 |
(watcher *)> macro. |
305 |
|
306 |
Each and every callback receives the event loop pointer as first, the |
307 |
registered watcher structure as second, and a bitset of received events as |
308 |
third argument. |
309 |
|
310 |
The rceeived events usually include a single bit per event type received |
311 |
(you can receive multiple events at the same time). The possible bit masks |
312 |
are: |
313 |
|
314 |
=over 4 |
315 |
|
316 |
=item EV_READ |
317 |
|
318 |
=item EV_WRITE |
319 |
|
320 |
The file descriptor in the ev_io watcher has become readable and/or |
321 |
writable. |
322 |
|
323 |
=item EV_TIMEOUT |
324 |
|
325 |
The ev_timer watcher has timed out. |
326 |
|
327 |
=item EV_PERIODIC |
328 |
|
329 |
The ev_periodic watcher has timed out. |
330 |
|
331 |
=item EV_SIGNAL |
332 |
|
333 |
The signal specified in the ev_signal watcher has been received by a thread. |
334 |
|
335 |
=item EV_CHILD |
336 |
|
337 |
The pid specified in the ev_child watcher has received a status change. |
338 |
|
339 |
=item EV_IDLE |
340 |
|
341 |
The ev_idle watcher has determined that you have nothing better to do. |
342 |
|
343 |
=item EV_PREPARE |
344 |
|
345 |
=item EV_CHECK |
346 |
|
347 |
All ev_prepare watchers are invoked just I<before> C<ev_loop> starts |
348 |
to gather new events, and all ev_check watchers are invoked just after |
349 |
C<ev_loop> has gathered them, but before it invokes any callbacks for any |
350 |
received events. Callbacks of both watcher types can start and stop as |
351 |
many watchers as they want, and all of them will be taken into account |
352 |
(for example, a ev_prepare watcher might start an idle watcher to keep |
353 |
C<ev_loop> from blocking). |
354 |
|
355 |
=item EV_ERROR |
356 |
|
357 |
An unspecified error has occured, the watcher has been stopped. This might |
358 |
happen because the watcher could not be properly started because libev |
359 |
ran out of memory, a file descriptor was found to be closed or any other |
360 |
problem. You best act on it by reporting the problem and somehow coping |
361 |
with the watcher being stopped. |
362 |
|
363 |
Libev will usually signal a few "dummy" events together with an error, |
364 |
for example it might indicate that a fd is readable or writable, and if |
365 |
your callbacks is well-written it can just attempt the operation and cope |
366 |
with the error from read() or write(). This will not work in multithreaded |
367 |
programs, though, so beware. |
368 |
|
369 |
=back |
370 |
|
371 |
=head2 ASSOCIATING CUSTOM DATA WITH A WATCHER |
372 |
|
373 |
Each watcher has, by default, a member C<void *data> that you can change |
374 |
and read at any time, libev will completely ignore it. This cna be used |
375 |
to associate arbitrary data with your watcher. If you need more data and |
376 |
don't want to allocate memory and store a pointer to it in that data |
377 |
member, you can also "subclass" the watcher type and provide your own |
378 |
data: |
379 |
|
380 |
struct my_io |
381 |
{ |
382 |
struct ev_io io; |
383 |
int otherfd; |
384 |
void *somedata; |
385 |
struct whatever *mostinteresting; |
386 |
} |
387 |
|
388 |
And since your callback will be called with a pointer to the watcher, you |
389 |
can cast it back to your own type: |
390 |
|
391 |
static void my_cb (struct ev_loop *loop, struct ev_io *w_, int revents) |
392 |
{ |
393 |
struct my_io *w = (struct my_io *)w_; |
394 |
... |
395 |
} |
396 |
|
397 |
More interesting and less C-conformant ways of catsing your callback type |
398 |
have been omitted.... |
399 |
|
400 |
|
401 |
=head1 WATCHER TYPES |
402 |
|
403 |
This section describes each watcher in detail, but will not repeat |
404 |
information given in the last section. |
405 |
|
406 |
=head2 struct ev_io - is my file descriptor readable or writable |
407 |
|
408 |
I/O watchers check whether a file descriptor is readable or writable |
409 |
in each iteration of the event loop (This behaviour is called |
410 |
level-triggering because you keep receiving events as long as the |
411 |
condition persists. Remember you cna stop the watcher if you don't want to |
412 |
act on the event and neither want to receive future events). |
413 |
|
414 |
=over 4 |
415 |
|
416 |
=item ev_io_init (ev_io *, callback, int fd, int events) |
417 |
|
418 |
=item ev_io_set (ev_io *, int fd, int events) |
419 |
|
420 |
Configures an ev_io watcher. The fd is the file descriptor to rceeive |
421 |
events for and events is either C<EV_READ>, C<EV_WRITE> or C<EV_READ | |
422 |
EV_WRITE> to receive the given events. |
423 |
|
424 |
=back |
425 |
|
426 |
=head2 struct ev_timer - relative and optionally recurring timeouts |
427 |
|
428 |
Timer watchers are simple relative timers that generate an event after a |
429 |
given time, and optionally repeating in regular intervals after that. |
430 |
|
431 |
The timers are based on real time, that is, if you register an event that |
432 |
times out after an hour and youreset your system clock to last years |
433 |
time, it will still time out after (roughly) and hour. "Roughly" because |
434 |
detecting time jumps is hard, and soem inaccuracies are unavoidable (the |
435 |
monotonic clock option helps a lot here). |
436 |
|
437 |
=over 4 |
438 |
|
439 |
=item ev_timer_init (ev_timer *, callback, ev_tstamp after, ev_tstamp repeat) |
440 |
|
441 |
=item ev_timer_set (ev_timer *, ev_tstamp after, ev_tstamp repeat) |
442 |
|
443 |
Configure the timer to trigger after C<after> seconds. If C<repeat> is |
444 |
C<0.>, then it will automatically be stopped. If it is positive, then the |
445 |
timer will automatically be configured to trigger again C<repeat> seconds |
446 |
later, again, and again, until stopped manually. |
447 |
|
448 |
The timer itself will do a best-effort at avoiding drift, that is, if you |
449 |
configure a timer to trigger every 10 seconds, then it will trigger at |
450 |
exactly 10 second intervals. If, however, your program cannot keep up with |
451 |
the timer (ecause it takes longer than those 10 seconds to do stuff) the |
452 |
timer will not fire more than once per event loop iteration. |
453 |
|
454 |
=item ev_timer_again (loop) |
455 |
|
456 |
This will act as if the timer timed out and restart it again if it is |
457 |
repeating. The exact semantics are: |
458 |
|
459 |
If the timer is started but nonrepeating, stop it. |
460 |
|
461 |
If the timer is repeating, either start it if necessary (with the repeat |
462 |
value), or reset the running timer to the repeat value. |
463 |
|
464 |
This sounds a bit complicated, but here is a useful and typical |
465 |
example: Imagine you have a tcp connection and you want a so-called idle |
466 |
timeout, that is, you want to be called when there have been, say, 60 |
467 |
seconds of inactivity on the socket. The easiest way to do this is to |
468 |
configure an ev_timer with after=repeat=60 and calling ev_timer_again each |
469 |
time you successfully read or write some data. If you go into an idle |
470 |
state where you do not expect data to travel on the socket, you can stop |
471 |
the timer, and again will automatically restart it if need be. |
472 |
|
473 |
=back |
474 |
|
475 |
=head2 ev_periodic - to cron or not to cron it |
476 |
|
477 |
Periodic watchers are also timers of a kind, but they are very versatile |
478 |
(and unfortunately a bit complex). |
479 |
|
480 |
Unlike ev_timer's, they are not based on real time (or relative time) |
481 |
but on wallclock time (absolute time). You can tell a periodic watcher |
482 |
to trigger "at" some specific point in time. For example, if you tell a |
483 |
periodic watcher to trigger in 10 seconds (by specifiying e.g. c<ev_now () |
484 |
+ 10.>) and then reset your system clock to the last year, then it will |
485 |
take a year to trigger the event (unlike an ev_timer, which would trigger |
486 |
roughly 10 seconds later and of course not if you reset your system time |
487 |
again). |
488 |
|
489 |
They can also be used to implement vastly more complex timers, such as |
490 |
triggering an event on eahc midnight, local time. |
491 |
|
492 |
=over 4 |
493 |
|
494 |
=item ev_periodic_init (ev_periodic *, callback, ev_tstamp at, ev_tstamp interval, reschedule_cb) |
495 |
|
496 |
=item ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb) |
497 |
|
498 |
Lots of arguments, lets sort it out... There are basically three modes of |
499 |
operation, and we will explain them from simplest to complex: |
500 |
|
501 |
|
502 |
=over 4 |
503 |
|
504 |
=item * absolute timer (interval = reschedule_cb = 0) |
505 |
|
506 |
In this configuration the watcher triggers an event at the wallclock time |
507 |
C<at> and doesn't repeat. It will not adjust when a time jump occurs, |
508 |
that is, if it is to be run at January 1st 2011 then it will run when the |
509 |
system time reaches or surpasses this time. |
510 |
|
511 |
=item * non-repeating interval timer (interval > 0, reschedule_cb = 0) |
512 |
|
513 |
In this mode the watcher will always be scheduled to time out at the next |
514 |
C<at + N * interval> time (for some integer N) and then repeat, regardless |
515 |
of any time jumps. |
516 |
|
517 |
This can be used to create timers that do not drift with respect to system |
518 |
time: |
519 |
|
520 |
ev_periodic_set (&periodic, 0., 3600., 0); |
521 |
|
522 |
This doesn't mean there will always be 3600 seconds in between triggers, |
523 |
but only that the the callback will be called when the system time shows a |
524 |
full hour (UTC), or more correct, when the system time is evenly divisible |
525 |
by 3600. |
526 |
|
527 |
Another way to think about it (for the mathematically inclined) is that |
528 |
ev_periodic will try to run the callback in this mode at the next possible |
529 |
time where C<time = at (mod interval)>, regardless of any time jumps. |
530 |
|
531 |
=item * manual reschedule mode (reschedule_cb = callback) |
532 |
|
533 |
In this mode the values for C<interval> and C<at> are both being |
534 |
ignored. Instead, each time the periodic watcher gets scheduled, the |
535 |
reschedule callback will be called with the watcher as first, and the |
536 |
current time as second argument. |
537 |
|
538 |
NOTE: I<This callback MUST NOT stop or destroy the periodic or any other |
539 |
periodic watcher, ever, or make any event loop modificstions>. If you need |
540 |
to stop it, return 1e30 (or so, fudge fudge) and stop it afterwards. |
541 |
|
542 |
Its prototype is c<ev_tstamp (*reschedule_cb)(struct ev_periodic *w, |
543 |
ev_tstamp now)>, e.g.: |
544 |
|
545 |
static ev_tstamp my_rescheduler (struct ev_periodic *w, ev_tstamp now) |
546 |
{ |
547 |
return now + 60.; |
548 |
} |
549 |
|
550 |
It must return the next time to trigger, based on the passed time value |
551 |
(that is, the lowest time value larger than to the second argument). It |
552 |
will usually be called just before the callback will be triggered, but |
553 |
might be called at other times, too. |
554 |
|
555 |
This can be used to create very complex timers, such as a timer that |
556 |
triggers on each midnight, local time. To do this, you would calculate the |
557 |
next midnight after C<now> and return the timestamp value for this. How you do this |
558 |
is, again, up to you (but it is not trivial). |
559 |
|
560 |
=back |
561 |
|
562 |
=item ev_periodic_again (loop, ev_periodic *) |
563 |
|
564 |
Simply stops and restarts the periodic watcher again. This is only useful |
565 |
when you changed some parameters or the reschedule callback would return |
566 |
a different time than the last time it was called (e.g. in a crond like |
567 |
program when the crontabs have changed). |
568 |
|
569 |
=back |
570 |
|
571 |
=head2 ev_signal - signal me when a signal gets signalled |
572 |
|
573 |
Signal watchers will trigger an event when the process receives a specific |
574 |
signal one or more times. Even though signals are very asynchronous, libev |
575 |
will try its best to deliver signals synchronously, i.e. as part of the |
576 |
normal event processing, like any other event. |
577 |
|
578 |
You cna configure as many watchers as you like per signal. Only when the |
579 |
first watcher gets started will libev actually register a signal watcher |
580 |
with the kernel (thus it coexists with your own signal handlers as long |
581 |
as you don't register any with libev). Similarly, when the last signal |
582 |
watcher for a signal is stopped libev will reset the signal handler to |
583 |
SIG_DFL (regardless of what it was set to before). |
584 |
|
585 |
=over 4 |
586 |
|
587 |
=item ev_signal_init (ev_signal *, callback, int signum) |
588 |
|
589 |
=item ev_signal_set (ev_signal *, int signum) |
590 |
|
591 |
Configures the watcher to trigger on the given signal number (usually one |
592 |
of the C<SIGxxx> constants). |
593 |
|
594 |
=back |
595 |
|
596 |
=head2 ev_child - wait for pid status changes |
597 |
|
598 |
Child watchers trigger when your process receives a SIGCHLD in response to |
599 |
some child status changes (most typically when a child of yours dies). |
600 |
|
601 |
=over 4 |
602 |
|
603 |
=item ev_child_init (ev_child *, callback, int pid) |
604 |
|
605 |
=item ev_child_set (ev_child *, int pid) |
606 |
|
607 |
Configures the watcher to wait for status changes of process C<pid> (or |
608 |
I<any> process if C<pid> is specified as C<0>). The callback can look |
609 |
at the C<rstatus> member of the C<ev_child> watcher structure to see |
610 |
the status word (use the macros from C<sys/wait.h>). The C<rpid> member |
611 |
contains the pid of the process causing the status change. |
612 |
|
613 |
=back |
614 |
|
615 |
=head2 ev_idle - when you've got nothing better to do |
616 |
|
617 |
Idle watchers trigger events when there are no other I/O or timer (or |
618 |
periodic) events pending. That is, as long as your process is busy |
619 |
handling sockets or timeouts it will not be called. But when your process |
620 |
is idle all idle watchers are being called again and again - until |
621 |
stopped, that is, or your process receives more events. |
622 |
|
623 |
The most noteworthy effect is that as long as any idle watchers are |
624 |
active, the process will not block when waiting for new events. |
625 |
|
626 |
Apart from keeping your process non-blocking (which is a useful |
627 |
effect on its own sometimes), idle watchers are a good place to do |
628 |
"pseudo-background processing", or delay processing stuff to after the |
629 |
event loop has handled all outstanding events. |
630 |
|
631 |
=over 4 |
632 |
|
633 |
=item ev_idle_init (ev_signal *, callback) |
634 |
|
635 |
Initialises and configures the idle watcher - it has no parameters of any |
636 |
kind. There is a C<ev_idle_set> macro, but using it is utterly pointless, |
637 |
believe me. |
638 |
|
639 |
=back |
640 |
|
641 |
=head2 prepare and check - your hooks into the event loop |
642 |
|
643 |
Prepare and check watchers usually (but not always) are used in |
644 |
tandom. Prepare watchers get invoked before the process blocks and check |
645 |
watchers afterwards. |
646 |
|
647 |
Their main purpose is to integrate other event mechanisms into libev. This |
648 |
could be used, for example, to track variable changes, implement your own |
649 |
watchers, integrate net-snmp or a coroutine library and lots more. |
650 |
|
651 |
This is done by examining in each prepare call which file descriptors need |
652 |
to be watched by the other library, registering ev_io watchers for them |
653 |
and starting an ev_timer watcher for any timeouts (many libraries provide |
654 |
just this functionality). Then, in the check watcher you check for any |
655 |
events that occured (by making your callbacks set soem flags for example) |
656 |
and call back into the library. |
657 |
|
658 |
As another example, the perl Coro module uses these hooks to integrate |
659 |
coroutines into libev programs, by yielding to other active coroutines |
660 |
during each prepare and only letting the process block if no coroutines |
661 |
are ready to run. |
662 |
|
663 |
=over 4 |
664 |
|
665 |
=item ev_prepare_init (ev_prepare *, callback) |
666 |
|
667 |
=item ev_check_init (ev_check *, callback) |
668 |
|
669 |
Initialises and configures the prepare or check watcher - they have no |
670 |
parameters of any kind. There are C<ev_prepare_set> and C<ev_check_set> |
671 |
macros, but using them is utterly, utterly pointless. |
672 |
|
673 |
=back |
674 |
|
675 |
=head1 OTHER FUNCTIONS |
676 |
|
677 |
There are some other fucntions of possible interest. Described. Here. Now. |
678 |
|
679 |
=over 4 |
680 |
|
681 |
=item ev_once (loop, int fd, int events, ev_tstamp timeout, callback) |
682 |
|
683 |
This function combines a simple timer and an I/O watcher, calls your |
684 |
callback on whichever event happens first and automatically stop both |
685 |
watchers. This is useful if you want to wait for a single event on an fd |
686 |
or timeout without havign to allocate/configure/start/stop/free one or |
687 |
more watchers yourself. |
688 |
|
689 |
If C<fd> is less than 0, then no I/O watcher will be started and events is |
690 |
ignored. Otherwise, an ev_io watcher for the given C<fd> and C<events> set |
691 |
will be craeted and started. |
692 |
|
693 |
If C<timeout> is less than 0, then no timeout watcher will be |
694 |
started. Otherwise an ev_timer watcher with after = C<timeout> (and repeat |
695 |
= 0) will be started. |
696 |
|
697 |
The callback has the type C<void (*cb)(int revents, void *arg)> and |
698 |
gets passed an events set (normally a combination of EV_ERROR, EV_READ, |
699 |
EV_WRITE or EV_TIMEOUT) and the C<arg> value passed to C<ev_once>: |
700 |
|
701 |
static void stdin_ready (int revents, void *arg) |
702 |
{ |
703 |
if (revents & EV_TIMEOUT) |
704 |
/* doh, nothing entered */ |
705 |
else if (revents & EV_READ) |
706 |
/* stdin might have data for us, joy! */ |
707 |
} |
708 |
|
709 |
ev_once (STDIN_FILENO, EV_READm 10., stdin_ready, 0); |
710 |
|
711 |
=item ev_feed_event (loop, watcher, int events) |
712 |
|
713 |
Feeds the given event set into the event loop, as if the specified event |
714 |
has happened for the specified watcher (which must be a pointer to an |
715 |
initialised but not necessarily active event watcher). |
716 |
|
717 |
=item ev_feed_fd_event (loop, int fd, int revents) |
718 |
|
719 |
Feed an event on the given fd, as if a file descriptor backend detected it. |
720 |
|
721 |
=item ev_feed_signal_event (loop, int signum) |
722 |
|
723 |
Feed an event as if the given signal occured (loop must be the default loop!). |
724 |
|
725 |
=back |
726 |
|
727 |
=head1 AUTHOR |
728 |
|
729 |
Marc Lehmann <libev@schmorp.de>. |
730 |
|