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.
45 static struct event_base x_base, *x_cur;
48 tv_set (struct timeval *tv, ev_tstamp at)
50 tv->tv_sec = (long)at;
51 tv->tv_usec = (long)((at - (ev_tstamp)tv->tv_sec) * 1e6);
55 tv_get (struct timeval *tv)
58 return tv->tv_sec + tv->tv_usec * 1e-6;
63 #define EVENT_VERSION(a,b) # a "." # b
65 const char *event_get_version (void)
67 return EVENT_VERSION (EV_VERSION_MAJOR, EV_VERSION_MINOR);
70 const char *event_get_method (void)
75 void *event_init (void)
78 return x_cur = &x_base;
83 void event_base_free (struct event_base *base)
88 int event_dispatch (void)
90 return event_base_dispatch (x_cur);
93 void event_set_log_callback (event_log_cb cb)
98 int event_loop (int flags)
100 return event_base_loop (x_cur, flags);
103 int event_loopexit (struct timeval *tv)
105 event_base_loopexit (x_cur, tv);
109 x_cb (struct event *ev, int revents)
111 if (ev_is_active (&ev->sig))
113 ev_signal_stop (&ev->sig);
117 if (!(ev->ev_events & EV_PERSIST) && ev_is_active (&ev->io))
119 ev_io_stop (&ev->io);
123 revents &= EV_READ | EV_WRITE | EV_TIMEOUT | EV_SIGNAL;
125 if (revents & EV_TIMEOUT)
128 ev->ev_res = revents;
129 ev->ev_callback (ev->ev_fd, revents, ev->ev_arg);
133 x_cb_io (struct ev_io *w, int revents)
135 x_cb ((struct event *)(((char *)w) - offsetof (struct event, io)), revents);
139 x_cb_to (struct ev_timer *w, int revents)
141 x_cb ((struct event *)(((char *)w) - offsetof (struct event, to)), revents);
145 x_cb_sig (struct ev_signal *w, int revents)
147 x_cb ((struct event *)(((char *)w) - offsetof (struct event, sig)), revents);
150 void event_set (struct event *ev, int fd, short events, void (*cb)(int, short, void *), void *arg)
152 ev_watcher_init (&ev->io, x_cb_io);
153 ev_watcher_init (&ev->to, x_cb_to);
154 ev_watcher_init (&ev->sig, x_cb_sig);
158 ev->ev_events = events;
160 ev->ev_callback = cb;
165 int event_once (int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv)
167 event_base_once (x_cur, fd, events, cb, arg, tv);
170 int event_add (struct event *ev, struct timeval *tv)
174 if (ev_is_active (&ev->to))
176 ev_timer_stop (&ev->to);
180 ev_timer_set (&ev->to, tv_get (tv), 0.);
181 ev_timer_start (&ev->to);
185 if (ev->ev_events & (EV_READ|EV_WRITE))
187 if (ev_is_active (&ev->io))
189 ev_io_stop (&ev->io);
193 ev_io_set (&ev->io, ev->ev_fd, ev->ev_events);
194 ev_io_start (&ev->io);
198 if (ev->ev_events & EV_SIGNAL)
200 if (ev_is_active (&ev->sig))
202 ev_signal_stop (&ev->sig);
206 ev_signal_set (&ev->sig, ev->ev_fd);
207 ev_signal_start (&ev->sig);
214 int event_del (struct event *ev)
216 if (ev_is_active (&ev->io))
218 ev_io_stop (&ev->io);
222 if (ev_is_active (&ev->to))
224 ev_timer_stop (&ev->to);
228 if (ev_is_active (&ev->sig))
230 ev_signal_stop (&ev->sig);
237 void event_active (struct event *ev, int fd, short events)
239 /* unclear what this does, likely internal-use */
242 int event_pending (struct event *ev, short events, struct timeval *tv)
247 revents |= ev->ev_events & (EV_READ | EV_WRITE);
251 revents |= EV_TIMEOUT;
254 tv_set (tv, ev_now); /* not sure if this is right :) */
258 revents |= EV_SIGNAL;
260 return events & revents;
263 int event_priority_init (int npri)
265 return event_base_priority_init (x_cur, npri);
268 int event_priority_set (struct event *ev, int pri)
275 int event_base_set (struct event_base *base, struct event *ev)
282 int event_base_loop (struct event_base *base, int flags)
286 ev_loop (flags | EVLOOP_ONESHOT);
288 while (!(flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK)) && x_actives && !ev_loop_done);
293 int event_base_dispatch (struct event_base *base)
295 return event_base_loop (base, 0);
299 x_loopexit_cb (int revents, void *arg)
304 int event_base_loopexit (struct event_base *base, struct timeval *tv)
306 ev_tstamp after = tv_get (tv);
308 ev_once (-1, 0, after >= 0. ? after : 0., x_loopexit_cb, (void *)base);
314 void (*cb)(int, short, void *);
319 x_once_cb (int revents, void *arg)
321 struct x_once *once = arg;
323 once->cb (once->fd, revents, once->arg);
327 int event_base_once (struct event_base *base, int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv)
329 struct x_once *once = malloc (sizeof (struct x_once));
338 ev_once (fd, events & (EV_READ|EV_WRITE), tv_get (tv), x_once_cb, (void *)once);
343 int event_base_priority_init (struct event_base *base, int npri)