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

Comparing libev/ev.3 (file contents):
Revision 1.31 by root, Wed Nov 28 11:31:34 2007 UTC vs.
Revision 1.60 by root, Mon Jan 28 12:23:02 2008 UTC

1.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.35 1.\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
2.\" 2.\"
3.\" Standard preamble: 3.\" Standard preamble:
4.\" ======================================================================== 4.\" ========================================================================
5.de Sh \" Subsection heading 5.de Sh \" Subsection heading
6.br 6.br
23.ft R 23.ft R
24.fi 24.fi
25.. 25..
26.\" Set up some character translations and predefined strings. \*(-- will 26.\" Set up some character translations and predefined strings. \*(-- will
27.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left 27.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
28.\" double quote, and \*(R" will give a right double quote. | will give a 28.\" double quote, and \*(R" will give a right double quote. \*(C+ will
29.\" real vertical bar. \*(C+ will give a nicer C++. Capital omega is used to 29.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
30.\" do unbreakable dashes and therefore won't be available. \*(C` and \*(C' 30.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
31.\" expand to `' in nroff, nothing in troff, for use with C<>. 31.\" nothing in troff, for use with C<>.
32.tr \(*W-|\(bv\*(Tr 32.tr \(*W-
33.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' 33.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
34.ie n \{\ 34.ie n \{\
35. ds -- \(*W- 35. ds -- \(*W-
36. ds PI pi 36. ds PI pi
37. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 37. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
46. ds PI \(*p 46. ds PI \(*p
47. ds L" `` 47. ds L" ``
48. ds R" '' 48. ds R" ''
49'br\} 49'br\}
50.\" 50.\"
51.\" Escape single quotes in literal strings from groff's Unicode transform.
52.ie \n(.g .ds Aq \(aq
53.el .ds Aq '
54.\"
51.\" If the F register is turned on, we'll generate index entries on stderr for 55.\" If the F register is turned on, we'll generate index entries on stderr for
52.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index 56.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
53.\" entries marked with X<> in POD. Of course, you'll have to process the 57.\" entries marked with X<> in POD. Of course, you'll have to process the
54.\" output yourself in some meaningful fashion. 58.\" output yourself in some meaningful fashion.
55.if \nF \{\ 59.ie \nF \{\
56. de IX 60. de IX
57. tm Index:\\$1\t\\n%\t"\\$2" 61. tm Index:\\$1\t\\n%\t"\\$2"
58.. 62..
59. nr % 0 63. nr % 0
60. rr F 64. rr F
61.\} 65.\}
62.\" 66.el \{\
63.\" For nroff, turn off justification. Always turn off hyphenation; it makes 67. de IX
64.\" way too many mistakes in technical documents. 68..
65.hy 0 69.\}
66.if n .na
67.\" 70.\"
68.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). 71.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
69.\" Fear. Run. Save yourself. No user-serviceable parts. 72.\" Fear. Run. Save yourself. No user-serviceable parts.
70. \" fudge factors for nroff and troff 73. \" fudge factors for nroff and troff
71.if n \{\ 74.if n \{\
126. ds Ae AE 129. ds Ae AE
127.\} 130.\}
128.rm #[ #] #H #V #F C 131.rm #[ #] #H #V #F C
129.\" ======================================================================== 132.\" ========================================================================
130.\" 133.\"
131.IX Title ""<STANDARD INPUT>" 1" 134.IX Title "EV 1"
132.TH "<STANDARD INPUT>" 1 "2007-11-28" "perl v5.8.8" "User Contributed Perl Documentation" 135.TH EV 1 "2008-01-28" "perl v5.10.0" "User Contributed Perl Documentation"
136.\" For nroff, turn off justification. Always turn off hyphenation; it makes
137.\" way too many mistakes in technical documents.
138.if n .ad l
139.nh
133.SH "NAME" 140.SH "NAME"
134libev \- a high performance full\-featured event loop written in C 141libev \- a high performance full\-featured event loop written in C
135.SH "SYNOPSIS" 142.SH "SYNOPSIS"
136.IX Header "SYNOPSIS" 143.IX Header "SYNOPSIS"
137.Vb 1 144.Vb 1
138\& #include <ev.h> 145\& #include <ev.h>
139.Ve 146.Ve
140.SH "EXAMPLE PROGRAM" 147.Sh "\s-1EXAMPLE\s0 \s-1PROGRAM\s0"
141.IX Header "EXAMPLE PROGRAM" 148.IX Subsection "EXAMPLE PROGRAM"
142.Vb 1 149.Vb 1
143\& #include <ev.h> 150\& #include <ev.h>
144.Ve 151\&
145.PP
146.Vb 2
147\& ev_io stdin_watcher; 152\& ev_io stdin_watcher;
148\& ev_timer timeout_watcher; 153\& ev_timer timeout_watcher;
149.Ve 154\&
150.PP
151.Vb 8
152\& /* called when data readable on stdin */ 155\& /* called when data readable on stdin */
153\& static void 156\& static void
154\& stdin_cb (EV_P_ struct ev_io *w, int revents) 157\& stdin_cb (EV_P_ struct ev_io *w, int revents)
155\& { 158\& {
156\& /* puts ("stdin ready"); */ 159\& /* puts ("stdin ready"); */
157\& ev_io_stop (EV_A_ w); /* just a syntax example */ 160\& ev_io_stop (EV_A_ w); /* just a syntax example */
158\& ev_unloop (EV_A_ EVUNLOOP_ALL); /* leave all loop calls */ 161\& ev_unloop (EV_A_ EVUNLOOP_ALL); /* leave all loop calls */
159\& } 162\& }
160.Ve 163\&
161.PP
162.Vb 6
163\& static void 164\& static void
164\& timeout_cb (EV_P_ struct ev_timer *w, int revents) 165\& timeout_cb (EV_P_ struct ev_timer *w, int revents)
165\& { 166\& {
166\& /* puts ("timeout"); */ 167\& /* puts ("timeout"); */
167\& ev_unloop (EV_A_ EVUNLOOP_ONE); /* leave one loop call */ 168\& ev_unloop (EV_A_ EVUNLOOP_ONE); /* leave one loop call */
168\& } 169\& }
169.Ve 170\&
170.PP
171.Vb 4
172\& int 171\& int
173\& main (void) 172\& main (void)
174\& { 173\& {
175\& struct ev_loop *loop = ev_default_loop (0); 174\& struct ev_loop *loop = ev_default_loop (0);
176.Ve 175\&
177.PP
178.Vb 3
179\& /* initialise an io watcher, then start it */ 176\& /* initialise an io watcher, then start it */
180\& ev_io_init (&stdin_watcher, stdin_cb, /*STDIN_FILENO*/ 0, EV_READ); 177\& ev_io_init (&stdin_watcher, stdin_cb, /*STDIN_FILENO*/ 0, EV_READ);
181\& ev_io_start (loop, &stdin_watcher); 178\& ev_io_start (loop, &stdin_watcher);
182.Ve 179\&
183.PP
184.Vb 3
185\& /* simple non-repeating 5.5 second timeout */ 180\& /* simple non\-repeating 5.5 second timeout */
186\& ev_timer_init (&timeout_watcher, timeout_cb, 5.5, 0.); 181\& ev_timer_init (&timeout_watcher, timeout_cb, 5.5, 0.);
187\& ev_timer_start (loop, &timeout_watcher); 182\& ev_timer_start (loop, &timeout_watcher);
188.Ve 183\&
189.PP
190.Vb 2
191\& /* loop till timeout or data ready */ 184\& /* loop till timeout or data ready */
192\& ev_loop (loop, 0); 185\& ev_loop (loop, 0);
193.Ve 186\&
194.PP
195.Vb 2
196\& return 0; 187\& return 0;
197\& } 188\& }
198.Ve 189.Ve
199.SH "DESCRIPTION" 190.SH "DESCRIPTION"
200.IX Header "DESCRIPTION" 191.IX Header "DESCRIPTION"
192The newest version of this document is also available as a html-formatted
193web page you might find easier to navigate when reading it for the first
194time: <http://cvs.schmorp.de/libev/ev.html>.
195.PP
201Libev is an event loop: you register interest in certain events (such as a 196Libev is an event loop: you register interest in certain events (such as a
202file descriptor being readable or a timeout occuring), and it will manage 197file descriptor being readable or a timeout occurring), and it will manage
203these event sources and provide your program with events. 198these event sources and provide your program with events.
204.PP 199.PP
205To do this, it must take more or less complete control over your process 200To do this, it must take more or less complete control over your process
206(or thread) by executing the \fIevent loop\fR handler, and will then 201(or thread) by executing the \fIevent loop\fR handler, and will then
207communicate events via a callback mechanism. 202communicate events via a callback mechanism.
208.PP 203.PP
209You register interest in certain events by registering so-called \fIevent 204You register interest in certain events by registering so-called \fIevent
210watchers\fR, which are relatively small C structures you initialise with the 205watchers\fR, which are relatively small C structures you initialise with the
211details of the event, and then hand it over to libev by \fIstarting\fR the 206details of the event, and then hand it over to libev by \fIstarting\fR the
212watcher. 207watcher.
213.SH "FEATURES" 208.Sh "\s-1FEATURES\s0"
214.IX Header "FEATURES" 209.IX Subsection "FEATURES"
215Libev supports \f(CW\*(C`select\*(C'\fR, \f(CW\*(C`poll\*(C'\fR, the Linux-specific \f(CW\*(C`epoll\*(C'\fR, the 210Libev supports \f(CW\*(C`select\*(C'\fR, \f(CW\*(C`poll\*(C'\fR, the Linux-specific \f(CW\*(C`epoll\*(C'\fR, the
216BSD-specific \f(CW\*(C`kqueue\*(C'\fR and the Solaris-specific event port mechanisms 211BSD-specific \f(CW\*(C`kqueue\*(C'\fR and the Solaris-specific event port mechanisms
217for file descriptor events (\f(CW\*(C`ev_io\*(C'\fR), the Linux \f(CW\*(C`inotify\*(C'\fR interface 212for file descriptor events (\f(CW\*(C`ev_io\*(C'\fR), the Linux \f(CW\*(C`inotify\*(C'\fR interface
218(for \f(CW\*(C`ev_stat\*(C'\fR), relative timers (\f(CW\*(C`ev_timer\*(C'\fR), absolute timers 213(for \f(CW\*(C`ev_stat\*(C'\fR), relative timers (\f(CW\*(C`ev_timer\*(C'\fR), absolute timers
219with customised rescheduling (\f(CW\*(C`ev_periodic\*(C'\fR), synchronous signals 214with customised rescheduling (\f(CW\*(C`ev_periodic\*(C'\fR), synchronous signals
224(\f(CW\*(C`ev_fork\*(C'\fR). 219(\f(CW\*(C`ev_fork\*(C'\fR).
225.PP 220.PP
226It also is quite fast (see this 221It also is quite fast (see this
227benchmark comparing it to libevent 222benchmark comparing it to libevent
228for example). 223for example).
229.SH "CONVENTIONS" 224.Sh "\s-1CONVENTIONS\s0"
230.IX Header "CONVENTIONS" 225.IX Subsection "CONVENTIONS"
231Libev is very configurable. In this manual the default configuration will 226Libev is very configurable. In this manual the default configuration will
232be described, which supports multiple event loops. For more info about 227be described, which supports multiple event loops. For more info about
233various configuration options please have a look at \fB\s-1EMBED\s0\fR section in 228various configuration options please have a look at \fB\s-1EMBED\s0\fR section in
234this manual. If libev was configured without support for multiple event 229this manual. If libev was configured without support for multiple event
235loops, then all functions taking an initial argument of name \f(CW\*(C`loop\*(C'\fR 230loops, then all functions taking an initial argument of name \f(CW\*(C`loop\*(C'\fR
236(which is always of type \f(CW\*(C`struct ev_loop *\*(C'\fR) will not have this argument. 231(which is always of type \f(CW\*(C`struct ev_loop *\*(C'\fR) will not have this argument.
237.SH "TIME REPRESENTATION" 232.Sh "\s-1TIME\s0 \s-1REPRESENTATION\s0"
238.IX Header "TIME REPRESENTATION" 233.IX Subsection "TIME REPRESENTATION"
239Libev represents time as a single floating point number, representing the 234Libev represents time as a single floating point number, representing the
240(fractional) number of seconds since the (\s-1POSIX\s0) epoch (somewhere near 235(fractional) number of seconds since the (\s-1POSIX\s0) epoch (somewhere near
241the beginning of 1970, details are complicated, don't ask). This type is 236the beginning of 1970, details are complicated, don't ask). This type is
242called \f(CW\*(C`ev_tstamp\*(C'\fR, which is what you should use too. It usually aliases 237called \f(CW\*(C`ev_tstamp\*(C'\fR, which is what you should use too. It usually aliases
243to the \f(CW\*(C`double\*(C'\fR type in C, and when you need to do any calculations on 238to the \f(CW\*(C`double\*(C'\fR type in C, and when you need to do any calculations on
244it, you should treat it as such. 239it, you should treat it as some floatingpoint value. Unlike the name
240component \f(CW\*(C`stamp\*(C'\fR might indicate, it is also used for time differences
241throughout libev.
245.SH "GLOBAL FUNCTIONS" 242.SH "GLOBAL FUNCTIONS"
246.IX Header "GLOBAL FUNCTIONS" 243.IX Header "GLOBAL FUNCTIONS"
247These functions can be called anytime, even before initialising the 244These functions can be called anytime, even before initialising the
248library in any way. 245library in any way.
249.IP "ev_tstamp ev_time ()" 4 246.IP "ev_tstamp ev_time ()" 4
250.IX Item "ev_tstamp ev_time ()" 247.IX Item "ev_tstamp ev_time ()"
251Returns the current time as libev would use it. Please note that the 248Returns the current time as libev would use it. Please note that the
252\&\f(CW\*(C`ev_now\*(C'\fR function is usually faster and also often returns the timestamp 249\&\f(CW\*(C`ev_now\*(C'\fR function is usually faster and also often returns the timestamp
253you actually want to know. 250you actually want to know.
251.IP "ev_sleep (ev_tstamp interval)" 4
252.IX Item "ev_sleep (ev_tstamp interval)"
253Sleep for the given interval: The current thread will be blocked until
254either it is interrupted or the given time interval has passed. Basically
255this is a subsecond-resolution \f(CW\*(C`sleep ()\*(C'\fR.
254.IP "int ev_version_major ()" 4 256.IP "int ev_version_major ()" 4
255.IX Item "int ev_version_major ()" 257.IX Item "int ev_version_major ()"
256.PD 0 258.PD 0
257.IP "int ev_version_minor ()" 4 259.IP "int ev_version_minor ()" 4
258.IX Item "int ev_version_minor ()" 260.IX Item "int ev_version_minor ()"
259.PD 261.PD
260You can find out the major and minor version numbers of the library 262You can find out the major and minor \s-1ABI\s0 version numbers of the library
261you linked against by calling the functions \f(CW\*(C`ev_version_major\*(C'\fR and 263you linked against by calling the functions \f(CW\*(C`ev_version_major\*(C'\fR and
262\&\f(CW\*(C`ev_version_minor\*(C'\fR. If you want, you can compare against the global 264\&\f(CW\*(C`ev_version_minor\*(C'\fR. If you want, you can compare against the global
263symbols \f(CW\*(C`EV_VERSION_MAJOR\*(C'\fR and \f(CW\*(C`EV_VERSION_MINOR\*(C'\fR, which specify the 265symbols \f(CW\*(C`EV_VERSION_MAJOR\*(C'\fR and \f(CW\*(C`EV_VERSION_MINOR\*(C'\fR, which specify the
264version of the library your program was compiled against. 266version of the library your program was compiled against.
265.Sp 267.Sp
268These version numbers refer to the \s-1ABI\s0 version of the library, not the
269release version.
270.Sp
266Usually, it's a good idea to terminate if the major versions mismatch, 271Usually, it's a good idea to terminate if the major versions mismatch,
267as this indicates an incompatible change. Minor versions are usually 272as this indicates an incompatible change. Minor versions are usually
268compatible to older versions, so a larger minor version alone is usually 273compatible to older versions, so a larger minor version alone is usually
269not a problem. 274not a problem.
270.Sp 275.Sp
271Example: Make sure we haven't accidentally been linked against the wrong 276Example: Make sure we haven't accidentally been linked against the wrong
272version. 277version.
299(assuming you know what you are doing). This is the set of backends that 304(assuming you know what you are doing). This is the set of backends that
300libev will probe for if you specify no backends explicitly. 305libev will probe for if you specify no backends explicitly.
301.IP "unsigned int ev_embeddable_backends ()" 4 306.IP "unsigned int ev_embeddable_backends ()" 4
302.IX Item "unsigned int ev_embeddable_backends ()" 307.IX Item "unsigned int ev_embeddable_backends ()"
303Returns the set of backends that are embeddable in other event loops. This 308Returns the set of backends that are embeddable in other event loops. This
304is the theoretical, all\-platform, value. To find which backends 309is the theoretical, all-platform, value. To find which backends
305might be supported on the current system, you would need to look at 310might be supported on the current system, you would need to look at
306\&\f(CW\*(C`ev_embeddable_backends () & ev_supported_backends ()\*(C'\fR, likewise for 311\&\f(CW\*(C`ev_embeddable_backends () & ev_supported_backends ()\*(C'\fR, likewise for
307recommended ones. 312recommended ones.
308.Sp 313.Sp
309See the description of \f(CW\*(C`ev_embed\*(C'\fR watchers for more info. 314See the description of \f(CW\*(C`ev_embed\*(C'\fR watchers for more info.
310.IP "ev_set_allocator (void *(*cb)(void *ptr, size_t size))" 4 315.IP "ev_set_allocator (void *(*cb)(void *ptr, long size))" 4
311.IX Item "ev_set_allocator (void *(*cb)(void *ptr, size_t size))" 316.IX Item "ev_set_allocator (void *(*cb)(void *ptr, long size))"
312Sets the allocation function to use (the prototype and semantics are 317Sets the allocation function to use (the prototype is similar \- the
313identical to the realloc C function). It is used to allocate and free 318semantics is identical \- to the realloc C function). It is used to
314memory (no surprises here). If it returns zero when memory needs to be 319allocate and free memory (no surprises here). If it returns zero when
315allocated, the library might abort or take some potentially destructive 320memory needs to be allocated, the library might abort or take some
316action. The default is your system realloc function. 321potentially destructive action. The default is your system realloc
322function.
317.Sp 323.Sp
318You could override this function in high-availability programs to, say, 324You could override this function in high-availability programs to, say,
319free some memory if it cannot allocate memory, to use a special allocator, 325free some memory if it cannot allocate memory, to use a special allocator,
320or even to sleep a while and retry until some memory is available. 326or even to sleep a while and retry until some memory is available.
321.Sp 327.Sp
327\& persistent_realloc (void *ptr, size_t size) 333\& persistent_realloc (void *ptr, size_t size)
328\& { 334\& {
329\& for (;;) 335\& for (;;)
330\& { 336\& {
331\& void *newptr = realloc (ptr, size); 337\& void *newptr = realloc (ptr, size);
332.Ve 338\&
333.Sp
334.Vb 2
335\& if (newptr) 339\& if (newptr)
336\& return newptr; 340\& return newptr;
337.Ve 341\&
338.Sp
339.Vb 3
340\& sleep (60); 342\& sleep (60);
341\& } 343\& }
342\& } 344\& }
343.Ve 345\&
344.Sp
345.Vb 2
346\& ... 346\& ...
347\& ev_set_allocator (persistent_realloc); 347\& ev_set_allocator (persistent_realloc);
348.Ve 348.Ve
349.IP "ev_set_syserr_cb (void (*cb)(const char *msg));" 4 349.IP "ev_set_syserr_cb (void (*cb)(const char *msg));" 4
350.IX Item "ev_set_syserr_cb (void (*cb)(const char *msg));" 350.IX Item "ev_set_syserr_cb (void (*cb)(const char *msg));"
363\& fatal_error (const char *msg) 363\& fatal_error (const char *msg)
364\& { 364\& {
365\& perror (msg); 365\& perror (msg);
366\& abort (); 366\& abort ();
367\& } 367\& }
368.Ve 368\&
369.Sp
370.Vb 2
371\& ... 369\& ...
372\& ev_set_syserr_cb (fatal_error); 370\& ev_set_syserr_cb (fatal_error);
373.Ve 371.Ve
374.SH "FUNCTIONS CONTROLLING THE EVENT LOOP" 372.SH "FUNCTIONS CONTROLLING THE EVENT LOOP"
375.IX Header "FUNCTIONS CONTROLLING THE EVENT LOOP" 373.IX Header "FUNCTIONS CONTROLLING THE EVENT LOOP"
390false. If it already was initialised it simply returns it (and ignores the 388false. If it already was initialised it simply returns it (and ignores the
391flags. If that is troubling you, check \f(CW\*(C`ev_backend ()\*(C'\fR afterwards). 389flags. If that is troubling you, check \f(CW\*(C`ev_backend ()\*(C'\fR afterwards).
392.Sp 390.Sp
393If you don't know what event loop to use, use the one returned from this 391If you don't know what event loop to use, use the one returned from this
394function. 392function.
393.Sp
394The default loop is the only loop that can handle \f(CW\*(C`ev_signal\*(C'\fR and
395\&\f(CW\*(C`ev_child\*(C'\fR watchers, and to do this, it always registers a handler
396for \f(CW\*(C`SIGCHLD\*(C'\fR. If this is a problem for your app you can either
397create a dynamic loop with \f(CW\*(C`ev_loop_new\*(C'\fR that doesn't do that, or you
398can simply overwrite the \f(CW\*(C`SIGCHLD\*(C'\fR signal handler \fIafter\fR calling
399\&\f(CW\*(C`ev_default_init\*(C'\fR.
395.Sp 400.Sp
396The flags argument can be used to specify special behaviour or specific 401The flags argument can be used to specify special behaviour or specific
397backends to use, and is usually specified as \f(CW0\fR (or \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). 402backends to use, and is usually specified as \f(CW0\fR (or \f(CW\*(C`EVFLAG_AUTO\*(C'\fR).
398.Sp 403.Sp
399The following flags are supported: 404The following flags are supported:
410or setgid) then libev will \fInot\fR look at the environment variable 415or setgid) then libev will \fInot\fR look at the environment variable
411\&\f(CW\*(C`LIBEV_FLAGS\*(C'\fR. Otherwise (the default), this environment variable will 416\&\f(CW\*(C`LIBEV_FLAGS\*(C'\fR. Otherwise (the default), this environment variable will
412override the flags completely if it is found in the environment. This is 417override the flags completely if it is found in the environment. This is
413useful to try out specific backends to test their performance, or to work 418useful to try out specific backends to test their performance, or to work
414around bugs. 419around bugs.
420.ie n .IP """EVFLAG_FORKCHECK""" 4
421.el .IP "\f(CWEVFLAG_FORKCHECK\fR" 4
422.IX Item "EVFLAG_FORKCHECK"
423Instead of calling \f(CW\*(C`ev_default_fork\*(C'\fR or \f(CW\*(C`ev_loop_fork\*(C'\fR manually after
424a fork, you can also make libev check for a fork in each iteration by
425enabling this flag.
426.Sp
427This works by calling \f(CW\*(C`getpid ()\*(C'\fR on every iteration of the loop,
428and thus this might slow down your event loop if you do a lot of loop
429iterations and little real work, but is usually not noticeable (on my
430Linux system for example, \f(CW\*(C`getpid\*(C'\fR is actually a simple 5\-insn sequence
431without a syscall and thus \fIvery\fR fast, but my Linux system also has
432\&\f(CW\*(C`pthread_atfork\*(C'\fR which is even faster).
433.Sp
434The big advantage of this flag is that you can forget about fork (and
435forget about forgetting to tell libev about forking) when you use this
436flag.
437.Sp
438This flag setting cannot be overriden or specified in the \f(CW\*(C`LIBEV_FLAGS\*(C'\fR
439environment variable.
415.ie n .IP """EVBACKEND_SELECT"" (value 1, portable select backend)" 4 440.ie n .IP """EVBACKEND_SELECT"" (value 1, portable select backend)" 4
416.el .IP "\f(CWEVBACKEND_SELECT\fR (value 1, portable select backend)" 4 441.el .IP "\f(CWEVBACKEND_SELECT\fR (value 1, portable select backend)" 4
417.IX Item "EVBACKEND_SELECT (value 1, portable select backend)" 442.IX Item "EVBACKEND_SELECT (value 1, portable select backend)"
418This is your standard \fIselect\fR\|(2) backend. Not \fIcompletely\fR standard, as 443This is your standard \fIselect\fR\|(2) backend. Not \fIcompletely\fR standard, as
419libev tries to roll its own fd_set with no limits on the number of fds, 444libev tries to roll its own fd_set with no limits on the number of fds,
420but if that fails, expect a fairly low limit on the number of fds when 445but if that fails, expect a fairly low limit on the number of fds when
421using this backend. It doesn't scale too well (O(highest_fd)), but its usually 446using this backend. It doesn't scale too well (O(highest_fd)), but its
422the fastest backend for a low number of fds. 447usually the fastest backend for a low number of (low-numbered :) fds.
448.Sp
449To get good performance out of this backend you need a high amount of
450parallelity (most of the file descriptors should be busy). If you are
451writing a server, you should \f(CW\*(C`accept ()\*(C'\fR in a loop to accept as many
452connections as possible during one iteration. You might also want to have
453a look at \f(CW\*(C`ev_set_io_collect_interval ()\*(C'\fR to increase the amount of
454readyness notifications you get per iteration.
423.ie n .IP """EVBACKEND_POLL"" (value 2, poll backend, available everywhere except on windows)" 4 455.ie n .IP """EVBACKEND_POLL"" (value 2, poll backend, available everywhere except on windows)" 4
424.el .IP "\f(CWEVBACKEND_POLL\fR (value 2, poll backend, available everywhere except on windows)" 4 456.el .IP "\f(CWEVBACKEND_POLL\fR (value 2, poll backend, available everywhere except on windows)" 4
425.IX Item "EVBACKEND_POLL (value 2, poll backend, available everywhere except on windows)" 457.IX Item "EVBACKEND_POLL (value 2, poll backend, available everywhere except on windows)"
426And this is your standard \fIpoll\fR\|(2) backend. It's more complicated than 458And this is your standard \fIpoll\fR\|(2) backend. It's more complicated
427select, but handles sparse fds better and has no artificial limit on the 459than select, but handles sparse fds better and has no artificial
428number of fds you can use (except it will slow down considerably with a 460limit on the number of fds you can use (except it will slow down
429lot of inactive fds). It scales similarly to select, i.e. O(total_fds). 461considerably with a lot of inactive fds). It scales similarly to select,
462i.e. O(total_fds). See the entry for \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR, above, for
463performance tips.
430.ie n .IP """EVBACKEND_EPOLL"" (value 4, Linux)" 4 464.ie n .IP """EVBACKEND_EPOLL"" (value 4, Linux)" 4
431.el .IP "\f(CWEVBACKEND_EPOLL\fR (value 4, Linux)" 4 465.el .IP "\f(CWEVBACKEND_EPOLL\fR (value 4, Linux)" 4
432.IX Item "EVBACKEND_EPOLL (value 4, Linux)" 466.IX Item "EVBACKEND_EPOLL (value 4, Linux)"
433For few fds, this backend is a bit little slower than poll and select, 467For few fds, this backend is a bit little slower than poll and select,
434but it scales phenomenally better. While poll and select usually scale like 468but it scales phenomenally better. While poll and select usually scale
435O(total_fds) where n is the total number of fds (or the highest fd), epoll scales 469like O(total_fds) where n is the total number of fds (or the highest fd),
436either O(1) or O(active_fds). 470epoll scales either O(1) or O(active_fds). The epoll design has a number
471of shortcomings, such as silently dropping events in some hard-to-detect
472cases and rewiring a syscall per fd change, no fork support and bad
473support for dup.
437.Sp 474.Sp
438While stopping and starting an I/O watcher in the same iteration will 475While stopping, setting and starting an I/O watcher in the same iteration
439result in some caching, there is still a syscall per such incident 476will result in some caching, there is still a syscall per such incident
440(because the fd could point to a different file description now), so its 477(because the fd could point to a different file description now), so its
441best to avoid that. Also, \fIdup()\fRed file descriptors might not work very 478best to avoid that. Also, \f(CW\*(C`dup ()\*(C'\fR'ed file descriptors might not work
442well if you register events for both fds. 479very well if you register events for both fds.
443.Sp 480.Sp
444Please note that epoll sometimes generates spurious notifications, so you 481Please note that epoll sometimes generates spurious notifications, so you
445need to use non-blocking I/O or other means to avoid blocking when no data 482need to use non-blocking I/O or other means to avoid blocking when no data
446(or space) is available. 483(or space) is available.
484.Sp
485Best performance from this backend is achieved by not unregistering all
486watchers for a file descriptor until it has been closed, if possible, i.e.
487keep at least one watcher active per fd at all times.
488.Sp
489While nominally embeddeble in other event loops, this feature is broken in
490all kernel versions tested so far.
447.ie n .IP """EVBACKEND_KQUEUE"" (value 8, most \s-1BSD\s0 clones)" 4 491.ie n .IP """EVBACKEND_KQUEUE"" (value 8, most \s-1BSD\s0 clones)" 4
448.el .IP "\f(CWEVBACKEND_KQUEUE\fR (value 8, most \s-1BSD\s0 clones)" 4 492.el .IP "\f(CWEVBACKEND_KQUEUE\fR (value 8, most \s-1BSD\s0 clones)" 4
449.IX Item "EVBACKEND_KQUEUE (value 8, most BSD clones)" 493.IX Item "EVBACKEND_KQUEUE (value 8, most BSD clones)"
450Kqueue deserves special mention, as at the time of this writing, it 494Kqueue deserves special mention, as at the time of this writing, it
451was broken on all BSDs except NetBSD (usually it doesn't work with 495was broken on all BSDs except NetBSD (usually it doesn't work reliably
452anything but sockets and pipes, except on Darwin, where of course its 496with anything but sockets and pipes, except on Darwin, where of course
453completely useless). For this reason its not being \*(L"autodetected\*(R" 497it's completely useless). For this reason it's not being \*(L"autodetected\*(R"
454unless you explicitly specify it explicitly in the flags (i.e. using 498unless you explicitly specify it explicitly in the flags (i.e. using
455\&\f(CW\*(C`EVBACKEND_KQUEUE\*(C'\fR). 499\&\f(CW\*(C`EVBACKEND_KQUEUE\*(C'\fR) or libev was compiled on a known-to-be-good (\-enough)
500system like NetBSD.
501.Sp
502You still can embed kqueue into a normal poll or select backend and use it
503only for sockets (after having made sure that sockets work with kqueue on
504the target platform). See \f(CW\*(C`ev_embed\*(C'\fR watchers for more info.
456.Sp 505.Sp
457It scales in the same way as the epoll backend, but the interface to the 506It scales in the same way as the epoll backend, but the interface to the
458kernel is more efficient (which says nothing about its actual speed, of 507kernel is more efficient (which says nothing about its actual speed, of
459course). While starting and stopping an I/O watcher does not cause an 508course). While stopping, setting and starting an I/O watcher does never
460extra syscall as with epoll, it still adds up to four event changes per 509cause an extra syscall as with \f(CW\*(C`EVBACKEND_EPOLL\*(C'\fR, it still adds up to
461incident, so its best to avoid that. 510two event changes per incident, support for \f(CW\*(C`fork ()\*(C'\fR is very bad and it
511drops fds silently in similarly hard-to-detect cases.
512.Sp
513This backend usually performs well under most conditions.
514.Sp
515While nominally embeddable in other event loops, this doesn't work
516everywhere, so you might need to test for this. And since it is broken
517almost everywhere, you should only use it when you have a lot of sockets
518(for which it usually works), by embedding it into another event loop
519(e.g. \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR) and using it only for
520sockets.
462.ie n .IP """EVBACKEND_DEVPOLL"" (value 16, Solaris 8)" 4 521.ie n .IP """EVBACKEND_DEVPOLL"" (value 16, Solaris 8)" 4
463.el .IP "\f(CWEVBACKEND_DEVPOLL\fR (value 16, Solaris 8)" 4 522.el .IP "\f(CWEVBACKEND_DEVPOLL\fR (value 16, Solaris 8)" 4
464.IX Item "EVBACKEND_DEVPOLL (value 16, Solaris 8)" 523.IX Item "EVBACKEND_DEVPOLL (value 16, Solaris 8)"
465This is not implemented yet (and might never be). 524This is not implemented yet (and might never be, unless you send me an
525implementation). According to reports, \f(CW\*(C`/dev/poll\*(C'\fR only supports sockets
526and is not embeddable, which would limit the usefulness of this backend
527immensely.
466.ie n .IP """EVBACKEND_PORT"" (value 32, Solaris 10)" 4 528.ie n .IP """EVBACKEND_PORT"" (value 32, Solaris 10)" 4
467.el .IP "\f(CWEVBACKEND_PORT\fR (value 32, Solaris 10)" 4 529.el .IP "\f(CWEVBACKEND_PORT\fR (value 32, Solaris 10)" 4
468.IX Item "EVBACKEND_PORT (value 32, Solaris 10)" 530.IX Item "EVBACKEND_PORT (value 32, Solaris 10)"
469This uses the Solaris 10 port mechanism. As with everything on Solaris, 531This uses the Solaris 10 event port mechanism. As with everything on Solaris,
470it's really slow, but it still scales very well (O(active_fds)). 532it's really slow, but it still scales very well (O(active_fds)).
471.Sp 533.Sp
472Please note that solaris ports can result in a lot of spurious 534Please note that solaris event ports can deliver a lot of spurious
473notifications, so you need to use non-blocking I/O or other means to avoid 535notifications, so you need to use non-blocking I/O or other means to avoid
474blocking when no data (or space) is available. 536blocking when no data (or space) is available.
537.Sp
538While this backend scales well, it requires one system call per active
539file descriptor per loop iteration. For small and medium numbers of file
540descriptors a \*(L"slow\*(R" \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR backend
541might perform better.
542.Sp
543On the positive side, ignoring the spurious readyness notifications, this
544backend actually performed to specification in all tests and is fully
545embeddable, which is a rare feat among the OS-specific backends.
475.ie n .IP """EVBACKEND_ALL""" 4 546.ie n .IP """EVBACKEND_ALL""" 4
476.el .IP "\f(CWEVBACKEND_ALL\fR" 4 547.el .IP "\f(CWEVBACKEND_ALL\fR" 4
477.IX Item "EVBACKEND_ALL" 548.IX Item "EVBACKEND_ALL"
478Try all backends (even potentially broken ones that wouldn't be tried 549Try all backends (even potentially broken ones that wouldn't be tried
479with \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). Since this is a mask, you can do stuff such as 550with \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). Since this is a mask, you can do stuff such as
480\&\f(CW\*(C`EVBACKEND_ALL & ~EVBACKEND_KQUEUE\*(C'\fR. 551\&\f(CW\*(C`EVBACKEND_ALL & ~EVBACKEND_KQUEUE\*(C'\fR.
552.Sp
553It is definitely not recommended to use this flag.
481.RE 554.RE
482.RS 4 555.RS 4
483.Sp 556.Sp
484If one or more of these are ored into the flags value, then only these 557If one or more of these are ored into the flags value, then only these
485backends will be tried (in the reverse order as given here). If none are 558backends will be tried (in the reverse order as listed here). If none are
486specified, most compiled-in backend will be tried, usually in reverse 559specified, all backends in \f(CW\*(C`ev_recommended_backends ()\*(C'\fR will be tried.
487order of their flag values :)
488.Sp 560.Sp
489The most typical usage is like this: 561The most typical usage is like this:
490.Sp 562.Sp
491.Vb 2 563.Vb 2
492\& if (!ev_default_loop (0)) 564\& if (!ev_default_loop (0))
527Destroys the default loop again (frees all memory and kernel state 599Destroys the default loop again (frees all memory and kernel state
528etc.). None of the active event watchers will be stopped in the normal 600etc.). None of the active event watchers will be stopped in the normal
529sense, so e.g. \f(CW\*(C`ev_is_active\*(C'\fR might still return true. It is your 601sense, so e.g. \f(CW\*(C`ev_is_active\*(C'\fR might still return true. It is your
530responsibility to either stop all watchers cleanly yoursef \fIbefore\fR 602responsibility to either stop all watchers cleanly yoursef \fIbefore\fR
531calling this function, or cope with the fact afterwards (which is usually 603calling this function, or cope with the fact afterwards (which is usually
532the easiest thing, youc na just ignore the watchers and/or \f(CW\*(C`free ()\*(C'\fR them 604the easiest thing, you can just ignore the watchers and/or \f(CW\*(C`free ()\*(C'\fR them
533for example). 605for example).
606.Sp
607Note that certain global state, such as signal state, will not be freed by
608this function, and related watchers (such as signal and child watchers)
609would need to be stopped manually.
610.Sp
611In general it is not advisable to call this function except in the
612rare occasion where you really need to free e.g. the signal handling
613pipe fds. If you need dynamically allocated loops it is better to use
614\&\f(CW\*(C`ev_loop_new\*(C'\fR and \f(CW\*(C`ev_loop_destroy\*(C'\fR).
534.IP "ev_loop_destroy (loop)" 4 615.IP "ev_loop_destroy (loop)" 4
535.IX Item "ev_loop_destroy (loop)" 616.IX Item "ev_loop_destroy (loop)"
536Like \f(CW\*(C`ev_default_destroy\*(C'\fR, but destroys an event loop created by an 617Like \f(CW\*(C`ev_default_destroy\*(C'\fR, but destroys an event loop created by an
537earlier call to \f(CW\*(C`ev_loop_new\*(C'\fR. 618earlier call to \f(CW\*(C`ev_loop_new\*(C'\fR.
538.IP "ev_default_fork ()" 4 619.IP "ev_default_fork ()" 4
539.IX Item "ev_default_fork ()" 620.IX Item "ev_default_fork ()"
621This function sets a flag that causes subsequent \f(CW\*(C`ev_loop\*(C'\fR iterations
540This function reinitialises the kernel state for backends that have 622to reinitialise the kernel state for backends that have one. Despite the
541one. Despite the name, you can call it anytime, but it makes most sense 623name, you can call it anytime, but it makes most sense after forking, in
542after forking, in either the parent or child process (or both, but that 624the child process (or both child and parent, but that again makes little
543again makes little sense). 625sense). You \fImust\fR call it in the child before using any of the libev
626functions, and it will only take effect at the next \f(CW\*(C`ev_loop\*(C'\fR iteration.
544.Sp 627.Sp
545You \fImust\fR call this function in the child process after forking if and 628On the other hand, you only need to call this function in the child
546only if you want to use the event library in both processes. If you just 629process if and only if you want to use the event library in the child. If
547fork+exec, you don't have to call it. 630you just fork+exec, you don't have to call it at all.
548.Sp 631.Sp
549The function itself is quite fast and it's usually not a problem to call 632The function itself is quite fast and it's usually not a problem to call
550it just in case after a fork. To make this easy, the function will fit in 633it just in case after a fork. To make this easy, the function will fit in
551quite nicely into a call to \f(CW\*(C`pthread_atfork\*(C'\fR: 634quite nicely into a call to \f(CW\*(C`pthread_atfork\*(C'\fR:
552.Sp 635.Sp
553.Vb 1 636.Vb 1
554\& pthread_atfork (0, 0, ev_default_fork); 637\& pthread_atfork (0, 0, ev_default_fork);
555.Ve 638.Ve
556.Sp
557At the moment, \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR and \f(CW\*(C`EVBACKEND_POLL\*(C'\fR are safe to use
558without calling this function, so if you force one of those backends you
559do not need to care.
560.IP "ev_loop_fork (loop)" 4 639.IP "ev_loop_fork (loop)" 4
561.IX Item "ev_loop_fork (loop)" 640.IX Item "ev_loop_fork (loop)"
562Like \f(CW\*(C`ev_default_fork\*(C'\fR, but acts on an event loop created by 641Like \f(CW\*(C`ev_default_fork\*(C'\fR, but acts on an event loop created by
563\&\f(CW\*(C`ev_loop_new\*(C'\fR. Yes, you have to call this on every allocated event loop 642\&\f(CW\*(C`ev_loop_new\*(C'\fR. Yes, you have to call this on every allocated event loop
564after fork, and how you do this is entirely your own problem. 643after fork, and how you do this is entirely your own problem.
644.IP "unsigned int ev_loop_count (loop)" 4
645.IX Item "unsigned int ev_loop_count (loop)"
646Returns the count of loop iterations for the loop, which is identical to
647the number of times libev did poll for new events. It starts at \f(CW0\fR and
648happily wraps around with enough iterations.
649.Sp
650This value can sometimes be useful as a generation counter of sorts (it
651\&\*(L"ticks\*(R" the number of loop iterations), as it roughly corresponds with
652\&\f(CW\*(C`ev_prepare\*(C'\fR and \f(CW\*(C`ev_check\*(C'\fR calls.
565.IP "unsigned int ev_backend (loop)" 4 653.IP "unsigned int ev_backend (loop)" 4
566.IX Item "unsigned int ev_backend (loop)" 654.IX Item "unsigned int ev_backend (loop)"
567Returns one of the \f(CW\*(C`EVBACKEND_*\*(C'\fR flags indicating the event backend in 655Returns one of the \f(CW\*(C`EVBACKEND_*\*(C'\fR flags indicating the event backend in
568use. 656use.
569.IP "ev_tstamp ev_now (loop)" 4 657.IP "ev_tstamp ev_now (loop)" 4
570.IX Item "ev_tstamp ev_now (loop)" 658.IX Item "ev_tstamp ev_now (loop)"
571Returns the current \*(L"event loop time\*(R", which is the time the event loop 659Returns the current \*(L"event loop time\*(R", which is the time the event loop
572received events and started processing them. This timestamp does not 660received events and started processing them. This timestamp does not
573change as long as callbacks are being processed, and this is also the base 661change as long as callbacks are being processed, and this is also the base
574time used for relative timers. You can treat it as the timestamp of the 662time used for relative timers. You can treat it as the timestamp of the
575event occuring (or more correctly, libev finding out about it). 663event occurring (or more correctly, libev finding out about it).
576.IP "ev_loop (loop, int flags)" 4 664.IP "ev_loop (loop, int flags)" 4
577.IX Item "ev_loop (loop, int flags)" 665.IX Item "ev_loop (loop, int flags)"
578Finally, this is it, the event handler. This function usually is called 666Finally, this is it, the event handler. This function usually is called
579after you initialised all your watchers and you want to start handling 667after you initialised all your watchers and you want to start handling
580events. 668events.
600libev watchers. However, a pair of \f(CW\*(C`ev_prepare\*(C'\fR/\f(CW\*(C`ev_check\*(C'\fR watchers is 688libev watchers. However, a pair of \f(CW\*(C`ev_prepare\*(C'\fR/\f(CW\*(C`ev_check\*(C'\fR watchers is
601usually a better approach for this kind of thing. 689usually a better approach for this kind of thing.
602.Sp 690.Sp
603Here are the gory details of what \f(CW\*(C`ev_loop\*(C'\fR does: 691Here are the gory details of what \f(CW\*(C`ev_loop\*(C'\fR does:
604.Sp 692.Sp
605.Vb 18 693.Vb 10
606\& * If there are no active watchers (reference count is zero), return. 694\& \- Before the first iteration, call any pending watchers.
607\& - Queue prepare watchers and then call all outstanding watchers. 695\& * If EVFLAG_FORKCHECK was used, check for a fork.
696\& \- If a fork was detected, queue and call all fork watchers.
697\& \- Queue and call all prepare watchers.
608\& - If we have been forked, recreate the kernel state. 698\& \- If we have been forked, recreate the kernel state.
609\& - Update the kernel state with all outstanding changes. 699\& \- Update the kernel state with all outstanding changes.
610\& - Update the "event loop time". 700\& \- Update the "event loop time".
611\& - Calculate for how long to block. 701\& \- Calculate for how long to sleep or block, if at all
702\& (active idle watchers, EVLOOP_NONBLOCK or not having
703\& any active watchers at all will result in not sleeping).
704\& \- Sleep if the I/O and timer collect interval say so.
612\& - Block the process, waiting for any events. 705\& \- Block the process, waiting for any events.
613\& - Queue all outstanding I/O (fd) events. 706\& \- Queue all outstanding I/O (fd) events.
614\& - Update the "event loop time" and do time jump handling. 707\& \- Update the "event loop time" and do time jump handling.
615\& - Queue all outstanding timers. 708\& \- Queue all outstanding timers.
616\& - Queue all outstanding periodics. 709\& \- Queue all outstanding periodics.
617\& - If no events are pending now, queue all idle watchers. 710\& \- If no events are pending now, queue all idle watchers.
618\& - Queue all check watchers. 711\& \- Queue all check watchers.
619\& - Call all queued watchers in reverse order (i.e. check watchers first). 712\& \- Call all queued watchers in reverse order (i.e. check watchers first).
620\& Signals and child watchers are implemented as I/O watchers, and will 713\& Signals and child watchers are implemented as I/O watchers, and will
621\& be handled here by queueing them when their watcher gets executed. 714\& be handled here by queueing them when their watcher gets executed.
622\& - If ev_unloop has been called or EVLOOP_ONESHOT or EVLOOP_NONBLOCK 715\& \- If ev_unloop has been called, or EVLOOP_ONESHOT or EVLOOP_NONBLOCK
623\& were used, return, otherwise continue with step *. 716\& were used, or there are no active watchers, return, otherwise
717\& continue with step *.
624.Ve 718.Ve
625.Sp 719.Sp
626Example: Queue some jobs and then loop until no events are outsanding 720Example: Queue some jobs and then loop until no events are outstanding
627anymore. 721anymore.
628.Sp 722.Sp
629.Vb 4 723.Vb 4
630\& ... queue jobs here, make sure they register event watchers as long 724\& ... queue jobs here, make sure they register event watchers as long
631\& ... as they still have work to do (even an idle watcher will do..) 725\& ... as they still have work to do (even an idle watcher will do..)
636.IX Item "ev_unloop (loop, how)" 730.IX Item "ev_unloop (loop, how)"
637Can be used to make a call to \f(CW\*(C`ev_loop\*(C'\fR return early (but only after it 731Can be used to make a call to \f(CW\*(C`ev_loop\*(C'\fR return early (but only after it
638has processed all outstanding events). The \f(CW\*(C`how\*(C'\fR argument must be either 732has processed all outstanding events). The \f(CW\*(C`how\*(C'\fR argument must be either
639\&\f(CW\*(C`EVUNLOOP_ONE\*(C'\fR, which will make the innermost \f(CW\*(C`ev_loop\*(C'\fR call return, or 733\&\f(CW\*(C`EVUNLOOP_ONE\*(C'\fR, which will make the innermost \f(CW\*(C`ev_loop\*(C'\fR call return, or
640\&\f(CW\*(C`EVUNLOOP_ALL\*(C'\fR, which will make all nested \f(CW\*(C`ev_loop\*(C'\fR calls return. 734\&\f(CW\*(C`EVUNLOOP_ALL\*(C'\fR, which will make all nested \f(CW\*(C`ev_loop\*(C'\fR calls return.
735.Sp
736This \*(L"unloop state\*(R" will be cleared when entering \f(CW\*(C`ev_loop\*(C'\fR again.
641.IP "ev_ref (loop)" 4 737.IP "ev_ref (loop)" 4
642.IX Item "ev_ref (loop)" 738.IX Item "ev_ref (loop)"
643.PD 0 739.PD 0
644.IP "ev_unref (loop)" 4 740.IP "ev_unref (loop)" 4
645.IX Item "ev_unref (loop)" 741.IX Item "ev_unref (loop)"
651returning, \fIev_unref()\fR after starting, and \fIev_ref()\fR before stopping it. For 747returning, \fIev_unref()\fR after starting, and \fIev_ref()\fR before stopping it. For
652example, libev itself uses this for its internal signal pipe: It is not 748example, libev itself uses this for its internal signal pipe: It is not
653visible to the libev user and should not keep \f(CW\*(C`ev_loop\*(C'\fR from exiting if 749visible to the libev user and should not keep \f(CW\*(C`ev_loop\*(C'\fR from exiting if
654no event watchers registered by it are active. It is also an excellent 750no event watchers registered by it are active. It is also an excellent
655way to do this for generic recurring timers or from within third-party 751way to do this for generic recurring timers or from within third-party
656libraries. Just remember to \fIunref after start\fR and \fIref before stop\fR. 752libraries. Just remember to \fIunref after start\fR and \fIref before stop\fR
753(but only if the watcher wasn't active before, or was active before,
754respectively).
657.Sp 755.Sp
658Example: Create a signal watcher, but keep it from keeping \f(CW\*(C`ev_loop\*(C'\fR 756Example: Create a signal watcher, but keep it from keeping \f(CW\*(C`ev_loop\*(C'\fR
659running when nothing else is active. 757running when nothing else is active.
660.Sp 758.Sp
661.Vb 4 759.Vb 4
669.Sp 767.Sp
670.Vb 2 768.Vb 2
671\& ev_ref (loop); 769\& ev_ref (loop);
672\& ev_signal_stop (loop, &exitsig); 770\& ev_signal_stop (loop, &exitsig);
673.Ve 771.Ve
772.IP "ev_set_io_collect_interval (loop, ev_tstamp interval)" 4
773.IX Item "ev_set_io_collect_interval (loop, ev_tstamp interval)"
774.PD 0
775.IP "ev_set_timeout_collect_interval (loop, ev_tstamp interval)" 4
776.IX Item "ev_set_timeout_collect_interval (loop, ev_tstamp interval)"
777.PD
778These advanced functions influence the time that libev will spend waiting
779for events. Both are by default \f(CW0\fR, meaning that libev will try to
780invoke timer/periodic callbacks and I/O callbacks with minimum latency.
781.Sp
782Setting these to a higher value (the \f(CW\*(C`interval\*(C'\fR \fImust\fR be >= \f(CW0\fR)
783allows libev to delay invocation of I/O and timer/periodic callbacks to
784increase efficiency of loop iterations.
785.Sp
786The background is that sometimes your program runs just fast enough to
787handle one (or very few) event(s) per loop iteration. While this makes
788the program responsive, it also wastes a lot of \s-1CPU\s0 time to poll for new
789events, especially with backends like \f(CW\*(C`select ()\*(C'\fR which have a high
790overhead for the actual polling but can deliver many events at once.
791.Sp
792By setting a higher \fIio collect interval\fR you allow libev to spend more
793time collecting I/O events, so you can handle more events per iteration,
794at the cost of increasing latency. Timeouts (both \f(CW\*(C`ev_periodic\*(C'\fR and
795\&\f(CW\*(C`ev_timer\*(C'\fR) will be not affected. Setting this to a non-null value will
796introduce an additional \f(CW\*(C`ev_sleep ()\*(C'\fR call into most loop iterations.
797.Sp
798Likewise, by setting a higher \fItimeout collect interval\fR you allow libev
799to spend more time collecting timeouts, at the expense of increased
800latency (the watcher callback will be called later). \f(CW\*(C`ev_io\*(C'\fR watchers
801will not be affected. Setting this to a non-null value will not introduce
802any overhead in libev.
803.Sp
804Many (busy) programs can usually benefit by setting the io collect
805interval to a value near \f(CW0.1\fR or so, which is often enough for
806interactive servers (of course not for games), likewise for timeouts. It
807usually doesn't make much sense to set it to a lower value than \f(CW0.01\fR,
808as this approsaches the timing granularity of most systems.
674.SH "ANATOMY OF A WATCHER" 809.SH "ANATOMY OF A WATCHER"
675.IX Header "ANATOMY OF A WATCHER" 810.IX Header "ANATOMY OF A WATCHER"
676A watcher is a structure that you create and register to record your 811A watcher is a structure that you create and register to record your
677interest in some event. For instance, if you want to wait for \s-1STDIN\s0 to 812interest in some event. For instance, if you want to wait for \s-1STDIN\s0 to
678become readable, you would create an \f(CW\*(C`ev_io\*(C'\fR watcher for that: 813become readable, you would create an \f(CW\*(C`ev_io\*(C'\fR watcher for that:
681\& static void my_cb (struct ev_loop *loop, struct ev_io *w, int revents) 816\& static void my_cb (struct ev_loop *loop, struct ev_io *w, int revents)
682\& { 817\& {
683\& ev_io_stop (w); 818\& ev_io_stop (w);
684\& ev_unloop (loop, EVUNLOOP_ALL); 819\& ev_unloop (loop, EVUNLOOP_ALL);
685\& } 820\& }
686.Ve 821\&
687.PP
688.Vb 6
689\& struct ev_loop *loop = ev_default_loop (0); 822\& struct ev_loop *loop = ev_default_loop (0);
690\& struct ev_io stdin_watcher; 823\& struct ev_io stdin_watcher;
691\& ev_init (&stdin_watcher, my_cb); 824\& ev_init (&stdin_watcher, my_cb);
692\& ev_io_set (&stdin_watcher, STDIN_FILENO, EV_READ); 825\& ev_io_set (&stdin_watcher, STDIN_FILENO, EV_READ);
693\& ev_io_start (loop, &stdin_watcher); 826\& ev_io_start (loop, &stdin_watcher);
855.IP "bool ev_is_pending (ev_TYPE *watcher)" 4 988.IP "bool ev_is_pending (ev_TYPE *watcher)" 4
856.IX Item "bool ev_is_pending (ev_TYPE *watcher)" 989.IX Item "bool ev_is_pending (ev_TYPE *watcher)"
857Returns a true value iff the watcher is pending, (i.e. it has outstanding 990Returns a true value iff the watcher is pending, (i.e. it has outstanding
858events but its callback has not yet been invoked). As long as a watcher 991events but its callback has not yet been invoked). As long as a watcher
859is pending (but not active) you must not call an init function on it (but 992is pending (but not active) you must not call an init function on it (but
860\&\f(CW\*(C`ev_TYPE_set\*(C'\fR is safe) and you must make sure the watcher is available to 993\&\f(CW\*(C`ev_TYPE_set\*(C'\fR is safe), you must not change its priority, and you must
861libev (e.g. you cnanot \f(CW\*(C`free ()\*(C'\fR it). 994make sure the watcher is available to libev (e.g. you cannot \f(CW\*(C`free ()\*(C'\fR
995it).
862.IP "callback ev_cb (ev_TYPE *watcher)" 4 996.IP "callback ev_cb (ev_TYPE *watcher)" 4
863.IX Item "callback ev_cb (ev_TYPE *watcher)" 997.IX Item "callback ev_cb (ev_TYPE *watcher)"
864Returns the callback currently set on the watcher. 998Returns the callback currently set on the watcher.
865.IP "ev_cb_set (ev_TYPE *watcher, callback)" 4 999.IP "ev_cb_set (ev_TYPE *watcher, callback)" 4
866.IX Item "ev_cb_set (ev_TYPE *watcher, callback)" 1000.IX Item "ev_cb_set (ev_TYPE *watcher, callback)"
867Change the callback. You can change the callback at virtually any time 1001Change the callback. You can change the callback at virtually any time
868(modulo threads). 1002(modulo threads).
1003.IP "ev_set_priority (ev_TYPE *watcher, priority)" 4
1004.IX Item "ev_set_priority (ev_TYPE *watcher, priority)"
1005.PD 0
1006.IP "int ev_priority (ev_TYPE *watcher)" 4
1007.IX Item "int ev_priority (ev_TYPE *watcher)"
1008.PD
1009Set and query the priority of the watcher. The priority is a small
1010integer between \f(CW\*(C`EV_MAXPRI\*(C'\fR (default: \f(CW2\fR) and \f(CW\*(C`EV_MINPRI\*(C'\fR
1011(default: \f(CW\*(C`\-2\*(C'\fR). Pending watchers with higher priority will be invoked
1012before watchers with lower priority, but priority will not keep watchers
1013from being executed (except for \f(CW\*(C`ev_idle\*(C'\fR watchers).
1014.Sp
1015This means that priorities are \fIonly\fR used for ordering callback
1016invocation after new events have been received. This is useful, for
1017example, to reduce latency after idling, or more often, to bind two
1018watchers on the same event and make sure one is called first.
1019.Sp
1020If you need to suppress invocation when higher priority events are pending
1021you need to look at \f(CW\*(C`ev_idle\*(C'\fR watchers, which provide this functionality.
1022.Sp
1023You \fImust not\fR change the priority of a watcher as long as it is active or
1024pending.
1025.Sp
1026The default priority used by watchers when no priority has been set is
1027always \f(CW0\fR, which is supposed to not be too high and not be too low :).
1028.Sp
1029Setting a priority outside the range of \f(CW\*(C`EV_MINPRI\*(C'\fR to \f(CW\*(C`EV_MAXPRI\*(C'\fR is
1030fine, as long as you do not mind that the priority value you query might
1031or might not have been adjusted to be within valid range.
1032.IP "ev_invoke (loop, ev_TYPE *watcher, int revents)" 4
1033.IX Item "ev_invoke (loop, ev_TYPE *watcher, int revents)"
1034Invoke the \f(CW\*(C`watcher\*(C'\fR with the given \f(CW\*(C`loop\*(C'\fR and \f(CW\*(C`revents\*(C'\fR. Neither
1035\&\f(CW\*(C`loop\*(C'\fR nor \f(CW\*(C`revents\*(C'\fR need to be valid as long as the watcher callback
1036can deal with that fact.
1037.IP "int ev_clear_pending (loop, ev_TYPE *watcher)" 4
1038.IX Item "int ev_clear_pending (loop, ev_TYPE *watcher)"
1039If the watcher is pending, this function returns clears its pending status
1040and returns its \f(CW\*(C`revents\*(C'\fR bitset (as if its callback was invoked). If the
1041watcher isn't pending it does nothing and returns \f(CW0\fR.
869.Sh "\s-1ASSOCIATING\s0 \s-1CUSTOM\s0 \s-1DATA\s0 \s-1WITH\s0 A \s-1WATCHER\s0" 1042.Sh "\s-1ASSOCIATING\s0 \s-1CUSTOM\s0 \s-1DATA\s0 \s-1WITH\s0 A \s-1WATCHER\s0"
870.IX Subsection "ASSOCIATING CUSTOM DATA WITH A WATCHER" 1043.IX Subsection "ASSOCIATING CUSTOM DATA WITH A WATCHER"
871Each watcher has, by default, a member \f(CW\*(C`void *data\*(C'\fR that you can change 1044Each watcher has, by default, a member \f(CW\*(C`void *data\*(C'\fR that you can change
872and read at any time, libev will completely ignore it. This can be used 1045and read at any time, libev will completely ignore it. This can be used
873to associate arbitrary data with your watcher. If you need more data and 1046to associate arbitrary data with your watcher. If you need more data and
914In this case getting the pointer to \f(CW\*(C`my_biggy\*(C'\fR is a bit more complicated, 1087In this case getting the pointer to \f(CW\*(C`my_biggy\*(C'\fR is a bit more complicated,
915you need to use \f(CW\*(C`offsetof\*(C'\fR: 1088you need to use \f(CW\*(C`offsetof\*(C'\fR:
916.PP 1089.PP
917.Vb 1 1090.Vb 1
918\& #include <stddef.h> 1091\& #include <stddef.h>
919.Ve 1092\&
920.PP
921.Vb 6
922\& static void 1093\& static void
923\& t1_cb (EV_P_ struct ev_timer *w, int revents) 1094\& t1_cb (EV_P_ struct ev_timer *w, int revents)
924\& { 1095\& {
925\& struct my_biggy big = (struct my_biggy * 1096\& struct my_biggy big = (struct my_biggy *
926\& (((char *)w) - offsetof (struct my_biggy, t1)); 1097\& (((char *)w) \- offsetof (struct my_biggy, t1));
927\& } 1098\& }
928.Ve 1099\&
929.PP
930.Vb 6
931\& static void 1100\& static void
932\& t2_cb (EV_P_ struct ev_timer *w, int revents) 1101\& t2_cb (EV_P_ struct ev_timer *w, int revents)
933\& { 1102\& {
934\& struct my_biggy big = (struct my_biggy * 1103\& struct my_biggy big = (struct my_biggy *
935\& (((char *)w) - offsetof (struct my_biggy, t2)); 1104\& (((char *)w) \- offsetof (struct my_biggy, t2));
936\& } 1105\& }
937.Ve 1106.Ve
938.SH "WATCHER TYPES" 1107.SH "WATCHER TYPES"
939.IX Header "WATCHER TYPES" 1108.IX Header "WATCHER TYPES"
940This section describes each watcher in detail, but will not repeat 1109This section describes each watcher in detail, but will not repeat
963In general you can register as many read and/or write event watchers per 1132In general you can register as many read and/or write event watchers per
964fd as you want (as long as you don't confuse yourself). Setting all file 1133fd as you want (as long as you don't confuse yourself). Setting all file
965descriptors to non-blocking mode is also usually a good idea (but not 1134descriptors to non-blocking mode is also usually a good idea (but not
966required if you know what you are doing). 1135required if you know what you are doing).
967.PP 1136.PP
968You have to be careful with dup'ed file descriptors, though. Some backends
969(the linux epoll backend is a notable example) cannot handle dup'ed file
970descriptors correctly if you register interest in two or more fds pointing
971to the same underlying file/socket/etc. description (that is, they share
972the same underlying \*(L"file open\*(R").
973.PP
974If you must do this, then force the use of a known-to-be-good backend 1137If you must do this, then force the use of a known-to-be-good backend
975(at the time of this writing, this includes only \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR and 1138(at the time of this writing, this includes only \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR and
976\&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR). 1139\&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR).
977.PP 1140.PP
978Another thing you have to watch out for is that it is quite easy to 1141Another thing you have to watch out for is that it is quite easy to
984it is best to always use non-blocking I/O: An extra \f(CW\*(C`read\*(C'\fR(2) returning 1147it is best to always use non-blocking I/O: An extra \f(CW\*(C`read\*(C'\fR(2) returning
985\&\f(CW\*(C`EAGAIN\*(C'\fR is far preferable to a program hanging until some data arrives. 1148\&\f(CW\*(C`EAGAIN\*(C'\fR is far preferable to a program hanging until some data arrives.
986.PP 1149.PP
987If you cannot run the fd in non-blocking mode (for example you should not 1150If you cannot run the fd in non-blocking mode (for example you should not
988play around with an Xlib connection), then you have to seperately re-test 1151play around with an Xlib connection), then you have to seperately re-test
989wether a file descriptor is really ready with a known-to-be good interface 1152whether a file descriptor is really ready with a known-to-be good interface
990such as poll (fortunately in our Xlib example, Xlib already does this on 1153such as poll (fortunately in our Xlib example, Xlib already does this on
991its own, so its quite safe to use). 1154its own, so its quite safe to use).
1155.PP
1156\fIThe special problem of disappearing file descriptors\fR
1157.IX Subsection "The special problem of disappearing file descriptors"
1158.PP
1159Some backends (e.g. kqueue, epoll) need to be told about closing a file
1160descriptor (either by calling \f(CW\*(C`close\*(C'\fR explicitly or by any other means,
1161such as \f(CW\*(C`dup\*(C'\fR). The reason is that you register interest in some file
1162descriptor, but when it goes away, the operating system will silently drop
1163this interest. If another file descriptor with the same number then is
1164registered with libev, there is no efficient way to see that this is, in
1165fact, a different file descriptor.
1166.PP
1167To avoid having to explicitly tell libev about such cases, libev follows
1168the following policy: Each time \f(CW\*(C`ev_io_set\*(C'\fR is being called, libev
1169will assume that this is potentially a new file descriptor, otherwise
1170it is assumed that the file descriptor stays the same. That means that
1171you \fIhave\fR to call \f(CW\*(C`ev_io_set\*(C'\fR (or \f(CW\*(C`ev_io_init\*(C'\fR) when you change the
1172descriptor even if the file descriptor number itself did not change.
1173.PP
1174This is how one would do it normally anyway, the important point is that
1175the libev application should not optimise around libev but should leave
1176optimisations to libev.
1177.PP
1178\fIThe special problem of dup'ed file descriptors\fR
1179.IX Subsection "The special problem of dup'ed file descriptors"
1180.PP
1181Some backends (e.g. epoll), cannot register events for file descriptors,
1182but only events for the underlying file descriptions. That means when you
1183have \f(CW\*(C`dup ()\*(C'\fR'ed file descriptors or weirder constellations, and register
1184events for them, only one file descriptor might actually receive events.
1185.PP
1186There is no workaround possible except not registering events
1187for potentially \f(CW\*(C`dup ()\*(C'\fR'ed file descriptors, or to resort to
1188\&\f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR.
1189.PP
1190\fIThe special problem of fork\fR
1191.IX Subsection "The special problem of fork"
1192.PP
1193Some backends (epoll, kqueue) do not support \f(CW\*(C`fork ()\*(C'\fR at all or exhibit
1194useless behaviour. Libev fully supports fork, but needs to be told about
1195it in the child.
1196.PP
1197To support fork in your programs, you either have to call
1198\&\f(CW\*(C`ev_default_fork ()\*(C'\fR or \f(CW\*(C`ev_loop_fork ()\*(C'\fR after a fork in the child,
1199enable \f(CW\*(C`EVFLAG_FORKCHECK\*(C'\fR, or resort to \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or
1200\&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR.
1201.PP
1202\fIWatcher-Specific Functions\fR
1203.IX Subsection "Watcher-Specific Functions"
992.IP "ev_io_init (ev_io *, callback, int fd, int events)" 4 1204.IP "ev_io_init (ev_io *, callback, int fd, int events)" 4
993.IX Item "ev_io_init (ev_io *, callback, int fd, int events)" 1205.IX Item "ev_io_init (ev_io *, callback, int fd, int events)"
994.PD 0 1206.PD 0
995.IP "ev_io_set (ev_io *, int fd, int events)" 4 1207.IP "ev_io_set (ev_io *, int fd, int events)" 4
996.IX Item "ev_io_set (ev_io *, int fd, int events)" 1208.IX Item "ev_io_set (ev_io *, int fd, int events)"
1003The file descriptor being watched. 1215The file descriptor being watched.
1004.IP "int events [read\-only]" 4 1216.IP "int events [read\-only]" 4
1005.IX Item "int events [read-only]" 1217.IX Item "int events [read-only]"
1006The events being watched. 1218The events being watched.
1007.PP 1219.PP
1220\fIExamples\fR
1221.IX Subsection "Examples"
1222.PP
1008Example: Call \f(CW\*(C`stdin_readable_cb\*(C'\fR when \s-1STDIN_FILENO\s0 has become, well 1223Example: Call \f(CW\*(C`stdin_readable_cb\*(C'\fR when \s-1STDIN_FILENO\s0 has become, well
1009readable, but only once. Since it is likely line\-buffered, you could 1224readable, but only once. Since it is likely line-buffered, you could
1010attempt to read a whole line in the callback. 1225attempt to read a whole line in the callback.
1011.PP 1226.PP
1012.Vb 6 1227.Vb 6
1013\& static void 1228\& static void
1014\& stdin_readable_cb (struct ev_loop *loop, struct ev_io *w, int revents) 1229\& stdin_readable_cb (struct ev_loop *loop, struct ev_io *w, int revents)
1015\& { 1230\& {
1016\& ev_io_stop (loop, w); 1231\& ev_io_stop (loop, w);
1017\& .. read from stdin here (or from w->fd) and haqndle any I/O errors 1232\& .. read from stdin here (or from w\->fd) and haqndle any I/O errors
1018\& } 1233\& }
1019.Ve 1234\&
1020.PP
1021.Vb 6
1022\& ... 1235\& ...
1023\& struct ev_loop *loop = ev_default_init (0); 1236\& struct ev_loop *loop = ev_default_init (0);
1024\& struct ev_io stdin_readable; 1237\& struct ev_io stdin_readable;
1025\& ev_io_init (&stdin_readable, stdin_readable_cb, STDIN_FILENO, EV_READ); 1238\& ev_io_init (&stdin_readable, stdin_readable_cb, STDIN_FILENO, EV_READ);
1026\& ev_io_start (loop, &stdin_readable); 1239\& ev_io_start (loop, &stdin_readable);
1043of the event triggering whatever timeout you are modifying/starting. If 1256of the event triggering whatever timeout you are modifying/starting. If
1044you suspect event processing to be delayed and you \fIneed\fR to base the timeout 1257you suspect event processing to be delayed and you \fIneed\fR to base the timeout
1045on the current time, use something like this to adjust for this: 1258on the current time, use something like this to adjust for this:
1046.PP 1259.PP
1047.Vb 1 1260.Vb 1
1048\& ev_timer_set (&timer, after + ev_now () - ev_time (), 0.); 1261\& ev_timer_set (&timer, after + ev_now () \- ev_time (), 0.);
1049.Ve 1262.Ve
1050.PP 1263.PP
1051The callback is guarenteed to be invoked only when its timeout has passed, 1264The callback is guarenteed to be invoked only when its timeout has passed,
1052but if multiple timers become ready during the same loop iteration then 1265but if multiple timers become ready during the same loop iteration then
1053order of execution is undefined. 1266order of execution is undefined.
1267.PP
1268\fIWatcher-Specific Functions and Data Members\fR
1269.IX Subsection "Watcher-Specific Functions and Data Members"
1054.IP "ev_timer_init (ev_timer *, callback, ev_tstamp after, ev_tstamp repeat)" 4 1270.IP "ev_timer_init (ev_timer *, callback, ev_tstamp after, ev_tstamp repeat)" 4
1055.IX Item "ev_timer_init (ev_timer *, callback, ev_tstamp after, ev_tstamp repeat)" 1271.IX Item "ev_timer_init (ev_timer *, callback, ev_tstamp after, ev_tstamp repeat)"
1056.PD 0 1272.PD 0
1057.IP "ev_timer_set (ev_timer *, ev_tstamp after, ev_tstamp repeat)" 4 1273.IP "ev_timer_set (ev_timer *, ev_tstamp after, ev_tstamp repeat)" 4
1058.IX Item "ev_timer_set (ev_timer *, ev_tstamp after, ev_tstamp repeat)" 1274.IX Item "ev_timer_set (ev_timer *, ev_tstamp after, ev_tstamp repeat)"
1070.IP "ev_timer_again (loop)" 4 1286.IP "ev_timer_again (loop)" 4
1071.IX Item "ev_timer_again (loop)" 1287.IX Item "ev_timer_again (loop)"
1072This will act as if the timer timed out and restart it again if it is 1288This will act as if the timer timed out and restart it again if it is
1073repeating. The exact semantics are: 1289repeating. The exact semantics are:
1074.Sp 1290.Sp
1291If the timer is pending, its pending status is cleared.
1292.Sp
1075If the timer is started but nonrepeating, stop it. 1293If the timer is started but nonrepeating, stop it (as if it timed out).
1076.Sp 1294.Sp
1077If the timer is repeating, either start it if necessary (with the repeat 1295If the timer is repeating, either start it if necessary (with the
1078value), or reset the running timer to the repeat value. 1296\&\f(CW\*(C`repeat\*(C'\fR value), or reset the running timer to the \f(CW\*(C`repeat\*(C'\fR value.
1079.Sp 1297.Sp
1080This sounds a bit complicated, but here is a useful and typical 1298This sounds a bit complicated, but here is a useful and typical
1081example: Imagine you have a tcp connection and you want a so-called 1299example: Imagine you have a tcp connection and you want a so-called idle
1082idle timeout, that is, you want to be called when there have been, 1300timeout, that is, you want to be called when there have been, say, 60
1083say, 60 seconds of inactivity on the socket. The easiest way to do 1301seconds of inactivity on the socket. The easiest way to do this is to
1084this is to configure an \f(CW\*(C`ev_timer\*(C'\fR with \f(CW\*(C`after\*(C'\fR=\f(CW\*(C`repeat\*(C'\fR=\f(CW60\fR and calling 1302configure an \f(CW\*(C`ev_timer\*(C'\fR with a \f(CW\*(C`repeat\*(C'\fR value of \f(CW60\fR and then call
1085\&\f(CW\*(C`ev_timer_again\*(C'\fR each time you successfully read or write some data. If 1303\&\f(CW\*(C`ev_timer_again\*(C'\fR each time you successfully read or write some data. If
1086you go into an idle state where you do not expect data to travel on the 1304you go into an idle state where you do not expect data to travel on the
1087socket, you can stop the timer, and again will automatically restart it if 1305socket, you can \f(CW\*(C`ev_timer_stop\*(C'\fR the timer, and \f(CW\*(C`ev_timer_again\*(C'\fR will
1088need be. 1306automatically restart it if need be.
1089.Sp 1307.Sp
1090You can also ignore the \f(CW\*(C`after\*(C'\fR value and \f(CW\*(C`ev_timer_start\*(C'\fR altogether 1308That means you can ignore the \f(CW\*(C`after\*(C'\fR value and \f(CW\*(C`ev_timer_start\*(C'\fR
1091and only ever use the \f(CW\*(C`repeat\*(C'\fR value: 1309altogether and only ever use the \f(CW\*(C`repeat\*(C'\fR value and \f(CW\*(C`ev_timer_again\*(C'\fR:
1092.Sp 1310.Sp
1093.Vb 8 1311.Vb 8
1094\& ev_timer_init (timer, callback, 0., 5.); 1312\& ev_timer_init (timer, callback, 0., 5.);
1095\& ev_timer_again (loop, timer); 1313\& ev_timer_again (loop, timer);
1096\& ... 1314\& ...
1097\& timer->again = 17.; 1315\& timer\->again = 17.;
1098\& ev_timer_again (loop, timer); 1316\& ev_timer_again (loop, timer);
1099\& ... 1317\& ...
1100\& timer->again = 10.; 1318\& timer\->again = 10.;
1101\& ev_timer_again (loop, timer); 1319\& ev_timer_again (loop, timer);
1102.Ve 1320.Ve
1103.Sp 1321.Sp
1104This is more efficient then stopping/starting the timer eahc time you want 1322This is more slightly efficient then stopping/starting the timer each time
1105to modify its timeout value. 1323you want to modify its timeout value.
1106.IP "ev_tstamp repeat [read\-write]" 4 1324.IP "ev_tstamp repeat [read\-write]" 4
1107.IX Item "ev_tstamp repeat [read-write]" 1325.IX Item "ev_tstamp repeat [read-write]"
1108The current \f(CW\*(C`repeat\*(C'\fR value. Will be used each time the watcher times out 1326The current \f(CW\*(C`repeat\*(C'\fR value. Will be used each time the watcher times out
1109or \f(CW\*(C`ev_timer_again\*(C'\fR is called and determines the next timeout (if any), 1327or \f(CW\*(C`ev_timer_again\*(C'\fR is called and determines the next timeout (if any),
1110which is also when any modifications are taken into account. 1328which is also when any modifications are taken into account.
1329.PP
1330\fIExamples\fR
1331.IX Subsection "Examples"
1111.PP 1332.PP
1112Example: Create a timer that fires after 60 seconds. 1333Example: Create a timer that fires after 60 seconds.
1113.PP 1334.PP
1114.Vb 5 1335.Vb 5
1115\& static void 1336\& static void
1116\& one_minute_cb (struct ev_loop *loop, struct ev_timer *w, int revents) 1337\& one_minute_cb (struct ev_loop *loop, struct ev_timer *w, int revents)
1117\& { 1338\& {
1118\& .. one minute over, w is actually stopped right here 1339\& .. one minute over, w is actually stopped right here
1119\& } 1340\& }
1120.Ve 1341\&
1121.PP
1122.Vb 3
1123\& struct ev_timer mytimer; 1342\& struct ev_timer mytimer;
1124\& ev_timer_init (&mytimer, one_minute_cb, 60., 0.); 1343\& ev_timer_init (&mytimer, one_minute_cb, 60., 0.);
1125\& ev_timer_start (loop, &mytimer); 1344\& ev_timer_start (loop, &mytimer);
1126.Ve 1345.Ve
1127.PP 1346.PP
1132\& static void 1351\& static void
1133\& timeout_cb (struct ev_loop *loop, struct ev_timer *w, int revents) 1352\& timeout_cb (struct ev_loop *loop, struct ev_timer *w, int revents)
1134\& { 1353\& {
1135\& .. ten seconds without any activity 1354\& .. ten seconds without any activity
1136\& } 1355\& }
1137.Ve 1356\&
1138.PP
1139.Vb 4
1140\& struct ev_timer mytimer; 1357\& struct ev_timer mytimer;
1141\& ev_timer_init (&mytimer, timeout_cb, 0., 10.); /* note, only repeat used */ 1358\& ev_timer_init (&mytimer, timeout_cb, 0., 10.); /* note, only repeat used */
1142\& ev_timer_again (&mytimer); /* start timer */ 1359\& ev_timer_again (&mytimer); /* start timer */
1143\& ev_loop (loop, 0); 1360\& ev_loop (loop, 0);
1144.Ve 1361\&
1145.PP
1146.Vb 3
1147\& // and in some piece of code that gets executed on any "activity": 1362\& // and in some piece of code that gets executed on any "activity":
1148\& // reset the timeout to start ticking again at 10 seconds 1363\& // reset the timeout to start ticking again at 10 seconds
1149\& ev_timer_again (&mytimer); 1364\& ev_timer_again (&mytimer);
1150.Ve 1365.Ve
1151.ie n .Sh """ev_periodic"" \- to cron or not to cron?" 1366.ie n .Sh """ev_periodic"" \- to cron or not to cron?"
1158but on wallclock time (absolute time). You can tell a periodic watcher 1373but on wallclock time (absolute time). You can tell a periodic watcher
1159to trigger \*(L"at\*(R" some specific point in time. For example, if you tell a 1374to trigger \*(L"at\*(R" some specific point in time. For example, if you tell a
1160periodic watcher to trigger in 10 seconds (by specifiying e.g. \f(CW\*(C`ev_now () 1375periodic watcher to trigger in 10 seconds (by specifiying e.g. \f(CW\*(C`ev_now ()
1161+ 10.\*(C'\fR) and then reset your system clock to the last year, then it will 1376+ 10.\*(C'\fR) and then reset your system clock to the last year, then it will
1162take a year to trigger the event (unlike an \f(CW\*(C`ev_timer\*(C'\fR, which would trigger 1377take a year to trigger the event (unlike an \f(CW\*(C`ev_timer\*(C'\fR, which would trigger
1163roughly 10 seconds later and of course not if you reset your system time 1378roughly 10 seconds later).
1164again).
1165.PP 1379.PP
1166They can also be used to implement vastly more complex timers, such as 1380They can also be used to implement vastly more complex timers, such as
1167triggering an event on eahc midnight, local time. 1381triggering an event on each midnight, local time or other, complicated,
1382rules.
1168.PP 1383.PP
1169As with timers, the callback is guarenteed to be invoked only when the 1384As with timers, the callback is guarenteed to be invoked only when the
1170time (\f(CW\*(C`at\*(C'\fR) has been passed, but if multiple periodic timers become ready 1385time (\f(CW\*(C`at\*(C'\fR) has been passed, but if multiple periodic timers become ready
1171during the same loop iteration then order of execution is undefined. 1386during the same loop iteration then order of execution is undefined.
1387.PP
1388\fIWatcher-Specific Functions and Data Members\fR
1389.IX Subsection "Watcher-Specific Functions and Data Members"
1172.IP "ev_periodic_init (ev_periodic *, callback, ev_tstamp at, ev_tstamp interval, reschedule_cb)" 4 1390.IP "ev_periodic_init (ev_periodic *, callback, ev_tstamp at, ev_tstamp interval, reschedule_cb)" 4
1173.IX Item "ev_periodic_init (ev_periodic *, callback, ev_tstamp at, ev_tstamp interval, reschedule_cb)" 1391.IX Item "ev_periodic_init (ev_periodic *, callback, ev_tstamp at, ev_tstamp interval, reschedule_cb)"
1174.PD 0 1392.PD 0
1175.IP "ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb)" 4 1393.IP "ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb)" 4
1176.IX Item "ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb)" 1394.IX Item "ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb)"
1177.PD 1395.PD
1178Lots of arguments, lets sort it out... There are basically three modes of 1396Lots of arguments, lets sort it out... There are basically three modes of
1179operation, and we will explain them from simplest to complex: 1397operation, and we will explain them from simplest to complex:
1180.RS 4 1398.RS 4
1399.IP "\(bu" 4
1181.IP "* absolute timer (interval = reschedule_cb = 0)" 4 1400absolute timer (at = time, interval = reschedule_cb = 0)
1182.IX Item "absolute timer (interval = reschedule_cb = 0)" 1401.Sp
1183In this configuration the watcher triggers an event at the wallclock time 1402In this configuration the watcher triggers an event at the wallclock time
1184\&\f(CW\*(C`at\*(C'\fR and doesn't repeat. It will not adjust when a time jump occurs, 1403\&\f(CW\*(C`at\*(C'\fR and doesn't repeat. It will not adjust when a time jump occurs,
1185that is, if it is to be run at January 1st 2011 then it will run when the 1404that is, if it is to be run at January 1st 2011 then it will run when the
1186system time reaches or surpasses this time. 1405system time reaches or surpasses this time.
1406.IP "\(bu" 4
1187.IP "* non-repeating interval timer (interval > 0, reschedule_cb = 0)" 4 1407non-repeating interval timer (at = offset, interval > 0, reschedule_cb = 0)
1188.IX Item "non-repeating interval timer (interval > 0, reschedule_cb = 0)" 1408.Sp
1189In this mode the watcher will always be scheduled to time out at the next 1409In this mode the watcher will always be scheduled to time out at the next
1190\&\f(CW\*(C`at + N * interval\*(C'\fR time (for some integer N) and then repeat, regardless 1410\&\f(CW\*(C`at + N * interval\*(C'\fR time (for some integer N, which can also be negative)
1191of any time jumps. 1411and then repeat, regardless of any time jumps.
1192.Sp 1412.Sp
1193This can be used to create timers that do not drift with respect to system 1413This can be used to create timers that do not drift with respect to system
1194time: 1414time:
1195.Sp 1415.Sp
1196.Vb 1 1416.Vb 1
1203by 3600. 1423by 3600.
1204.Sp 1424.Sp
1205Another way to think about it (for the mathematically inclined) is that 1425Another way to think about it (for the mathematically inclined) is that
1206\&\f(CW\*(C`ev_periodic\*(C'\fR will try to run the callback in this mode at the next possible 1426\&\f(CW\*(C`ev_periodic\*(C'\fR will try to run the callback in this mode at the next possible
1207time where \f(CW\*(C`time = at (mod interval)\*(C'\fR, regardless of any time jumps. 1427time where \f(CW\*(C`time = at (mod interval)\*(C'\fR, regardless of any time jumps.
1208.IP "* manual reschedule mode (reschedule_cb = callback)" 4 1428.Sp
1209.IX Item "manual reschedule mode (reschedule_cb = callback)" 1429For numerical stability it is preferable that the \f(CW\*(C`at\*(C'\fR value is near
1430\&\f(CW\*(C`ev_now ()\*(C'\fR (the current time), but there is no range requirement for
1431this value.
1432.IP "\(bu" 4
1433manual reschedule mode (at and interval ignored, reschedule_cb = callback)
1434.Sp
1210In this mode the values for \f(CW\*(C`interval\*(C'\fR and \f(CW\*(C`at\*(C'\fR are both being 1435In this mode the values for \f(CW\*(C`interval\*(C'\fR and \f(CW\*(C`at\*(C'\fR are both being
1211ignored. Instead, each time the periodic watcher gets scheduled, the 1436ignored. Instead, each time the periodic watcher gets scheduled, the
1212reschedule callback will be called with the watcher as first, and the 1437reschedule callback will be called with the watcher as first, and the
1213current time as second argument. 1438current time as second argument.
1214.Sp 1439.Sp
1215\&\s-1NOTE:\s0 \fIThis callback \s-1MUST\s0 \s-1NOT\s0 stop or destroy any periodic watcher, 1440\&\s-1NOTE:\s0 \fIThis callback \s-1MUST\s0 \s-1NOT\s0 stop or destroy any periodic watcher,
1216ever, or make any event loop modifications\fR. If you need to stop it, 1441ever, or make any event loop modifications\fR. If you need to stop it,
1217return \f(CW\*(C`now + 1e30\*(C'\fR (or so, fudge fudge) and stop it afterwards (e.g. by 1442return \f(CW\*(C`now + 1e30\*(C'\fR (or so, fudge fudge) and stop it afterwards (e.g. by
1218starting a prepare watcher). 1443starting an \f(CW\*(C`ev_prepare\*(C'\fR watcher, which is legal).
1219.Sp 1444.Sp
1220Its prototype is \f(CW\*(C`ev_tstamp (*reschedule_cb)(struct ev_periodic *w, 1445Its prototype is \f(CW\*(C`ev_tstamp (*reschedule_cb)(struct ev_periodic *w,
1221ev_tstamp now)\*(C'\fR, e.g.: 1446ev_tstamp now)\*(C'\fR, e.g.:
1222.Sp 1447.Sp
1223.Vb 4 1448.Vb 4
1247.IX Item "ev_periodic_again (loop, ev_periodic *)" 1472.IX Item "ev_periodic_again (loop, ev_periodic *)"
1248Simply stops and restarts the periodic watcher again. This is only useful 1473Simply stops and restarts the periodic watcher again. This is only useful
1249when you changed some parameters or the reschedule callback would return 1474when you changed some parameters or the reschedule callback would return
1250a different time than the last time it was called (e.g. in a crond like 1475a different time than the last time it was called (e.g. in a crond like
1251program when the crontabs have changed). 1476program when the crontabs have changed).
1477.IP "ev_tstamp offset [read\-write]" 4
1478.IX Item "ev_tstamp offset [read-write]"
1479When repeating, this contains the offset value, otherwise this is the
1480absolute point in time (the \f(CW\*(C`at\*(C'\fR value passed to \f(CW\*(C`ev_periodic_set\*(C'\fR).
1481.Sp
1482Can be modified any time, but changes only take effect when the periodic
1483timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being called.
1252.IP "ev_tstamp interval [read\-write]" 4 1484.IP "ev_tstamp interval [read\-write]" 4
1253.IX Item "ev_tstamp interval [read-write]" 1485.IX Item "ev_tstamp interval [read-write]"
1254The current interval value. Can be modified any time, but changes only 1486The current interval value. Can be modified any time, but changes only
1255take effect when the periodic timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being 1487take effect when the periodic timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being
1256called. 1488called.
1257.IP "ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) [read\-write]" 4 1489.IP "ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) [read\-write]" 4
1258.IX Item "ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) [read-write]" 1490.IX Item "ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) [read-write]"
1259The current reschedule callback, or \f(CW0\fR, if this functionality is 1491The current reschedule callback, or \f(CW0\fR, if this functionality is
1260switched off. Can be changed any time, but changes only take effect when 1492switched off. Can be changed any time, but changes only take effect when
1261the periodic timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being called. 1493the periodic timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being called.
1494.IP "ev_tstamp at [read\-only]" 4
1495.IX Item "ev_tstamp at [read-only]"
1496When active, contains the absolute time that the watcher is supposed to
1497trigger next.
1498.PP
1499\fIExamples\fR
1500.IX Subsection "Examples"
1262.PP 1501.PP
1263Example: Call a callback every hour, or, more precisely, whenever the 1502Example: Call a callback every hour, or, more precisely, whenever the
1264system clock is divisible by 3600. The callback invocation times have 1503system clock is divisible by 3600. The callback invocation times have
1265potentially a lot of jittering, but good long-term stability. 1504potentially a lot of jittering, but good long-term stability.
1266.PP 1505.PP
1268\& static void 1507\& static void
1269\& clock_cb (struct ev_loop *loop, struct ev_io *w, int revents) 1508\& clock_cb (struct ev_loop *loop, struct ev_io *w, int revents)
1270\& { 1509\& {
1271\& ... its now a full hour (UTC, or TAI or whatever your clock follows) 1510\& ... its now a full hour (UTC, or TAI or whatever your clock follows)
1272\& } 1511\& }
1273.Ve 1512\&
1274.PP
1275.Vb 3
1276\& struct ev_periodic hourly_tick; 1513\& struct ev_periodic hourly_tick;
1277\& ev_periodic_init (&hourly_tick, clock_cb, 0., 3600., 0); 1514\& ev_periodic_init (&hourly_tick, clock_cb, 0., 3600., 0);
1278\& ev_periodic_start (loop, &hourly_tick); 1515\& ev_periodic_start (loop, &hourly_tick);
1279.Ve 1516.Ve
1280.PP 1517.PP
1281Example: The same as above, but use a reschedule callback to do it: 1518Example: The same as above, but use a reschedule callback to do it:
1282.PP 1519.PP
1283.Vb 1 1520.Vb 1
1284\& #include <math.h> 1521\& #include <math.h>
1285.Ve 1522\&
1286.PP
1287.Vb 5
1288\& static ev_tstamp 1523\& static ev_tstamp
1289\& my_scheduler_cb (struct ev_periodic *w, ev_tstamp now) 1524\& my_scheduler_cb (struct ev_periodic *w, ev_tstamp now)
1290\& { 1525\& {
1291\& return fmod (now, 3600.) + 3600.; 1526\& return fmod (now, 3600.) + 3600.;
1292\& } 1527\& }
1293.Ve 1528\&
1294.PP
1295.Vb 1
1296\& ev_periodic_init (&hourly_tick, clock_cb, 0., 0., my_scheduler_cb); 1529\& ev_periodic_init (&hourly_tick, clock_cb, 0., 0., my_scheduler_cb);
1297.Ve 1530.Ve
1298.PP 1531.PP
1299Example: Call a callback every hour, starting now: 1532Example: Call a callback every hour, starting now:
1300.PP 1533.PP
1316first watcher gets started will libev actually register a signal watcher 1549first watcher gets started will libev actually register a signal watcher
1317with the kernel (thus it coexists with your own signal handlers as long 1550with the kernel (thus it coexists with your own signal handlers as long
1318as you don't register any with libev). Similarly, when the last signal 1551as you don't register any with libev). Similarly, when the last signal
1319watcher for a signal is stopped libev will reset the signal handler to 1552watcher for a signal is stopped libev will reset the signal handler to
1320\&\s-1SIG_DFL\s0 (regardless of what it was set to before). 1553\&\s-1SIG_DFL\s0 (regardless of what it was set to before).
1554.PP
1555\fIWatcher-Specific Functions and Data Members\fR
1556.IX Subsection "Watcher-Specific Functions and Data Members"
1321.IP "ev_signal_init (ev_signal *, callback, int signum)" 4 1557.IP "ev_signal_init (ev_signal *, callback, int signum)" 4
1322.IX Item "ev_signal_init (ev_signal *, callback, int signum)" 1558.IX Item "ev_signal_init (ev_signal *, callback, int signum)"
1323.PD 0 1559.PD 0
1324.IP "ev_signal_set (ev_signal *, int signum)" 4 1560.IP "ev_signal_set (ev_signal *, int signum)" 4
1325.IX Item "ev_signal_set (ev_signal *, int signum)" 1561.IX Item "ev_signal_set (ev_signal *, int signum)"
1332.ie n .Sh """ev_child"" \- watch out for process status changes" 1568.ie n .Sh """ev_child"" \- watch out for process status changes"
1333.el .Sh "\f(CWev_child\fP \- watch out for process status changes" 1569.el .Sh "\f(CWev_child\fP \- watch out for process status changes"
1334.IX Subsection "ev_child - watch out for process status changes" 1570.IX Subsection "ev_child - watch out for process status changes"
1335Child watchers trigger when your process receives a \s-1SIGCHLD\s0 in response to 1571Child watchers trigger when your process receives a \s-1SIGCHLD\s0 in response to
1336some child status changes (most typically when a child of yours dies). 1572some child status changes (most typically when a child of yours dies).
1573.PP
1574\fIWatcher-Specific Functions and Data Members\fR
1575.IX Subsection "Watcher-Specific Functions and Data Members"
1337.IP "ev_child_init (ev_child *, callback, int pid)" 4 1576.IP "ev_child_init (ev_child *, callback, int pid, int trace)" 4
1338.IX Item "ev_child_init (ev_child *, callback, int pid)" 1577.IX Item "ev_child_init (ev_child *, callback, int pid, int trace)"
1339.PD 0 1578.PD 0
1340.IP "ev_child_set (ev_child *, int pid)" 4 1579.IP "ev_child_set (ev_child *, int pid, int trace)" 4
1341.IX Item "ev_child_set (ev_child *, int pid)" 1580.IX Item "ev_child_set (ev_child *, int pid, int trace)"
1342.PD 1581.PD
1343Configures the watcher to wait for status changes of process \f(CW\*(C`pid\*(C'\fR (or 1582Configures the watcher to wait for status changes of process \f(CW\*(C`pid\*(C'\fR (or
1344\&\fIany\fR process if \f(CW\*(C`pid\*(C'\fR is specified as \f(CW0\fR). The callback can look 1583\&\fIany\fR process if \f(CW\*(C`pid\*(C'\fR is specified as \f(CW0\fR). The callback can look
1345at the \f(CW\*(C`rstatus\*(C'\fR member of the \f(CW\*(C`ev_child\*(C'\fR watcher structure to see 1584at the \f(CW\*(C`rstatus\*(C'\fR member of the \f(CW\*(C`ev_child\*(C'\fR watcher structure to see
1346the status word (use the macros from \f(CW\*(C`sys/wait.h\*(C'\fR and see your systems 1585the status word (use the macros from \f(CW\*(C`sys/wait.h\*(C'\fR and see your systems
1347\&\f(CW\*(C`waitpid\*(C'\fR documentation). The \f(CW\*(C`rpid\*(C'\fR member contains the pid of the 1586\&\f(CW\*(C`waitpid\*(C'\fR documentation). The \f(CW\*(C`rpid\*(C'\fR member contains the pid of the
1348process causing the status change. 1587process causing the status change. \f(CW\*(C`trace\*(C'\fR must be either \f(CW0\fR (only
1588activate the watcher when the process terminates) or \f(CW1\fR (additionally
1589activate the watcher when the process is stopped or continued).
1349.IP "int pid [read\-only]" 4 1590.IP "int pid [read\-only]" 4
1350.IX Item "int pid [read-only]" 1591.IX Item "int pid [read-only]"
1351The process id this watcher watches out for, or \f(CW0\fR, meaning any process id. 1592The process id this watcher watches out for, or \f(CW0\fR, meaning any process id.
1352.IP "int rpid [read\-write]" 4 1593.IP "int rpid [read\-write]" 4
1353.IX Item "int rpid [read-write]" 1594.IX Item "int rpid [read-write]"
1355.IP "int rstatus [read\-write]" 4 1596.IP "int rstatus [read\-write]" 4
1356.IX Item "int rstatus [read-write]" 1597.IX Item "int rstatus [read-write]"
1357The process exit/trace status caused by \f(CW\*(C`rpid\*(C'\fR (see your systems 1598The process exit/trace status caused by \f(CW\*(C`rpid\*(C'\fR (see your systems
1358\&\f(CW\*(C`waitpid\*(C'\fR and \f(CW\*(C`sys/wait.h\*(C'\fR documentation for details). 1599\&\f(CW\*(C`waitpid\*(C'\fR and \f(CW\*(C`sys/wait.h\*(C'\fR documentation for details).
1359.PP 1600.PP
1601\fIExamples\fR
1602.IX Subsection "Examples"
1603.PP
1360Example: Try to exit cleanly on \s-1SIGINT\s0 and \s-1SIGTERM\s0. 1604Example: Try to exit cleanly on \s-1SIGINT\s0 and \s-1SIGTERM\s0.
1361.PP 1605.PP
1362.Vb 5 1606.Vb 5
1363\& static void 1607\& static void
1364\& sigint_cb (struct ev_loop *loop, struct ev_signal *w, int revents) 1608\& sigint_cb (struct ev_loop *loop, struct ev_signal *w, int revents)
1365\& { 1609\& {
1366\& ev_unloop (loop, EVUNLOOP_ALL); 1610\& ev_unloop (loop, EVUNLOOP_ALL);
1367\& } 1611\& }
1368.Ve 1612\&
1369.PP
1370.Vb 3
1371\& struct ev_signal signal_watcher; 1613\& struct ev_signal signal_watcher;
1372\& ev_signal_init (&signal_watcher, sigint_cb, SIGINT); 1614\& ev_signal_init (&signal_watcher, sigint_cb, SIGINT);
1373\& ev_signal_start (loop, &sigint_cb); 1615\& ev_signal_start (loop, &sigint_cb);
1374.Ve 1616.Ve
1375.ie n .Sh """ev_stat"" \- did the file attributes just change?" 1617.ie n .Sh """ev_stat"" \- did the file attributes just change?"
1382The path does not need to exist: changing from \*(L"path exists\*(R" to \*(L"path does 1624The path does not need to exist: changing from \*(L"path exists\*(R" to \*(L"path does
1383not exist\*(R" is a status change like any other. The condition \*(L"path does 1625not exist\*(R" is a status change like any other. The condition \*(L"path does
1384not exist\*(R" is signified by the \f(CW\*(C`st_nlink\*(C'\fR field being zero (which is 1626not exist\*(R" is signified by the \f(CW\*(C`st_nlink\*(C'\fR field being zero (which is
1385otherwise always forced to be at least one) and all the other fields of 1627otherwise always forced to be at least one) and all the other fields of
1386the stat buffer having unspecified contents. 1628the stat buffer having unspecified contents.
1629.PP
1630The path \fIshould\fR be absolute and \fImust not\fR end in a slash. If it is
1631relative and your working directory changes, the behaviour is undefined.
1387.PP 1632.PP
1388Since there is no standard to do this, the portable implementation simply 1633Since there is no standard to do this, the portable implementation simply
1389calls \f(CW\*(C`stat (2)\*(C'\fR regularly on the path to see if it changed somehow. You 1634calls \f(CW\*(C`stat (2)\*(C'\fR regularly on the path to see if it changed somehow. You
1390can specify a recommended polling interval for this case. If you specify 1635can specify a recommended polling interval for this case. If you specify
1391a polling interval of \f(CW0\fR (highly recommended!) then a \fIsuitable, 1636a polling interval of \f(CW0\fR (highly recommended!) then a \fIsuitable,
1394impose a minimum interval which is currently around \f(CW0.1\fR, but thats 1639impose a minimum interval which is currently around \f(CW0.1\fR, but thats
1395usually overkill. 1640usually overkill.
1396.PP 1641.PP
1397This watcher type is not meant for massive numbers of stat watchers, 1642This watcher type is not meant for massive numbers of stat watchers,
1398as even with OS-supported change notifications, this can be 1643as even with OS-supported change notifications, this can be
1399resource\-intensive. 1644resource-intensive.
1400.PP 1645.PP
1401At the time of this writing, only the Linux inotify interface is 1646At the time of this writing, only the Linux inotify interface is
1402implemented (implementing kqueue support is left as an exercise for the 1647implemented (implementing kqueue support is left as an exercise for the
1403reader). Inotify will be used to give hints only and should not change the 1648reader). Inotify will be used to give hints only and should not change the
1404semantics of \f(CW\*(C`ev_stat\*(C'\fR watchers, which means that libev sometimes needs 1649semantics of \f(CW\*(C`ev_stat\*(C'\fR watchers, which means that libev sometimes needs
1405to fall back to regular polling again even with inotify, but changes are 1650to fall back to regular polling again even with inotify, but changes are
1406usually detected immediately, and if the file exists there will be no 1651usually detected immediately, and if the file exists there will be no
1407polling. 1652polling.
1653.PP
1654\fIInotify\fR
1655.IX Subsection "Inotify"
1656.PP
1657When \f(CW\*(C`inotify (7)\*(C'\fR support has been compiled into libev (generally only
1658available on Linux) and present at runtime, it will be used to speed up
1659change detection where possible. The inotify descriptor will be created lazily
1660when the first \f(CW\*(C`ev_stat\*(C'\fR watcher is being started.
1661.PP
1662Inotify presense does not change the semantics of \f(CW\*(C`ev_stat\*(C'\fR watchers
1663except that changes might be detected earlier, and in some cases, to avoid
1664making regular \f(CW\*(C`stat\*(C'\fR calls. Even in the presense of inotify support
1665there are many cases where libev has to resort to regular \f(CW\*(C`stat\*(C'\fR polling.
1666.PP
1667(There is no support for kqueue, as apparently it cannot be used to
1668implement this functionality, due to the requirement of having a file
1669descriptor open on the object at all times).
1670.PP
1671\fIThe special problem of stat time resolution\fR
1672.IX Subsection "The special problem of stat time resolution"
1673.PP
1674The \f(CW\*(C`stat ()\*(C'\fR syscall only supports full-second resolution portably, and
1675even on systems where the resolution is higher, many filesystems still
1676only support whole seconds.
1677.PP
1678That means that, if the time is the only thing that changes, you might
1679miss updates: on the first update, \f(CW\*(C`ev_stat\*(C'\fR detects a change and calls
1680your callback, which does something. When there is another update within
1681the same second, \f(CW\*(C`ev_stat\*(C'\fR will be unable to detect it.
1682.PP
1683The solution to this is to delay acting on a change for a second (or till
1684the next second boundary), using a roughly one-second delay \f(CW\*(C`ev_timer\*(C'\fR
1685(\f(CW\*(C`ev_timer_set (w, 0., 1.01); ev_timer_again (loop, w)\*(C'\fR). The \f(CW.01\fR
1686is added to work around small timing inconsistencies of some operating
1687systems.
1688.PP
1689\fIWatcher-Specific Functions and Data Members\fR
1690.IX Subsection "Watcher-Specific Functions and Data Members"
1408.IP "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)" 4 1691.IP "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)" 4
1409.IX Item "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)" 1692.IX Item "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)"
1410.PD 0 1693.PD 0
1411.IP "ev_stat_set (ev_stat *, const char *path, ev_tstamp interval)" 4 1694.IP "ev_stat_set (ev_stat *, const char *path, ev_tstamp interval)" 4
1412.IX Item "ev_stat_set (ev_stat *, const char *path, ev_tstamp interval)" 1695.IX Item "ev_stat_set (ev_stat *, const char *path, ev_tstamp interval)"
1441The specified interval. 1724The specified interval.
1442.IP "const char *path [read\-only]" 4 1725.IP "const char *path [read\-only]" 4
1443.IX Item "const char *path [read-only]" 1726.IX Item "const char *path [read-only]"
1444The filesystem path that is being watched. 1727The filesystem path that is being watched.
1445.PP 1728.PP
1729\fIExamples\fR
1730.IX Subsection "Examples"
1731.PP
1446Example: Watch \f(CW\*(C`/etc/passwd\*(C'\fR for attribute changes. 1732Example: Watch \f(CW\*(C`/etc/passwd\*(C'\fR for attribute changes.
1447.PP 1733.PP
1448.Vb 15 1734.Vb 10
1449\& static void 1735\& static void
1450\& passwd_cb (struct ev_loop *loop, ev_stat *w, int revents) 1736\& passwd_cb (struct ev_loop *loop, ev_stat *w, int revents)
1451\& { 1737\& {
1452\& /* /etc/passwd changed in some way */ 1738\& /* /etc/passwd changed in some way */
1453\& if (w->attr.st_nlink) 1739\& if (w\->attr.st_nlink)
1454\& { 1740\& {
1455\& printf ("passwd current size %ld\en", (long)w->attr.st_size); 1741\& printf ("passwd current size %ld\en", (long)w\->attr.st_size);
1456\& printf ("passwd current atime %ld\en", (long)w->attr.st_mtime); 1742\& printf ("passwd current atime %ld\en", (long)w\->attr.st_mtime);
1457\& printf ("passwd current mtime %ld\en", (long)w->attr.st_mtime); 1743\& printf ("passwd current mtime %ld\en", (long)w\->attr.st_mtime);
1458\& } 1744\& }
1459\& else 1745\& else
1460\& /* you shalt not abuse printf for puts */ 1746\& /* you shalt not abuse printf for puts */
1461\& puts ("wow, /etc/passwd is not there, expect problems. " 1747\& puts ("wow, /etc/passwd is not there, expect problems. "
1462\& "if this is windows, they already arrived\en"); 1748\& "if this is windows, they already arrived\en");
1463\& } 1749\& }
1464.Ve 1750\&
1465.PP
1466.Vb 2
1467\& ... 1751\& ...
1468\& ev_stat passwd; 1752\& ev_stat passwd;
1753\&
1754\& ev_stat_init (&passwd, passwd_cb, "/etc/passwd", 0.);
1755\& ev_stat_start (loop, &passwd);
1469.Ve 1756.Ve
1757.PP
1758Example: Like above, but additionally use a one-second delay so we do not
1759miss updates (however, frequent updates will delay processing, too, so
1760one might do the work both on \f(CW\*(C`ev_stat\*(C'\fR callback invocation \fIand\fR on
1761\&\f(CW\*(C`ev_timer\*(C'\fR callback invocation).
1470.PP 1762.PP
1471.Vb 2 1763.Vb 2
1764\& static ev_stat passwd;
1765\& static ev_timer timer;
1766\&
1767\& static void
1768\& timer_cb (EV_P_ ev_timer *w, int revents)
1769\& {
1770\& ev_timer_stop (EV_A_ w);
1771\&
1772\& /* now it\*(Aqs one second after the most recent passwd change */
1773\& }
1774\&
1775\& static void
1776\& stat_cb (EV_P_ ev_stat *w, int revents)
1777\& {
1778\& /* reset the one\-second timer */
1779\& ev_timer_again (EV_A_ &timer);
1780\& }
1781\&
1782\& ...
1472\& ev_stat_init (&passwd, passwd_cb, "/etc/passwd"); 1783\& ev_stat_init (&passwd, stat_cb, "/etc/passwd", 0.);
1473\& ev_stat_start (loop, &passwd); 1784\& ev_stat_start (loop, &passwd);
1785\& ev_timer_init (&timer, timer_cb, 0., 1.01);
1474.Ve 1786.Ve
1475.ie n .Sh """ev_idle"" \- when you've got nothing better to do..." 1787.ie n .Sh """ev_idle"" \- when you've got nothing better to do..."
1476.el .Sh "\f(CWev_idle\fP \- when you've got nothing better to do..." 1788.el .Sh "\f(CWev_idle\fP \- when you've got nothing better to do..."
1477.IX Subsection "ev_idle - when you've got nothing better to do..." 1789.IX Subsection "ev_idle - when you've got nothing better to do..."
1478Idle watchers trigger events when there are no other events are pending 1790Idle watchers trigger events when no other events of the same or higher
1479(prepare, check and other idle watchers do not count). That is, as long 1791priority are pending (prepare, check and other idle watchers do not
1480as your process is busy handling sockets or timeouts (or even signals, 1792count).
1481imagine) it will not be triggered. But when your process is idle all idle 1793.PP
1482watchers are being called again and again, once per event loop iteration \- 1794That is, as long as your process is busy handling sockets or timeouts
1795(or even signals, imagine) of the same or higher priority it will not be
1796triggered. But when your process is idle (or only lower-priority watchers
1797are pending), the idle watchers are being called once per event loop
1483until stopped, that is, or your process receives more events and becomes 1798iteration \- until stopped, that is, or your process receives more events
1484busy. 1799and becomes busy again with higher priority stuff.
1485.PP 1800.PP
1486The most noteworthy effect is that as long as any idle watchers are 1801The most noteworthy effect is that as long as any idle watchers are
1487active, the process will not block when waiting for new events. 1802active, the process will not block when waiting for new events.
1488.PP 1803.PP
1489Apart from keeping your process non-blocking (which is a useful 1804Apart from keeping your process non-blocking (which is a useful
1490effect on its own sometimes), idle watchers are a good place to do 1805effect on its own sometimes), idle watchers are a good place to do
1491\&\*(L"pseudo\-background processing\*(R", or delay processing stuff to after the 1806\&\*(L"pseudo-background processing\*(R", or delay processing stuff to after the
1492event loop has handled all outstanding events. 1807event loop has handled all outstanding events.
1808.PP
1809\fIWatcher-Specific Functions and Data Members\fR
1810.IX Subsection "Watcher-Specific Functions and Data Members"
1493.IP "ev_idle_init (ev_signal *, callback)" 4 1811.IP "ev_idle_init (ev_signal *, callback)" 4
1494.IX Item "ev_idle_init (ev_signal *, callback)" 1812.IX Item "ev_idle_init (ev_signal *, callback)"
1495Initialises and configures the idle watcher \- it has no parameters of any 1813Initialises and configures the idle watcher \- it has no parameters of any
1496kind. There is a \f(CW\*(C`ev_idle_set\*(C'\fR macro, but using it is utterly pointless, 1814kind. There is a \f(CW\*(C`ev_idle_set\*(C'\fR macro, but using it is utterly pointless,
1497believe me. 1815believe me.
1816.PP
1817\fIExamples\fR
1818.IX Subsection "Examples"
1498.PP 1819.PP
1499Example: Dynamically allocate an \f(CW\*(C`ev_idle\*(C'\fR watcher, start it, and in the 1820Example: Dynamically allocate an \f(CW\*(C`ev_idle\*(C'\fR watcher, start it, and in the
1500callback, free it. Also, use no error checking, as usual. 1821callback, free it. Also, use no error checking, as usual.
1501.PP 1822.PP
1502.Vb 7 1823.Vb 7
1503\& static void 1824\& static void
1504\& idle_cb (struct ev_loop *loop, struct ev_idle *w, int revents) 1825\& idle_cb (struct ev_loop *loop, struct ev_idle *w, int revents)
1505\& { 1826\& {
1506\& free (w); 1827\& free (w);
1507\& // now do something you wanted to do when the program has 1828\& // now do something you wanted to do when the program has
1508\& // no longer asnything immediate to do. 1829\& // no longer anything immediate to do.
1509\& } 1830\& }
1510.Ve 1831\&
1511.PP
1512.Vb 3
1513\& struct ev_idle *idle_watcher = malloc (sizeof (struct ev_idle)); 1832\& struct ev_idle *idle_watcher = malloc (sizeof (struct ev_idle));
1514\& ev_idle_init (idle_watcher, idle_cb); 1833\& ev_idle_init (idle_watcher, idle_cb);
1515\& ev_idle_start (loop, idle_cb); 1834\& ev_idle_start (loop, idle_cb);
1516.Ve 1835.Ve
1517.ie n .Sh """ev_prepare""\fP and \f(CW""ev_check"" \- customise your event loop!" 1836.ie n .Sh """ev_prepare""\fP and \f(CW""ev_check"" \- customise your event loop!"
1552are ready to run (it's actually more complicated: it only runs coroutines 1871are ready to run (it's actually more complicated: it only runs coroutines
1553with priority higher than or equal to the event loop and one coroutine 1872with priority higher than or equal to the event loop and one coroutine
1554of lower priority, but only once, using idle watchers to keep the event 1873of lower priority, but only once, using idle watchers to keep the event
1555loop from blocking if lower-priority coroutines are active, thus mapping 1874loop from blocking if lower-priority coroutines are active, thus mapping
1556low-priority coroutines to idle/background tasks). 1875low-priority coroutines to idle/background tasks).
1876.PP
1877It is recommended to give \f(CW\*(C`ev_check\*(C'\fR watchers highest (\f(CW\*(C`EV_MAXPRI\*(C'\fR)
1878priority, to ensure that they are being run before any other watchers
1879after the poll. Also, \f(CW\*(C`ev_check\*(C'\fR watchers (and \f(CW\*(C`ev_prepare\*(C'\fR watchers,
1880too) should not activate (\*(L"feed\*(R") events into libev. While libev fully
1881supports this, they will be called before other \f(CW\*(C`ev_check\*(C'\fR watchers
1882did their job. As \f(CW\*(C`ev_check\*(C'\fR watchers are often used to embed other
1883(non-libev) event loops those other event loops might be in an unusable
1884state until their \f(CW\*(C`ev_check\*(C'\fR watcher ran (always remind yourself to
1885coexist peacefully with others).
1886.PP
1887\fIWatcher-Specific Functions and Data Members\fR
1888.IX Subsection "Watcher-Specific Functions and Data Members"
1557.IP "ev_prepare_init (ev_prepare *, callback)" 4 1889.IP "ev_prepare_init (ev_prepare *, callback)" 4
1558.IX Item "ev_prepare_init (ev_prepare *, callback)" 1890.IX Item "ev_prepare_init (ev_prepare *, callback)"
1559.PD 0 1891.PD 0
1560.IP "ev_check_init (ev_check *, callback)" 4 1892.IP "ev_check_init (ev_check *, callback)" 4
1561.IX Item "ev_check_init (ev_check *, callback)" 1893.IX Item "ev_check_init (ev_check *, callback)"
1562.PD 1894.PD
1563Initialises and configures the prepare or check watcher \- they have no 1895Initialises and configures the prepare or check watcher \- they have no
1564parameters of any kind. There are \f(CW\*(C`ev_prepare_set\*(C'\fR and \f(CW\*(C`ev_check_set\*(C'\fR 1896parameters of any kind. There are \f(CW\*(C`ev_prepare_set\*(C'\fR and \f(CW\*(C`ev_check_set\*(C'\fR
1565macros, but using them is utterly, utterly and completely pointless. 1897macros, but using them is utterly, utterly and completely pointless.
1566.PP 1898.PP
1567Example: To include a library such as adns, you would add \s-1IO\s0 watchers 1899\fIExamples\fR
1568and a timeout watcher in a prepare handler, as required by libadns, and 1900.IX Subsection "Examples"
1901.PP
1902There are a number of principal ways to embed other event loops or modules
1903into libev. Here are some ideas on how to include libadns into libev
1904(there is a Perl module named \f(CW\*(C`EV::ADNS\*(C'\fR that does this, which you could
1905use for an actually working example. Another Perl module named \f(CW\*(C`EV::Glib\*(C'\fR
1906embeds a Glib main context into libev, and finally, \f(CW\*(C`Glib::EV\*(C'\fR embeds \s-1EV\s0
1907into the Glib event loop).
1908.PP
1909Method 1: Add \s-1IO\s0 watchers and a timeout watcher in a prepare handler,
1569in a check watcher, destroy them and call into libadns. What follows is 1910and in a check watcher, destroy them and call into libadns. What follows
1570pseudo-code only of course: 1911is pseudo-code only of course. This requires you to either use a low
1912priority for the check watcher or use \f(CW\*(C`ev_clear_pending\*(C'\fR explicitly, as
1913the callbacks for the IO/timeout watchers might not have been called yet.
1571.PP 1914.PP
1572.Vb 2 1915.Vb 2
1573\& static ev_io iow [nfd]; 1916\& static ev_io iow [nfd];
1574\& static ev_timer tw; 1917\& static ev_timer tw;
1575.Ve 1918\&
1576.PP
1577.Vb 9
1578\& static void 1919\& static void
1579\& io_cb (ev_loop *loop, ev_io *w, int revents) 1920\& io_cb (ev_loop *loop, ev_io *w, int revents)
1580\& { 1921\& {
1581\& // set the relevant poll flags
1582\& // could also call adns_processreadable etc. here
1583\& struct pollfd *fd = (struct pollfd *)w->data;
1584\& if (revents & EV_READ ) fd->revents |= fd->events & POLLIN;
1585\& if (revents & EV_WRITE) fd->revents |= fd->events & POLLOUT;
1586\& } 1922\& }
1587.Ve 1923\&
1588.PP
1589.Vb 7
1590\& // create io watchers for each fd and a timer before blocking 1924\& // create io watchers for each fd and a timer before blocking
1591\& static void 1925\& static void
1592\& adns_prepare_cb (ev_loop *loop, ev_prepare *w, int revents) 1926\& adns_prepare_cb (ev_loop *loop, ev_prepare *w, int revents)
1593\& { 1927\& {
1594\& int timeout = 3600000;truct pollfd fds [nfd]; 1928\& int timeout = 3600000;
1929\& struct pollfd fds [nfd];
1595\& // actual code will need to loop here and realloc etc. 1930\& // actual code will need to loop here and realloc etc.
1596\& adns_beforepoll (ads, fds, &nfd, &timeout, timeval_from (ev_time ())); 1931\& adns_beforepoll (ads, fds, &nfd, &timeout, timeval_from (ev_time ()));
1597.Ve 1932\&
1598.PP
1599.Vb 3
1600\& /* the callback is illegal, but won't be called as we stop during check */ 1933\& /* the callback is illegal, but won\*(Aqt be called as we stop during check */
1601\& ev_timer_init (&tw, 0, timeout * 1e-3); 1934\& ev_timer_init (&tw, 0, timeout * 1e\-3);
1602\& ev_timer_start (loop, &tw); 1935\& ev_timer_start (loop, &tw);
1603.Ve 1936\&
1604.PP
1605.Vb 6
1606\& // create on ev_io per pollfd 1937\& // create one ev_io per pollfd
1607\& for (int i = 0; i < nfd; ++i) 1938\& for (int i = 0; i < nfd; ++i)
1608\& { 1939\& {
1609\& ev_io_init (iow + i, io_cb, fds [i].fd, 1940\& ev_io_init (iow + i, io_cb, fds [i].fd,
1610\& ((fds [i].events & POLLIN ? EV_READ : 0) 1941\& ((fds [i].events & POLLIN ? EV_READ : 0)
1611\& | (fds [i].events & POLLOUT ? EV_WRITE : 0))); 1942\& | (fds [i].events & POLLOUT ? EV_WRITE : 0)));
1612.Ve 1943\&
1613.PP
1614.Vb 5
1615\& fds [i].revents = 0; 1944\& fds [i].revents = 0;
1616\& iow [i].data = fds + i;
1617\& ev_io_start (loop, iow + i); 1945\& ev_io_start (loop, iow + i);
1618\& } 1946\& }
1619\& } 1947\& }
1620.Ve 1948\&
1621.PP
1622.Vb 5
1623\& // stop all watchers after blocking 1949\& // stop all watchers after blocking
1624\& static void 1950\& static void
1625\& adns_check_cb (ev_loop *loop, ev_check *w, int revents) 1951\& adns_check_cb (ev_loop *loop, ev_check *w, int revents)
1626\& { 1952\& {
1627\& ev_timer_stop (loop, &tw); 1953\& ev_timer_stop (loop, &tw);
1628.Ve 1954\&
1629.PP
1630.Vb 2
1631\& for (int i = 0; i < nfd; ++i) 1955\& for (int i = 0; i < nfd; ++i)
1956\& {
1957\& // set the relevant poll flags
1958\& // could also call adns_processreadable etc. here
1959\& struct pollfd *fd = fds + i;
1960\& int revents = ev_clear_pending (iow + i);
1961\& if (revents & EV_READ ) fd\->revents |= fd\->events & POLLIN;
1962\& if (revents & EV_WRITE) fd\->revents |= fd\->events & POLLOUT;
1963\&
1964\& // now stop the watcher
1632\& ev_io_stop (loop, iow + i); 1965\& ev_io_stop (loop, iow + i);
1633.Ve 1966\& }
1634.PP 1967\&
1635.Vb 2
1636\& adns_afterpoll (adns, fds, nfd, timeval_from (ev_now (loop)); 1968\& adns_afterpoll (adns, fds, nfd, timeval_from (ev_now (loop));
1969\& }
1970.Ve
1971.PP
1972Method 2: This would be just like method 1, but you run \f(CW\*(C`adns_afterpoll\*(C'\fR
1973in the prepare watcher and would dispose of the check watcher.
1974.PP
1975Method 3: If the module to be embedded supports explicit event
1976notification (adns does), you can also make use of the actual watcher
1977callbacks, and only destroy/create the watchers in the prepare watcher.
1978.PP
1979.Vb 5
1980\& static void
1981\& timer_cb (EV_P_ ev_timer *w, int revents)
1982\& {
1983\& adns_state ads = (adns_state)w\->data;
1984\& update_now (EV_A);
1985\&
1986\& adns_processtimeouts (ads, &tv_now);
1987\& }
1988\&
1989\& static void
1990\& io_cb (EV_P_ ev_io *w, int revents)
1991\& {
1992\& adns_state ads = (adns_state)w\->data;
1993\& update_now (EV_A);
1994\&
1995\& if (revents & EV_READ ) adns_processreadable (ads, w\->fd, &tv_now);
1996\& if (revents & EV_WRITE) adns_processwriteable (ads, w\->fd, &tv_now);
1997\& }
1998\&
1999\& // do not ever call adns_afterpoll
2000.Ve
2001.PP
2002Method 4: Do not use a prepare or check watcher because the module you
2003want to embed is too inflexible to support it. Instead, youc na override
2004their poll function. The drawback with this solution is that the main
2005loop is now no longer controllable by \s-1EV\s0. The \f(CW\*(C`Glib::EV\*(C'\fR module does
2006this.
2007.PP
2008.Vb 4
2009\& static gint
2010\& event_poll_func (GPollFD *fds, guint nfds, gint timeout)
2011\& {
2012\& int got_events = 0;
2013\&
2014\& for (n = 0; n < nfds; ++n)
2015\& // create/start io watcher that sets the relevant bits in fds[n] and increment got_events
2016\&
2017\& if (timeout >= 0)
2018\& // create/start timer
2019\&
2020\& // poll
2021\& ev_loop (EV_A_ 0);
2022\&
2023\& // stop timer again
2024\& if (timeout >= 0)
2025\& ev_timer_stop (EV_A_ &to);
2026\&
2027\& // stop io watchers again \- their callbacks should have set
2028\& for (n = 0; n < nfds; ++n)
2029\& ev_io_stop (EV_A_ iow [n]);
2030\&
2031\& return got_events;
1637\& } 2032\& }
1638.Ve 2033.Ve
1639.ie n .Sh """ev_embed"" \- when one backend isn't enough..." 2034.ie n .Sh """ev_embed"" \- when one backend isn't enough..."
1640.el .Sh "\f(CWev_embed\fP \- when one backend isn't enough..." 2035.el .Sh "\f(CWev_embed\fP \- when one backend isn't enough..."
1641.IX Subsection "ev_embed - when one backend isn't enough..." 2036.IX Subsection "ev_embed - when one backend isn't enough..."
1684portable one. 2079portable one.
1685.PP 2080.PP
1686So when you want to use this feature you will always have to be prepared 2081So when you want to use this feature you will always have to be prepared
1687that you cannot get an embeddable loop. The recommended way to get around 2082that you cannot get an embeddable loop. The recommended way to get around
1688this is to have a separate variables for your embeddable loop, try to 2083this is to have a separate variables for your embeddable loop, try to
1689create it, and if that fails, use the normal loop for everything: 2084create it, and if that fails, use the normal loop for everything.
1690.PP 2085.PP
1691.Vb 3 2086\fIWatcher-Specific Functions and Data Members\fR
1692\& struct ev_loop *loop_hi = ev_default_init (0); 2087.IX Subsection "Watcher-Specific Functions and Data Members"
1693\& struct ev_loop *loop_lo = 0;
1694\& struct ev_embed embed;
1695.Ve
1696.PP
1697.Vb 5
1698\& // see if there is a chance of getting one that works
1699\& // (remember that a flags value of 0 means autodetection)
1700\& loop_lo = ev_embeddable_backends () & ev_recommended_backends ()
1701\& ? ev_loop_new (ev_embeddable_backends () & ev_recommended_backends ())
1702\& : 0;
1703.Ve
1704.PP
1705.Vb 8
1706\& // if we got one, then embed it, otherwise default to loop_hi
1707\& if (loop_lo)
1708\& {
1709\& ev_embed_init (&embed, 0, loop_lo);
1710\& ev_embed_start (loop_hi, &embed);
1711\& }
1712\& else
1713\& loop_lo = loop_hi;
1714.Ve
1715.IP "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)" 4 2088.IP "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)" 4
1716.IX Item "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)" 2089.IX Item "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)"
1717.PD 0 2090.PD 0
1718.IP "ev_embed_set (ev_embed *, callback, struct ev_loop *embedded_loop)" 4 2091.IP "ev_embed_set (ev_embed *, callback, struct ev_loop *embedded_loop)" 4
1719.IX Item "ev_embed_set (ev_embed *, callback, struct ev_loop *embedded_loop)" 2092.IX Item "ev_embed_set (ev_embed *, callback, struct ev_loop *embedded_loop)"
1726.IP "ev_embed_sweep (loop, ev_embed *)" 4 2099.IP "ev_embed_sweep (loop, ev_embed *)" 4
1727.IX Item "ev_embed_sweep (loop, ev_embed *)" 2100.IX Item "ev_embed_sweep (loop, ev_embed *)"
1728Make a single, non-blocking sweep over the embedded loop. This works 2101Make a single, non-blocking sweep over the embedded loop. This works
1729similarly to \f(CW\*(C`ev_loop (embedded_loop, EVLOOP_NONBLOCK)\*(C'\fR, but in the most 2102similarly to \f(CW\*(C`ev_loop (embedded_loop, EVLOOP_NONBLOCK)\*(C'\fR, but in the most
1730apropriate way for embedded loops. 2103apropriate way for embedded loops.
1731.IP "struct ev_loop *loop [read\-only]" 4 2104.IP "struct ev_loop *other [read\-only]" 4
1732.IX Item "struct ev_loop *loop [read-only]" 2105.IX Item "struct ev_loop *other [read-only]"
1733The embedded event loop. 2106The embedded event loop.
2107.PP
2108\fIExamples\fR
2109.IX Subsection "Examples"
2110.PP
2111Example: Try to get an embeddable event loop and embed it into the default
2112event loop. If that is not possible, use the default loop. The default
2113loop is stored in \f(CW\*(C`loop_hi\*(C'\fR, while the mebeddable loop is stored in
2114\&\f(CW\*(C`loop_lo\*(C'\fR (which is \f(CW\*(C`loop_hi\*(C'\fR in the acse no embeddable loop can be
2115used).
2116.PP
2117.Vb 3
2118\& struct ev_loop *loop_hi = ev_default_init (0);
2119\& struct ev_loop *loop_lo = 0;
2120\& struct ev_embed embed;
2121\&
2122\& // see if there is a chance of getting one that works
2123\& // (remember that a flags value of 0 means autodetection)
2124\& loop_lo = ev_embeddable_backends () & ev_recommended_backends ()
2125\& ? ev_loop_new (ev_embeddable_backends () & ev_recommended_backends ())
2126\& : 0;
2127\&
2128\& // if we got one, then embed it, otherwise default to loop_hi
2129\& if (loop_lo)
2130\& {
2131\& ev_embed_init (&embed, 0, loop_lo);
2132\& ev_embed_start (loop_hi, &embed);
2133\& }
2134\& else
2135\& loop_lo = loop_hi;
2136.Ve
2137.PP
2138Example: Check if kqueue is available but not recommended and create
2139a kqueue backend for use with sockets (which usually work with any
2140kqueue implementation). Store the kqueue/socket\-only event loop in
2141\&\f(CW\*(C`loop_socket\*(C'\fR. (One might optionally use \f(CW\*(C`EVFLAG_NOENV\*(C'\fR, too).
2142.PP
2143.Vb 3
2144\& struct ev_loop *loop = ev_default_init (0);
2145\& struct ev_loop *loop_socket = 0;
2146\& struct ev_embed embed;
2147\&
2148\& if (ev_supported_backends () & ~ev_recommended_backends () & EVBACKEND_KQUEUE)
2149\& if ((loop_socket = ev_loop_new (EVBACKEND_KQUEUE))
2150\& {
2151\& ev_embed_init (&embed, 0, loop_socket);
2152\& ev_embed_start (loop, &embed);
2153\& }
2154\&
2155\& if (!loop_socket)
2156\& loop_socket = loop;
2157\&
2158\& // now use loop_socket for all sockets, and loop for everything else
2159.Ve
1734.ie n .Sh """ev_fork"" \- the audacity to resume the event loop after a fork" 2160.ie n .Sh """ev_fork"" \- the audacity to resume the event loop after a fork"
1735.el .Sh "\f(CWev_fork\fP \- the audacity to resume the event loop after a fork" 2161.el .Sh "\f(CWev_fork\fP \- the audacity to resume the event loop after a fork"
1736.IX Subsection "ev_fork - the audacity to resume the event loop after a fork" 2162.IX Subsection "ev_fork - the audacity to resume the event loop after a fork"
1737Fork watchers are called when a \f(CW\*(C`fork ()\*(C'\fR was detected (usually because 2163Fork watchers are called when a \f(CW\*(C`fork ()\*(C'\fR was detected (usually because
1738whoever is a good citizen cared to tell libev about it by calling 2164whoever is a good citizen cared to tell libev about it by calling
1739\&\f(CW\*(C`ev_default_fork\*(C'\fR or \f(CW\*(C`ev_loop_fork\*(C'\fR). The invocation is done before the 2165\&\f(CW\*(C`ev_default_fork\*(C'\fR or \f(CW\*(C`ev_loop_fork\*(C'\fR). The invocation is done before the
1740event loop blocks next and before \f(CW\*(C`ev_check\*(C'\fR watchers are being called, 2166event loop blocks next and before \f(CW\*(C`ev_check\*(C'\fR watchers are being called,
1741and only in the child after the fork. If whoever good citizen calling 2167and only in the child after the fork. If whoever good citizen calling
1742\&\f(CW\*(C`ev_default_fork\*(C'\fR cheats and calls it in the wrong process, the fork 2168\&\f(CW\*(C`ev_default_fork\*(C'\fR cheats and calls it in the wrong process, the fork
1743handlers will be invoked, too, of course. 2169handlers will be invoked, too, of course.
2170.PP
2171\fIWatcher-Specific Functions and Data Members\fR
2172.IX Subsection "Watcher-Specific Functions and Data Members"
1744.IP "ev_fork_init (ev_signal *, callback)" 4 2173.IP "ev_fork_init (ev_signal *, callback)" 4
1745.IX Item "ev_fork_init (ev_signal *, callback)" 2174.IX Item "ev_fork_init (ev_signal *, callback)"
1746Initialises and configures the fork watcher \- it has no parameters of any 2175Initialises and configures the fork watcher \- it has no parameters of any
1747kind. There is a \f(CW\*(C`ev_fork_set\*(C'\fR macro, but using it is utterly pointless, 2176kind. There is a \f(CW\*(C`ev_fork_set\*(C'\fR macro, but using it is utterly pointless,
1748believe me. 2177believe me.
1777\& if (revents & EV_TIMEOUT) 2206\& if (revents & EV_TIMEOUT)
1778\& /* doh, nothing entered */; 2207\& /* doh, nothing entered */;
1779\& else if (revents & EV_READ) 2208\& else if (revents & EV_READ)
1780\& /* stdin might have data for us, joy! */; 2209\& /* stdin might have data for us, joy! */;
1781\& } 2210\& }
1782.Ve 2211\&
1783.Sp
1784.Vb 1
1785\& ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0); 2212\& ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0);
1786.Ve 2213.Ve
1787.IP "ev_feed_event (ev_loop *, watcher *, int revents)" 4 2214.IP "ev_feed_event (ev_loop *, watcher *, int revents)" 4
1788.IX Item "ev_feed_event (ev_loop *, watcher *, int revents)" 2215.IX Item "ev_feed_event (ev_loop *, watcher *, int revents)"
1789Feeds the given event set into the event loop, as if the specified event 2216Feeds the given event set into the event loop, as if the specified event
1799loop!). 2226loop!).
1800.SH "LIBEVENT EMULATION" 2227.SH "LIBEVENT EMULATION"
1801.IX Header "LIBEVENT EMULATION" 2228.IX Header "LIBEVENT EMULATION"
1802Libev offers a compatibility emulation layer for libevent. It cannot 2229Libev offers a compatibility emulation layer for libevent. It cannot
1803emulate the internals of libevent, so here are some usage hints: 2230emulate the internals of libevent, so here are some usage hints:
2231.IP "\(bu" 4
1804.IP "* Use it by including <event.h>, as usual." 4 2232Use it by including <event.h>, as usual.
1805.IX Item "Use it by including <event.h>, as usual." 2233.IP "\(bu" 4
1806.PD 0 2234The following members are fully supported: ev_base, ev_callback,
1807.IP "* The following members are fully supported: ev_base, ev_callback, ev_arg, ev_fd, ev_res, ev_events." 4 2235ev_arg, ev_fd, ev_res, ev_events.
1808.IX Item "The following members are fully supported: ev_base, ev_callback, ev_arg, ev_fd, ev_res, ev_events." 2236.IP "\(bu" 4
1809.IP "* Avoid using ev_flags and the EVLIST_*\-macros, while it is maintained by libev, it does not work exactly the same way as in libevent (consider it a private \s-1API\s0)." 4 2237Avoid using ev_flags and the EVLIST_*\-macros, while it is
1810.IX Item "Avoid using ev_flags and the EVLIST_*-macros, while it is maintained by libev, it does not work exactly the same way as in libevent (consider it a private API)." 2238maintained by libev, it does not work exactly the same way as in libevent (consider
1811.IP "* Priorities are not currently supported. Initialising priorities will fail and all watchers will have the same priority, even though there is an ev_pri field." 4 2239it a private \s-1API\s0).
1812.IX Item "Priorities are not currently supported. Initialising priorities will fail and all watchers will have the same priority, even though there is an ev_pri field." 2240.IP "\(bu" 4
2241Priorities are not currently supported. Initialising priorities
2242will fail and all watchers will have the same priority, even though there
2243is an ev_pri field.
2244.IP "\(bu" 4
1813.IP "* Other members are not supported." 4 2245Other members are not supported.
1814.IX Item "Other members are not supported." 2246.IP "\(bu" 4
1815.IP "* The libev emulation is \fInot\fR \s-1ABI\s0 compatible to libevent, you need to use the libev header file and library." 4 2247The libev emulation is \fInot\fR \s-1ABI\s0 compatible to libevent, you need
1816.IX Item "The libev emulation is not ABI compatible to libevent, you need to use the libev header file and library." 2248to use the libev header file and library.
1817.PD
1818.SH "\*(C+ SUPPORT" 2249.SH "\*(C+ SUPPORT"
1819.IX Header " SUPPORT" 2250.IX Header " SUPPORT"
1820Libev comes with some simplistic wrapper classes for \*(C+ that mainly allow 2251Libev comes with some simplistic wrapper classes for \*(C+ that mainly allow
1821you to use some convinience methods to start/stop watchers and also change 2252you to use some convinience methods to start/stop watchers and also change
1822the callback model to a model using method callbacks on objects. 2253the callback model to a model using method callbacks on objects.
1825.PP 2256.PP
1826.Vb 1 2257.Vb 1
1827\& #include <ev++.h> 2258\& #include <ev++.h>
1828.Ve 2259.Ve
1829.PP 2260.PP
1830(it is not installed by default). This automatically includes \fIev.h\fR 2261This automatically includes \fIev.h\fR and puts all of its definitions (many
1831and puts all of its definitions (many of them macros) into the global 2262of them macros) into the global namespace. All \*(C+ specific things are
1832namespace. All \*(C+ specific things are put into the \f(CW\*(C`ev\*(C'\fR namespace. 2263put into the \f(CW\*(C`ev\*(C'\fR namespace. It should support all the same embedding
2264options as \fIev.h\fR, most notably \f(CW\*(C`EV_MULTIPLICITY\*(C'\fR.
1833.PP 2265.PP
1834It should support all the same embedding options as \fIev.h\fR, most notably 2266Care has been taken to keep the overhead low. The only data member the \*(C+
1835\&\f(CW\*(C`EV_MULTIPLICITY\*(C'\fR. 2267classes add (compared to plain C\-style watchers) is the event loop pointer
2268that the watcher is associated with (or no additional members at all if
2269you disable \f(CW\*(C`EV_MULTIPLICITY\*(C'\fR when embedding libev).
2270.PP
2271Currently, functions, and static and non-static member functions can be
2272used as callbacks. Other types should be easy to add as long as they only
2273need one additional pointer for context. If you need support for other
2274types of functors please contact the author (preferably after implementing
2275it).
1836.PP 2276.PP
1837Here is a list of things available in the \f(CW\*(C`ev\*(C'\fR namespace: 2277Here is a list of things available in the \f(CW\*(C`ev\*(C'\fR namespace:
1838.ie n .IP """ev::READ""\fR, \f(CW""ev::WRITE"" etc." 4 2278.ie n .IP """ev::READ""\fR, \f(CW""ev::WRITE"" etc." 4
1839.el .IP "\f(CWev::READ\fR, \f(CWev::WRITE\fR etc." 4 2279.el .IP "\f(CWev::READ\fR, \f(CWev::WRITE\fR etc." 4
1840.IX Item "ev::READ, ev::WRITE etc." 2280.IX Item "ev::READ, ev::WRITE etc."
1852which is called \f(CW\*(C`ev::sig\*(C'\fR to avoid clashes with the \f(CW\*(C`signal\*(C'\fR macro 2292which is called \f(CW\*(C`ev::sig\*(C'\fR to avoid clashes with the \f(CW\*(C`signal\*(C'\fR macro
1853defines by many implementations. 2293defines by many implementations.
1854.Sp 2294.Sp
1855All of those classes have these methods: 2295All of those classes have these methods:
1856.RS 4 2296.RS 4
1857.IP "ev::TYPE::TYPE (object *, object::method *)" 4 2297.IP "ev::TYPE::TYPE ()" 4
1858.IX Item "ev::TYPE::TYPE (object *, object::method *)" 2298.IX Item "ev::TYPE::TYPE ()"
1859.PD 0 2299.PD 0
1860.IP "ev::TYPE::TYPE (object *, object::method *, struct ev_loop *)" 4 2300.IP "ev::TYPE::TYPE (struct ev_loop *)" 4
1861.IX Item "ev::TYPE::TYPE (object *, object::method *, struct ev_loop *)" 2301.IX Item "ev::TYPE::TYPE (struct ev_loop *)"
1862.IP "ev::TYPE::~TYPE" 4 2302.IP "ev::TYPE::~TYPE" 4
1863.IX Item "ev::TYPE::~TYPE" 2303.IX Item "ev::TYPE::~TYPE"
1864.PD 2304.PD
1865The constructor takes a pointer to an object and a method pointer to 2305The constructor (optionally) takes an event loop to associate the watcher
1866the event handler callback to call in this class. The constructor calls 2306with. If it is omitted, it will use \f(CW\*(C`EV_DEFAULT\*(C'\fR.
1867\&\f(CW\*(C`ev_init\*(C'\fR for you, which means you have to call the \f(CW\*(C`set\*(C'\fR method 2307.Sp
1868before starting it. If you do not specify a loop then the constructor 2308The constructor calls \f(CW\*(C`ev_init\*(C'\fR for you, which means you have to call the
1869automatically associates the default loop with this watcher. 2309\&\f(CW\*(C`set\*(C'\fR method before starting it.
2310.Sp
2311It will not set a callback, however: You have to call the templated \f(CW\*(C`set\*(C'\fR
2312method to set a callback before you can start the watcher.
2313.Sp
2314(The reason why you have to use a method is a limitation in \*(C+ which does
2315not allow explicit template arguments for constructors).
1870.Sp 2316.Sp
1871The destructor automatically stops the watcher if it is active. 2317The destructor automatically stops the watcher if it is active.
2318.IP "w\->set<class, &class::method> (object *)" 4
2319.IX Item "w->set<class, &class::method> (object *)"
2320This method sets the callback method to call. The method has to have a
2321signature of \f(CW\*(C`void (*)(ev_TYPE &, int)\*(C'\fR, it receives the watcher as
2322first argument and the \f(CW\*(C`revents\*(C'\fR as second. The object must be given as
2323parameter and is stored in the \f(CW\*(C`data\*(C'\fR member of the watcher.
2324.Sp
2325This method synthesizes efficient thunking code to call your method from
2326the C callback that libev requires. If your compiler can inline your
2327callback (i.e. it is visible to it at the place of the \f(CW\*(C`set\*(C'\fR call and
2328your compiler is good :), then the method will be fully inlined into the
2329thunking function, making it as fast as a direct C callback.
2330.Sp
2331Example: simple class declaration and watcher initialisation
2332.Sp
2333.Vb 4
2334\& struct myclass
2335\& {
2336\& void io_cb (ev::io &w, int revents) { }
2337\& }
2338\&
2339\& myclass obj;
2340\& ev::io iow;
2341\& iow.set <myclass, &myclass::io_cb> (&obj);
2342.Ve
2343.IP "w\->set<function> (void *data = 0)" 4
2344.IX Item "w->set<function> (void *data = 0)"
2345Also sets a callback, but uses a static method or plain function as
2346callback. The optional \f(CW\*(C`data\*(C'\fR argument will be stored in the watcher's
2347\&\f(CW\*(C`data\*(C'\fR member and is free for you to use.
2348.Sp
2349The prototype of the \f(CW\*(C`function\*(C'\fR must be \f(CW\*(C`void (*)(ev::TYPE &w, int)\*(C'\fR.
2350.Sp
2351See the method\-\f(CW\*(C`set\*(C'\fR above for more details.
2352.Sp
2353Example:
2354.Sp
2355.Vb 2
2356\& static void io_cb (ev::io &w, int revents) { }
2357\& iow.set <io_cb> ();
2358.Ve
1872.IP "w\->set (struct ev_loop *)" 4 2359.IP "w\->set (struct ev_loop *)" 4
1873.IX Item "w->set (struct ev_loop *)" 2360.IX Item "w->set (struct ev_loop *)"
1874Associates a different \f(CW\*(C`struct ev_loop\*(C'\fR with this watcher. You can only 2361Associates a different \f(CW\*(C`struct ev_loop\*(C'\fR with this watcher. You can only
1875do this when the watcher is inactive (and not pending either). 2362do this when the watcher is inactive (and not pending either).
1876.IP "w\->set ([args])" 4 2363.IP "w\->set ([args])" 4
1877.IX Item "w->set ([args])" 2364.IX Item "w->set ([args])"
1878Basically the same as \f(CW\*(C`ev_TYPE_set\*(C'\fR, with the same args. Must be 2365Basically the same as \f(CW\*(C`ev_TYPE_set\*(C'\fR, with the same args. Must be
1879called at least once. Unlike the C counterpart, an active watcher gets 2366called at least once. Unlike the C counterpart, an active watcher gets
1880automatically stopped and restarted. 2367automatically stopped and restarted when reconfiguring it with this
2368method.
1881.IP "w\->start ()" 4 2369.IP "w\->start ()" 4
1882.IX Item "w->start ()" 2370.IX Item "w->start ()"
1883Starts the watcher. Note that there is no \f(CW\*(C`loop\*(C'\fR argument as the 2371Starts the watcher. Note that there is no \f(CW\*(C`loop\*(C'\fR argument, as the
1884constructor already takes the loop. 2372constructor already stores the event loop.
1885.IP "w\->stop ()" 4 2373.IP "w\->stop ()" 4
1886.IX Item "w->stop ()" 2374.IX Item "w->stop ()"
1887Stops the watcher if it is active. Again, no \f(CW\*(C`loop\*(C'\fR argument. 2375Stops the watcher if it is active. Again, no \f(CW\*(C`loop\*(C'\fR argument.
1888.ie n .IP "w\->again () ""ev::timer""\fR, \f(CW""ev::periodic"" only" 4 2376.ie n .IP "w\->again () (""ev::timer""\fR, \f(CW""ev::periodic"" only)" 4
1889.el .IP "w\->again () \f(CWev::timer\fR, \f(CWev::periodic\fR only" 4 2377.el .IP "w\->again () (\f(CWev::timer\fR, \f(CWev::periodic\fR only)" 4
1890.IX Item "w->again () ev::timer, ev::periodic only" 2378.IX Item "w->again () (ev::timer, ev::periodic only)"
1891For \f(CW\*(C`ev::timer\*(C'\fR and \f(CW\*(C`ev::periodic\*(C'\fR, this invokes the corresponding 2379For \f(CW\*(C`ev::timer\*(C'\fR and \f(CW\*(C`ev::periodic\*(C'\fR, this invokes the corresponding
1892\&\f(CW\*(C`ev_TYPE_again\*(C'\fR function. 2380\&\f(CW\*(C`ev_TYPE_again\*(C'\fR function.
1893.ie n .IP "w\->sweep () ""ev::embed"" only" 4 2381.ie n .IP "w\->sweep () (""ev::embed"" only)" 4
1894.el .IP "w\->sweep () \f(CWev::embed\fR only" 4 2382.el .IP "w\->sweep () (\f(CWev::embed\fR only)" 4
1895.IX Item "w->sweep () ev::embed only" 2383.IX Item "w->sweep () (ev::embed only)"
1896Invokes \f(CW\*(C`ev_embed_sweep\*(C'\fR. 2384Invokes \f(CW\*(C`ev_embed_sweep\*(C'\fR.
1897.ie n .IP "w\->update () ""ev::stat"" only" 4 2385.ie n .IP "w\->update () (""ev::stat"" only)" 4
1898.el .IP "w\->update () \f(CWev::stat\fR only" 4 2386.el .IP "w\->update () (\f(CWev::stat\fR only)" 4
1899.IX Item "w->update () ev::stat only" 2387.IX Item "w->update () (ev::stat only)"
1900Invokes \f(CW\*(C`ev_stat_stat\*(C'\fR. 2388Invokes \f(CW\*(C`ev_stat_stat\*(C'\fR.
1901.RE 2389.RE
1902.RS 4 2390.RS 4
1903.RE 2391.RE
1904.PP 2392.PP
1906the constructor. 2394the constructor.
1907.PP 2395.PP
1908.Vb 4 2396.Vb 4
1909\& class myclass 2397\& class myclass
1910\& { 2398\& {
1911\& ev_io io; void io_cb (ev::io &w, int revents); 2399\& ev::io io; void io_cb (ev::io &w, int revents);
1912\& ev_idle idle void idle_cb (ev::idle &w, int revents); 2400\& ev:idle idle void idle_cb (ev::idle &w, int revents);
1913.Ve 2401\&
1914.PP
1915.Vb 2
1916\& myclass (); 2402\& myclass (int fd)
1917\& }
1918.Ve
1919.PP
1920.Vb 6
1921\& myclass::myclass (int fd)
1922\& : io (this, &myclass::io_cb),
1923\& idle (this, &myclass::idle_cb)
1924\& { 2403\& {
2404\& io .set <myclass, &myclass::io_cb > (this);
2405\& idle.set <myclass, &myclass::idle_cb> (this);
2406\&
1925\& io.start (fd, ev::READ); 2407\& io.start (fd, ev::READ);
2408\& }
1926\& } 2409\& };
1927.Ve 2410.Ve
1928.SH "MACRO MAGIC" 2411.SH "MACRO MAGIC"
1929.IX Header "MACRO MAGIC" 2412.IX Header "MACRO MAGIC"
1930Libev can be compiled with a variety of options, the most fundemantal is 2413Libev can be compiled with a variety of options, the most fundamantal
1931\&\f(CW\*(C`EV_MULTIPLICITY\*(C'\fR. This option determines wether (most) functions and 2414of which is \f(CW\*(C`EV_MULTIPLICITY\*(C'\fR. This option determines whether (most)
1932callbacks have an initial \f(CW\*(C`struct ev_loop *\*(C'\fR argument. 2415functions and callbacks have an initial \f(CW\*(C`struct ev_loop *\*(C'\fR argument.
1933.PP 2416.PP
1934To make it easier to write programs that cope with either variant, the 2417To make it easier to write programs that cope with either variant, the
1935following macros are defined: 2418following macros are defined:
1936.ie n .IP """EV_A""\fR, \f(CW""EV_A_""" 4 2419.ie n .IP """EV_A""\fR, \f(CW""EV_A_""" 4
1937.el .IP "\f(CWEV_A\fR, \f(CWEV_A_\fR" 4 2420.el .IP "\f(CWEV_A\fR, \f(CWEV_A_\fR" 4
1956\&\f(CW\*(C`EV_P_\*(C'\fR is used when other parameters are following. Example: 2439\&\f(CW\*(C`EV_P_\*(C'\fR is used when other parameters are following. Example:
1957.Sp 2440.Sp
1958.Vb 2 2441.Vb 2
1959\& // this is how ev_unref is being declared 2442\& // this is how ev_unref is being declared
1960\& static void ev_unref (EV_P); 2443\& static void ev_unref (EV_P);
1961.Ve 2444\&
1962.Sp
1963.Vb 2
1964\& // this is how you can declare your typical callback 2445\& // this is how you can declare your typical callback
1965\& static void cb (EV_P_ ev_timer *w, int revents) 2446\& static void cb (EV_P_ ev_timer *w, int revents)
1966.Ve 2447.Ve
1967.Sp 2448.Sp
1968It declares a parameter \f(CW\*(C`loop\*(C'\fR of type \f(CW\*(C`struct ev_loop *\*(C'\fR, quite 2449It declares a parameter \f(CW\*(C`loop\*(C'\fR of type \f(CW\*(C`struct ev_loop *\*(C'\fR, quite
1971.el .IP "\f(CWEV_DEFAULT\fR, \f(CWEV_DEFAULT_\fR" 4 2452.el .IP "\f(CWEV_DEFAULT\fR, \f(CWEV_DEFAULT_\fR" 4
1972.IX Item "EV_DEFAULT, EV_DEFAULT_" 2453.IX Item "EV_DEFAULT, EV_DEFAULT_"
1973Similar to the other two macros, this gives you the value of the default 2454Similar to the other two macros, this gives you the value of the default
1974loop, if multiple loops are supported (\*(L"ev loop default\*(R"). 2455loop, if multiple loops are supported (\*(L"ev loop default\*(R").
1975.PP 2456.PP
1976Example: Declare and initialise a check watcher, working regardless of 2457Example: Declare and initialise a check watcher, utilising the above
1977wether multiple loops are supported or not. 2458macros so it will work regardless of whether multiple loops are supported
2459or not.
1978.PP 2460.PP
1979.Vb 5 2461.Vb 5
1980\& static void 2462\& static void
1981\& check_cb (EV_P_ ev_timer *w, int revents) 2463\& check_cb (EV_P_ ev_timer *w, int revents)
1982\& { 2464\& {
1983\& ev_check_stop (EV_A_ w); 2465\& ev_check_stop (EV_A_ w);
1984\& } 2466\& }
1985.Ve 2467\&
1986.PP
1987.Vb 4
1988\& ev_check check; 2468\& ev_check check;
1989\& ev_check_init (&check, check_cb); 2469\& ev_check_init (&check, check_cb);
1990\& ev_check_start (EV_DEFAULT_ &check); 2470\& ev_check_start (EV_DEFAULT_ &check);
1991\& ev_loop (EV_DEFAULT_ 0); 2471\& ev_loop (EV_DEFAULT_ 0);
1992.Ve 2472.Ve
1993.SH "EMBEDDING" 2473.SH "EMBEDDING"
1994.IX Header "EMBEDDING" 2474.IX Header "EMBEDDING"
1995Libev can (and often is) directly embedded into host 2475Libev can (and often is) directly embedded into host
1996applications. Examples of applications that embed it include the Deliantra 2476applications. Examples of applications that embed it include the Deliantra
1997Game Server, the \s-1EV\s0 perl module, the \s-1GNU\s0 Virtual Private Ethernet (gvpe) 2477Game Server, the \s-1EV\s0 perl module, the \s-1GNU\s0 Virtual Private Ethernet (gvpe)
1998and rxvt\-unicode. 2478and rxvt-unicode.
1999.PP 2479.PP
2000The goal is to enable you to just copy the neecssary files into your 2480The goal is to enable you to just copy the necessary files into your
2001source directory without having to change even a single line in them, so 2481source directory without having to change even a single line in them, so
2002you can easily upgrade by simply copying (or having a checked-out copy of 2482you can easily upgrade by simply copying (or having a checked-out copy of
2003libev somewhere in your source tree). 2483libev somewhere in your source tree).
2004.Sh "\s-1FILESETS\s0" 2484.Sh "\s-1FILESETS\s0"
2005.IX Subsection "FILESETS" 2485.IX Subsection "FILESETS"
2038.Vb 4 2518.Vb 4
2039\& ev.h 2519\& ev.h
2040\& ev.c 2520\& ev.c
2041\& ev_vars.h 2521\& ev_vars.h
2042\& ev_wrap.h 2522\& ev_wrap.h
2043.Ve 2523\&
2044.PP
2045.Vb 1
2046\& ev_win32.c required on win32 platforms only 2524\& ev_win32.c required on win32 platforms only
2047.Ve 2525\&
2048.PP
2049.Vb 5
2050\& ev_select.c only when select backend is enabled (which is by default) 2526\& ev_select.c only when select backend is enabled (which is enabled by default)
2051\& ev_poll.c only when poll backend is enabled (disabled by default) 2527\& ev_poll.c only when poll backend is enabled (disabled by default)
2052\& ev_epoll.c only when the epoll backend is enabled (disabled by default) 2528\& ev_epoll.c only when the epoll backend is enabled (disabled by default)
2053\& ev_kqueue.c only when the kqueue backend is enabled (disabled by default) 2529\& ev_kqueue.c only when the kqueue backend is enabled (disabled by default)
2054\& ev_port.c only when the solaris port backend is enabled (disabled by default) 2530\& ev_port.c only when the solaris port backend is enabled (disabled by default)
2055.Ve 2531.Ve
2110.IX Item "EV_USE_MONOTONIC" 2586.IX Item "EV_USE_MONOTONIC"
2111If defined to be \f(CW1\fR, libev will try to detect the availability of the 2587If defined to be \f(CW1\fR, libev will try to detect the availability of the
2112monotonic clock option at both compiletime and runtime. Otherwise no use 2588monotonic clock option at both compiletime and runtime. Otherwise no use
2113of the monotonic clock option will be attempted. If you enable this, you 2589of the monotonic clock option will be attempted. If you enable this, you
2114usually have to link against librt or something similar. Enabling it when 2590usually have to link against librt or something similar. Enabling it when
2115the functionality isn't available is safe, though, althoguh you have 2591the functionality isn't available is safe, though, although you have
2116to make sure you link against any libraries where the \f(CW\*(C`clock_gettime\*(C'\fR 2592to make sure you link against any libraries where the \f(CW\*(C`clock_gettime\*(C'\fR
2117function is hiding in (often \fI\-lrt\fR). 2593function is hiding in (often \fI\-lrt\fR).
2118.IP "\s-1EV_USE_REALTIME\s0" 4 2594.IP "\s-1EV_USE_REALTIME\s0" 4
2119.IX Item "EV_USE_REALTIME" 2595.IX Item "EV_USE_REALTIME"
2120If defined to be \f(CW1\fR, libev will try to detect the availability of the 2596If defined to be \f(CW1\fR, libev will try to detect the availability of the
2121realtime clock option at compiletime (and assume its availability at 2597realtime clock option at compiletime (and assume its availability at
2122runtime if successful). Otherwise no use of the realtime clock option will 2598runtime if successful). Otherwise no use of the realtime clock option will
2123be attempted. This effectively replaces \f(CW\*(C`gettimeofday\*(C'\fR by \f(CW\*(C`clock_get 2599be attempted. This effectively replaces \f(CW\*(C`gettimeofday\*(C'\fR by \f(CW\*(C`clock_get
2124(CLOCK_REALTIME, ...)\*(C'\fR and will not normally affect correctness. See tzhe note about libraries 2600(CLOCK_REALTIME, ...)\*(C'\fR and will not normally affect correctness. See the
2125in the description of \f(CW\*(C`EV_USE_MONOTONIC\*(C'\fR, though. 2601note about libraries in the description of \f(CW\*(C`EV_USE_MONOTONIC\*(C'\fR, though.
2602.IP "\s-1EV_USE_NANOSLEEP\s0" 4
2603.IX Item "EV_USE_NANOSLEEP"
2604If defined to be \f(CW1\fR, libev will assume that \f(CW\*(C`nanosleep ()\*(C'\fR is available
2605and will use it for delays. Otherwise it will use \f(CW\*(C`select ()\*(C'\fR.
2126.IP "\s-1EV_USE_SELECT\s0" 4 2606.IP "\s-1EV_USE_SELECT\s0" 4
2127.IX Item "EV_USE_SELECT" 2607.IX Item "EV_USE_SELECT"
2128If undefined or defined to be \f(CW1\fR, libev will compile in support for the 2608If undefined or defined to be \f(CW1\fR, libev will compile in support for the
2129\&\f(CW\*(C`select\*(C'\fR(2) backend. No attempt at autodetection will be done: if no 2609\&\f(CW\*(C`select\*(C'\fR(2) backend. No attempt at autodetection will be done: if no
2130other method takes over, select will be it. Otherwise the select backend 2610other method takes over, select will be it. Otherwise the select backend
2145wants osf handles on win32 (this is the case when the select to 2625wants osf handles on win32 (this is the case when the select to
2146be used is the winsock select). This means that it will call 2626be used is the winsock select). This means that it will call
2147\&\f(CW\*(C`_get_osfhandle\*(C'\fR on the fd to convert it to an \s-1OS\s0 handle. Otherwise, 2627\&\f(CW\*(C`_get_osfhandle\*(C'\fR on the fd to convert it to an \s-1OS\s0 handle. Otherwise,
2148it is assumed that all these functions actually work on fds, even 2628it is assumed that all these functions actually work on fds, even
2149on win32. Should not be defined on non\-win32 platforms. 2629on win32. Should not be defined on non\-win32 platforms.
2630.IP "\s-1EV_FD_TO_WIN32_HANDLE\s0" 4
2631.IX Item "EV_FD_TO_WIN32_HANDLE"
2632If \f(CW\*(C`EV_SELECT_IS_WINSOCKET\*(C'\fR is enabled, then libev needs a way to map
2633file descriptors to socket handles. When not defining this symbol (the
2634default), then libev will call \f(CW\*(C`_get_osfhandle\*(C'\fR, which is usually
2635correct. In some cases, programs use their own file descriptor management,
2636in which case they can provide this function to map fds to socket handles.
2150.IP "\s-1EV_USE_POLL\s0" 4 2637.IP "\s-1EV_USE_POLL\s0" 4
2151.IX Item "EV_USE_POLL" 2638.IX Item "EV_USE_POLL"
2152If defined to be \f(CW1\fR, libev will compile in support for the \f(CW\*(C`poll\*(C'\fR(2) 2639If defined to be \f(CW1\fR, libev will compile in support for the \f(CW\*(C`poll\*(C'\fR(2)
2153backend. Otherwise it will be enabled on non\-win32 platforms. It 2640backend. Otherwise it will be enabled on non\-win32 platforms. It
2154takes precedence over select. 2641takes precedence over select.
2184interface to speed up \f(CW\*(C`ev_stat\*(C'\fR watchers. Its actual availability will 2671interface to speed up \f(CW\*(C`ev_stat\*(C'\fR watchers. Its actual availability will
2185be detected at runtime. 2672be detected at runtime.
2186.IP "\s-1EV_H\s0" 4 2673.IP "\s-1EV_H\s0" 4
2187.IX Item "EV_H" 2674.IX Item "EV_H"
2188The name of the \fIev.h\fR header file used to include it. The default if 2675The name of the \fIev.h\fR header file used to include it. The default if
2189undefined is \f(CW\*(C`<ev.h>\*(C'\fR in \fIevent.h\fR and \f(CW"ev.h"\fR in \fIev.c\fR. This 2676undefined is \f(CW"ev.h"\fR in \fIevent.h\fR, \fIev.c\fR and \fIev++.h\fR. This can be
2190can be used to virtually rename the \fIev.h\fR header file in case of conflicts. 2677used to virtually rename the \fIev.h\fR header file in case of conflicts.
2191.IP "\s-1EV_CONFIG_H\s0" 4 2678.IP "\s-1EV_CONFIG_H\s0" 4
2192.IX Item "EV_CONFIG_H" 2679.IX Item "EV_CONFIG_H"
2193If \f(CW\*(C`EV_STANDALONE\*(C'\fR isn't \f(CW1\fR, this variable can be used to override 2680If \f(CW\*(C`EV_STANDALONE\*(C'\fR isn't \f(CW1\fR, this variable can be used to override
2194\&\fIev.c\fR's idea of where to find the \fIconfig.h\fR file, similarly to 2681\&\fIev.c\fR's idea of where to find the \fIconfig.h\fR file, similarly to
2195\&\f(CW\*(C`EV_H\*(C'\fR, above. 2682\&\f(CW\*(C`EV_H\*(C'\fR, above.
2196.IP "\s-1EV_EVENT_H\s0" 4 2683.IP "\s-1EV_EVENT_H\s0" 4
2197.IX Item "EV_EVENT_H" 2684.IX Item "EV_EVENT_H"
2198Similarly to \f(CW\*(C`EV_H\*(C'\fR, this macro can be used to override \fIevent.c\fR's idea 2685Similarly to \f(CW\*(C`EV_H\*(C'\fR, this macro can be used to override \fIevent.c\fR's idea
2199of how the \fIevent.h\fR header can be found. 2686of how the \fIevent.h\fR header can be found, the default is \f(CW"event.h"\fR.
2200.IP "\s-1EV_PROTOTYPES\s0" 4 2687.IP "\s-1EV_PROTOTYPES\s0" 4
2201.IX Item "EV_PROTOTYPES" 2688.IX Item "EV_PROTOTYPES"
2202If defined to be \f(CW0\fR, then \fIev.h\fR will not define any function 2689If defined to be \f(CW0\fR, then \fIev.h\fR will not define any function
2203prototypes, but still define all the structs and other symbols. This is 2690prototypes, but still define all the structs and other symbols. This is
2204occasionally useful if you want to provide your own wrapper functions 2691occasionally useful if you want to provide your own wrapper functions
2208If undefined or defined to \f(CW1\fR, then all event-loop-specific functions 2695If undefined or defined to \f(CW1\fR, then all event-loop-specific functions
2209will have the \f(CW\*(C`struct ev_loop *\*(C'\fR as first argument, and you can create 2696will have the \f(CW\*(C`struct ev_loop *\*(C'\fR as first argument, and you can create
2210additional independent event loops. Otherwise there will be no support 2697additional independent event loops. Otherwise there will be no support
2211for multiple event loops and there is no first event loop pointer 2698for multiple event loops and there is no first event loop pointer
2212argument. Instead, all functions act on the single default loop. 2699argument. Instead, all functions act on the single default loop.
2700.IP "\s-1EV_MINPRI\s0" 4
2701.IX Item "EV_MINPRI"
2702.PD 0
2703.IP "\s-1EV_MAXPRI\s0" 4
2704.IX Item "EV_MAXPRI"
2705.PD
2706The range of allowed priorities. \f(CW\*(C`EV_MINPRI\*(C'\fR must be smaller or equal to
2707\&\f(CW\*(C`EV_MAXPRI\*(C'\fR, but otherwise there are no non-obvious limitations. You can
2708provide for more priorities by overriding those symbols (usually defined
2709to be \f(CW\*(C`\-2\*(C'\fR and \f(CW2\fR, respectively).
2710.Sp
2711When doing priority-based operations, libev usually has to linearly search
2712all the priorities, so having many of them (hundreds) uses a lot of space
2713and time, so using the defaults of five priorities (\-2 .. +2) is usually
2714fine.
2715.Sp
2716If your embedding app does not need any priorities, defining these both to
2717\&\f(CW0\fR will save some memory and cpu.
2213.IP "\s-1EV_PERIODIC_ENABLE\s0" 4 2718.IP "\s-1EV_PERIODIC_ENABLE\s0" 4
2214.IX Item "EV_PERIODIC_ENABLE" 2719.IX Item "EV_PERIODIC_ENABLE"
2215If undefined or defined to be \f(CW1\fR, then periodic timers are supported. If 2720If undefined or defined to be \f(CW1\fR, then periodic timers are supported. If
2721defined to be \f(CW0\fR, then they are not. Disabling them saves a few kB of
2722code.
2723.IP "\s-1EV_IDLE_ENABLE\s0" 4
2724.IX Item "EV_IDLE_ENABLE"
2725If undefined or defined to be \f(CW1\fR, then idle watchers are supported. If
2216defined to be \f(CW0\fR, then they are not. Disabling them saves a few kB of 2726defined to be \f(CW0\fR, then they are not. Disabling them saves a few kB of
2217code. 2727code.
2218.IP "\s-1EV_EMBED_ENABLE\s0" 4 2728.IP "\s-1EV_EMBED_ENABLE\s0" 4
2219.IX Item "EV_EMBED_ENABLE" 2729.IX Item "EV_EMBED_ENABLE"
2220If undefined or defined to be \f(CW1\fR, then embed watchers are supported. If 2730If undefined or defined to be \f(CW1\fR, then embed watchers are supported. If
2238pid. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR), usually more 2748pid. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR), usually more
2239than enough. If you need to manage thousands of children you might want to 2749than enough. If you need to manage thousands of children you might want to
2240increase this value (\fImust\fR be a power of two). 2750increase this value (\fImust\fR be a power of two).
2241.IP "\s-1EV_INOTIFY_HASHSIZE\s0" 4 2751.IP "\s-1EV_INOTIFY_HASHSIZE\s0" 4
2242.IX Item "EV_INOTIFY_HASHSIZE" 2752.IX Item "EV_INOTIFY_HASHSIZE"
2243\&\f(CW\*(C`ev_staz\*(C'\fR watchers use a small hash table to distribute workload by 2753\&\f(CW\*(C`ev_stat\*(C'\fR watchers use a small hash table to distribute workload by
2244inotify watch id. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR), 2754inotify watch id. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR),
2245usually more than enough. If you need to manage thousands of \f(CW\*(C`ev_stat\*(C'\fR 2755usually more than enough. If you need to manage thousands of \f(CW\*(C`ev_stat\*(C'\fR
2246watchers you might want to increase this value (\fImust\fR be a power of 2756watchers you might want to increase this value (\fImust\fR be a power of
2247two). 2757two).
2248.IP "\s-1EV_COMMON\s0" 4 2758.IP "\s-1EV_COMMON\s0" 4
2267.IP "ev_set_cb (ev, cb)" 4 2777.IP "ev_set_cb (ev, cb)" 4
2268.IX Item "ev_set_cb (ev, cb)" 2778.IX Item "ev_set_cb (ev, cb)"
2269.PD 2779.PD
2270Can be used to change the callback member declaration in each watcher, 2780Can be used to change the callback member declaration in each watcher,
2271and the way callbacks are invoked and set. Must expand to a struct member 2781and the way callbacks are invoked and set. Must expand to a struct member
2272definition and a statement, respectively. See the \fIev.v\fR header file for 2782definition and a statement, respectively. See the \fIev.h\fR header file for
2273their default definitions. One possible use for overriding these is to 2783their default definitions. One possible use for overriding these is to
2274avoid the \f(CW\*(C`struct ev_loop *\*(C'\fR as first argument in all cases, or to use 2784avoid the \f(CW\*(C`struct ev_loop *\*(C'\fR as first argument in all cases, or to use
2275method calls instead of plain function calls in \*(C+. 2785method calls instead of plain function calls in \*(C+.
2786.Sh "\s-1EXPORTED\s0 \s-1API\s0 \s-1SYMBOLS\s0"
2787.IX Subsection "EXPORTED API SYMBOLS"
2788If you need to re-export the \s-1API\s0 (e.g. via a dll) and you need a list of
2789exported symbols, you can use the provided \fISymbol.*\fR files which list
2790all public symbols, one per line:
2791.PP
2792.Vb 2
2793\& Symbols.ev for libev proper
2794\& Symbols.event for the libevent emulation
2795.Ve
2796.PP
2797This can also be used to rename all public symbols to avoid clashes with
2798multiple versions of libev linked together (which is obviously bad in
2799itself, but sometimes it is inconvinient to avoid this).
2800.PP
2801A sed command like this will create wrapper \f(CW\*(C`#define\*(C'\fR's that you need to
2802include before including \fIev.h\fR:
2803.PP
2804.Vb 1
2805\& <Symbols.ev sed \-e "s/.*/#define & myprefix_&/" >wrap.h
2806.Ve
2807.PP
2808This would create a file \fIwrap.h\fR which essentially looks like this:
2809.PP
2810.Vb 4
2811\& #define ev_backend myprefix_ev_backend
2812\& #define ev_check_start myprefix_ev_check_start
2813\& #define ev_check_stop myprefix_ev_check_stop
2814\& ...
2815.Ve
2276.Sh "\s-1EXAMPLES\s0" 2816.Sh "\s-1EXAMPLES\s0"
2277.IX Subsection "EXAMPLES" 2817.IX Subsection "EXAMPLES"
2278For a real-world example of a program the includes libev 2818For a real-world example of a program the includes libev
2279verbatim, you can have a look at the \s-1EV\s0 perl module 2819verbatim, you can have a look at the \s-1EV\s0 perl module
2280(<http://software.schmorp.de/pkg/EV.html>). It has the libev files in 2820(<http://software.schmorp.de/pkg/EV.html>). It has the libev files in
2281the \fIlibev/\fR subdirectory and includes them in the \fI\s-1EV/EVAPI\s0.h\fR (public 2821the \fIlibev/\fR subdirectory and includes them in the \fI\s-1EV/EVAPI\s0.h\fR (public
2282interface) and \fI\s-1EV\s0.xs\fR (implementation) files. Only the \fI\s-1EV\s0.xs\fR file 2822interface) and \fI\s-1EV\s0.xs\fR (implementation) files. Only the \fI\s-1EV\s0.xs\fR file
2283will be compiled. It is pretty complex because it provides its own header 2823will be compiled. It is pretty complex because it provides its own header
2284file. 2824file.
2285.Sp 2825.PP
2286The usage in rxvt-unicode is simpler. It has a \fIev_cpp.h\fR header file 2826The usage in rxvt-unicode is simpler. It has a \fIev_cpp.h\fR header file
2287that everybody includes and which overrides some autoconf choices: 2827that everybody includes and which overrides some configure choices:
2288.Sp 2828.PP
2289.Vb 4 2829.Vb 9
2830\& #define EV_MINIMAL 1
2290\& #define EV_USE_POLL 0 2831\& #define EV_USE_POLL 0
2291\& #define EV_MULTIPLICITY 0 2832\& #define EV_MULTIPLICITY 0
2292\& #define EV_PERIODICS 0 2833\& #define EV_PERIODIC_ENABLE 0
2834\& #define EV_STAT_ENABLE 0
2835\& #define EV_FORK_ENABLE 0
2293\& #define EV_CONFIG_H <config.h> 2836\& #define EV_CONFIG_H <config.h>
2294.Ve 2837\& #define EV_MINPRI 0
2295.Sp 2838\& #define EV_MAXPRI 0
2296.Vb 1 2839\&
2297\& #include "ev++.h" 2840\& #include "ev++.h"
2298.Ve 2841.Ve
2299.Sp 2842.PP
2300And a \fIev_cpp.C\fR implementation file that contains libev proper and is compiled: 2843And a \fIev_cpp.C\fR implementation file that contains libev proper and is compiled:
2301.Sp 2844.PP
2302.Vb 2 2845.Vb 2
2303\& #include "ev_cpp.h" 2846\& #include "ev_cpp.h"
2304\& #include "ev.c" 2847\& #include "ev.c"
2305.Ve 2848.Ve
2306.SH "COMPLEXITIES" 2849.SH "COMPLEXITIES"
2307.IX Header "COMPLEXITIES" 2850.IX Header "COMPLEXITIES"
2308In this section the complexities of (many of) the algorithms used inside 2851In this section the complexities of (many of) the algorithms used inside
2309libev will be explained. For complexity discussions about backends see the 2852libev will be explained. For complexity discussions about backends see the
2310documentation for \f(CW\*(C`ev_default_init\*(C'\fR. 2853documentation for \f(CW\*(C`ev_default_init\*(C'\fR.
2311.RS 4 2854.PP
2855All of the following are about amortised time: If an array needs to be
2856extended, libev needs to realloc and move the whole array, but this
2857happens asymptotically never with higher number of elements, so O(1) might
2858mean it might do a lengthy realloc operation in rare cases, but on average
2859it is much faster and asymptotically approaches constant time.
2312.IP "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)" 4 2860.IP "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)" 4
2313.IX Item "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)" 2861.IX Item "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)"
2314.PD 0 2862This means that, when you have a watcher that triggers in one hour and
2863there are 100 watchers that would trigger before that then inserting will
2864have to skip roughly seven (\f(CW\*(C`ld 100\*(C'\fR) of these watchers.
2315.IP "Changing timer/periodic watchers (by autorepeat, again): O(log skipped_other_timers)" 4 2865.IP "Changing timer/periodic watchers (by autorepeat or calling again): O(log skipped_other_timers)" 4
2316.IX Item "Changing timer/periodic watchers (by autorepeat, again): O(log skipped_other_timers)" 2866.IX Item "Changing timer/periodic watchers (by autorepeat or calling again): O(log skipped_other_timers)"
2867That means that changing a timer costs less than removing/adding them
2868as only the relative motion in the event queue has to be paid for.
2317.IP "Starting io/check/prepare/idle/signal/child watchers: O(1)" 4 2869.IP "Starting io/check/prepare/idle/signal/child watchers: O(1)" 4
2318.IX Item "Starting io/check/prepare/idle/signal/child watchers: O(1)" 2870.IX Item "Starting io/check/prepare/idle/signal/child watchers: O(1)"
2871These just add the watcher into an array or at the head of a list.
2319.IP "Stopping check/prepare/idle watchers: O(1)" 4 2872.IP "Stopping check/prepare/idle watchers: O(1)" 4
2320.IX Item "Stopping check/prepare/idle watchers: O(1)" 2873.IX Item "Stopping check/prepare/idle watchers: O(1)"
2874.PD 0
2321.IP "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % \s-1EV_PID_HASHSIZE\s0))" 4 2875.IP "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % \s-1EV_PID_HASHSIZE\s0))" 4
2322.IX Item "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % EV_PID_HASHSIZE))" 2876.IX Item "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % EV_PID_HASHSIZE))"
2877.PD
2878These watchers are stored in lists then need to be walked to find the
2879correct watcher to remove. The lists are usually short (you don't usually
2880have many watchers waiting for the same fd or signal).
2323.IP "Finding the next timer per loop iteration: O(1)" 4 2881.IP "Finding the next timer in each loop iteration: O(1)" 4
2324.IX Item "Finding the next timer per loop iteration: O(1)" 2882.IX Item "Finding the next timer in each loop iteration: O(1)"
2883By virtue of using a binary heap, the next timer is always found at the
2884beginning of the storage array.
2325.IP "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)" 4 2885.IP "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)" 4
2326.IX Item "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)" 2886.IX Item "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)"
2327.IP "Activating one watcher: O(1)" 4 2887A change means an I/O watcher gets started or stopped, which requires
2328.IX Item "Activating one watcher: O(1)" 2888libev to recalculate its status (and possibly tell the kernel, depending
2329.RE 2889on backend and wether \f(CW\*(C`ev_io_set\*(C'\fR was used).
2330.RS 4 2890.IP "Activating one watcher (putting it into the pending state): O(1)" 4
2891.IX Item "Activating one watcher (putting it into the pending state): O(1)"
2892.PD 0
2893.IP "Priority handling: O(number_of_priorities)" 4
2894.IX Item "Priority handling: O(number_of_priorities)"
2331.PD 2895.PD
2896Priorities are implemented by allocating some space for each
2897priority. When doing priority-based operations, libev usually has to
2898linearly search all the priorities, but starting/stopping and activating
2899watchers becomes O(1) w.r.t. prioritiy handling.
2900.SH "Win32 platform limitations and workarounds"
2901.IX Header "Win32 platform limitations and workarounds"
2902Win32 doesn't support any of the standards (e.g. \s-1POSIX\s0) that libev
2903requires, and its I/O model is fundamentally incompatible with the \s-1POSIX\s0
2904model. Libev still offers limited functionality on this platform in
2905the form of the \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR backend, and only supports socket
2906descriptors. This only applies when using Win32 natively, not when using
2907e.g. cygwin.
2908.PP
2909There is no supported compilation method available on windows except
2910embedding it into other applications.
2911.PP
2912Due to the many, low, and arbitrary limits on the win32 platform and the
2913abysmal performance of winsockets, using a large number of sockets is not
2914recommended (and not reasonable). If your program needs to use more than
2915a hundred or so sockets, then likely it needs to use a totally different
2916implementation for windows, as libev offers the \s-1POSIX\s0 model, which cannot
2917be implemented efficiently on windows (microsoft monopoly games).
2918.IP "The winsocket select function" 4
2919.IX Item "The winsocket select function"
2920The winsocket \f(CW\*(C`select\*(C'\fR function doesn't follow \s-1POSIX\s0 in that it requires
2921socket \fIhandles\fR and not socket \fIfile descriptors\fR. This makes select
2922very inefficient, and also requires a mapping from file descriptors
2923to socket handles. See the discussion of the \f(CW\*(C`EV_SELECT_USE_FD_SET\*(C'\fR,
2924\&\f(CW\*(C`EV_SELECT_IS_WINSOCKET\*(C'\fR and \f(CW\*(C`EV_FD_TO_WIN32_HANDLE\*(C'\fR preprocessor
2925symbols for more info.
2926.Sp
2927The configuration for a \*(L"naked\*(R" win32 using the microsoft runtime
2928libraries and raw winsocket select is:
2929.Sp
2930.Vb 2
2931\& #define EV_USE_SELECT 1
2932\& #define EV_SELECT_IS_WINSOCKET 1 /* forces EV_SELECT_USE_FD_SET, too */
2933.Ve
2934.Sp
2935Note that winsockets handling of fd sets is O(n), so you can easily get a
2936complexity in the O(nA\*^X) range when using win32.
2937.IP "Limited number of file descriptors" 4
2938.IX Item "Limited number of file descriptors"
2939Windows has numerous arbitrary (and low) limits on things. Early versions
2940of winsocket's select only supported waiting for a max. of \f(CW64\fR handles
2941(probably owning to the fact that all windows kernels can only wait for
2942\&\f(CW64\fR things at the same time internally; microsoft recommends spawning a
2943chain of threads and wait for 63 handles and the previous thread in each).
2944.Sp
2945Newer versions support more handles, but you need to define \f(CW\*(C`FD_SETSIZE\*(C'\fR
2946to some high number (e.g. \f(CW2048\fR) before compiling the winsocket select
2947call (which might be in libev or elsewhere, for example, perl does its own
2948select emulation on windows).
2949.Sp
2950Another limit is the number of file descriptors in the microsoft runtime
2951libraries, which by default is \f(CW64\fR (there must be a hidden \fI64\fR fetish
2952or something like this inside microsoft). You can increase this by calling
2953\&\f(CW\*(C`_setmaxstdio\*(C'\fR, which can increase this limit to \f(CW2048\fR (another
2954arbitrary limit), but is broken in many versions of the microsoft runtime
2955libraries.
2956.Sp
2957This might get you to about \f(CW512\fR or \f(CW2048\fR sockets (depending on
2958windows version and/or the phase of the moon). To get more, you need to
2959wrap all I/O functions and provide your own fd management, but the cost of
2960calling select (O(nA\*^X)) will likely make this unworkable.
2332.SH "AUTHOR" 2961.SH "AUTHOR"
2333.IX Header "AUTHOR" 2962.IX Header "AUTHOR"
2334Marc Lehmann <libev@schmorp.de>. 2963Marc Lehmann <libev@schmorp.de>.
2964.SH "POD ERRORS"
2965.IX Header "POD ERRORS"
2966Hey! \fBThe above document had some coding errors, which are explained below:\fR
2967.IP "Around line 2686:" 4
2968.IX Item "Around line 2686:"
2969You forgot a '=back' before '=head2'

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines