2 + D Programming Language "bindings" to libev
3 + <http://software.schmorp.de/pkg/libev.html>
5 + Written by Leandro Lucarella (2008).
7 + Placed under BOLA license <http://auriga.wearlab.de/~alb/bola/> which is
8 + basically public domain.
16 UNDEF = 0xFFFFFFFFL, // guaranteed to be invalid
17 NONE = 0x00L, // no events
18 READ = 0x01L, // ev_io detected read will not block
19 WRITE = 0x02L, // ev_io detected write will not block
20 IOFDSET = 0x80L, // internal use only
21 TIMEOUT = 0x00000100L, // timer timed out
22 PERIODIC = 0x00000200L, // periodic timer timed out
23 SIGNAL = 0x00000400L, // signal was received
24 CHILD = 0x00000800L, // child/pid had status change
25 STAT = 0x00001000L, // stat data changed
26 IDLE = 0x00002000L, // event loop is idling
27 PREPARE = 0x00004000L, // event loop about to poll
28 CHECK = 0x00008000L, // event loop finished poll
29 EMBED = 0x00010000L, // embedded event loop needs sweep
30 FORK = 0x00020000L, // event loop resumed in child
31 ERROR = 0x80000000L, // sent when an error occurs
36 // bits for ev_default_loop and ev_loop_new
38 AUTO = 0x00000000UL, // not quite a mask
40 NOENV = 0x01000000UL, // do NOT consult environment
41 FORKCHECK = 0x02000000UL, // check for a fork in each iteration
42 // method bits to be ored together
43 SELECT = 0x00000001UL, // about anywhere
44 POLL = 0x00000002UL, // !win
45 EPOLL = 0x00000004UL, // linux
46 KQUEUE = 0x00000008UL, // bsd
47 DEVPOLL = 0x00000010UL, // solaris 8 / NYI
48 PORT = 0x00000020UL, // solaris 10
53 NONBLOCK = 1, // do not block/wait
54 ONESHOT = 2, // block *once* only
59 CANCEL = 0, // undo unloop
60 ONE = 1, // unloop once
61 ALL = 2, // unloop all loops
68 version (EV_ENABLE_SELECT)
73 version = EV_PERIODIC_ENABLE;
74 version = EV_STAT_ENABLE;
75 version = EV_IDLE_ENABLE;
76 version = EV_FORK_ENABLE;
77 version = EV_EMBED_ENABLE;
80 alias double ev_tstamp;
89 template EV_CB_DECLARE(TYPE)
91 void function (ev_loop_t*, TYPE*, int) cb;
94 template EV_WATCHER(TYPE)
96 int active; // private
97 int pending; // private
98 int priority; // private
99 mixin EV_COMMON; // rw
100 mixin EV_CB_DECLARE!(TYPE); // private
103 template EV_WATCHER_LIST(TYPE)
105 mixin EV_WATCHER!(TYPE);
106 ev_watcher_list* next; // private
109 template EV_WATCHER_TIME(TYPE)
111 mixin EV_WATCHER!(TYPE);
112 ev_tstamp at; // private
117 mixin EV_WATCHER!(ev_watcher);
120 struct ev_watcher_list
122 mixin EV_WATCHER_LIST!(ev_watcher_list);
125 struct ev_watcher_time
127 mixin EV_WATCHER_TIME!(ev_watcher_time);
132 mixin EV_WATCHER_LIST!(ev_io);
139 mixin EV_WATCHER_TIME!(ev_timer);
140 ev_tstamp repeat; // rw
143 version (EV_PERIODIC_ENABLE)
147 mixin EV_WATCHER_TIME!(ev_periodic);
148 ev_tstamp offset; // rw
149 ev_tstamp interval; // rw
150 ev_tstamp function(ev_periodic *w,
151 ev_tstamp now) reschedule_cb; // rw
157 mixin EV_WATCHER_LIST!(ev_signal);
163 mixin EV_WATCHER_LIST!(ev_child);
165 int rpid; // rw, holds the received pid
166 int rstatus; // rw, holds the exit status, use the
167 // macros from sys/wait.h
170 version (EV_STAT_ENABLE)
173 version (Windows) // alias _stati64 ev_statdata;
175 pragma (msg, "ev_stat not supported in windows "
176 "because I don't know the "
177 "layout of _stati64");
179 // Maybe this should work?
180 //static import stat = std.c.windows.stat;
181 //alias stat.struct_stat ev_statdata;
183 else // It should be POSIX
185 static import stat = std.c.unix.unix;
186 alias stat.struct_stat ev_statdata;
191 mixin EV_WATCHER_LIST!(ev_stat);
193 ev_timer timer; // private
194 ev_tstamp interval; // ro
195 const char *path; // ro
196 ev_statdata prev; // ro
197 ev_statdata attr; // ro
198 int wd; // wd for inotify, fd for kqueue
202 version (EV_IDLE_ENABLE)
206 mixin EV_WATCHER!(ev_idle);
212 mixin EV_WATCHER!(ev_prepare);
217 mixin EV_WATCHER!(ev_check);
220 version (EV_FORK_ENABLE)
224 mixin EV_WATCHER!(ev_fork);
228 version (EV_EMBED_ENABLE)
232 mixin EV_WATCHER!(ev_embed);
233 ev_loop_t* other; // ro
235 ev_prepare prepare; // private
236 ev_check check; // unused
237 ev_timer timer; // unused
238 ev_periodic periodic; // unused
239 ev_idle idle; // unused
240 ev_fork fork; // unused
244 int ev_version_major();
245 int ev_version_minor();
247 uint ev_supported_backends();
248 uint ev_recommended_backends();
249 uint ev_embeddable_backends();
252 void ev_sleep(ev_tstamp delay); // sleep for a while
254 // Sets the allocation function to use, works like realloc.
255 // It is used to allocate and free memory.
256 // If it returns zero when memory needs to be allocated, the library
258 // or take some potentially destructive action.
259 // The default is your system realloc function.
260 void ev_set_allocator(void* function(void* ptr, int size));
262 // set the callback function to call on a
263 // retryable syscall error
264 // (such as failed select, poll, epoll_wait)
265 void ev_set_syserr_cb(void* function(char* msg));
267 extern ev_loop_t* ev_default_loop_ptr;
269 ev_loop_t* ev_default_loop_init(uint flags);
271 // create and destroy alternative loops that don't handle signals
272 ev_loop_t* ev_loop_new(uint flags);
273 void ev_loop_destroy(ev_loop_t*);
274 void ev_loop_fork(ev_loop_t*);
276 ev_tstamp ev_now(ev_loop_t*);
277 void ev_default_destroy();
278 void ev_default_fork();
279 uint ev_backend(ev_loop_t*);
280 uint ev_loop_count(ev_loop_t*);
281 void ev_loop(ev_loop_t*, int flags);
282 void ev_unloop(ev_loop_t*, how);
283 void ev_set_io_collect_interval(ev_loop_t*, ev_tstamp interval);
284 void ev_set_timeout_collect_interval(ev_loop_t*, ev_tstamp interval);
285 void ev_ref(ev_loop_t*);
286 void ev_unref(ev_loop_t*);
287 void ev_once(ev_loop_t*, int fd, int events, ev_tstamp timeout,
288 void function(int revents, void* arg), void* arg);
290 void ev_feed_event(ev_loop_t*, void *w, int revents);
291 void ev_feed_fd_event(ev_loop_t*, int fd, int revents);
292 void ev_feed_signal_event (ev_loop_t*, int signum);
293 void ev_invoke(ev_loop_t*, void *w, int revents);
294 int ev_clear_pending(ev_loop_t*, void *w);
296 void ev_io_start(ev_loop_t*, ev_io *w);
297 void ev_io_stop(ev_loop_t*, ev_io *w);
299 void ev_timer_start(ev_loop_t*, ev_timer *w);
300 void ev_timer_stop(ev_loop_t*, ev_timer *w);
301 void ev_timer_again(ev_loop_t*, ev_timer *w);
303 version (EV_PERIODIC_ENABLE)
305 void ev_periodic_start(ev_loop_t*, ev_periodic *w);
306 void ev_periodic_stop(ev_loop_t*, ev_periodic *w);
307 void ev_periodic_again(ev_loop_t*, ev_periodic *w);
310 void ev_signal_start(ev_loop_t*, ev_signal *w);
311 void ev_signal_stop(ev_loop_t*, ev_signal *w);
313 /* only supported in the default loop */
314 void ev_child_start(ev_loop_t*, ev_child *w);
315 void ev_child_stop(ev_loop_t*, ev_child *w);
317 version (EV_STAT_ENABLE)
319 void ev_stat_start(ev_loop_t*, ev_stat *w);
320 void ev_stat_stop(ev_loop_t*, ev_stat *w);
321 void ev_stat_stat(ev_loop_t*, ev_stat *w);
324 version (EV_IDLE_ENABLE)
326 void ev_idle_start(ev_loop_t*, ev_idle *w);
327 void ev_idle_stop(ev_loop_t*, ev_idle *w);
330 void ev_prepare_start(ev_loop_t*, ev_prepare *w);
331 void ev_prepare_stop(ev_loop_t*, ev_prepare *w);
333 void ev_check_start(ev_loop_t*, ev_check *w);
334 void ev_check_stop(ev_loop_t*, ev_check *w);
336 version (EV_FORK_ENABLE)
338 void ev_fork_start(ev_loop_t*, ev_fork *w);
339 void ev_fork_stop(ev_loop_t*, ev_fork *w);
342 version (EV_EMBED_ENABLE)
344 // only supported when loop to be embedded is in fact embeddable
345 void ev_embed_start(ev_loop_t*, ev_embed *w);
346 void ev_embed_stop(ev_loop_t*, ev_embed *w);
347 void ev_embed_sweep(ev_loop_t*, ev_embed *w);
350 bool ev_is_pending(TYPE)(TYPE* w)
355 bool ev_is_active(TYPE)(TYPE* w)
360 int ev_priority(TYPE)(TYPE* w)
365 void function(ev_loop_t*, TYPE*, int) ev_cb(TYPE)(TYPE* w)
370 void ev_set_priority(TYPE)(TYPE* w, int pri)
375 void ev_set_cb(TYPE)(TYPE* w,
376 void function(ev_loop_t*, TYPE*, int) cb)
381 void ev_init(TYPE)(TYPE* w,
382 void function(ev_loop_t*, TYPE*, int) cb)
390 void ev_io_set(ev_io* w, int fd, int events)
393 w.events = events | IOFDSET;
396 void ev_timer_set(ev_timer* w, ev_tstamp after, ev_tstamp repeat)
402 void ev_periodic_set(ev_periodic* w, ev_tstamp ofs, ev_tstamp ival,
403 ev_tstamp function(ev_periodic *w, ev_tstamp now) res)
407 w.reschedule_cb = res;
410 void ev_signal_set(ev_signal* w, int signum)
415 void ev_child_set(ev_child* w, int pid)
420 void ev_stat_set(ev_stat* w, char* path, ev_tstamp interval)
423 w.interval = interval;
427 void ev_idle_set(ev_idle* w)
431 void ev_prepare_set(ev_prepare* w)
435 void ev_check_set(ev_check* w)
439 void ev_embed_set(ev_embed* w, ev_loop_t* other)
444 void ev_fork_set(ev_fork* w)
448 void ev_io_init(ev_io* w, void function(ev_loop_t*, ev_io*, int) cb, int fd,
452 ev_io_set(w, fd, events);
455 void ev_timer_init(ev_timer* w, void function(ev_loop_t*, ev_timer*, int) cb,
456 ev_tstamp after, ev_tstamp repeat)
459 ev_timer_set(w, after, repeat);
462 void ev_periodic_init(ev_periodic* w,
463 void function(ev_loop_t*, ev_periodic*, int) cb,
464 ev_tstamp ofs, ev_tstamp ival,
465 ev_tstamp function(ev_periodic *w, ev_tstamp now) res)
468 ev_periodic_set(w, ofs, ival, res);
471 void ev_signal_init(ev_signal* w, void function(ev_loop_t*, ev_signal*, int) cb,
475 ev_signal_set(w, signum);
478 void ev_child_init(ev_child* w, void function(ev_loop_t*, ev_child*, int) cb,
482 ev_child_set(w, pid);
485 void ev_stat_init(ev_stat* w, void function(ev_loop_t*, ev_stat*, int) cb,
486 char* path, ev_tstamp interval)
489 ev_stat_set(w, path, interval);
492 void ev_idle_init(ev_idle* w, void function(ev_loop_t*, ev_idle*, int) cb)
498 void ev_prepare_init(ev_prepare* w,
499 void function(ev_loop_t*, ev_prepare*, int) cb)
505 void ev_check_init(ev_check* w, void function(ev_loop_t*, ev_check*, int) cb)
511 void ev_embed_init(ev_embed* w, void function(ev_loop_t*, ev_embed*, int) cb,
515 ev_embed_set(w, other);
518 void ev_fork_init(ev_fork* w, void function(ev_loop_t*, ev_fork*, int) cb)
524 ev_loop_t* ev_default_loop(uint flags = AUTO)
526 if (!ev_default_loop_ptr)
527 ev_default_loop_init(flags);
528 return ev_default_loop_ptr;