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

Comparing libev/ev.pod (file contents):
Revision 1.199 by root, Thu Oct 23 07:18:21 2008 UTC vs.
Revision 1.204 by root, Mon Oct 27 11:08:29 2008 UTC

10 10
11 // a single header file is required 11 // a single header file is required
12 #include <ev.h> 12 #include <ev.h>
13 13
14 // every watcher type has its own typedef'd struct 14 // every watcher type has its own typedef'd struct
15 // with the name ev_<type> 15 // with the name ev_TYPE
16 ev_io stdin_watcher; 16 ev_io stdin_watcher;
17 ev_timer timeout_watcher; 17 ev_timer timeout_watcher;
18 18
19 // all watcher callbacks have a similar signature 19 // all watcher callbacks have a similar signature
20 // this callback is called when data is readable on stdin 20 // this callback is called when data is readable on stdin
276 276
277=back 277=back
278 278
279=head1 FUNCTIONS CONTROLLING THE EVENT LOOP 279=head1 FUNCTIONS CONTROLLING THE EVENT LOOP
280 280
281An event loop is described by a C<ev_loop *>. The library knows two 281An event loop is described by a C<struct ev_loop *> (the C<struct>
282types of such loops, the I<default> loop, which supports signals and child 282is I<not> optional in this case, as there is also an C<ev_loop>
283events, and dynamically created loops which do not. 283I<function>).
284
285The library knows two types of such loops, the I<default> loop, which
286supports signals and child events, and dynamically created loops which do
287not.
284 288
285=over 4 289=over 4
286 290
287=item struct ev_loop *ev_default_loop (unsigned int flags) 291=item struct ev_loop *ev_default_loop (unsigned int flags)
288 292
385epoll scales either O(1) or O(active_fds). The epoll design has a number 389epoll scales either O(1) or O(active_fds). The epoll design has a number
386of shortcomings, such as silently dropping events in some hard-to-detect 390of shortcomings, such as silently dropping events in some hard-to-detect
387cases and requiring a system call per fd change, no fork support and bad 391cases and requiring a system call per fd change, no fork support and bad
388support for dup. 392support for dup.
389 393
394Epoll is also notoriously buggy - embedding epoll fds should work, but
395of course doesn't, and epoll just loves to report events for totally
396I<different> file descriptors (even already closed ones) than registered
397in the set (especially on SMP systems). Libev tries to counter these
398spurious notifications by employing an additional generation counter and
399comparing that against the events to filter out spurious ones.
400
390While stopping, setting and starting an I/O watcher in the same iteration 401While stopping, setting and starting an I/O watcher in the same iteration
391will result in some caching, there is still a system call per such incident 402will result in some caching, there is still a system call per such incident
392(because the fd could point to a different file description now), so its 403(because the fd could point to a different file description now), so its
393best to avoid that. Also, C<dup ()>'ed file descriptors might not work 404best to avoid that. Also, C<dup ()>'ed file descriptors might not work
394very well if you register events for both fds. 405very well if you register events for both fds.
395
396Please note that epoll sometimes generates spurious notifications, so you
397need to use non-blocking I/O or other means to avoid blocking when no data
398(or space) is available.
399 406
400Best performance from this backend is achieved by not unregistering all 407Best performance from this backend is achieved by not unregistering all
401watchers for a file descriptor until it has been closed, if possible, 408watchers for a file descriptor until it has been closed, if possible,
402i.e. keep at least one watcher active per fd at all times. Stopping and 409i.e. keep at least one watcher active per fd at all times. Stopping and
403starting a watcher (without re-setting it) also usually doesn't cause 410starting a watcher (without re-setting it) also usually doesn't cause
527responsibility to either stop all watchers cleanly yourself I<before> 534responsibility to either stop all watchers cleanly yourself I<before>
528calling this function, or cope with the fact afterwards (which is usually 535calling this function, or cope with the fact afterwards (which is usually
529the easiest thing, you can just ignore the watchers and/or C<free ()> them 536the easiest thing, you can just ignore the watchers and/or C<free ()> them
530for example). 537for example).
531 538
532Note that certain global state, such as signal state, will not be freed by 539Note that certain global state, such as signal state (and installed signal
533this function, and related watchers (such as signal and child watchers) 540handlers), will not be freed by this function, and related watchers (such
534would need to be stopped manually. 541as signal and child watchers) would need to be stopped manually.
535 542
536In general it is not advisable to call this function except in the 543In general it is not advisable to call this function except in the
537rare occasion where you really need to free e.g. the signal handling 544rare occasion where you really need to free e.g. the signal handling
538pipe fds. If you need dynamically allocated loops it is better to use 545pipe fds. If you need dynamically allocated loops it is better to use
539C<ev_loop_new> and C<ev_loop_destroy>). 546C<ev_loop_new> and C<ev_loop_destroy>).
768they fire on, say, one-second boundaries only. 775they fire on, say, one-second boundaries only.
769 776
770=item ev_loop_verify (loop) 777=item ev_loop_verify (loop)
771 778
772This function only does something when C<EV_VERIFY> support has been 779This function only does something when C<EV_VERIFY> support has been
773compiled in. which is the default for non-minimal builds. It tries to go 780compiled in, which is the default for non-minimal builds. It tries to go
774through all internal structures and checks them for validity. If anything 781through all internal structures and checks them for validity. If anything
775is found to be inconsistent, it will print an error message to standard 782is found to be inconsistent, it will print an error message to standard
776error and call C<abort ()>. 783error and call C<abort ()>.
777 784
778This can be used to catch bugs inside libev itself: under normal 785This can be used to catch bugs inside libev itself: under normal
781 788
782=back 789=back
783 790
784 791
785=head1 ANATOMY OF A WATCHER 792=head1 ANATOMY OF A WATCHER
793
794In the following description, uppercase C<TYPE> in names stands for the
795watcher type, e.g. C<ev_TYPE_start> can mean C<ev_timer_start> for timer
796watchers and C<ev_io_start> for I/O watchers.
786 797
787A watcher is a structure that you create and register to record your 798A watcher is a structure that you create and register to record your
788interest in some event. For instance, if you want to wait for STDIN to 799interest in some event. For instance, if you want to wait for STDIN to
789become readable, you would create an C<ev_io> watcher for that: 800become readable, you would create an C<ev_io> watcher for that:
790 801
793 ev_io_stop (w); 804 ev_io_stop (w);
794 ev_unloop (loop, EVUNLOOP_ALL); 805 ev_unloop (loop, EVUNLOOP_ALL);
795 } 806 }
796 807
797 struct ev_loop *loop = ev_default_loop (0); 808 struct ev_loop *loop = ev_default_loop (0);
809
798 ev_io stdin_watcher; 810 ev_io stdin_watcher;
811
799 ev_init (&stdin_watcher, my_cb); 812 ev_init (&stdin_watcher, my_cb);
800 ev_io_set (&stdin_watcher, STDIN_FILENO, EV_READ); 813 ev_io_set (&stdin_watcher, STDIN_FILENO, EV_READ);
801 ev_io_start (loop, &stdin_watcher); 814 ev_io_start (loop, &stdin_watcher);
815
802 ev_loop (loop, 0); 816 ev_loop (loop, 0);
803 817
804As you can see, you are responsible for allocating the memory for your 818As you can see, you are responsible for allocating the memory for your
805watcher structures (and it is usually a bad idea to do this on the stack, 819watcher structures (and it is I<usually> a bad idea to do this on the
806although this can sometimes be quite valid). 820stack).
821
822Each watcher has an associated watcher structure (called C<struct ev_TYPE>
823or simply C<ev_TYPE>, as typedefs are provided for all watcher structs).
807 824
808Each watcher structure must be initialised by a call to C<ev_init 825Each watcher structure must be initialised by a call to C<ev_init
809(watcher *, callback)>, which expects a callback to be provided. This 826(watcher *, callback)>, which expects a callback to be provided. This
810callback gets invoked each time the event occurs (or, in the case of I/O 827callback gets invoked each time the event occurs (or, in the case of I/O
811watchers, each time the event loop detects that the file descriptor given 828watchers, each time the event loop detects that the file descriptor given
812is readable and/or writable). 829is readable and/or writable).
813 830
814Each watcher type has its own C<< ev_<type>_set (watcher *, ...) >> macro 831Each watcher type further has its own C<< ev_TYPE_set (watcher *, ...) >>
815with arguments specific to this watcher type. There is also a macro 832macro to configure it, with arguments specific to the watcher type. There
816to combine initialisation and setting in one call: C<< ev_<type>_init 833is also a macro to combine initialisation and setting in one call: C<<
817(watcher *, callback, ...) >>. 834ev_TYPE_init (watcher *, callback, ...) >>.
818 835
819To make the watcher actually watch out for events, you have to start it 836To make the watcher actually watch out for events, you have to start it
820with a watcher-specific start function (C<< ev_<type>_start (loop, watcher 837with a watcher-specific start function (C<< ev_TYPE_start (loop, watcher
821*) >>), and you can stop watching for events at any time by calling the 838*) >>), and you can stop watching for events at any time by calling the
822corresponding stop function (C<< ev_<type>_stop (loop, watcher *) >>. 839corresponding stop function (C<< ev_TYPE_stop (loop, watcher *) >>.
823 840
824As long as your watcher is active (has been started but not stopped) you 841As long as your watcher is active (has been started but not stopped) you
825must not touch the values stored in it. Most specifically you must never 842must not touch the values stored in it. Most specifically you must never
826reinitialise it or call its C<set> macro. 843reinitialise it or call its C<ev_TYPE_set> macro.
827 844
828Each and every callback receives the event loop pointer as first, the 845Each and every callback receives the event loop pointer as first, the
829registered watcher structure as second, and a bitset of received events as 846registered watcher structure as second, and a bitset of received events as
830third argument. 847third argument.
831 848
912 929
913=back 930=back
914 931
915=head2 GENERIC WATCHER FUNCTIONS 932=head2 GENERIC WATCHER FUNCTIONS
916 933
917In the following description, C<TYPE> stands for the watcher type,
918e.g. C<timer> for C<ev_timer> watchers and C<io> for C<ev_io> watchers.
919
920=over 4 934=over 4
921 935
922=item C<ev_init> (ev_TYPE *watcher, callback) 936=item C<ev_init> (ev_TYPE *watcher, callback)
923 937
924This macro initialises the generic portion of a watcher. The contents 938This macro initialises the generic portion of a watcher. The contents
1032The default priority used by watchers when no priority has been set is 1046The default priority used by watchers when no priority has been set is
1033always C<0>, which is supposed to not be too high and not be too low :). 1047always C<0>, which is supposed to not be too high and not be too low :).
1034 1048
1035Setting a priority outside the range of C<EV_MINPRI> to C<EV_MAXPRI> is 1049Setting a priority outside the range of C<EV_MINPRI> to C<EV_MAXPRI> is
1036fine, as long as you do not mind that the priority value you query might 1050fine, as long as you do not mind that the priority value you query might
1037or might not have been adjusted to be within valid range. 1051or might not have been clamped to the valid range.
1038 1052
1039=item ev_invoke (loop, ev_TYPE *watcher, int revents) 1053=item ev_invoke (loop, ev_TYPE *watcher, int revents)
1040 1054
1041Invoke the C<watcher> with the given C<loop> and C<revents>. Neither 1055Invoke the C<watcher> with the given C<loop> and C<revents>. Neither
1042C<loop> nor C<revents> need to be valid as long as the watcher callback 1056C<loop> nor C<revents> need to be valid as long as the watcher callback
1426 1440
1427Changing the timeout is trivial as well (if it isn't hard-coded in the 1441Changing the timeout is trivial as well (if it isn't hard-coded in the
1428callback :) - just change the timeout and invoke the callback, which will 1442callback :) - just change the timeout and invoke the callback, which will
1429fix things for you. 1443fix things for you.
1430 1444
1431=item 4. Whee, use a double-linked list for your timeouts. 1445=item 4. Wee, just use a double-linked list for your timeouts.
1432 1446
1433If there is not one request, but many thousands, all employing some kind 1447If there is not one request, but many thousands (millions...), all
1434of timeout with the same timeout value, then one can do even better: 1448employing some kind of timeout with the same timeout value, then one can
1449do even better:
1435 1450
1436When starting the timeout, calculate the timeout value and put the timeout 1451When starting the timeout, calculate the timeout value and put the timeout
1437at the I<end> of the list. 1452at the I<end> of the list.
1438 1453
1439Then use an C<ev_timer> to fire when the timeout at the I<beginning> of 1454Then use an C<ev_timer> to fire when the timeout at the I<beginning> of
1448complication, and having to use a constant timeout. The constant timeout 1463complication, and having to use a constant timeout. The constant timeout
1449ensures that the list stays sorted. 1464ensures that the list stays sorted.
1450 1465
1451=back 1466=back
1452 1467
1453So what method is the best? 1468So which method the best?
1454 1469
1455The method #2 is a simple no-brain-required solution that is adequate in 1470Method #2 is a simple no-brain-required solution that is adequate in most
1456most situations. Method #3 requires a bit more thinking, but handles many 1471situations. Method #3 requires a bit more thinking, but handles many cases
1457cases better, and isn't very complicated either. In most case, choosing 1472better, and isn't very complicated either. In most case, choosing either
1458either one is fine. 1473one is fine, with #3 being better in typical situations.
1459 1474
1460Method #1 is almost always a bad idea, and buys you nothing. Method #4 is 1475Method #1 is almost always a bad idea, and buys you nothing. Method #4 is
1461rather complicated, but extremely efficient, something that really pays 1476rather complicated, but extremely efficient, something that really pays
1462off after the first or so million of active timers, i.e. it's usually 1477off after the first million or so of active timers, i.e. it's usually
1463overkill :) 1478overkill :)
1464 1479
1465=head3 The special problem of time updates 1480=head3 The special problem of time updates
1466 1481
1467Establishing the current time is a costly operation (it usually takes at 1482Establishing the current time is a costly operation (it usually takes at
2946=item D 2961=item D
2947 2962
2948Leandro Lucarella has written a D language binding (F<ev.d>) for libev, to 2963Leandro Lucarella has written a D language binding (F<ev.d>) for libev, to
2949be found at L<http://proj.llucax.com.ar/wiki/evd>. 2964be found at L<http://proj.llucax.com.ar/wiki/evd>.
2950 2965
2966=item Ocaml
2967
2968Erkki Seppala has written Ocaml bindings for libev, to be found at
2969L<http://modeemi.cs.tut.fi/~flux/software/ocaml-ev/>.
2970
2951=back 2971=back
2952 2972
2953 2973
2954=head1 MACRO MAGIC 2974=head1 MACRO MAGIC
2955 2975

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines