2 * libevent compatibility layer
4 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 # include <sys/time.h>
44 # define dLOOPev struct ev_loop *loop = (struct ev_loop *)ev->ev_base
45 # define dLOOPbase struct ev_loop *loop = (struct ev_loop *)base
51 /* never accessed, will always be cast from/to ev_loop */
57 static struct event_base *x_cur;
60 tv_set (struct timeval *tv, ev_tstamp at)
62 tv->tv_sec = (long)at;
63 tv->tv_usec = (long)((at - (ev_tstamp)tv->tv_sec) * 1e6);
67 tv_get (struct timeval *tv)
70 return tv->tv_sec + tv->tv_usec * 1e-6;
75 #define EVENT_VERSION(a,b) # a "." # b
77 const char *event_get_version (void)
79 return EVENT_VERSION (EV_VERSION_MAJOR, EV_VERSION_MINOR);
82 const char *event_get_method (void)
87 void *event_init (void)
91 x_cur = (struct event_base *)ev_loop_new (EVMETHOD_AUTO);
93 x_cur = (struct event_base *)ev_default_loop (EVMETHOD_AUTO);
95 assert (("multiple event bases not supported when not compiled with EV_MULTIPLICITY", !x_cur));
97 x_cur = (struct event_base *)(long)ev_default_loop (EVMETHOD_AUTO);
103 void event_base_free (struct event_base *base)
108 if (ev_default_loop (EVMETHOD_AUTO) != loop)
109 ev_loop_destroy (loop);
113 int event_dispatch (void)
115 return event_base_dispatch (x_cur);
119 void event_set_log_callback (event_log_cb cb)
125 int event_loop (int flags)
127 return event_base_loop (x_cur, flags);
130 int event_loopexit (struct timeval *tv)
132 return event_base_loopexit (x_cur, tv);
136 x_cb (struct event *ev, int revents)
138 revents &= EV_READ | EV_WRITE | EV_TIMEOUT | EV_SIGNAL;
140 ev->ev_res = revents;
141 ev->ev_callback (ev->ev_fd, revents, ev->ev_arg);
145 x_cb_sig (EV_P_ struct ev_signal *w, int revents)
147 struct event *ev = (struct event *)(((char *)w) - offsetof (struct event, iosig.sig));
149 if (revents & EV_ERROR)
156 x_cb_io (EV_P_ struct ev_io *w, int revents)
158 struct event *ev = (struct event *)(((char *)w) - offsetof (struct event, iosig.io));
160 if (revents & EV_ERROR)
162 else if (!(ev->ev_events & EV_PERSIST) && ev_is_active (w))
163 ev_io_stop (EV_A_ w);
169 x_cb_to (EV_P_ struct ev_timer *w, int revents)
171 struct event *ev = (struct event *)(((char *)w) - offsetof (struct event, to));
178 void event_set (struct event *ev, int fd, short events, void (*cb)(int, short, void *), void *arg)
180 if (events & EV_SIGNAL)
181 ev_watcher_init (&ev->iosig.sig, x_cb_sig);
183 ev_watcher_init (&ev->iosig.io, x_cb_io);
185 ev_watcher_init (&ev->to, x_cb_to);
187 ev->ev_base = x_cur; /* not threadsafe, but its like libevent works */
189 ev->ev_events = events;
191 ev->ev_callback = cb;
196 int event_once (int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv)
198 return event_base_once (x_cur, fd, events, cb, arg, tv);
201 int event_add (struct event *ev, struct timeval *tv)
205 /* disable all watchers */
208 if (ev->ev_events & EV_SIGNAL)
210 ev_signal_set (&ev->iosig.sig, ev->ev_fd);
211 ev_signal_start (EV_A_ &ev->iosig.sig);
213 else if (ev->ev_events & (EV_READ | EV_WRITE))
215 ev_io_set (&ev->iosig.io, ev->ev_fd, ev->ev_events & (EV_READ | EV_WRITE));
216 ev_io_start (EV_A_ &ev->iosig.io);
221 ev_timer_set (&ev->to, tv_get (tv), 0.);
222 ev_timer_start (EV_A_ &ev->to);
228 int event_del (struct event *ev)
232 if (ev->ev_events & EV_SIGNAL)
235 if (ev_is_active (&ev->iosig.sig))
236 ev_signal_stop (EV_A_ &ev->iosig.sig);
238 else if (ev->ev_events & (EV_READ | EV_WRITE))
241 if (ev_is_active (&ev->iosig.io))
242 ev_io_stop (EV_A_ &ev->iosig.io);
245 if (ev_is_active (&ev->to))
246 ev_timer_stop (EV_A_ &ev->to);
251 int event_pending (struct event *ev, short events, struct timeval *tv)
257 if (ev->ev_events & EV_SIGNAL)
260 if (ev_is_active (&ev->iosig.sig) || ev_is_pending (&ev->iosig.sig))
261 revents |= EV_SIGNAL;
263 else if (ev->ev_events & (EV_READ | EV_WRITE))
266 if (ev_is_active (&ev->iosig.io) || ev_is_pending (&ev->iosig.io))
267 revents |= ev->ev_events & (EV_READ | EV_WRITE);
270 if (ev->ev_events & EV_TIMEOUT || ev_is_active (&ev->to) || ev_is_pending (&ev->to))
272 revents |= EV_TIMEOUT;
275 tv_set (tv, ev_now (EV_A)); /* not sure if this is right :) */
278 return events & revents;
281 int event_priority_init (int npri)
283 return event_base_priority_init (x_cur, npri);
286 int event_priority_set (struct event *ev, int pri)
293 int event_base_set (struct event_base *base, struct event *ev)
300 int event_base_loop (struct event_base *base, int flags)
304 ev_loop (EV_A_ flags);
309 int event_base_dispatch (struct event_base *base)
311 return event_base_loop (base, 0);
315 x_loopexit_cb (int revents, void *base)
319 ev_unloop (EV_A_ EVUNLOOP_ONCE);
322 int event_base_loopexit (struct event_base *base, struct timeval *tv)
324 ev_tstamp after = tv_get (tv);
327 ev_once (EV_A_ -1, 0, after >= 0. ? after : 0., x_loopexit_cb, (void *)base);
335 void (*cb)(int, short, void *);
340 x_once_cb (int revents, void *arg)
342 struct x_once *once = (struct x_once *)arg;
344 once->cb (once->fd, revents, once->arg);
348 int event_base_once (struct event_base *base, int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv)
350 struct x_once *once = (struct x_once *)malloc (sizeof (struct x_once));
360 ev_once (EV_A_ fd, events & (EV_READ | EV_WRITE), tv_get (tv), x_once_cb, (void *)once);
365 int event_base_priority_init (struct event_base *base, int npri)