ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.3
(Generate patch)

Comparing libev/ev.3 (file contents):
Revision 1.6 by root, Fri Nov 23 05:14:58 2007 UTC vs.
Revision 1.10 by root, Sat Nov 24 06:23:27 2007 UTC

127.\} 127.\}
128.rm #[ #] #H #V #F C 128.rm #[ #] #H #V #F C
129.\" ======================================================================== 129.\" ========================================================================
130.\" 130.\"
131.IX Title ""<STANDARD INPUT>" 1" 131.IX Title ""<STANDARD INPUT>" 1"
132.TH "<STANDARD INPUT>" 1 "2007-11-23" "perl v5.8.8" "User Contributed Perl Documentation" 132.TH "<STANDARD INPUT>" 1 "2007-11-24" "perl v5.8.8" "User Contributed Perl Documentation"
133.SH "NAME" 133.SH "NAME"
134libev \- a high performance full\-featured event loop written in C 134libev \- a high performance full\-featured event loop written in C
135.SH "SYNOPSIS" 135.SH "SYNOPSIS"
136.IX Header "SYNOPSIS" 136.IX Header "SYNOPSIS"
137.Vb 1 137.Vb 1
173.IX Header "TIME REPRESENTATION" 173.IX Header "TIME REPRESENTATION"
174Libev represents time as a single floating point number, representing the 174Libev represents time as a single floating point number, representing the
175(fractional) number of seconds since the (\s-1POSIX\s0) epoch (somewhere near 175(fractional) number of seconds since the (\s-1POSIX\s0) epoch (somewhere near
176the beginning of 1970, details are complicated, don't ask). This type is 176the beginning of 1970, details are complicated, don't ask). This type is
177called \f(CW\*(C`ev_tstamp\*(C'\fR, which is what you should use too. It usually aliases 177called \f(CW\*(C`ev_tstamp\*(C'\fR, which is what you should use too. It usually aliases
178to the double type in C. 178to the \f(CW\*(C`double\*(C'\fR type in C, and when you need to do any calculations on
179it, you should treat it as such.
179.SH "GLOBAL FUNCTIONS" 180.SH "GLOBAL FUNCTIONS"
180.IX Header "GLOBAL FUNCTIONS" 181.IX Header "GLOBAL FUNCTIONS"
181These functions can be called anytime, even before initialising the 182These functions can be called anytime, even before initialising the
182library in any way. 183library in any way.
183.IP "ev_tstamp ev_time ()" 4 184.IP "ev_tstamp ev_time ()" 4
199.Sp 200.Sp
200Usually, it's a good idea to terminate if the major versions mismatch, 201Usually, it's a good idea to terminate if the major versions mismatch,
201as this indicates an incompatible change. Minor versions are usually 202as this indicates an incompatible change. Minor versions are usually
202compatible to older versions, so a larger minor version alone is usually 203compatible to older versions, so a larger minor version alone is usually
203not a problem. 204not a problem.
205.Sp
206Example: make sure we haven't accidentally been linked against the wrong
207version:
208.Sp
209.Vb 3
210\& assert (("libev version mismatch",
211\& ev_version_major () == EV_VERSION_MAJOR
212\& && ev_version_minor () >= EV_VERSION_MINOR));
213.Ve
204.IP "unsigned int ev_supported_backends ()" 4 214.IP "unsigned int ev_supported_backends ()" 4
205.IX Item "unsigned int ev_supported_backends ()" 215.IX Item "unsigned int ev_supported_backends ()"
206Return the set of all backends (i.e. their corresponding \f(CW\*(C`EV_BACKEND_*\*(C'\fR 216Return the set of all backends (i.e. their corresponding \f(CW\*(C`EV_BACKEND_*\*(C'\fR
207value) compiled into this binary of libev (independent of their 217value) compiled into this binary of libev (independent of their
208availability on the system you are running on). See \f(CW\*(C`ev_default_loop\*(C'\fR for 218availability on the system you are running on). See \f(CW\*(C`ev_default_loop\*(C'\fR for
209a description of the set values. 219a description of the set values.
220.Sp
221Example: make sure we have the epoll method, because yeah this is cool and
222a must have and can we have a torrent of it please!!!11
223.Sp
224.Vb 2
225\& assert (("sorry, no epoll, no sex",
226\& ev_supported_backends () & EVBACKEND_EPOLL));
227.Ve
210.IP "unsigned int ev_recommended_backends ()" 4 228.IP "unsigned int ev_recommended_backends ()" 4
211.IX Item "unsigned int ev_recommended_backends ()" 229.IX Item "unsigned int ev_recommended_backends ()"
212Return the set of all backends compiled into this binary of libev and also 230Return the set of all backends compiled into this binary of libev and also
213recommended for this platform. This set is often smaller than the one 231recommended for this platform. This set is often smaller than the one
214returned by \f(CW\*(C`ev_supported_backends\*(C'\fR, as for example kqueue is broken on 232returned by \f(CW\*(C`ev_supported_backends\*(C'\fR, as for example kqueue is broken on
215most BSDs and will not be autodetected unless you explicitly request it 233most BSDs and will not be autodetected unless you explicitly request it
216(assuming you know what you are doing). This is the set of backends that 234(assuming you know what you are doing). This is the set of backends that
217\&\f(CW\*(C`EVFLAG_AUTO\*(C'\fR will probe for. 235libev will probe for if you specify no backends explicitly.
236.IP "unsigned int ev_embeddable_backends ()" 4
237.IX Item "unsigned int ev_embeddable_backends ()"
238Returns the set of backends that are embeddable in other event loops. This
239is the theoretical, all\-platform, value. To find which backends
240might be supported on the current system, you would need to look at
241\&\f(CW\*(C`ev_embeddable_backends () & ev_supported_backends ()\*(C'\fR, likewise for
242recommended ones.
243.Sp
244See the description of \f(CW\*(C`ev_embed\*(C'\fR watchers for more info.
218.IP "ev_set_allocator (void *(*cb)(void *ptr, long size))" 4 245.IP "ev_set_allocator (void *(*cb)(void *ptr, long size))" 4
219.IX Item "ev_set_allocator (void *(*cb)(void *ptr, long size))" 246.IX Item "ev_set_allocator (void *(*cb)(void *ptr, long size))"
220Sets the allocation function to use (the prototype is similar to the 247Sets the allocation function to use (the prototype is similar to the
221realloc C function, the semantics are identical). It is used to allocate 248realloc C function, the semantics are identical). It is used to allocate
222and free memory (no surprises here). If it returns zero when memory 249and free memory (no surprises here). If it returns zero when memory
224destructive action. The default is your system realloc function. 251destructive action. The default is your system realloc function.
225.Sp 252.Sp
226You could override this function in high-availability programs to, say, 253You could override this function in high-availability programs to, say,
227free some memory if it cannot allocate memory, to use a special allocator, 254free some memory if it cannot allocate memory, to use a special allocator,
228or even to sleep a while and retry until some memory is available. 255or even to sleep a while and retry until some memory is available.
256.Sp
257Example: replace the libev allocator with one that waits a bit and then
258retries: better than mine).
259.Sp
260.Vb 6
261\& static void *
262\& persistent_realloc (void *ptr, long size)
263\& {
264\& for (;;)
265\& {
266\& void *newptr = realloc (ptr, size);
267.Ve
268.Sp
269.Vb 2
270\& if (newptr)
271\& return newptr;
272.Ve
273.Sp
274.Vb 3
275\& sleep (60);
276\& }
277\& }
278.Ve
279.Sp
280.Vb 2
281\& ...
282\& ev_set_allocator (persistent_realloc);
283.Ve
229.IP "ev_set_syserr_cb (void (*cb)(const char *msg));" 4 284.IP "ev_set_syserr_cb (void (*cb)(const char *msg));" 4
230.IX Item "ev_set_syserr_cb (void (*cb)(const char *msg));" 285.IX Item "ev_set_syserr_cb (void (*cb)(const char *msg));"
231Set the callback function to call on a retryable syscall error (such 286Set the callback function to call on a retryable syscall error (such
232as failed select, poll, epoll_wait). The message is a printable string 287as failed select, poll, epoll_wait). The message is a printable string
233indicating the system call or subsystem causing the problem. If this 288indicating the system call or subsystem causing the problem. If this
234callback is set, then libev will expect it to remedy the sitution, no 289callback is set, then libev will expect it to remedy the sitution, no
235matter what, when it returns. That is, libev will generally retry the 290matter what, when it returns. That is, libev will generally retry the
236requested operation, or, if the condition doesn't go away, do bad stuff 291requested operation, or, if the condition doesn't go away, do bad stuff
237(such as abort). 292(such as abort).
293.Sp
294Example: do the same thing as libev does internally:
295.Sp
296.Vb 6
297\& static void
298\& fatal_error (const char *msg)
299\& {
300\& perror (msg);
301\& abort ();
302\& }
303.Ve
304.Sp
305.Vb 2
306\& ...
307\& ev_set_syserr_cb (fatal_error);
308.Ve
238.SH "FUNCTIONS CONTROLLING THE EVENT LOOP" 309.SH "FUNCTIONS CONTROLLING THE EVENT LOOP"
239.IX Header "FUNCTIONS CONTROLLING THE EVENT LOOP" 310.IX Header "FUNCTIONS CONTROLLING THE EVENT LOOP"
240An event loop is described by a \f(CW\*(C`struct ev_loop *\*(C'\fR. The library knows two 311An event loop is described by a \f(CW\*(C`struct ev_loop *\*(C'\fR. The library knows two
241types of such loops, the \fIdefault\fR loop, which supports signals and child 312types of such loops, the \fIdefault\fR loop, which supports signals and child
242events, and dynamically created loops which do not. 313events, and dynamically created loops which do not.
256.Sp 327.Sp
257If you don't know what event loop to use, use the one returned from this 328If you don't know what event loop to use, use the one returned from this
258function. 329function.
259.Sp 330.Sp
260The flags argument can be used to specify special behaviour or specific 331The flags argument can be used to specify special behaviour or specific
261backends to use, and is usually specified as \f(CW0\fR (or \s-1EVFLAG_AUTO\s0). 332backends to use, and is usually specified as \f(CW0\fR (or \f(CW\*(C`EVFLAG_AUTO\*(C'\fR).
262.Sp 333.Sp
263It supports the following flags: 334The following flags are supported:
264.RS 4 335.RS 4
265.ie n .IP """EVFLAG_AUTO""" 4 336.ie n .IP """EVFLAG_AUTO""" 4
266.el .IP "\f(CWEVFLAG_AUTO\fR" 4 337.el .IP "\f(CWEVFLAG_AUTO\fR" 4
267.IX Item "EVFLAG_AUTO" 338.IX Item "EVFLAG_AUTO"
268The default flags value. Use this if you have no clue (it's the right 339The default flags value. Use this if you have no clue (it's the right
302While stopping and starting an I/O watcher in the same iteration will 373While stopping and starting an I/O watcher in the same iteration will
303result in some caching, there is still a syscall per such incident 374result in some caching, there is still a syscall per such incident
304(because the fd could point to a different file description now), so its 375(because the fd could point to a different file description now), so its
305best to avoid that. Also, \fIdup()\fRed file descriptors might not work very 376best to avoid that. Also, \fIdup()\fRed file descriptors might not work very
306well if you register events for both fds. 377well if you register events for both fds.
378.Sp
379Please note that epoll sometimes generates spurious notifications, so you
380need to use non-blocking I/O or other means to avoid blocking when no data
381(or space) is available.
307.ie n .IP """EVBACKEND_KQUEUE"" (value 8, most \s-1BSD\s0 clones)" 4 382.ie n .IP """EVBACKEND_KQUEUE"" (value 8, most \s-1BSD\s0 clones)" 4
308.el .IP "\f(CWEVBACKEND_KQUEUE\fR (value 8, most \s-1BSD\s0 clones)" 4 383.el .IP "\f(CWEVBACKEND_KQUEUE\fR (value 8, most \s-1BSD\s0 clones)" 4
309.IX Item "EVBACKEND_KQUEUE (value 8, most BSD clones)" 384.IX Item "EVBACKEND_KQUEUE (value 8, most BSD clones)"
310Kqueue deserves special mention, as at the time of this writing, it 385Kqueue deserves special mention, as at the time of this writing, it
311was broken on all BSDs except NetBSD (usually it doesn't work with 386was broken on all BSDs except NetBSD (usually it doesn't work with
312anything but sockets and pipes, except on Darwin, where of course its 387anything but sockets and pipes, except on Darwin, where of course its
313completely useless). For this reason its not being \*(L"autodetected\*(R" unless 388completely useless). For this reason its not being \*(L"autodetected\*(R"
314you explicitly specify the flags (i.e. you don't use \s-1EVFLAG_AUTO\s0). 389unless you explicitly specify it explicitly in the flags (i.e. using
390\&\f(CW\*(C`EVBACKEND_KQUEUE\*(C'\fR).
315.Sp 391.Sp
316It scales in the same way as the epoll backend, but the interface to the 392It scales in the same way as the epoll backend, but the interface to the
317kernel is more efficient (which says nothing about its actual speed, of 393kernel is more efficient (which says nothing about its actual speed, of
318course). While starting and stopping an I/O watcher does not cause an 394course). While starting and stopping an I/O watcher does not cause an
319extra syscall as with epoll, it still adds up to four event changes per 395extra syscall as with epoll, it still adds up to four event changes per
325.ie n .IP """EVBACKEND_PORT"" (value 32, Solaris 10)" 4 401.ie n .IP """EVBACKEND_PORT"" (value 32, Solaris 10)" 4
326.el .IP "\f(CWEVBACKEND_PORT\fR (value 32, Solaris 10)" 4 402.el .IP "\f(CWEVBACKEND_PORT\fR (value 32, Solaris 10)" 4
327.IX Item "EVBACKEND_PORT (value 32, Solaris 10)" 403.IX Item "EVBACKEND_PORT (value 32, Solaris 10)"
328This uses the Solaris 10 port mechanism. As with everything on Solaris, 404This uses the Solaris 10 port mechanism. As with everything on Solaris,
329it's really slow, but it still scales very well (O(active_fds)). 405it's really slow, but it still scales very well (O(active_fds)).
406.Sp
407Please note that solaris ports can result in a lot of spurious
408notifications, so you need to use non-blocking I/O or other means to avoid
409blocking when no data (or space) is available.
330.ie n .IP """EVBACKEND_ALL""" 4 410.ie n .IP """EVBACKEND_ALL""" 4
331.el .IP "\f(CWEVBACKEND_ALL\fR" 4 411.el .IP "\f(CWEVBACKEND_ALL\fR" 4
332.IX Item "EVBACKEND_ALL" 412.IX Item "EVBACKEND_ALL"
333Try all backends (even potentially broken ones that wouldn't be tried 413Try all backends (even potentially broken ones that wouldn't be tried
334with \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). Since this is a mask, you can do stuff such as 414with \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). Since this is a mask, you can do stuff such as
338.Sp 418.Sp
339If one or more of these are ored into the flags value, then only these 419If one or more of these are ored into the flags value, then only these
340backends will be tried (in the reverse order as given here). If none are 420backends will be tried (in the reverse order as given here). If none are
341specified, most compiled-in backend will be tried, usually in reverse 421specified, most compiled-in backend will be tried, usually in reverse
342order of their flag values :) 422order of their flag values :)
423.Sp
424The most typical usage is like this:
425.Sp
426.Vb 2
427\& if (!ev_default_loop (0))
428\& fatal ("could not initialise libev, bad $LIBEV_FLAGS in environment?");
429.Ve
430.Sp
431Restrict libev to the select and poll backends, and do not allow
432environment settings to be taken into account:
433.Sp
434.Vb 1
435\& ev_default_loop (EVBACKEND_POLL | EVBACKEND_SELECT | EVFLAG_NOENV);
436.Ve
437.Sp
438Use whatever libev has to offer, but make sure that kqueue is used if
439available (warning, breaks stuff, best use only with your own private
440event loop and only if you know the \s-1OS\s0 supports your types of fds):
441.Sp
442.Vb 1
443\& ev_default_loop (ev_recommended_backends () | EVBACKEND_KQUEUE);
444.Ve
343.RE 445.RE
344.IP "struct ev_loop *ev_loop_new (unsigned int flags)" 4 446.IP "struct ev_loop *ev_loop_new (unsigned int flags)" 4
345.IX Item "struct ev_loop *ev_loop_new (unsigned int flags)" 447.IX Item "struct ev_loop *ev_loop_new (unsigned int flags)"
346Similar to \f(CW\*(C`ev_default_loop\*(C'\fR, but always creates a new event loop that is 448Similar to \f(CW\*(C`ev_default_loop\*(C'\fR, but always creates a new event loop that is
347always distinct from the default loop. Unlike the default loop, it cannot 449always distinct from the default loop. Unlike the default loop, it cannot
348handle signal and child watchers, and attempts to do so will be greeted by 450handle signal and child watchers, and attempts to do so will be greeted by
349undefined behaviour (or a failed assertion if assertions are enabled). 451undefined behaviour (or a failed assertion if assertions are enabled).
452.Sp
453Example: try to create a event loop that uses epoll and nothing else.
454.Sp
455.Vb 3
456\& struct ev_loop *epoller = ev_loop_new (EVBACKEND_EPOLL | EVFLAG_NOENV);
457\& if (!epoller)
458\& fatal ("no epoll found here, maybe it hides under your chair");
459.Ve
350.IP "ev_default_destroy ()" 4 460.IP "ev_default_destroy ()" 4
351.IX Item "ev_default_destroy ()" 461.IX Item "ev_default_destroy ()"
352Destroys the default loop again (frees all memory and kernel state 462Destroys the default loop again (frees all memory and kernel state
353etc.). This stops all registered event watchers (by not touching them in 463etc.). This stops all registered event watchers (by not touching them in
354any way whatsoever, although you cannot rely on this :). 464any way whatsoever, although you cannot rely on this :).
388Returns one of the \f(CW\*(C`EVBACKEND_*\*(C'\fR flags indicating the event backend in 498Returns one of the \f(CW\*(C`EVBACKEND_*\*(C'\fR flags indicating the event backend in
389use. 499use.
390.IP "ev_tstamp ev_now (loop)" 4 500.IP "ev_tstamp ev_now (loop)" 4
391.IX Item "ev_tstamp ev_now (loop)" 501.IX Item "ev_tstamp ev_now (loop)"
392Returns the current \*(L"event loop time\*(R", which is the time the event loop 502Returns the current \*(L"event loop time\*(R", which is the time the event loop
393got events and started processing them. This timestamp does not change 503received events and started processing them. This timestamp does not
394as long as callbacks are being processed, and this is also the base time 504change as long as callbacks are being processed, and this is also the base
395used for relative timers. You can treat it as the timestamp of the event 505time used for relative timers. You can treat it as the timestamp of the
396occuring (or more correctly, the mainloop finding out about it). 506event occuring (or more correctly, libev finding out about it).
397.IP "ev_loop (loop, int flags)" 4 507.IP "ev_loop (loop, int flags)" 4
398.IX Item "ev_loop (loop, int flags)" 508.IX Item "ev_loop (loop, int flags)"
399Finally, this is it, the event handler. This function usually is called 509Finally, this is it, the event handler. This function usually is called
400after you initialised all your watchers and you want to start handling 510after you initialised all your watchers and you want to start handling
401events. 511events.
402.Sp 512.Sp
403If the flags argument is specified as 0, it will not return until either 513If the flags argument is specified as \f(CW0\fR, it will not return until
404no event watchers are active anymore or \f(CW\*(C`ev_unloop\*(C'\fR was called. 514either no event watchers are active anymore or \f(CW\*(C`ev_unloop\*(C'\fR was called.
515.Sp
516Please note that an explicit \f(CW\*(C`ev_unloop\*(C'\fR is usually better than
517relying on all watchers to be stopped when deciding when a program has
518finished (especially in interactive programs), but having a program that
519automatically loops as long as it has to and no longer by virtue of
520relying on its watchers stopping correctly is a thing of beauty.
405.Sp 521.Sp
406A flags value of \f(CW\*(C`EVLOOP_NONBLOCK\*(C'\fR will look for new events, will handle 522A flags value of \f(CW\*(C`EVLOOP_NONBLOCK\*(C'\fR will look for new events, will handle
407those events and any outstanding ones, but will not block your process in 523those events and any outstanding ones, but will not block your process in
408case there are no events and will return after one iteration of the loop. 524case there are no events and will return after one iteration of the loop.
409.Sp 525.Sp
410A flags value of \f(CW\*(C`EVLOOP_ONESHOT\*(C'\fR will look for new events (waiting if 526A flags value of \f(CW\*(C`EVLOOP_ONESHOT\*(C'\fR will look for new events (waiting if
411neccessary) and will handle those and any outstanding ones. It will block 527neccessary) and will handle those and any outstanding ones. It will block
412your process until at least one new event arrives, and will return after 528your process until at least one new event arrives, and will return after
413one iteration of the loop. 529one iteration of the loop. This is useful if you are waiting for some
530external event in conjunction with something not expressible using other
531libev watchers. However, a pair of \f(CW\*(C`ev_prepare\*(C'\fR/\f(CW\*(C`ev_check\*(C'\fR watchers is
532usually a better approach for this kind of thing.
414.Sp 533.Sp
415This flags value could be used to implement alternative looping
416constructs, but the \f(CW\*(C`prepare\*(C'\fR and \f(CW\*(C`check\*(C'\fR watchers provide a better and
417more generic mechanism.
418.Sp
419Here are the gory details of what ev_loop does: 534Here are the gory details of what \f(CW\*(C`ev_loop\*(C'\fR does:
420.Sp 535.Sp
421.Vb 15 536.Vb 18
422\& 1. If there are no active watchers (reference count is zero), return. 537\& * If there are no active watchers (reference count is zero), return.
423\& 2. Queue and immediately call all prepare watchers. 538\& - Queue prepare watchers and then call all outstanding watchers.
424\& 3. If we have been forked, recreate the kernel state. 539\& - If we have been forked, recreate the kernel state.
425\& 4. Update the kernel state with all outstanding changes. 540\& - Update the kernel state with all outstanding changes.
426\& 5. Update the "event loop time". 541\& - Update the "event loop time".
427\& 6. Calculate for how long to block. 542\& - Calculate for how long to block.
428\& 7. Block the process, waiting for events. 543\& - Block the process, waiting for any events.
544\& - Queue all outstanding I/O (fd) events.
429\& 8. Update the "event loop time" and do time jump handling. 545\& - Update the "event loop time" and do time jump handling.
430\& 9. Queue all outstanding timers. 546\& - Queue all outstanding timers.
431\& 10. Queue all outstanding periodics. 547\& - Queue all outstanding periodics.
432\& 11. If no events are pending now, queue all idle watchers. 548\& - If no events are pending now, queue all idle watchers.
433\& 12. Queue all check watchers. 549\& - Queue all check watchers.
434\& 13. Call all queued watchers in reverse order (i.e. check watchers first). 550\& - Call all queued watchers in reverse order (i.e. check watchers first).
551\& Signals and child watchers are implemented as I/O watchers, and will
552\& be handled here by queueing them when their watcher gets executed.
435\& 14. If ev_unloop has been called or EVLOOP_ONESHOT or EVLOOP_NONBLOCK 553\& - If ev_unloop has been called or EVLOOP_ONESHOT or EVLOOP_NONBLOCK
436\& was used, return, otherwise continue with step #1. 554\& were used, return, otherwise continue with step *.
555.Ve
556.Sp
557Example: queue some jobs and then loop until no events are outsanding
558anymore.
559.Sp
560.Vb 4
561\& ... queue jobs here, make sure they register event watchers as long
562\& ... as they still have work to do (even an idle watcher will do..)
563\& ev_loop (my_loop, 0);
564\& ... jobs done. yeah!
437.Ve 565.Ve
438.IP "ev_unloop (loop, how)" 4 566.IP "ev_unloop (loop, how)" 4
439.IX Item "ev_unloop (loop, how)" 567.IX Item "ev_unloop (loop, how)"
440Can be used to make a call to \f(CW\*(C`ev_loop\*(C'\fR return early (but only after it 568Can be used to make a call to \f(CW\*(C`ev_loop\*(C'\fR return early (but only after it
441has processed all outstanding events). The \f(CW\*(C`how\*(C'\fR argument must be either 569has processed all outstanding events). The \f(CW\*(C`how\*(C'\fR argument must be either
455example, libev itself uses this for its internal signal pipe: It is not 583example, libev itself uses this for its internal signal pipe: It is not
456visible to the libev user and should not keep \f(CW\*(C`ev_loop\*(C'\fR from exiting if 584visible to the libev user and should not keep \f(CW\*(C`ev_loop\*(C'\fR from exiting if
457no event watchers registered by it are active. It is also an excellent 585no event watchers registered by it are active. It is also an excellent
458way to do this for generic recurring timers or from within third-party 586way to do this for generic recurring timers or from within third-party
459libraries. Just remember to \fIunref after start\fR and \fIref before stop\fR. 587libraries. Just remember to \fIunref after start\fR and \fIref before stop\fR.
588.Sp
589Example: create a signal watcher, but keep it from keeping \f(CW\*(C`ev_loop\*(C'\fR
590running when nothing else is active.
591.Sp
592.Vb 4
593\& struct dv_signal exitsig;
594\& ev_signal_init (&exitsig, sig_cb, SIGINT);
595\& ev_signal_start (myloop, &exitsig);
596\& evf_unref (myloop);
597.Ve
598.Sp
599Example: for some weird reason, unregister the above signal handler again.
600.Sp
601.Vb 2
602\& ev_ref (myloop);
603\& ev_signal_stop (myloop, &exitsig);
604.Ve
460.SH "ANATOMY OF A WATCHER" 605.SH "ANATOMY OF A WATCHER"
461.IX Header "ANATOMY OF A WATCHER" 606.IX Header "ANATOMY OF A WATCHER"
462A watcher is a structure that you create and register to record your 607A watcher is a structure that you create and register to record your
463interest in some event. For instance, if you want to wait for \s-1STDIN\s0 to 608interest in some event. For instance, if you want to wait for \s-1STDIN\s0 to
464become readable, you would create an \f(CW\*(C`ev_io\*(C'\fR watcher for that: 609become readable, you would create an \f(CW\*(C`ev_io\*(C'\fR watcher for that:
641.IX Item "ev_io_set (ev_io *, int fd, int events)" 786.IX Item "ev_io_set (ev_io *, int fd, int events)"
642.PD 787.PD
643Configures an \f(CW\*(C`ev_io\*(C'\fR watcher. The fd is the file descriptor to rceeive 788Configures an \f(CW\*(C`ev_io\*(C'\fR watcher. The fd is the file descriptor to rceeive
644events for and events is either \f(CW\*(C`EV_READ\*(C'\fR, \f(CW\*(C`EV_WRITE\*(C'\fR or \f(CW\*(C`EV_READ | 789events for and events is either \f(CW\*(C`EV_READ\*(C'\fR, \f(CW\*(C`EV_WRITE\*(C'\fR or \f(CW\*(C`EV_READ |
645EV_WRITE\*(C'\fR to receive the given events. 790EV_WRITE\*(C'\fR to receive the given events.
791.Sp
792Please note that most of the more scalable backend mechanisms (for example
793epoll and solaris ports) can result in spurious readyness notifications
794for file descriptors, so you practically need to use non-blocking I/O (and
795treat callback invocation as hint only), or retest separately with a safe
796interface before doing I/O (XLib can do this), or force the use of either
797\&\f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR, which don't suffer from this
798problem. Also note that it is quite easy to have your callback invoked
799when the readyness condition is no longer valid even when employing
800typical ways of handling events, so its a good idea to use non-blocking
801I/O unconditionally.
802.PP
803Example: call \f(CW\*(C`stdin_readable_cb\*(C'\fR when \s-1STDIN_FILENO\s0 has become, well
804readable, but only once. Since it is likely line\-buffered, you could
805attempt to read a whole line in the callback:
806.PP
807.Vb 6
808\& static void
809\& stdin_readable_cb (struct ev_loop *loop, struct ev_io *w, int revents)
810\& {
811\& ev_io_stop (loop, w);
812\& .. read from stdin here (or from w->fd) and haqndle any I/O errors
813\& }
814.Ve
815.PP
816.Vb 6
817\& ...
818\& struct ev_loop *loop = ev_default_init (0);
819\& struct ev_io stdin_readable;
820\& ev_io_init (&stdin_readable, stdin_readable_cb, STDIN_FILENO, EV_READ);
821\& ev_io_start (loop, &stdin_readable);
822\& ev_loop (loop, 0);
823.Ve
646.ie n .Sh """ev_timer"" \- relative and optionally recurring timeouts" 824.ie n .Sh """ev_timer"" \- relative and optionally recurring timeouts"
647.el .Sh "\f(CWev_timer\fP \- relative and optionally recurring timeouts" 825.el .Sh "\f(CWev_timer\fP \- relative and optionally recurring timeouts"
648.IX Subsection "ev_timer - relative and optionally recurring timeouts" 826.IX Subsection "ev_timer - relative and optionally recurring timeouts"
649Timer watchers are simple relative timers that generate an event after a 827Timer watchers are simple relative timers that generate an event after a
650given time, and optionally repeating in regular intervals after that. 828given time, and optionally repeating in regular intervals after that.
700seconds of inactivity on the socket. The easiest way to do this is to 878seconds of inactivity on the socket. The easiest way to do this is to
701configure an \f(CW\*(C`ev_timer\*(C'\fR with after=repeat=60 and calling ev_timer_again each 879configure an \f(CW\*(C`ev_timer\*(C'\fR with after=repeat=60 and calling ev_timer_again each
702time you successfully read or write some data. If you go into an idle 880time you successfully read or write some data. If you go into an idle
703state where you do not expect data to travel on the socket, you can stop 881state where you do not expect data to travel on the socket, you can stop
704the timer, and again will automatically restart it if need be. 882the timer, and again will automatically restart it if need be.
883.PP
884Example: create a timer that fires after 60 seconds.
885.PP
886.Vb 5
887\& static void
888\& one_minute_cb (struct ev_loop *loop, struct ev_timer *w, int revents)
889\& {
890\& .. one minute over, w is actually stopped right here
891\& }
892.Ve
893.PP
894.Vb 3
895\& struct ev_timer mytimer;
896\& ev_timer_init (&mytimer, one_minute_cb, 60., 0.);
897\& ev_timer_start (loop, &mytimer);
898.Ve
899.PP
900Example: create a timeout timer that times out after 10 seconds of
901inactivity.
902.PP
903.Vb 5
904\& static void
905\& timeout_cb (struct ev_loop *loop, struct ev_timer *w, int revents)
906\& {
907\& .. ten seconds without any activity
908\& }
909.Ve
910.PP
911.Vb 4
912\& struct ev_timer mytimer;
913\& ev_timer_init (&mytimer, timeout_cb, 0., 10.); /* note, only repeat used */
914\& ev_timer_again (&mytimer); /* start timer */
915\& ev_loop (loop, 0);
916.Ve
917.PP
918.Vb 3
919\& // and in some piece of code that gets executed on any "activity":
920\& // reset the timeout to start ticking again at 10 seconds
921\& ev_timer_again (&mytimer);
922.Ve
705.ie n .Sh """ev_periodic"" \- to cron or not to cron" 923.ie n .Sh """ev_periodic"" \- to cron or not to cron"
706.el .Sh "\f(CWev_periodic\fP \- to cron or not to cron" 924.el .Sh "\f(CWev_periodic\fP \- to cron or not to cron"
707.IX Subsection "ev_periodic - to cron or not to cron" 925.IX Subsection "ev_periodic - to cron or not to cron"
708Periodic watchers are also timers of a kind, but they are very versatile 926Periodic watchers are also timers of a kind, but they are very versatile
709(and unfortunately a bit complex). 927(and unfortunately a bit complex).
801.IX Item "ev_periodic_again (loop, ev_periodic *)" 1019.IX Item "ev_periodic_again (loop, ev_periodic *)"
802Simply stops and restarts the periodic watcher again. This is only useful 1020Simply stops and restarts the periodic watcher again. This is only useful
803when you changed some parameters or the reschedule callback would return 1021when you changed some parameters or the reschedule callback would return
804a different time than the last time it was called (e.g. in a crond like 1022a different time than the last time it was called (e.g. in a crond like
805program when the crontabs have changed). 1023program when the crontabs have changed).
1024.PP
1025Example: call a callback every hour, or, more precisely, whenever the
1026system clock is divisible by 3600. The callback invocation times have
1027potentially a lot of jittering, but good long-term stability.
1028.PP
1029.Vb 5
1030\& static void
1031\& clock_cb (struct ev_loop *loop, struct ev_io *w, int revents)
1032\& {
1033\& ... its now a full hour (UTC, or TAI or whatever your clock follows)
1034\& }
1035.Ve
1036.PP
1037.Vb 3
1038\& struct ev_periodic hourly_tick;
1039\& ev_periodic_init (&hourly_tick, clock_cb, 0., 3600., 0);
1040\& ev_periodic_start (loop, &hourly_tick);
1041.Ve
1042.PP
1043Example: the same as above, but use a reschedule callback to do it:
1044.PP
1045.Vb 1
1046\& #include <math.h>
1047.Ve
1048.PP
1049.Vb 5
1050\& static ev_tstamp
1051\& my_scheduler_cb (struct ev_periodic *w, ev_tstamp now)
1052\& {
1053\& return fmod (now, 3600.) + 3600.;
1054\& }
1055.Ve
1056.PP
1057.Vb 1
1058\& ev_periodic_init (&hourly_tick, clock_cb, 0., 0., my_scheduler_cb);
1059.Ve
1060.PP
1061Example: call a callback every hour, starting now:
1062.PP
1063.Vb 4
1064\& struct ev_periodic hourly_tick;
1065\& ev_periodic_init (&hourly_tick, clock_cb,
1066\& fmod (ev_now (loop), 3600.), 3600., 0);
1067\& ev_periodic_start (loop, &hourly_tick);
1068.Ve
806.ie n .Sh """ev_signal"" \- signal me when a signal gets signalled" 1069.ie n .Sh """ev_signal"" \- signal me when a signal gets signalled"
807.el .Sh "\f(CWev_signal\fP \- signal me when a signal gets signalled" 1070.el .Sh "\f(CWev_signal\fP \- signal me when a signal gets signalled"
808.IX Subsection "ev_signal - signal me when a signal gets signalled" 1071.IX Subsection "ev_signal - signal me when a signal gets signalled"
809Signal watchers will trigger an event when the process receives a specific 1072Signal watchers will trigger an event when the process receives a specific
810signal one or more times. Even though signals are very asynchronous, libev 1073signal one or more times. Even though signals are very asynchronous, libev
840\&\fIany\fR process if \f(CW\*(C`pid\*(C'\fR is specified as \f(CW0\fR). The callback can look 1103\&\fIany\fR process if \f(CW\*(C`pid\*(C'\fR is specified as \f(CW0\fR). The callback can look
841at the \f(CW\*(C`rstatus\*(C'\fR member of the \f(CW\*(C`ev_child\*(C'\fR watcher structure to see 1104at the \f(CW\*(C`rstatus\*(C'\fR member of the \f(CW\*(C`ev_child\*(C'\fR watcher structure to see
842the status word (use the macros from \f(CW\*(C`sys/wait.h\*(C'\fR and see your systems 1105the status word (use the macros from \f(CW\*(C`sys/wait.h\*(C'\fR and see your systems
843\&\f(CW\*(C`waitpid\*(C'\fR documentation). The \f(CW\*(C`rpid\*(C'\fR member contains the pid of the 1106\&\f(CW\*(C`waitpid\*(C'\fR documentation). The \f(CW\*(C`rpid\*(C'\fR member contains the pid of the
844process causing the status change. 1107process causing the status change.
1108.PP
1109Example: try to exit cleanly on \s-1SIGINT\s0 and \s-1SIGTERM\s0.
1110.PP
1111.Vb 5
1112\& static void
1113\& sigint_cb (struct ev_loop *loop, struct ev_signal *w, int revents)
1114\& {
1115\& ev_unloop (loop, EVUNLOOP_ALL);
1116\& }
1117.Ve
1118.PP
1119.Vb 3
1120\& struct ev_signal signal_watcher;
1121\& ev_signal_init (&signal_watcher, sigint_cb, SIGINT);
1122\& ev_signal_start (loop, &sigint_cb);
1123.Ve
845.ie n .Sh """ev_idle"" \- when you've got nothing better to do" 1124.ie n .Sh """ev_idle"" \- when you've got nothing better to do"
846.el .Sh "\f(CWev_idle\fP \- when you've got nothing better to do" 1125.el .Sh "\f(CWev_idle\fP \- when you've got nothing better to do"
847.IX Subsection "ev_idle - when you've got nothing better to do" 1126.IX Subsection "ev_idle - when you've got nothing better to do"
848Idle watchers trigger events when there are no other events are pending 1127Idle watchers trigger events when there are no other events are pending
849(prepare, check and other idle watchers do not count). That is, as long 1128(prepare, check and other idle watchers do not count). That is, as long
863.IP "ev_idle_init (ev_signal *, callback)" 4 1142.IP "ev_idle_init (ev_signal *, callback)" 4
864.IX Item "ev_idle_init (ev_signal *, callback)" 1143.IX Item "ev_idle_init (ev_signal *, callback)"
865Initialises and configures the idle watcher \- it has no parameters of any 1144Initialises and configures the idle watcher \- it has no parameters of any
866kind. There is a \f(CW\*(C`ev_idle_set\*(C'\fR macro, but using it is utterly pointless, 1145kind. There is a \f(CW\*(C`ev_idle_set\*(C'\fR macro, but using it is utterly pointless,
867believe me. 1146believe me.
1147.PP
1148Example: dynamically allocate an \f(CW\*(C`ev_idle\*(C'\fR, start it, and in the
1149callback, free it. Alos, use no error checking, as usual.
1150.PP
1151.Vb 7
1152\& static void
1153\& idle_cb (struct ev_loop *loop, struct ev_idle *w, int revents)
1154\& {
1155\& free (w);
1156\& // now do something you wanted to do when the program has
1157\& // no longer asnything immediate to do.
1158\& }
1159.Ve
1160.PP
1161.Vb 3
1162\& struct ev_idle *idle_watcher = malloc (sizeof (struct ev_idle));
1163\& ev_idle_init (idle_watcher, idle_cb);
1164\& ev_idle_start (loop, idle_cb);
1165.Ve
868.ie n .Sh """ev_prepare""\fP and \f(CW""ev_check"" \- customise your event loop" 1166.ie n .Sh """ev_prepare""\fP and \f(CW""ev_check"" \- customise your event loop"
869.el .Sh "\f(CWev_prepare\fP and \f(CWev_check\fP \- customise your event loop" 1167.el .Sh "\f(CWev_prepare\fP and \f(CWev_check\fP \- customise your event loop"
870.IX Subsection "ev_prepare and ev_check - customise your event loop" 1168.IX Subsection "ev_prepare and ev_check - customise your event loop"
871Prepare and check watchers are usually (but not always) used in tandem: 1169Prepare and check watchers are usually (but not always) used in tandem:
872prepare watchers get invoked before the process blocks and check watchers 1170prepare watchers get invoked before the process blocks and check watchers
873afterwards. 1171afterwards.
874.PP 1172.PP
875Their main purpose is to integrate other event mechanisms into libev. This 1173Their main purpose is to integrate other event mechanisms into libev and
876could be used, for example, to track variable changes, implement your own 1174their use is somewhat advanced. This could be used, for example, to track
877watchers, integrate net-snmp or a coroutine library and lots more. 1175variable changes, implement your own watchers, integrate net-snmp or a
1176coroutine library and lots more.
878.PP 1177.PP
879This is done by examining in each prepare call which file descriptors need 1178This is done by examining in each prepare call which file descriptors need
880to be watched by the other library, registering \f(CW\*(C`ev_io\*(C'\fR watchers for 1179to be watched by the other library, registering \f(CW\*(C`ev_io\*(C'\fR watchers for
881them and starting an \f(CW\*(C`ev_timer\*(C'\fR watcher for any timeouts (many libraries 1180them and starting an \f(CW\*(C`ev_timer\*(C'\fR watcher for any timeouts (many libraries
882provide just this functionality). Then, in the check watcher you check for 1181provide just this functionality). Then, in the check watcher you check for
900.IX Item "ev_check_init (ev_check *, callback)" 1199.IX Item "ev_check_init (ev_check *, callback)"
901.PD 1200.PD
902Initialises and configures the prepare or check watcher \- they have no 1201Initialises and configures the prepare or check watcher \- they have no
903parameters of any kind. There are \f(CW\*(C`ev_prepare_set\*(C'\fR and \f(CW\*(C`ev_check_set\*(C'\fR 1202parameters of any kind. There are \f(CW\*(C`ev_prepare_set\*(C'\fR and \f(CW\*(C`ev_check_set\*(C'\fR
904macros, but using them is utterly, utterly and completely pointless. 1203macros, but using them is utterly, utterly and completely pointless.
1204.PP
1205Example: *TODO*.
1206.ie n .Sh """ev_embed"" \- when one backend isn't enough"
1207.el .Sh "\f(CWev_embed\fP \- when one backend isn't enough"
1208.IX Subsection "ev_embed - when one backend isn't enough"
1209This is a rather advanced watcher type that lets you embed one event loop
1210into another.
1211.PP
1212There are primarily two reasons you would want that: work around bugs and
1213prioritise I/O.
1214.PP
1215As an example for a bug workaround, the kqueue backend might only support
1216sockets on some platform, so it is unusable as generic backend, but you
1217still want to make use of it because you have many sockets and it scales
1218so nicely. In this case, you would create a kqueue-based loop and embed it
1219into your default loop (which might use e.g. poll). Overall operation will
1220be a bit slower because first libev has to poll and then call kevent, but
1221at least you can use both at what they are best.
1222.PP
1223As for prioritising I/O: rarely you have the case where some fds have
1224to be watched and handled very quickly (with low latency), and even
1225priorities and idle watchers might have too much overhead. In this case
1226you would put all the high priority stuff in one loop and all the rest in
1227a second one, and embed the second one in the first.
1228.PP
1229As long as the watcher is started it will automatically handle events. The
1230callback will be invoked whenever some events have been handled. You can
1231set the callback to \f(CW0\fR to avoid having to specify one if you are not
1232interested in that.
1233.PP
1234Also, there have not currently been made special provisions for forking:
1235when you fork, you not only have to call \f(CW\*(C`ev_loop_fork\*(C'\fR on both loops,
1236but you will also have to stop and restart any \f(CW\*(C`ev_embed\*(C'\fR watchers
1237yourself.
1238.PP
1239Unfortunately, not all backends are embeddable, only the ones returned by
1240\&\f(CW\*(C`ev_embeddable_backends\*(C'\fR are, which, unfortunately, does not include any
1241portable one.
1242.PP
1243So when you want to use this feature you will always have to be prepared
1244that you cannot get an embeddable loop. The recommended way to get around
1245this is to have a separate variables for your embeddable loop, try to
1246create it, and if that fails, use the normal loop for everything:
1247.PP
1248.Vb 3
1249\& struct ev_loop *loop_hi = ev_default_init (0);
1250\& struct ev_loop *loop_lo = 0;
1251\& struct ev_embed embed;
1252.Ve
1253.PP
1254.Vb 5
1255\& // see if there is a chance of getting one that works
1256\& // (remember that a flags value of 0 means autodetection)
1257\& loop_lo = ev_embeddable_backends () & ev_recommended_backends ()
1258\& ? ev_loop_new (ev_embeddable_backends () & ev_recommended_backends ())
1259\& : 0;
1260.Ve
1261.PP
1262.Vb 8
1263\& // if we got one, then embed it, otherwise default to loop_hi
1264\& if (loop_lo)
1265\& {
1266\& ev_embed_init (&embed, 0, loop_lo);
1267\& ev_embed_start (loop_hi, &embed);
1268\& }
1269\& else
1270\& loop_lo = loop_hi;
1271.Ve
1272.IP "ev_embed_init (ev_embed *, callback, struct ev_loop *loop)" 4
1273.IX Item "ev_embed_init (ev_embed *, callback, struct ev_loop *loop)"
1274.PD 0
1275.IP "ev_embed_set (ev_embed *, callback, struct ev_loop *loop)" 4
1276.IX Item "ev_embed_set (ev_embed *, callback, struct ev_loop *loop)"
1277.PD
1278Configures the watcher to embed the given loop, which must be embeddable.
905.SH "OTHER FUNCTIONS" 1279.SH "OTHER FUNCTIONS"
906.IX Header "OTHER FUNCTIONS" 1280.IX Header "OTHER FUNCTIONS"
907There are some other functions of possible interest. Described. Here. Now. 1281There are some other functions of possible interest. Described. Here. Now.
908.IP "ev_once (loop, int fd, int events, ev_tstamp timeout, callback)" 4 1282.IP "ev_once (loop, int fd, int events, ev_tstamp timeout, callback)" 4
909.IX Item "ev_once (loop, int fd, int events, ev_tstamp timeout, callback)" 1283.IX Item "ev_once (loop, int fd, int events, ev_tstamp timeout, callback)"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines