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

Comparing libev/ev.h (file contents):
Revision 1.29 by root, Sun Nov 4 00:24:17 2007 UTC vs.
Revision 1.45 by root, Fri Nov 9 21:48:23 2007 UTC

25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30#ifndef EV_H 30#ifndef EV_H__
31#define EV_H 31#define EV_H__
32 32
33#ifdef __cplusplus 33#ifdef __cplusplus
34extern "C" { 34extern "C" {
35#endif 35#endif
36 36
85#endif 85#endif
86 86
87#define EV_VERSION_MAJOR 1 87#define EV_VERSION_MAJOR 1
88#define EV_VERSION_MINOR 1 88#define EV_VERSION_MINOR 1
89 89
90#ifndef EV_CB_DECLARE
91# define EV_CB_DECLARE(type) void (*cb)(EV_P_ struct type *w, int revents)
92#endif
93#ifndef EV_CB_INVOKE
94# define EV_CB_INVOKE(watcher,revents) (watcher)->cb (EV_A_ (watcher), (revents))
95#endif
96
90/* 97/*
91 * struct member types: 98 * struct member types:
92 * private: you can look at them, but not change them, and they might not mean anything to you. 99 * private: you can look at them, but not change them, and they might not mean anything to you.
93 * ro: can be read anytime, but only changed when the watcher isn't active 100 * ro: can be read anytime, but only changed when the watcher isn't active
94 * rw: can be read and modified anytime, even when the watcher is active 101 * rw: can be read and modified anytime, even when the watcher is active
96 103
97/* shared by all watchers */ 104/* shared by all watchers */
98#define EV_WATCHER(type) \ 105#define EV_WATCHER(type) \
99 int active; /* private */ \ 106 int active; /* private */ \
100 int pending; /* private */ \ 107 int pending; /* private */ \
101 int priority; /* ro */ \ 108 int priority; /* private */ \
102 EV_COMMON; /* rw */ \ 109 EV_COMMON; /* rw */ \
103 void (*cb)(EV_P_ struct type *, int revents); /* rw */ /* gets invoked with an eventmask */ 110 EV_CB_DECLARE (type) /* private */
104 111
105#define EV_WATCHER_LIST(type) \ 112#define EV_WATCHER_LIST(type) \
106 EV_WATCHER (type); \ 113 EV_WATCHER (type); \
107 struct ev_watcher_list *next /* private */ 114 struct ev_watcher_list *next /* private */
108 115
109#define EV_WATCHER_TIME(type) \ 116#define EV_WATCHER_TIME(type) \
110 EV_WATCHER (type); \ 117 EV_WATCHER (type); \
111 ev_tstamp at /* private */ 118 ev_tstamp at /* private */
112 119
113/* base class, nothing to see here unless you subclass */ 120/* base class, nothing to see here unless you subclass */
114struct ev_watcher { 121struct ev_watcher
122{
115 EV_WATCHER (ev_watcher); 123 EV_WATCHER (ev_watcher);
116}; 124};
117 125
118/* base class, nothing to see here unless you subclass */ 126/* base class, nothing to see here unless you subclass */
119struct ev_watcher_list { 127struct ev_watcher_list
128{
120 EV_WATCHER_LIST (ev_watcher_list); 129 EV_WATCHER_LIST (ev_watcher_list);
121}; 130};
122 131
123/* base class, nothing to see here unless you subclass */ 132/* base class, nothing to see here unless you subclass */
124struct ev_watcher_time { 133struct ev_watcher_time
134{
125 EV_WATCHER_TIME (ev_watcher_time); 135 EV_WATCHER_TIME (ev_watcher_time);
126}; 136};
127 137
128/* invoked after a specific time, repeatable (based on monotonic clock) */ 138/* invoked after a specific time, repeatable (based on monotonic clock) */
129/* revent EV_TIMEOUT */ 139/* revent EV_TIMEOUT */
139struct ev_periodic 149struct ev_periodic
140{ 150{
141 EV_WATCHER_TIME (ev_periodic); 151 EV_WATCHER_TIME (ev_periodic);
142 152
143 ev_tstamp interval; /* rw */ 153 ev_tstamp interval; /* rw */
154 ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now); /* rw */
144}; 155};
145 156
146/* invoked when fd is either EV_READable or EV_WRITEable */ 157/* invoked when fd is either EV_READable or EV_WRITEable */
147/* revent EV_READ, EV_WRITE */ 158/* revent EV_READ, EV_WRITE */
148struct ev_io 159struct ev_io
156/* invoked when the given signal has been received */ 167/* invoked when the given signal has been received */
157/* revent EV_SIGNAL */ 168/* revent EV_SIGNAL */
158struct ev_signal 169struct ev_signal
159{ 170{
160 EV_WATCHER_LIST (ev_signal); 171 EV_WATCHER_LIST (ev_signal);
161#if EV_MULTIPLICITY
162 struct ev_loop *loop;
163#endif
164 172
165 int signum; /* ro */ 173 int signum; /* ro */
166}; 174};
167 175
168/* invoked when the nothing else needs to be done, keeps the process from blocking */ 176/* invoked when the nothing else needs to be done, keeps the process from blocking */
195 EV_WATCHER_LIST (ev_child); 203 EV_WATCHER_LIST (ev_child);
196 204
197 int pid; /* ro */ 205 int pid; /* ro */
198 int rpid; /* rw, holds the received pid */ 206 int rpid; /* rw, holds the received pid */
199 int rstatus; /* rw, holds the exit status, use the macros from sys/wait.h */ 207 int rstatus; /* rw, holds the exit status, use the macros from sys/wait.h */
208};
209
210/* the presence of this union forces similar struct layout */
211union ev_any_watcher
212{
213 struct ev_watcher w;
214 struct ev_watcher_list wl;
215 struct ev_io io;
216 struct ev_timer timer;
217 struct ev_periodic periodic;
218 struct ev_signal signal;
219 struct ev_idle idle;
220 struct ev_child child;
221 struct ev_prepare prepare;
222 struct ev_check check;
200}; 223};
201 224
202#define EVMETHOD_AUTO 0 /* consults environment */ 225#define EVMETHOD_AUTO 0 /* consults environment */
203#define EVMETHOD_SELECT 1 226#define EVMETHOD_SELECT 1
204#define EVMETHOD_POLL 2 227#define EVMETHOD_POLL 2
205#define EVMETHOD_EPOLL 4 228#define EVMETHOD_EPOLL 4
206#define EVMETHOD_KQUEUE 8 229#define EVMETHOD_KQUEUE 8
207#define EVMETHOD_DEVPOLL 16 /* NYI */ 230#define EVMETHOD_DEVPOLL 16 /* NYI */
208#define EVMETHOD_PORT 32 /* NYI */ 231#define EVMETHOD_PORT 32 /* NYI */
232#define EVMETHOD_WIN32 64 /* NYI */
209#define EVMETHOD_ANY ~0 /* any method, do not consult env */ 233#define EVMETHOD_ANY ~0 /* any method, do not consult env */
210 234
211#if EV_PROTOTYPES 235#if EV_PROTOTYPES
212int ev_version_major (void); 236int ev_version_major (void);
213int ev_version_minor (void); 237int ev_version_minor (void);
214 238
215/* these three calls are suitable for plugging into pthread_atfork */
216void ev_fork_prepare (void);
217void ev_fork_parent (void);
218void ev_fork_child (void);
219
220ev_tstamp ev_time (void); 239ev_tstamp ev_time (void);
221 240
241/* Sets the allocation function to use, works like realloc.
242 * It is used to allocate and free memory.
243 * If it returns zero when memory needs to be allocated, the library might abort
244 * or take some potentially destructive action.
245 * The default is your system realloc function.
246 */
247void ev_set_allocator (void *(*cb)(void *ptr, long size));
248
249/* set the callback function to call on a
250 * retryable syscall error
251 * (such as failed select, poll, epoll_wait)
252 */
253void ev_set_syserr_cb (void (*cb)(const char *msg));
254
222# if EV_MULTIPLICITY 255# if EV_MULTIPLICITY
256/* the default loop is the only one that handles signals and child watchers */
257/* you can call this as often as you like */
258struct ev_loop *ev_default_loop (int methods); /* returns default loop */
259
260/* create and destroy alternative loops that don't handle signals */
223struct ev_loop *ev_loop_new (int methods); 261struct ev_loop *ev_loop_new (int methods);
224void ev_loop_delete (EV_P); 262void ev_loop_destroy (EV_P);
263void ev_loop_fork (EV_P);
225# else 264# else
226int ev_init (int methods); /* returns ev_method */ 265int ev_default_loop (int methods); /* returns true when successful */
227# endif 266# endif
228 267
268void ev_default_destroy (void); /* destroy the default loop */
269/* this needs to be called after fork, to duplicate the default loop */
270/* if you create alternative loops you have to call ev_loop_fork on them */
271/* you can call it in either the parent or the child */
272/* you can actually call it at any time, anywhere :) */
273void ev_default_fork (void);
274
229int ev_method (EV_P); 275int ev_method (EV_P);
230
231#endif 276#endif
232 277
233#define EVLOOP_NONBLOCK 1 /* do not block/wait */ 278#define EVLOOP_NONBLOCK 1 /* do not block/wait */
234#define EVLOOP_ONESHOT 2 /* block *once* only */ 279#define EVLOOP_ONESHOT 2 /* block *once* only */
235#define EVUNLOOP_ONCE 1 /* unloop once */ 280#define EVUNLOOP_ONCE 1 /* unloop once */
253/* if timeout is < 0, do wait indefinitely */ 298/* if timeout is < 0, do wait indefinitely */
254void ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg); 299void ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg);
255#endif 300#endif
256 301
257/* these may evaluate ev multiple times, and the other arguments at most once */ 302/* these may evaluate ev multiple times, and the other arguments at most once */
258/* either use ev_watcher_init + ev_TYPE_set, or the ev_TYPE_init macro, below, to first initialise a watcher */ 303/* either use ev_init + ev_TYPE_set, or the ev_TYPE_init macro, below, to first initialise a watcher */
259#define ev_watcher_init(ev,cb_) do { (ev)->active = (ev)->pending = (ev)->priority = 0; (ev)->cb = (cb_); } while (0) 304#define ev_init(ev,cb_) do { \
305 ((struct ev_watcher *)(void *)(ev))->active = \
306 ((struct ev_watcher *)(void *)(ev))->pending = \
307 ((struct ev_watcher *)(void *)(ev))->priority = 0; \
308 ev_set_cb ((ev), cb_); \
309} while (0)
260 310
261#define ev_io_set(ev,fd_,events_) do { (ev)->fd = (fd_); (ev)->events = (events_); } while (0) 311#define ev_io_set(ev,fd_,events_) do { (ev)->fd = (fd_); (ev)->events = (events_); } while (0)
262#define ev_timer_set(ev,after_,repeat_) do { (ev)->at = (after_); (ev)->repeat = (repeat_); } while (0) 312#define ev_timer_set(ev,after_,repeat_) do { (ev)->at = (after_); (ev)->repeat = (repeat_); } while (0)
263#define ev_periodic_set(ev,at_,interval_) do { (ev)->at = (at_); (ev)->interval = (interval_); } while (0) 313#define ev_periodic_set(ev,at_,ival_,res_) do { (ev)->at = (at_); (ev)->interval = (ival_); (ev)->reschedule_cb= (res_); } while (0)
264#define ev_signal_set(ev,signum_) do { (ev)->signum = (signum_); } while (0) 314#define ev_signal_set(ev,signum_) do { (ev)->signum = (signum_); } while (0)
265#define ev_idle_set(ev) /* nop, yes, this is a serious in-joke */ 315#define ev_idle_set(ev) /* nop, yes, this is a serious in-joke */
266#define ev_prepare_set(ev) /* nop, yes, this is a serious in-joke */ 316#define ev_prepare_set(ev) /* nop, yes, this is a serious in-joke */
267#define ev_check_set(ev) /* nop, yes, this is a serious in-joke */ 317#define ev_check_set(ev) /* nop, yes, this is a serious in-joke */
268#define ev_child_set(ev,pid_) do { (ev)->pid = (pid_); } while (0) 318#define ev_child_set(ev,pid_) do { (ev)->pid = (pid_); } while (0)
269 319
270#define ev_io_init(ev,cb,fd,events) do { ev_watcher_init ((ev), (cb)); ev_io_set ((ev),(fd),(events)); } while (0) 320#define ev_io_init(ev,cb,fd,events) do { ev_init ((ev), (cb)); ev_io_set ((ev),(fd),(events)); } while (0)
271#define ev_timer_init(ev,cb,after,repeat) do { ev_watcher_init ((ev), (cb)); ev_timer_set ((ev),(after),(repeat)); } while (0) 321#define ev_timer_init(ev,cb,after,repeat) do { ev_init ((ev), (cb)); ev_timer_set ((ev),(after),(repeat)); } while (0)
272#define ev_periodic_init(ev,cb,at,interval) do { ev_watcher_init ((ev), (cb)); ev_periodic_set ((ev),(at),(interval)); } while (0) 322#define ev_periodic_init(ev,cb,at,ival,res) do { ev_init ((ev), (cb)); ev_periodic_set ((ev),(at),(ival),(res)); } while (0)
273#define ev_signal_init(ev,cb,signum) do { ev_watcher_init ((ev), (cb)); ev_signal_set ((ev), (signum)); } while (0) 323#define ev_signal_init(ev,cb,signum) do { ev_init ((ev), (cb)); ev_signal_set ((ev), (signum)); } while (0)
274#define ev_idle_init(ev,cb) do { ev_watcher_init ((ev), (cb)); ev_idle_set ((ev)); } while (0) 324#define ev_idle_init(ev,cb) do { ev_init ((ev), (cb)); ev_idle_set ((ev)); } while (0)
275#define ev_prepare_init(ev,cb) do { ev_watcher_init ((ev), (cb)); ev_prepare_set ((ev)); } while (0) 325#define ev_prepare_init(ev,cb) do { ev_init ((ev), (cb)); ev_prepare_set ((ev)); } while (0)
276#define ev_check_init(ev,cb) do { ev_watcher_init ((ev), (cb)); ev_check_set ((ev)); } while (0) 326#define ev_check_init(ev,cb) do { ev_init ((ev), (cb)); ev_check_set ((ev)); } while (0)
277#define ev_child_init(ev,cb,pid) do { ev_watcher_init ((ev), (cb)); ev_child_set ((ev),(pid)); } while (0) 327#define ev_child_init(ev,cb,pid) do { ev_init ((ev), (cb)); ev_child_set ((ev),(pid)); } while (0)
278 328
329#define ev_is_pending(ev) (0 + ((struct ev_watcher *)(void *)(ev))->pending) /* ro, true when watcher is waiting for callback invocation */
279#define ev_is_active(ev) (0 + (ev)->active) /* true when the watcher has been started */ 330#define ev_is_active(ev) (0 + ((struct ev_watcher *)(void *)(ev))->active) /* ro, true when the watcher has been started */
331
332#define ev_priority(ev) ((struct ev_watcher *)(void *)(ev))->priority /* rw */
333#define ev_cb(ev) (ev)->cb /* rw */
280#define ev_set_priority(ev,pri) (ev)->priority = pri 334#define ev_set_priority(ev,pri) ev_priority (ev) = (pri)
335
336#ifndef ev_set_cb
337# define ev_set_cb(ev,cb_) ev_cb (ev) = (cb_)
338#endif
281 339
282/* stopping (enabling, adding) a watcher does nothing if it is already running */ 340/* stopping (enabling, adding) a watcher does nothing if it is already running */
283/* stopping (disabling, deleting) a watcher does nothing unless its already running */ 341/* stopping (disabling, deleting) a watcher does nothing unless its already running */
284#if EV_PROTOTYPES 342#if EV_PROTOTYPES
343
344/* feeds an event into a watcher as if the event actually occured */
345/* accepts any ev_watcher type */
346void ev_feed_event (EV_P_ void *w, int revents);
347void ev_feed_fd_event (EV_P_ int fd, int revents);
348void ev_feed_signal_event (EV_P_ int signum);
349
285void ev_io_start (EV_P_ struct ev_io *w); 350void ev_io_start (EV_P_ struct ev_io *w);
286void ev_io_stop (EV_P_ struct ev_io *w); 351void ev_io_stop (EV_P_ struct ev_io *w);
287 352
288void ev_timer_start (EV_P_ struct ev_timer *w); 353void ev_timer_start (EV_P_ struct ev_timer *w);
289void ev_timer_stop (EV_P_ struct ev_timer *w); 354void ev_timer_stop (EV_P_ struct ev_timer *w);
290void ev_timer_again (EV_P_ struct ev_timer *w); /* stops if active and no repeat, restarts if active and repeating, starts if inactive and repeating */ 355/* stops if active and no repeat, restarts if active and repeating, starts if inactive and repeating */
356void ev_timer_again (EV_P_ struct ev_timer *w);
291 357
292void ev_periodic_start (EV_P_ struct ev_periodic *w); 358void ev_periodic_start (EV_P_ struct ev_periodic *w);
293void ev_periodic_stop (EV_P_ struct ev_periodic *w); 359void ev_periodic_stop (EV_P_ struct ev_periodic *w);
360void ev_periodic_again (EV_P_ struct ev_periodic *w);
294 361
362void ev_idle_start (EV_P_ struct ev_idle *w);
363void ev_idle_stop (EV_P_ struct ev_idle *w);
364
365void ev_prepare_start (EV_P_ struct ev_prepare *w);
366void ev_prepare_stop (EV_P_ struct ev_prepare *w);
367
368void ev_check_start (EV_P_ struct ev_check *w);
369void ev_check_stop (EV_P_ struct ev_check *w);
370
371/* only supported in the default loop */
295void ev_signal_start (EV_P_ struct ev_signal *w); 372void ev_signal_start (EV_P_ struct ev_signal *w);
296void ev_signal_stop (EV_P_ struct ev_signal *w); 373void ev_signal_stop (EV_P_ struct ev_signal *w);
297 374
298void ev_idle_start (EV_P_ struct ev_idle *w); 375/* only supported in the default loop */
299void ev_idle_stop (EV_P_ struct ev_idle *w);
300
301void ev_prepare_start (EV_P_ struct ev_prepare *w);
302void ev_prepare_stop (EV_P_ struct ev_prepare *w);
303
304void ev_check_start (EV_P_ struct ev_check *w);
305void ev_check_stop (EV_P_ struct ev_check *w);
306
307void ev_child_start (EV_P_ struct ev_child *w); 376void ev_child_start (EV_P_ struct ev_child *w);
308void ev_child_stop (EV_P_ struct ev_child *w); 377void ev_child_stop (EV_P_ struct ev_child *w);
309#endif 378#endif
310 379
311#ifdef __cplusplus 380#ifdef __cplusplus

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines