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

Comparing libev/ev.pod (file contents):
Revision 1.288 by root, Tue Mar 16 00:54:52 2010 UTC vs.
Revision 1.297 by root, Tue Jun 29 11:49:02 2010 UTC

124this argument. 124this argument.
125 125
126=head2 TIME REPRESENTATION 126=head2 TIME REPRESENTATION
127 127
128Libev represents time as a single floating point number, representing 128Libev represents time as a single floating point number, representing
129the (fractional) number of seconds since the (POSIX) epoch (somewhere 129the (fractional) number of seconds since the (POSIX) epoch (in practise
130near the beginning of 1970, details are complicated, don't ask). This 130somewhere near the beginning of 1970, details are complicated, don't
131type is called C<ev_tstamp>, which is what you should use too. It usually 131ask). This type is called C<ev_tstamp>, which is what you should use
132aliases to the C<double> type in C. When you need to do any calculations 132too. It usually aliases to the C<double> type in C. When you need to do
133on it, you should treat it as some floating point value. Unlike the name 133any calculations on it, you should treat it as some floating point value.
134
134component C<stamp> might indicate, it is also used for time differences 135Unlike the name component C<stamp> might indicate, it is also used for
135throughout libev. 136time differences (e.g. delays) throughout libev.
136 137
137=head1 ERROR HANDLING 138=head1 ERROR HANDLING
138 139
139Libev knows three classes of errors: operating system errors, usage errors 140Libev knows three classes of errors: operating system errors, usage errors
140and internal errors (bugs). 141and internal errors (bugs).
191as this indicates an incompatible change. Minor versions are usually 192as this indicates an incompatible change. Minor versions are usually
192compatible to older versions, so a larger minor version alone is usually 193compatible to older versions, so a larger minor version alone is usually
193not a problem. 194not a problem.
194 195
195Example: Make sure we haven't accidentally been linked against the wrong 196Example: Make sure we haven't accidentally been linked against the wrong
196version. 197version (note, however, that this will not detect ABI mismatches :).
197 198
198 assert (("libev version mismatch", 199 assert (("libev version mismatch",
199 ev_version_major () == EV_VERSION_MAJOR 200 ev_version_major () == EV_VERSION_MAJOR
200 && ev_version_minor () >= EV_VERSION_MINOR)); 201 && ev_version_minor () >= EV_VERSION_MINOR));
201 202
345useful to try out specific backends to test their performance, or to work 346useful to try out specific backends to test their performance, or to work
346around bugs. 347around bugs.
347 348
348=item C<EVFLAG_FORKCHECK> 349=item C<EVFLAG_FORKCHECK>
349 350
350Instead of calling C<ev_default_fork> or C<ev_loop_fork> manually after 351Instead of calling C<ev_loop_fork> manually after a fork, you can also
351a fork, you can also make libev check for a fork in each iteration by 352make libev check for a fork in each iteration by enabling this flag.
352enabling this flag.
353 353
354This works by calling C<getpid ()> on every iteration of the loop, 354This works by calling C<getpid ()> on every iteration of the loop,
355and thus this might slow down your event loop if you do a lot of loop 355and thus this might slow down your event loop if you do a lot of loop
356iterations and little real work, but is usually not noticeable (on my 356iterations and little real work, but is usually not noticeable (on my
357GNU/Linux system for example, C<getpid> is actually a simple 5-insn sequence 357GNU/Linux system for example, C<getpid> is actually a simple 5-insn sequence
567 ev_default_loop (ev_recommended_backends () | EVBACKEND_KQUEUE); 567 ev_default_loop (ev_recommended_backends () | EVBACKEND_KQUEUE);
568 568
569=item struct ev_loop *ev_loop_new (unsigned int flags) 569=item struct ev_loop *ev_loop_new (unsigned int flags)
570 570
571Similar to C<ev_default_loop>, but always creates a new event loop that is 571Similar to C<ev_default_loop>, but always creates a new event loop that is
572always distinct from the default loop. Unlike the default loop, it cannot 572always distinct from the default loop.
573handle signal and child watchers, and attempts to do so will be greeted by
574undefined behaviour (or a failed assertion if assertions are enabled).
575 573
576Note that this function I<is> thread-safe, and the recommended way to use 574Note that this function I<is> thread-safe, and one common way to use
577libev with threads is indeed to create one loop per thread, and using the 575libev with threads is indeed to create one loop per thread, and using the
578default loop in the "main" or "initial" thread. 576default loop in the "main" or "initial" thread.
579 577
580Example: Try to create a event loop that uses epoll and nothing else. 578Example: Try to create a event loop that uses epoll and nothing else.
581 579
583 if (!epoller) 581 if (!epoller)
584 fatal ("no epoll found here, maybe it hides under your chair"); 582 fatal ("no epoll found here, maybe it hides under your chair");
585 583
586=item ev_default_destroy () 584=item ev_default_destroy ()
587 585
588Destroys the default loop again (frees all memory and kernel state 586Destroys the default loop (frees all memory and kernel state etc.). None
589etc.). None of the active event watchers will be stopped in the normal 587of the active event watchers will be stopped in the normal sense, so
590sense, so e.g. C<ev_is_active> might still return true. It is your 588e.g. C<ev_is_active> might still return true. It is your responsibility to
591responsibility to either stop all watchers cleanly yourself I<before> 589either stop all watchers cleanly yourself I<before> calling this function,
592calling this function, or cope with the fact afterwards (which is usually 590or cope with the fact afterwards (which is usually the easiest thing, you
593the easiest thing, you can just ignore the watchers and/or C<free ()> them 591can just ignore the watchers and/or C<free ()> them for example).
594for example).
595 592
596Note that certain global state, such as signal state (and installed signal 593Note that certain global state, such as signal state (and installed signal
597handlers), will not be freed by this function, and related watchers (such 594handlers), will not be freed by this function, and related watchers (such
598as signal and child watchers) would need to be stopped manually. 595as signal and child watchers) would need to be stopped manually.
599 596
614name, you can call it anytime, but it makes most sense after forking, in 611name, you can call it anytime, but it makes most sense after forking, in
615the child process (or both child and parent, but that again makes little 612the child process (or both child and parent, but that again makes little
616sense). You I<must> call it in the child before using any of the libev 613sense). You I<must> call it in the child before using any of the libev
617functions, and it will only take effect at the next C<ev_loop> iteration. 614functions, and it will only take effect at the next C<ev_loop> iteration.
618 615
616Again, you I<have> to call it on I<any> loop that you want to re-use after
617a fork, I<even if you do not plan to use the loop in the parent>. This is
618because some kernel interfaces *cough* I<kqueue> *cough* do funny things
619during fork.
620
619On the other hand, you only need to call this function in the child 621On the other hand, you only need to call this function in the child
620process if and only if you want to use the event library in the child. If 622process if and only if you want to use the event loop in the child. If you
621you just fork+exec, you don't have to call it at all. 623just fork+exec or create a new loop in the child, you don't have to call
624it at all.
622 625
623The function itself is quite fast and it's usually not a problem to call 626The function itself is quite fast and it's usually not a problem to call
624it just in case after a fork. To make this easy, the function will fit in 627it just in case after a fork. To make this easy, the function will fit in
625quite nicely into a call to C<pthread_atfork>: 628quite nicely into a call to C<pthread_atfork>:
626 629
628 631
629=item ev_loop_fork (loop) 632=item ev_loop_fork (loop)
630 633
631Like C<ev_default_fork>, but acts on an event loop created by 634Like C<ev_default_fork>, but acts on an event loop created by
632C<ev_loop_new>. Yes, you have to call this on every allocated event loop 635C<ev_loop_new>. Yes, you have to call this on every allocated event loop
633after fork that you want to re-use in the child, and how you do this is 636after fork that you want to re-use in the child, and how you keep track of
634entirely your own problem. 637them is entirely your own problem.
635 638
636=item int ev_is_default_loop (loop) 639=item int ev_is_default_loop (loop)
637 640
638Returns true when the given loop is, in fact, the default loop, and false 641Returns true when the given loop is, in fact, the default loop, and false
639otherwise. 642otherwise.
640 643
641=item unsigned int ev_loop_count (loop) 644=item unsigned int ev_iteration (loop)
642 645
643Returns the count of loop iterations for the loop, which is identical to 646Returns the current iteration count for the loop, which is identical to
644the number of times libev did poll for new events. It starts at C<0> and 647the number of times libev did poll for new events. It starts at C<0> and
645happily wraps around with enough iterations. 648happily wraps around with enough iterations.
646 649
647This value can sometimes be useful as a generation counter of sorts (it 650This value can sometimes be useful as a generation counter of sorts (it
648"ticks" the number of loop iterations), as it roughly corresponds with 651"ticks" the number of loop iterations), as it roughly corresponds with
649C<ev_prepare> and C<ev_check> calls. 652C<ev_prepare> and C<ev_check> calls - and is incremented between the
653prepare and check phases.
650 654
651=item unsigned int ev_loop_depth (loop) 655=item unsigned int ev_depth (loop)
652 656
653Returns the number of times C<ev_loop> was entered minus the number of 657Returns the number of times C<ev_loop> was entered minus the number of
654times C<ev_loop> was exited, in other words, the recursion depth. 658times C<ev_loop> was exited, in other words, the recursion depth.
655 659
656Outside C<ev_loop>, this number is zero. In a callback, this number is 660Outside C<ev_loop>, this number is zero. In a callback, this number is
657C<1>, unless C<ev_loop> was invoked recursively (or from another thread), 661C<1>, unless C<ev_loop> was invoked recursively (or from another thread),
658in which case it is higher. 662in which case it is higher.
659 663
660Leaving C<ev_loop> abnormally (setjmp/longjmp, cancelling the thread 664Leaving C<ev_loop> abnormally (setjmp/longjmp, cancelling the thread
661etc.), doesn't count as exit. 665etc.), doesn't count as "exit" - consider this as a hint to avoid such
666ungentleman behaviour unless it's really convenient.
662 667
663=item unsigned int ev_backend (loop) 668=item unsigned int ev_backend (loop)
664 669
665Returns one of the C<EVBACKEND_*> flags indicating the event backend in 670Returns one of the C<EVBACKEND_*> flags indicating the event backend in
666use. 671use.
1032=item C<EV_WRITE> 1037=item C<EV_WRITE>
1033 1038
1034The file descriptor in the C<ev_io> watcher has become readable and/or 1039The file descriptor in the C<ev_io> watcher has become readable and/or
1035writable. 1040writable.
1036 1041
1037=item C<EV_TIMEOUT> 1042=item C<EV_TIMER>
1038 1043
1039The C<ev_timer> watcher has timed out. 1044The C<ev_timer> watcher has timed out.
1040 1045
1041=item C<EV_PERIODIC> 1046=item C<EV_PERIODIC>
1042 1047
1399 { 1404 {
1400 // stop the I/O watcher, we received the event, but 1405 // stop the I/O watcher, we received the event, but
1401 // are not yet ready to handle it. 1406 // are not yet ready to handle it.
1402 ev_io_stop (EV_A_ w); 1407 ev_io_stop (EV_A_ w);
1403 1408
1404 // start the idle watcher to ahndle the actual event. 1409 // start the idle watcher to handle the actual event.
1405 // it will not be executed as long as other watchers 1410 // it will not be executed as long as other watchers
1406 // with the default priority are receiving events. 1411 // with the default priority are receiving events.
1407 ev_idle_start (EV_A_ &idle); 1412 ev_idle_start (EV_A_ &idle);
1408 } 1413 }
1409 1414
1541somewhere, as that would have given you a big clue). 1546somewhere, as that would have given you a big clue).
1542 1547
1543=head3 The special problem of accept()ing when you can't 1548=head3 The special problem of accept()ing when you can't
1544 1549
1545Many implementations of the POSIX C<accept> function (for example, 1550Many implementations of the POSIX C<accept> function (for example,
1546found in port-2004 Linux) have the peculiar behaviour of not removing a 1551found in post-2004 Linux) have the peculiar behaviour of not removing a
1547connection from the pending queue in all error cases. 1552connection from the pending queue in all error cases.
1548 1553
1549For example, larger servers often run out of file descriptors (because 1554For example, larger servers often run out of file descriptors (because
1550of resource limits), causing C<accept> to fail with C<ENFILE> but not 1555of resource limits), causing C<accept> to fail with C<ENFILE> but not
1551rejecting the connection, leading to libev signalling readiness on 1556rejecting the connection, leading to libev signalling readiness on
1764to the current time (meaning we just have some activity :), then call the 1769to the current time (meaning we just have some activity :), then call the
1765callback, which will "do the right thing" and start the timer: 1770callback, which will "do the right thing" and start the timer:
1766 1771
1767 ev_init (timer, callback); 1772 ev_init (timer, callback);
1768 last_activity = ev_now (loop); 1773 last_activity = ev_now (loop);
1769 callback (loop, timer, EV_TIMEOUT); 1774 callback (loop, timer, EV_TIMER);
1770 1775
1771And when there is some activity, simply store the current time in 1776And when there is some activity, simply store the current time in
1772C<last_activity>, no libev calls at all: 1777C<last_activity>, no libev calls at all:
1773 1778
1774 last_actiivty = ev_now (loop); 1779 last_activity = ev_now (loop);
1775 1780
1776This technique is slightly more complex, but in most cases where the 1781This technique is slightly more complex, but in most cases where the
1777time-out is unlikely to be triggered, much more efficient. 1782time-out is unlikely to be triggered, much more efficient.
1778 1783
1779Changing the timeout is trivial as well (if it isn't hard-coded in the 1784Changing the timeout is trivial as well (if it isn't hard-coded in the
3179 3184
3180If C<timeout> is less than 0, then no timeout watcher will be 3185If C<timeout> is less than 0, then no timeout watcher will be
3181started. Otherwise an C<ev_timer> watcher with after = C<timeout> (and 3186started. Otherwise an C<ev_timer> watcher with after = C<timeout> (and
3182repeat = 0) will be started. C<0> is a valid timeout. 3187repeat = 0) will be started. C<0> is a valid timeout.
3183 3188
3184The callback has the type C<void (*cb)(int revents, void *arg)> and gets 3189The callback has the type C<void (*cb)(int revents, void *arg)> and is
3185passed an C<revents> set like normal event callbacks (a combination of 3190passed an C<revents> set like normal event callbacks (a combination of
3186C<EV_ERROR>, C<EV_READ>, C<EV_WRITE> or C<EV_TIMEOUT>) and the C<arg> 3191C<EV_ERROR>, C<EV_READ>, C<EV_WRITE> or C<EV_TIMER>) and the C<arg>
3187value passed to C<ev_once>. Note that it is possible to receive I<both> 3192value passed to C<ev_once>. Note that it is possible to receive I<both>
3188a timeout and an io event at the same time - you probably should give io 3193a timeout and an io event at the same time - you probably should give io
3189events precedence. 3194events precedence.
3190 3195
3191Example: wait up to ten seconds for data to appear on STDIN_FILENO. 3196Example: wait up to ten seconds for data to appear on STDIN_FILENO.
3192 3197
3193 static void stdin_ready (int revents, void *arg) 3198 static void stdin_ready (int revents, void *arg)
3194 { 3199 {
3195 if (revents & EV_READ) 3200 if (revents & EV_READ)
3196 /* stdin might have data for us, joy! */; 3201 /* stdin might have data for us, joy! */;
3197 else if (revents & EV_TIMEOUT) 3202 else if (revents & EV_TIMER)
3198 /* doh, nothing entered */; 3203 /* doh, nothing entered */;
3199 } 3204 }
3200 3205
3201 ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0); 3206 ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0);
3202 3207
3336 myclass obj; 3341 myclass obj;
3337 ev::io iow; 3342 ev::io iow;
3338 iow.set <myclass, &myclass::io_cb> (&obj); 3343 iow.set <myclass, &myclass::io_cb> (&obj);
3339 3344
3340=item w->set (object *) 3345=item w->set (object *)
3341
3342This is an B<experimental> feature that might go away in a future version.
3343 3346
3344This is a variation of a method callback - leaving out the method to call 3347This is a variation of a method callback - leaving out the method to call
3345will default the method to C<operator ()>, which makes it possible to use 3348will default the method to C<operator ()>, which makes it possible to use
3346functor objects without having to manually specify the C<operator ()> all 3349functor objects without having to manually specify the C<operator ()> all
3347the time. Incidentally, you can then also leave out the template argument 3350the time. Incidentally, you can then also leave out the template argument
3660define before including (or compiling) any of its files. The default in 3663define before including (or compiling) any of its files. The default in
3661the absence of autoconf is documented for every option. 3664the absence of autoconf is documented for every option.
3662 3665
3663Symbols marked with "(h)" do not change the ABI, and can have different 3666Symbols marked with "(h)" do not change the ABI, and can have different
3664values when compiling libev vs. including F<ev.h>, so it is permissible 3667values when compiling libev vs. including F<ev.h>, so it is permissible
3665to redefine them before including F<ev.h> without breakign compatibility 3668to redefine them before including F<ev.h> without breaking compatibility
3666to a compiled library. All other symbols change the ABI, which means all 3669to a compiled library. All other symbols change the ABI, which means all
3667users of libev and the libev code itself must be compiled with compatible 3670users of libev and the libev code itself must be compiled with compatible
3668settings. 3671settings.
3669 3672
3670=over 4 3673=over 4
4621involves iterating over all running async watchers or all signal numbers. 4624involves iterating over all running async watchers or all signal numbers.
4622 4625
4623=back 4626=back
4624 4627
4625 4628
4629=head1 PORTING FROM LIBEV 3.X TO 4.X
4630
4631The major version 4 introduced some minor incompatible changes to the API.
4632
4633At the moment, the C<ev.h> header file tries to implement superficial
4634compatibility, so most programs should still compile. Those might be
4635removed in later versions of libev, so better update early than late.
4636
4637=over 4
4638
4639=item C<ev_loop_count> renamed to C<ev_iteration>
4640
4641=item C<ev_loop_depth> renamed to C<ev_depth>
4642
4643=item C<ev_loop_verify> renamed to C<ev_verify>
4644
4645Most functions working on C<struct ev_loop> objects don't have an
4646C<ev_loop_> prefix, so it was removed. Note that C<ev_loop_fork> is
4647still called C<ev_loop_fork> because it would otherwise clash with the
4648C<ev_fork> typedef.
4649
4650=item C<EV_TIMEOUT> renamed to C<EV_TIMER> in C<revents>
4651
4652This is a simple rename - all other watcher types use their name
4653as revents flag, and now C<ev_timer> does, too.
4654
4655Both C<EV_TIMER> and C<EV_TIMEOUT> symbols were present in 3.x versions
4656and continue to be present for the forseeable future, so this is mostly a
4657documentation change.
4658
4659=item C<EV_MINIMAL> mechanism replaced by C<EV_FEATURES>
4660
4661The preprocessor symbol C<EV_MINIMAL> has been replaced by a different
4662mechanism, C<EV_FEATURES>. Programs using C<EV_MINIMAL> usually compile
4663and work, but the library code will of course be larger.
4664
4665=back
4666
4667
4626=head1 GLOSSARY 4668=head1 GLOSSARY
4627 4669
4628=over 4 4670=over 4
4629 4671
4630=item active 4672=item active
4651A change of state of some external event, such as data now being available 4693A change of state of some external event, such as data now being available
4652for reading on a file descriptor, time having passed or simply not having 4694for reading on a file descriptor, time having passed or simply not having
4653any other events happening anymore. 4695any other events happening anymore.
4654 4696
4655In libev, events are represented as single bits (such as C<EV_READ> or 4697In libev, events are represented as single bits (such as C<EV_READ> or
4656C<EV_TIMEOUT>). 4698C<EV_TIMER>).
4657 4699
4658=item event library 4700=item event library
4659 4701
4660A software package implementing an event model and loop. 4702A software package implementing an event model and loop.
4661 4703

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines