2 * libevent compatibility header, only core events supported
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.
44 /* libev watchers we map onto */
51 /* compatibility slots */
52 struct event_base *ev_base;
53 void (*ev_callback)(int, short, void *arg);
60 char initialised; /* flag to work around some idiosynchrasies in the API */
63 #define EV_PERSIST 0x10
65 #define EVENT_SIGNAL(ev) ((int) (ev)->ev_fd)
66 #define EVENT_FD(ev) ((int) (ev)->ev_fd)
68 #define event_initialized(ev) ((ev)->initialised)
70 #define evtimer_add(ev,tv) event_add (ev, tv)
71 #define evtimer_set(ev,cb,data) event_set (ev, -1, 0, cb, data)
72 #define evtimer_del(ev) event_del (ev)
73 #define evtimer_pending(ev,tv) event_pending (ev, EV_TIMEOUT, tv)
74 #define evtimer_initialized(ev) event_initialized (ev)
76 #define timeout_add(ev,tv) evtimer_add (ev, tv)
77 #define timeout_set(ev,cb,data) evtimer_set (ev, cb, data)
78 #define timeout_del(ev) evtimer_del (ev)
79 #define timeout_pending(ev,tv) evtimer_pending (ev, tv)
80 #define timeout_initialized(ev) evtimer_initialized (ev)
82 #define signal_add(ev,tv) event_add (ev, tv)
83 #define signal_set(ev,sig,cb,data) event_set (ev, sig, EV_SIGNAL | EV_PERSIST, cb, data)
84 #define signal_del(ev) event_del (ev)
85 #define signal_pending(ev,tv) event_pending (ev, EV_SIGNAL, tv)
86 #define signal_initialized(ev) event_initialized (ev)
88 const char *event_get_version (void);
89 const char *event_get_method (void);
91 void *event_init (void);
92 void event_base_free (struct event_base *base);
94 #define EVLOOP_ONCE EVLOOP_ONESHOT
96 int event_loopexit (struct timeval *tv);
97 int event_dispatch (void);
99 #define _EVENT_LOG_DEBUG 0
100 #define _EVENT_LOG_MSG 1
101 #define _EVENT_LOG_WARN 2
102 #define _EVENT_LOG_ERR 3
103 typedef void (*event_log_cb)(int severity, const char *msg);
104 void event_set_log_callback(event_log_cb cb);
106 void event_set (struct event *ev, int fd, short events, void (*cb)(int, short, void *), void *arg);
107 int event_once (int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv);
109 int event_add (struct event *ev, struct timeval *tv);
110 int event_del (struct event *ev);
112 int event_pending (struct event *ev, short, struct timeval *tv);
114 int event_priority_init (int npri);
115 int event_priority_set (struct event *ev, int pri);
119 int event_base_set (struct event_base *base, struct event *ev);
120 int event_base_loop (struct event_base *base, int);
121 int event_base_loopexit (struct event_base *base, struct timeval *tv);
122 int event_base_dispatch (struct event_base *base);
123 int event_base_once (struct event_base *base, int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv);
124 int event_base_priority_init (struct event_base *base, int fd);
127 # include "event_compat.h"