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

Comparing libev/ev.pod (file contents):
Revision 1.183 by root, Tue Sep 23 08:37:38 2008 UTC vs.
Revision 1.188 by root, Tue Sep 30 18:35:47 2008 UTC

214C<ev_embeddable_backends () & ev_supported_backends ()>, likewise for 214C<ev_embeddable_backends () & ev_supported_backends ()>, likewise for
215recommended ones. 215recommended ones.
216 216
217See the description of C<ev_embed> watchers for more info. 217See the description of C<ev_embed> watchers for more info.
218 218
219=item ev_set_allocator (void *(*cb)(void *ptr, long size)) 219=item ev_set_allocator (void *(*cb)(void *ptr, long size)) [NOT REENTRANT]
220 220
221Sets the allocation function to use (the prototype is similar - the 221Sets the allocation function to use (the prototype is similar - the
222semantics are identical to the C<realloc> C89/SuS/POSIX function). It is 222semantics are identical to the C<realloc> C89/SuS/POSIX function). It is
223used to allocate and free memory (no surprises here). If it returns zero 223used to allocate and free memory (no surprises here). If it returns zero
224when memory needs to be allocated (C<size != 0>), the library might abort 224when memory needs to be allocated (C<size != 0>), the library might abort
250 } 250 }
251 251
252 ... 252 ...
253 ev_set_allocator (persistent_realloc); 253 ev_set_allocator (persistent_realloc);
254 254
255=item ev_set_syserr_cb (void (*cb)(const char *msg)); 255=item ev_set_syserr_cb (void (*cb)(const char *msg)); [NOT REENTRANT]
256 256
257Set the callback function to call on a retryable system call error (such 257Set the callback function to call on a retryable system call error (such
258as failed select, poll, epoll_wait). The message is a printable string 258as failed select, poll, epoll_wait). The message is a printable string
259indicating the system call or subsystem causing the problem. If this 259indicating the system call or subsystem causing the problem. If this
260callback is set, then libev will expect it to remedy the situation, no 260callback is set, then libev will expect it to remedy the situation, no
1625 1625
1626=back 1626=back
1627 1627
1628=head3 Examples 1628=head3 Examples
1629 1629
1630Example: Try to exit cleanly on SIGINT and SIGTERM. 1630Example: Try to exit cleanly on SIGINT.
1631 1631
1632 static void 1632 static void
1633 sigint_cb (struct ev_loop *loop, struct ev_signal *w, int revents) 1633 sigint_cb (struct ev_loop *loop, struct ev_signal *w, int revents)
1634 { 1634 {
1635 ev_unloop (loop, EVUNLOOP_ALL); 1635 ev_unloop (loop, EVUNLOOP_ALL);
1636 } 1636 }
1637 1637
1638 struct ev_signal signal_watcher; 1638 struct ev_signal signal_watcher;
1639 ev_signal_init (&signal_watcher, sigint_cb, SIGINT); 1639 ev_signal_init (&signal_watcher, sigint_cb, SIGINT);
1640 ev_signal_start (loop, &sigint_cb); 1640 ev_signal_start (loop, &signal_watcher);
1641 1641
1642 1642
1643=head2 C<ev_child> - watch out for process status changes 1643=head2 C<ev_child> - watch out for process status changes
1644 1644
1645Child watchers trigger when your process receives a SIGCHLD in response to 1645Child watchers trigger when your process receives a SIGCHLD in response to
2233when you fork, you not only have to call C<ev_loop_fork> on both loops, 2233when you fork, you not only have to call C<ev_loop_fork> on both loops,
2234but you will also have to stop and restart any C<ev_embed> watchers 2234but you will also have to stop and restart any C<ev_embed> watchers
2235yourself - but you can use a fork watcher to handle this automatically, 2235yourself - but you can use a fork watcher to handle this automatically,
2236and future versions of libev might do just that. 2236and future versions of libev might do just that.
2237 2237
2238Unfortunately, not all backends are embeddable, only the ones returned by 2238Unfortunately, not all backends are embeddable: only the ones returned by
2239C<ev_embeddable_backends> are, which, unfortunately, does not include any 2239C<ev_embeddable_backends> are, which, unfortunately, does not include any
2240portable one. 2240portable one.
2241 2241
2242So when you want to use this feature you will always have to be prepared 2242So when you want to use this feature you will always have to be prepared
2243that you cannot get an embeddable loop. The recommended way to get around 2243that you cannot get an embeddable loop. The recommended way to get around
2244this is to have a separate variables for your embeddable loop, try to 2244this is to have a separate variables for your embeddable loop, try to
2245create it, and if that fails, use the normal loop for everything. 2245create it, and if that fails, use the normal loop for everything.
2246
2247=head3 C<ev_embed> and fork
2248
2249While the C<ev_embed> watcher is running, forks in the embedding loop will
2250automatically be applied to the embedded loop as well, so no special
2251fork handling is required in that case. When the watcher is not running,
2252however, it is still the task of the libev user to call C<ev_loop_fork ()>
2253as applicable.
2246 2254
2247=head3 Watcher-Specific Functions and Data Members 2255=head3 Watcher-Specific Functions and Data Members
2248 2256
2249=over 4 2257=over 4
2250 2258
2368is that the author does not know of a simple (or any) algorithm for a 2376is that the author does not know of a simple (or any) algorithm for a
2369multiple-writer-single-reader queue that works in all cases and doesn't 2377multiple-writer-single-reader queue that works in all cases and doesn't
2370need elaborate support such as pthreads. 2378need elaborate support such as pthreads.
2371 2379
2372That means that if you want to queue data, you have to provide your own 2380That means that if you want to queue data, you have to provide your own
2373queue. But at least I can tell you would implement locking around your 2381queue. But at least I can tell you how to implement locking around your
2374queue: 2382queue:
2375 2383
2376=over 4 2384=over 4
2377 2385
2378=item queueing from a signal handler context 2386=item queueing from a signal handler context
2454 2462
2455=item ev_async_init (ev_async *, callback) 2463=item ev_async_init (ev_async *, callback)
2456 2464
2457Initialises and configures the async watcher - it has no parameters of any 2465Initialises and configures the async watcher - it has no parameters of any
2458kind. There is a C<ev_asynd_set> macro, but using it is utterly pointless, 2466kind. There is a C<ev_asynd_set> macro, but using it is utterly pointless,
2459believe me. 2467trust me.
2460 2468
2461=item ev_async_send (loop, ev_async *) 2469=item ev_async_send (loop, ev_async *)
2462 2470
2463Sends/signals/activates the given C<ev_async> watcher, that is, feeds 2471Sends/signals/activates the given C<ev_async> watcher, that is, feeds
2464an C<EV_ASYNC> event on the watcher into the event loop. Unlike 2472an C<EV_ASYNC> event on the watcher into the event loop. Unlike
2465C<ev_feed_event>, this call is safe to do in other threads, signal or 2473C<ev_feed_event>, this call is safe to do from other threads, signal or
2466similar contexts (see the discussion of C<EV_ATOMIC_T> in the embedding 2474similar contexts (see the discussion of C<EV_ATOMIC_T> in the embedding
2467section below on what exactly this means). 2475section below on what exactly this means).
2468 2476
2469This call incurs the overhead of a system call only once per loop iteration, 2477This call incurs the overhead of a system call only once per loop iteration,
2470so while the overhead might be noticeable, it doesn't apply to repeated 2478so while the overhead might be noticeable, it doesn't apply to repeated
2676 2684
2677The prototype of the C<function> must be C<void (*)(ev::TYPE &w, int)>. 2685The prototype of the C<function> must be C<void (*)(ev::TYPE &w, int)>.
2678 2686
2679See the method-C<set> above for more details. 2687See the method-C<set> above for more details.
2680 2688
2681Example: 2689Example: Use a plain function as callback.
2682 2690
2683 static void io_cb (ev::io &w, int revents) { } 2691 static void io_cb (ev::io &w, int revents) { }
2684 iow.set <io_cb> (); 2692 iow.set <io_cb> ();
2685 2693
2686=item w->set (struct ev_loop *) 2694=item w->set (struct ev_loop *)
2724Example: Define a class with an IO and idle watcher, start one of them in 2732Example: Define a class with an IO and idle watcher, start one of them in
2725the constructor. 2733the constructor.
2726 2734
2727 class myclass 2735 class myclass
2728 { 2736 {
2729 ev::io io; void io_cb (ev::io &w, int revents); 2737 ev::io io ; void io_cb (ev::io &w, int revents);
2730 ev:idle idle void idle_cb (ev::idle &w, int revents); 2738 ev::idle idle; void idle_cb (ev::idle &w, int revents);
2731 2739
2732 myclass (int fd) 2740 myclass (int fd)
2733 { 2741 {
2734 io .set <myclass, &myclass::io_cb > (this); 2742 io .set <myclass, &myclass::io_cb > (this);
2735 idle.set <myclass, &myclass::idle_cb> (this); 2743 idle.set <myclass, &myclass::idle_cb> (this);
2751=item Perl 2759=item Perl
2752 2760
2753The EV module implements the full libev API and is actually used to test 2761The EV module implements the full libev API and is actually used to test
2754libev. EV is developed together with libev. Apart from the EV core module, 2762libev. EV is developed together with libev. Apart from the EV core module,
2755there are additional modules that implement libev-compatible interfaces 2763there are additional modules that implement libev-compatible interfaces
2756to C<libadns> (C<EV::ADNS>), C<Net::SNMP> (C<Net::SNMP::EV>) and the 2764to C<libadns> (C<EV::ADNS>, but C<AnyEvent::DNS> is preferred nowadays),
2757C<libglib> event core (C<Glib::EV> and C<EV::Glib>). 2765C<Net::SNMP> (C<Net::SNMP::EV>) and the C<libglib> event core (C<Glib::EV>
2766and C<EV::Glib>).
2758 2767
2759It can be found and installed via CPAN, its homepage is at 2768It can be found and installed via CPAN, its homepage is at
2760L<http://software.schmorp.de/pkg/EV>. 2769L<http://software.schmorp.de/pkg/EV>.
2761 2770
2762=item Python 2771=item Python
2941 2950
2942=head2 PREPROCESSOR SYMBOLS/MACROS 2951=head2 PREPROCESSOR SYMBOLS/MACROS
2943 2952
2944Libev can be configured via a variety of preprocessor symbols you have to 2953Libev can be configured via a variety of preprocessor symbols you have to
2945define before including any of its files. The default in the absence of 2954define before including any of its files. The default in the absence of
2946autoconf is noted for every option. 2955autoconf is documented for every option.
2947 2956
2948=over 4 2957=over 4
2949 2958
2950=item EV_STANDALONE 2959=item EV_STANDALONE
2951 2960
3121When doing priority-based operations, libev usually has to linearly search 3130When doing priority-based operations, libev usually has to linearly search
3122all the priorities, so having many of them (hundreds) uses a lot of space 3131all the priorities, so having many of them (hundreds) uses a lot of space
3123and time, so using the defaults of five priorities (-2 .. +2) is usually 3132and time, so using the defaults of five priorities (-2 .. +2) is usually
3124fine. 3133fine.
3125 3134
3126If your embedding application does not need any priorities, defining these both to 3135If your embedding application does not need any priorities, defining these
3127C<0> will save some memory and CPU. 3136both to C<0> will save some memory and CPU.
3128 3137
3129=item EV_PERIODIC_ENABLE 3138=item EV_PERIODIC_ENABLE
3130 3139
3131If undefined or defined to be C<1>, then periodic timers are supported. If 3140If undefined or defined to be C<1>, then periodic timers are supported. If
3132defined to be C<0>, then they are not. Disabling them saves a few kB of 3141defined to be C<0>, then they are not. Disabling them saves a few kB of
3139code. 3148code.
3140 3149
3141=item EV_EMBED_ENABLE 3150=item EV_EMBED_ENABLE
3142 3151
3143If undefined or defined to be C<1>, then embed watchers are supported. If 3152If undefined or defined to be C<1>, then embed watchers are supported. If
3144defined to be C<0>, then they are not. 3153defined to be C<0>, then they are not. Embed watchers rely on most other
3154watcher types, which therefore must not be disabled.
3145 3155
3146=item EV_STAT_ENABLE 3156=item EV_STAT_ENABLE
3147 3157
3148If undefined or defined to be C<1>, then stat watchers are supported. If 3158If undefined or defined to be C<1>, then stat watchers are supported. If
3149defined to be C<0>, then they are not. 3159defined to be C<0>, then they are not.
3181two). 3191two).
3182 3192
3183=item EV_USE_4HEAP 3193=item EV_USE_4HEAP
3184 3194
3185Heaps are not very cache-efficient. To improve the cache-efficiency of the 3195Heaps are not very cache-efficient. To improve the cache-efficiency of the
3186timer and periodics heap, libev uses a 4-heap when this symbol is defined 3196timer and periodics heaps, libev uses a 4-heap when this symbol is defined
3187to C<1>. The 4-heap uses more complicated (longer) code but has 3197to C<1>. The 4-heap uses more complicated (longer) code but has noticeably
3188noticeably faster performance with many (thousands) of watchers. 3198faster performance with many (thousands) of watchers.
3189 3199
3190The default is C<1> unless C<EV_MINIMAL> is set in which case it is C<0> 3200The default is C<1> unless C<EV_MINIMAL> is set in which case it is C<0>
3191(disabled). 3201(disabled).
3192 3202
3193=item EV_HEAP_CACHE_AT 3203=item EV_HEAP_CACHE_AT
3194 3204
3195Heaps are not very cache-efficient. To improve the cache-efficiency of the 3205Heaps are not very cache-efficient. To improve the cache-efficiency of the
3196timer and periodics heap, libev can cache the timestamp (I<at>) within 3206timer and periodics heaps, libev can cache the timestamp (I<at>) within
3197the heap structure (selected by defining C<EV_HEAP_CACHE_AT> to C<1>), 3207the heap structure (selected by defining C<EV_HEAP_CACHE_AT> to C<1>),
3198which uses 8-12 bytes more per watcher and a few hundred bytes more code, 3208which uses 8-12 bytes more per watcher and a few hundred bytes more code,
3199but avoids random read accesses on heap changes. This improves performance 3209but avoids random read accesses on heap changes. This improves performance
3200noticeably with with many (hundreds) of watchers. 3210noticeably with many (hundreds) of watchers.
3201 3211
3202The default is C<1> unless C<EV_MINIMAL> is set in which case it is C<0> 3212The default is C<1> unless C<EV_MINIMAL> is set in which case it is C<0>
3203(disabled). 3213(disabled).
3204 3214
3205=item EV_VERIFY 3215=item EV_VERIFY
3211called once per loop, which can slow down libev. If set to C<3>, then the 3221called once per loop, which can slow down libev. If set to C<3>, then the
3212verification code will be called very frequently, which will slow down 3222verification code will be called very frequently, which will slow down
3213libev considerably. 3223libev considerably.
3214 3224
3215The default is C<1>, unless C<EV_MINIMAL> is set, in which case it will be 3225The default is C<1>, unless C<EV_MINIMAL> is set, in which case it will be
3216C<0.> 3226C<0>.
3217 3227
3218=item EV_COMMON 3228=item EV_COMMON
3219 3229
3220By default, all watchers have a C<void *data> member. By redefining 3230By default, all watchers have a C<void *data> member. By redefining
3221this macro to a something else you can include more and other types of 3231this macro to a something else you can include more and other types of
3238and the way callbacks are invoked and set. Must expand to a struct member 3248and the way callbacks are invoked and set. Must expand to a struct member
3239definition and a statement, respectively. See the F<ev.h> header file for 3249definition and a statement, respectively. See the F<ev.h> header file for
3240their default definitions. One possible use for overriding these is to 3250their default definitions. One possible use for overriding these is to
3241avoid the C<struct ev_loop *> as first argument in all cases, or to use 3251avoid the C<struct ev_loop *> as first argument in all cases, or to use
3242method calls instead of plain function calls in C++. 3252method calls instead of plain function calls in C++.
3253
3254=back
3243 3255
3244=head2 EXPORTED API SYMBOLS 3256=head2 EXPORTED API SYMBOLS
3245 3257
3246If you need to re-export the API (e.g. via a DLL) and you need a list of 3258If you need to re-export the API (e.g. via a DLL) and you need a list of
3247exported symbols, you can use the provided F<Symbol.*> files which list 3259exported symbols, you can use the provided F<Symbol.*> files which list
3299 3311
3300=head1 THREADS AND COROUTINES 3312=head1 THREADS AND COROUTINES
3301 3313
3302=head2 THREADS 3314=head2 THREADS
3303 3315
3304Libev itself is thread-safe (unless the opposite is specifically 3316All libev functions are reentrant and thread-safe unless explicitly
3305documented for a function), but it uses no locking itself. This means that 3317documented otherwise, but it uses no locking itself. This means that you
3306you can use as many loops as you want in parallel, as long as only one 3318can use as many loops as you want in parallel, as long as there are no
3307thread ever calls into one libev function with the same loop parameter: 3319concurrent calls into any libev function with the same loop parameter
3320(C<ev_default_*> calls have an implicit default loop parameter, of
3308libev guarentees that different event loops share no data structures that 3321course): libev guarantees that different event loops share no data
3309need locking. 3322structures that need any locking.
3310 3323
3311Or to put it differently: calls with different loop parameters can be done 3324Or to put it differently: calls with different loop parameters can be done
3312concurrently from multiple threads, calls with the same loop parameter 3325concurrently from multiple threads, calls with the same loop parameter
3313must be done serially (but can be done from different threads, as long as 3326must be done serially (but can be done from different threads, as long as
3314only one thread ever is inside a call at any point in time, e.g. by using 3327only one thread ever is inside a call at any point in time, e.g. by using
3315a mutex per loop). 3328a mutex per loop).
3316 3329
3317Specifically to support threads (and signal handlers), libev implements 3330Specifically to support threads (and signal handlers), libev implements
3318so-called C<ev_async> watchers, which allow some limited form of 3331so-called C<ev_async> watchers, which allow some limited form of
3319concurrency on the same event loop. 3332concurrency on the same event loop, namely waking it up "from the
3333outside".
3320 3334
3321If you want to know which design (one loop, locking, or multiple loops 3335If you want to know which design (one loop, locking, or multiple loops
3322without or something else still) is best for your problem, then I cannot 3336without or something else still) is best for your problem, then I cannot
3323help you. I can give some generic advice however: 3337help you, but here is some generic advice:
3324 3338
3325=over 4 3339=over 4
3326 3340
3327=item * most applications have a main thread: use the default libev loop 3341=item * most applications have a main thread: use the default libev loop
3328in that thread, or create a separate thread running only the default loop. 3342in that thread, or create a separate thread running only the default loop.
3420=item Priority handling: O(number_of_priorities) 3434=item Priority handling: O(number_of_priorities)
3421 3435
3422Priorities are implemented by allocating some space for each 3436Priorities are implemented by allocating some space for each
3423priority. When doing priority-based operations, libev usually has to 3437priority. When doing priority-based operations, libev usually has to
3424linearly search all the priorities, but starting/stopping and activating 3438linearly search all the priorities, but starting/stopping and activating
3425watchers becomes O(1) w.r.t. priority handling. 3439watchers becomes O(1) with respect to priority handling.
3426 3440
3427=item Sending an ev_async: O(1) 3441=item Sending an ev_async: O(1)
3428 3442
3429=item Processing ev_async_send: O(number_of_async_watchers) 3443=item Processing ev_async_send: O(number_of_async_watchers)
3430 3444
3456 3470
3457Not a libev limitation but worth mentioning: windows apparently doesn't 3471Not a libev limitation but worth mentioning: windows apparently doesn't
3458accept large writes: instead of resulting in a partial write, windows will 3472accept large writes: instead of resulting in a partial write, windows will
3459either accept everything or return C<ENOBUFS> if the buffer is too large, 3473either accept everything or return C<ENOBUFS> if the buffer is too large,
3460so make sure you only write small amounts into your sockets (less than a 3474so make sure you only write small amounts into your sockets (less than a
3461megabyte seems safe, but thsi apparently depends on the amount of memory 3475megabyte seems safe, but this apparently depends on the amount of memory
3462available). 3476available).
3463 3477
3464Due to the many, low, and arbitrary limits on the win32 platform and 3478Due to the many, low, and arbitrary limits on the win32 platform and
3465the abysmal performance of winsockets, using a large number of sockets 3479the abysmal performance of winsockets, using a large number of sockets
3466is not recommended (and not reasonable). If your program needs to use 3480is not recommended (and not reasonable). If your program needs to use
3477 #define EV_SELECT_IS_WINSOCKET 1 /* configure libev for windows select */ 3491 #define EV_SELECT_IS_WINSOCKET 1 /* configure libev for windows select */
3478 3492
3479 #include "ev.h" 3493 #include "ev.h"
3480 3494
3481And compile the following F<evwrap.c> file into your project (make sure 3495And compile the following F<evwrap.c> file into your project (make sure
3482you do I<not> compile the F<ev.c> or any other embedded soruce files!): 3496you do I<not> compile the F<ev.c> or any other embedded source files!):
3483 3497
3484 #include "evwrap.h" 3498 #include "evwrap.h"
3485 #include "ev.c" 3499 #include "ev.c"
3486 3500
3487=over 4 3501=over 4
3552calls them using an C<ev_watcher *> internally. 3566calls them using an C<ev_watcher *> internally.
3553 3567
3554=item C<sig_atomic_t volatile> must be thread-atomic as well 3568=item C<sig_atomic_t volatile> must be thread-atomic as well
3555 3569
3556The type C<sig_atomic_t volatile> (or whatever is defined as 3570The type C<sig_atomic_t volatile> (or whatever is defined as
3557C<EV_ATOMIC_T>) must be atomic w.r.t. accesses from different 3571C<EV_ATOMIC_T>) must be atomic with respect to accesses from different
3558threads. This is not part of the specification for C<sig_atomic_t>, but is 3572threads. This is not part of the specification for C<sig_atomic_t>, but is
3559believed to be sufficiently portable. 3573believed to be sufficiently portable.
3560 3574
3561=item C<sigprocmask> must work in a threaded environment 3575=item C<sigprocmask> must work in a threaded environment
3562 3576

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines