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

Comparing libev/ev.pod (file contents):
Revision 1.188 by root, Tue Sep 30 18:35:47 2008 UTC vs.
Revision 1.194 by root, Mon Oct 20 16:08:36 2008 UTC

685C<EVUNLOOP_ONE>, which will make the innermost C<ev_loop> call return, or 685C<EVUNLOOP_ONE>, which will make the innermost C<ev_loop> call return, or
686C<EVUNLOOP_ALL>, which will make all nested C<ev_loop> calls return. 686C<EVUNLOOP_ALL>, which will make all nested C<ev_loop> calls return.
687 687
688This "unloop state" will be cleared when entering C<ev_loop> again. 688This "unloop state" will be cleared when entering C<ev_loop> again.
689 689
690It is safe to call C<ev_unloop> from otuside any C<ev_loop> calls.
691
690=item ev_ref (loop) 692=item ev_ref (loop)
691 693
692=item ev_unref (loop) 694=item ev_unref (loop)
693 695
694Ref/unref can be used to add or remove a reference count on the event 696Ref/unref can be used to add or remove a reference count on the event
2384=over 4 2386=over 4
2385 2387
2386=item queueing from a signal handler context 2388=item queueing from a signal handler context
2387 2389
2388To implement race-free queueing, you simply add to the queue in the signal 2390To implement race-free queueing, you simply add to the queue in the signal
2389handler but you block the signal handler in the watcher callback. Here is an example that does that for 2391handler but you block the signal handler in the watcher callback. Here is
2390some fictitious SIGUSR1 handler: 2392an example that does that for some fictitious SIGUSR1 handler:
2391 2393
2392 static ev_async mysig; 2394 static ev_async mysig;
2393 2395
2394 static void 2396 static void
2395 sigusr1_handler (void) 2397 sigusr1_handler (void)
2502=over 4 2504=over 4
2503 2505
2504=item ev_once (loop, int fd, int events, ev_tstamp timeout, callback) 2506=item ev_once (loop, int fd, int events, ev_tstamp timeout, callback)
2505 2507
2506This function combines a simple timer and an I/O watcher, calls your 2508This function combines a simple timer and an I/O watcher, calls your
2507callback on whichever event happens first and automatically stop both 2509callback on whichever event happens first and automatically stops both
2508watchers. This is useful if you want to wait for a single event on an fd 2510watchers. This is useful if you want to wait for a single event on an fd
2509or timeout without having to allocate/configure/start/stop/free one or 2511or timeout without having to allocate/configure/start/stop/free one or
2510more watchers yourself. 2512more watchers yourself.
2511 2513
2512If C<fd> is less than 0, then no I/O watcher will be started and events 2514If C<fd> is less than 0, then no I/O watcher will be started and the
2513is being ignored. Otherwise, an C<ev_io> watcher for the given C<fd> and 2515C<events> argument is being ignored. Otherwise, an C<ev_io> watcher for
2514C<events> set will be created and started. 2516the given C<fd> and C<events> set will be created and started.
2515 2517
2516If C<timeout> is less than 0, then no timeout watcher will be 2518If C<timeout> is less than 0, then no timeout watcher will be
2517started. Otherwise an C<ev_timer> watcher with after = C<timeout> (and 2519started. Otherwise an C<ev_timer> watcher with after = C<timeout> (and
2518repeat = 0) will be started. While C<0> is a valid timeout, it is of 2520repeat = 0) will be started. C<0> is a valid timeout.
2519dubious value.
2520 2521
2521The callback has the type C<void (*cb)(int revents, void *arg)> and gets 2522The callback has the type C<void (*cb)(int revents, void *arg)> and gets
2522passed an C<revents> set like normal event callbacks (a combination of 2523passed an C<revents> set like normal event callbacks (a combination of
2523C<EV_ERROR>, C<EV_READ>, C<EV_WRITE> or C<EV_TIMEOUT>) and the C<arg> 2524C<EV_ERROR>, C<EV_READ>, C<EV_WRITE> or C<EV_TIMEOUT>) and the C<arg>
2524value passed to C<ev_once>: 2525value passed to C<ev_once>. Note that it is possible to receive I<both>
2526a timeout and an io event at the same time - you probably should give io
2527events precedence.
2528
2529Example: wait up to ten seconds for data to appear on STDIN_FILENO.
2525 2530
2526 static void stdin_ready (int revents, void *arg) 2531 static void stdin_ready (int revents, void *arg)
2527 { 2532 {
2533 if (revents & EV_READ)
2534 /* stdin might have data for us, joy! */;
2528 if (revents & EV_TIMEOUT) 2535 else if (revents & EV_TIMEOUT)
2529 /* doh, nothing entered */; 2536 /* doh, nothing entered */;
2530 else if (revents & EV_READ)
2531 /* stdin might have data for us, joy! */;
2532 } 2537 }
2533 2538
2534 ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0); 2539 ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0);
2535 2540
2536=item ev_feed_event (ev_loop *, watcher *, int revents) 2541=item ev_feed_event (ev_loop *, watcher *, int revents)
3306And a F<ev_cpp.C> implementation file that contains libev proper and is compiled: 3311And a F<ev_cpp.C> implementation file that contains libev proper and is compiled:
3307 3312
3308 #include "ev_cpp.h" 3313 #include "ev_cpp.h"
3309 #include "ev.c" 3314 #include "ev.c"
3310 3315
3316=head1 INTERACTION WITH OTHER PROGRAMS OR LIBRARIES
3311 3317
3312=head1 THREADS AND COROUTINES 3318=head2 THREADS AND COROUTINES
3313 3319
3314=head2 THREADS 3320=head3 THREADS
3315 3321
3316All libev functions are reentrant and thread-safe unless explicitly 3322All libev functions are reentrant and thread-safe unless explicitly
3317documented otherwise, but it uses no locking itself. This means that you 3323documented otherwise, but libev implements no locking itself. This means
3318can use as many loops as you want in parallel, as long as there are no 3324that you can use as many loops as you want in parallel, as long as there
3319concurrent calls into any libev function with the same loop parameter 3325are no concurrent calls into any libev function with the same loop
3320(C<ev_default_*> calls have an implicit default loop parameter, of 3326parameter (C<ev_default_*> calls have an implicit default loop parameter,
3321course): libev guarantees that different event loops share no data 3327of course): libev guarantees that different event loops share no data
3322structures that need any locking. 3328structures that need any locking.
3323 3329
3324Or to put it differently: calls with different loop parameters can be done 3330Or to put it differently: calls with different loop parameters can be done
3325concurrently from multiple threads, calls with the same loop parameter 3331concurrently from multiple threads, calls with the same loop parameter
3326must be done serially (but can be done from different threads, as long as 3332must be done serially (but can be done from different threads, as long as
3366default loop and triggering an C<ev_async> watcher from the default loop 3372default loop and triggering an C<ev_async> watcher from the default loop
3367watcher callback into the event loop interested in the signal. 3373watcher callback into the event loop interested in the signal.
3368 3374
3369=back 3375=back
3370 3376
3371=head2 COROUTINES 3377=head3 COROUTINES
3372 3378
3373Libev is much more accommodating to coroutines ("cooperative threads"): 3379Libev is very accommodating to coroutines ("cooperative threads"):
3374libev fully supports nesting calls to it's functions from different 3380libev fully supports nesting calls to its functions from different
3375coroutines (e.g. you can call C<ev_loop> on the same loop from two 3381coroutines (e.g. you can call C<ev_loop> on the same loop from two
3376different coroutines and switch freely between both coroutines running the 3382different coroutines, and switch freely between both coroutines running the
3377loop, as long as you don't confuse yourself). The only exception is that 3383loop, as long as you don't confuse yourself). The only exception is that
3378you must not do this from C<ev_periodic> reschedule callbacks. 3384you must not do this from C<ev_periodic> reschedule callbacks.
3379 3385
3380Care has been taken to ensure that libev does not keep local state inside 3386Care has been taken to ensure that libev does not keep local state inside
3381C<ev_loop>, and other calls do not usually allow coroutine switches. 3387C<ev_loop>, and other calls do not usually allow for coroutine switches as
3388they do not clal any callbacks.
3382 3389
3390=head2 COMPILER WARNINGS
3383 3391
3384=head1 COMPLEXITIES 3392Depending on your compiler and compiler settings, you might get no or a
3393lot of warnings when compiling libev code. Some people are apparently
3394scared by this.
3385 3395
3386In this section the complexities of (many of) the algorithms used inside 3396However, these are unavoidable for many reasons. For one, each compiler
3387libev will be explained. For complexity discussions about backends see the 3397has different warnings, and each user has different tastes regarding
3388documentation for C<ev_default_init>. 3398warning options. "Warn-free" code therefore cannot be a goal except when
3399targeting a specific compiler and compiler-version.
3389 3400
3390All of the following are about amortised time: If an array needs to be 3401Another reason is that some compiler warnings require elaborate
3391extended, libev needs to realloc and move the whole array, but this 3402workarounds, or other changes to the code that make it less clear and less
3392happens asymptotically never with higher number of elements, so O(1) might 3403maintainable.
3393mean it might do a lengthy realloc operation in rare cases, but on average
3394it is much faster and asymptotically approaches constant time.
3395 3404
3396=over 4 3405And of course, some compiler warnings are just plain stupid, or simply
3406wrong (because they don't actually warn about the condition their message
3407seems to warn about). For example, certain older gcc versions had some
3408warnings that resulted an extreme number of false positives. These have
3409been fixed, but some people still insist on making code warn-free with
3410such buggy versions.
3397 3411
3398=item Starting and stopping timer/periodic watchers: O(log skipped_other_timers) 3412While libev is written to generate as few warnings as possible,
3413"warn-free" code is not a goal, and it is recommended not to build libev
3414with any compiler warnings enabled unless you are prepared to cope with
3415them (e.g. by ignoring them). Remember that warnings are just that:
3416warnings, not errors, or proof of bugs.
3399 3417
3400This means that, when you have a watcher that triggers in one hour and
3401there are 100 watchers that would trigger before that then inserting will
3402have to skip roughly seven (C<ld 100>) of these watchers.
3403 3418
3404=item Changing timer/periodic watchers (by autorepeat or calling again): O(log skipped_other_timers) 3419=head2 VALGRIND
3405 3420
3406That means that changing a timer costs less than removing/adding them 3421Valgrind has a special section here because it is a popular tool that is
3407as only the relative motion in the event queue has to be paid for. 3422highly useful. Unfortunately, valgrind reports are very hard to interpret.
3408 3423
3409=item Starting io/check/prepare/idle/signal/child/fork/async watchers: O(1) 3424If you think you found a bug (memory leak, uninitialised data access etc.)
3425in libev, then check twice: If valgrind reports something like:
3410 3426
3411These just add the watcher into an array or at the head of a list. 3427 ==2274== definitely lost: 0 bytes in 0 blocks.
3428 ==2274== possibly lost: 0 bytes in 0 blocks.
3429 ==2274== still reachable: 256 bytes in 1 blocks.
3412 3430
3413=item Stopping check/prepare/idle/fork/async watchers: O(1) 3431Then there is no memory leak, just as memory accounted to global variables
3432is not a memleak - the memory is still being refernced, and didn't leak.
3414 3433
3415=item Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % EV_PID_HASHSIZE)) 3434Similarly, under some circumstances, valgrind might report kernel bugs
3435as if it were a bug in libev (e.g. in realloc or in the poll backend,
3436although an acceptable workaround has been found here), or it might be
3437confused.
3416 3438
3417These watchers are stored in lists then need to be walked to find the 3439Keep in mind that valgrind is a very good tool, but only a tool. Don't
3418correct watcher to remove. The lists are usually short (you don't usually 3440make it into some kind of religion.
3419have many watchers waiting for the same fd or signal).
3420 3441
3421=item Finding the next timer in each loop iteration: O(1) 3442If you are unsure about something, feel free to contact the mailing list
3443with the full valgrind report and an explanation on why you think this
3444is a bug in libev (best check the archives, too :). However, don't be
3445annoyed when you get a brisk "this is no bug" answer and take the chance
3446of learning how to interpret valgrind properly.
3422 3447
3423By virtue of using a binary or 4-heap, the next timer is always found at a 3448If you need, for some reason, empty reports from valgrind for your project
3424fixed position in the storage array. 3449I suggest using suppression lists.
3425 3450
3426=item Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)
3427 3451
3428A change means an I/O watcher gets started or stopped, which requires 3452=head1 PORTABILITY NOTES
3429libev to recalculate its status (and possibly tell the kernel, depending
3430on backend and whether C<ev_io_set> was used).
3431 3453
3432=item Activating one watcher (putting it into the pending state): O(1)
3433
3434=item Priority handling: O(number_of_priorities)
3435
3436Priorities are implemented by allocating some space for each
3437priority. When doing priority-based operations, libev usually has to
3438linearly search all the priorities, but starting/stopping and activating
3439watchers becomes O(1) with respect to priority handling.
3440
3441=item Sending an ev_async: O(1)
3442
3443=item Processing ev_async_send: O(number_of_async_watchers)
3444
3445=item Processing signals: O(max_signal_number)
3446
3447Sending involves a system call I<iff> there were no other C<ev_async_send>
3448calls in the current loop iteration. Checking for async and signal events
3449involves iterating over all running async watchers or all signal numbers.
3450
3451=back
3452
3453
3454=head1 WIN32 PLATFORM LIMITATIONS AND WORKAROUNDS 3454=head2 WIN32 PLATFORM LIMITATIONS AND WORKAROUNDS
3455 3455
3456Win32 doesn't support any of the standards (e.g. POSIX) that libev 3456Win32 doesn't support any of the standards (e.g. POSIX) that libev
3457requires, and its I/O model is fundamentally incompatible with the POSIX 3457requires, and its I/O model is fundamentally incompatible with the POSIX
3458model. Libev still offers limited functionality on this platform in 3458model. Libev still offers limited functionality on this platform in
3459the form of the C<EVBACKEND_SELECT> backend, and only supports socket 3459the form of the C<EVBACKEND_SELECT> backend, and only supports socket
3546wrap all I/O functions and provide your own fd management, but the cost of 3546wrap all I/O functions and provide your own fd management, but the cost of
3547calling select (O(n²)) will likely make this unworkable. 3547calling select (O(n²)) will likely make this unworkable.
3548 3548
3549=back 3549=back
3550 3550
3551
3552=head1 PORTABILITY REQUIREMENTS 3551=head2 PORTABILITY REQUIREMENTS
3553 3552
3554In addition to a working ISO-C implementation, libev relies on a few 3553In addition to a working ISO-C implementation and of course the
3555additional extensions: 3554backend-specific APIs, libev relies on a few additional extensions:
3556 3555
3557=over 4 3556=over 4
3558 3557
3559=item C<void (*)(ev_watcher_type *, int revents)> must have compatible 3558=item C<void (*)(ev_watcher_type *, int revents)> must have compatible
3560calling conventions regardless of C<ev_watcher_type *>. 3559calling conventions regardless of C<ev_watcher_type *>.
3585except the initial one, and run the default loop in the initial thread as 3584except the initial one, and run the default loop in the initial thread as
3586well. 3585well.
3587 3586
3588=item C<long> must be large enough for common memory allocation sizes 3587=item C<long> must be large enough for common memory allocation sizes
3589 3588
3590To improve portability and simplify using libev, libev uses C<long> 3589To improve portability and simplify its API, libev uses C<long> internally
3591internally instead of C<size_t> when allocating its data structures. On 3590instead of C<size_t> when allocating its data structures. On non-POSIX
3592non-POSIX systems (Microsoft...) this might be unexpectedly low, but 3591systems (Microsoft...) this might be unexpectedly low, but is still at
3593is still at least 31 bits everywhere, which is enough for hundreds of 3592least 31 bits everywhere, which is enough for hundreds of millions of
3594millions of watchers. 3593watchers.
3595 3594
3596=item C<double> must hold a time value in seconds with enough accuracy 3595=item C<double> must hold a time value in seconds with enough accuracy
3597 3596
3598The type C<double> is used to represent timestamps. It is required to 3597The type C<double> is used to represent timestamps. It is required to
3599have at least 51 bits of mantissa (and 9 bits of exponent), which is good 3598have at least 51 bits of mantissa (and 9 bits of exponent), which is good
3603=back 3602=back
3604 3603
3605If you know of other additional requirements drop me a note. 3604If you know of other additional requirements drop me a note.
3606 3605
3607 3606
3608=head1 COMPILER WARNINGS 3607=head1 ALGORITHMIC COMPLEXITIES
3609 3608
3610Depending on your compiler and compiler settings, you might get no or a 3609In this section the complexities of (many of) the algorithms used inside
3611lot of warnings when compiling libev code. Some people are apparently 3610libev will be documented. For complexity discussions about backends see
3612scared by this. 3611the documentation for C<ev_default_init>.
3613 3612
3614However, these are unavoidable for many reasons. For one, each compiler 3613All of the following are about amortised time: If an array needs to be
3615has different warnings, and each user has different tastes regarding 3614extended, libev needs to realloc and move the whole array, but this
3616warning options. "Warn-free" code therefore cannot be a goal except when 3615happens asymptotically rarer with higher number of elements, so O(1) might
3617targeting a specific compiler and compiler-version. 3616mean that libev does a lengthy realloc operation in rare cases, but on
3617average it is much faster and asymptotically approaches constant time.
3618 3618
3619Another reason is that some compiler warnings require elaborate 3619=over 4
3620workarounds, or other changes to the code that make it less clear and less
3621maintainable.
3622 3620
3623And of course, some compiler warnings are just plain stupid, or simply 3621=item Starting and stopping timer/periodic watchers: O(log skipped_other_timers)
3624wrong (because they don't actually warn about the condition their message
3625seems to warn about).
3626 3622
3627While libev is written to generate as few warnings as possible, 3623This means that, when you have a watcher that triggers in one hour and
3628"warn-free" code is not a goal, and it is recommended not to build libev 3624there are 100 watchers that would trigger before that, then inserting will
3629with any compiler warnings enabled unless you are prepared to cope with 3625have to skip roughly seven (C<ld 100>) of these watchers.
3630them (e.g. by ignoring them). Remember that warnings are just that:
3631warnings, not errors, or proof of bugs.
3632 3626
3627=item Changing timer/periodic watchers (by autorepeat or calling again): O(log skipped_other_timers)
3633 3628
3634=head1 VALGRIND 3629That means that changing a timer costs less than removing/adding them,
3630as only the relative motion in the event queue has to be paid for.
3635 3631
3636Valgrind has a special section here because it is a popular tool that is 3632=item Starting io/check/prepare/idle/signal/child/fork/async watchers: O(1)
3637highly useful, but valgrind reports are very hard to interpret.
3638 3633
3639If you think you found a bug (memory leak, uninitialised data access etc.) 3634These just add the watcher into an array or at the head of a list.
3640in libev, then check twice: If valgrind reports something like:
3641 3635
3642 ==2274== definitely lost: 0 bytes in 0 blocks. 3636=item Stopping check/prepare/idle/fork/async watchers: O(1)
3643 ==2274== possibly lost: 0 bytes in 0 blocks.
3644 ==2274== still reachable: 256 bytes in 1 blocks.
3645 3637
3646Then there is no memory leak. Similarly, under some circumstances, 3638=item Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % EV_PID_HASHSIZE))
3647valgrind might report kernel bugs as if it were a bug in libev, or it
3648might be confused (it is a very good tool, but only a tool).
3649 3639
3650If you are unsure about something, feel free to contact the mailing list 3640These watchers are stored in lists, so they need to be walked to find the
3651with the full valgrind report and an explanation on why you think this is 3641correct watcher to remove. The lists are usually short (you don't usually
3652a bug in libev. However, don't be annoyed when you get a brisk "this is 3642have many watchers waiting for the same fd or signal: one is typical, two
3653no bug" answer and take the chance of learning how to interpret valgrind 3643is rare).
3654properly.
3655 3644
3656If you need, for some reason, empty reports from valgrind for your project 3645=item Finding the next timer in each loop iteration: O(1)
3657I suggest using suppression lists. 3646
3647By virtue of using a binary or 4-heap, the next timer is always found at a
3648fixed position in the storage array.
3649
3650=item Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)
3651
3652A change means an I/O watcher gets started or stopped, which requires
3653libev to recalculate its status (and possibly tell the kernel, depending
3654on backend and whether C<ev_io_set> was used).
3655
3656=item Activating one watcher (putting it into the pending state): O(1)
3657
3658=item Priority handling: O(number_of_priorities)
3659
3660Priorities are implemented by allocating some space for each
3661priority. When doing priority-based operations, libev usually has to
3662linearly search all the priorities, but starting/stopping and activating
3663watchers becomes O(1) with respect to priority handling.
3664
3665=item Sending an ev_async: O(1)
3666
3667=item Processing ev_async_send: O(number_of_async_watchers)
3668
3669=item Processing signals: O(max_signal_number)
3670
3671Sending involves a system call I<iff> there were no other C<ev_async_send>
3672calls in the current loop iteration. Checking for async and signal events
3673involves iterating over all running async watchers or all signal numbers.
3674
3675=back
3658 3676
3659 3677
3660=head1 AUTHOR 3678=head1 AUTHOR
3661 3679
3662Marc Lehmann <libev@schmorp.de>. 3680Marc Lehmann <libev@schmorp.de>.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines