ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/event.c
Revision: 1.52
Committed: Mon Apr 2 23:14:41 2012 UTC (12 years, 1 month ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: EV-rel-4_28, EV-rel-4_29, EV-rel-4_27, EV-rel-4_22, rel-4_33, rel-4_23, rel-4_22, rel-4_20, rel-4_27, rel-4_25, rel-4_24, rxvt-unicode-rel-9_16, EV-rel-4_31, EV-rel-4_30, rel-4_31, rel-4_15, rel-4_18, rel-4_19, HEAD
Changes since 1.51: +28 -5 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 /*
2     * libevent compatibility layer
3     *
4 root 1.51 * Copyright (c) 2007,2008,2009,2010,2012 Marc Alexander Lehmann <libev@schmorp.de>
5 root 1.1 * All rights reserved.
6     *
7 root 1.33 * Redistribution and use in source and binary forms, with or without modifica-
8     * tion, are permitted provided that the following conditions are met:
9 root 1.50 *
10 root 1.33 * 1. Redistributions of source code must retain the above copyright notice,
11     * this list of conditions and the following disclaimer.
12 root 1.50 *
13 root 1.33 * 2. Redistributions in binary form must reproduce the above copyright
14     * notice, this list of conditions and the following disclaimer in the
15     * documentation and/or other materials provided with the distribution.
16 root 1.50 *
17 root 1.33 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
18     * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
19     * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
20     * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
21     * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22     * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23     * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24     * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH-
25     * ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
26     * OF THE POSSIBILITY OF SUCH DAMAGE.
27 root 1.1 *
28 root 1.33 * Alternatively, the contents of this file may be used under the terms of
29     * the GNU General Public License ("GPL") version 2 or any later version,
30     * in which case the provisions of the GPL are applicable instead of
31     * the above. If you wish to allow the use of your version of this file
32     * only under the terms of the GPL and not to allow others to use your
33     * version of this file under the BSD license, indicate your decision
34     * by deleting the provisions above and replace them with the notice
35     * and other provisions required by the GPL. If you do not delete the
36     * provisions above, a recipient may use your version of this file under
37     * either the BSD or the GPL.
38 root 1.1 */
39    
40     #include <stddef.h>
41     #include <stdlib.h>
42 root 1.10 #include <assert.h>
43 root 1.1
44 root 1.24 #ifdef EV_EVENT_H
45     # include EV_EVENT_H
46     #else
47     # include "event.h"
48     #endif
49 root 1.1
50 root 1.9 #if EV_MULTIPLICITY
51     # define dLOOPev struct ev_loop *loop = (struct ev_loop *)ev->ev_base
52     # define dLOOPbase struct ev_loop *loop = (struct ev_loop *)base
53 root 1.8 #else
54     # define dLOOPev
55     # define dLOOPbase
56     #endif
57 root 1.7
58 root 1.9 /* never accessed, will always be cast from/to ev_loop */
59 root 1.1 struct event_base
60     {
61     int dummy;
62     };
63    
64 root 1.37 static struct event_base *ev_x_cur;
65 root 1.1
66     static ev_tstamp
67 root 1.37 ev_tv_get (struct timeval *tv)
68 root 1.1 {
69     if (tv)
70 root 1.42 {
71     ev_tstamp after = tv->tv_sec + tv->tv_usec * 1e-6;
72     return after ? after : 1e-6;
73     }
74 root 1.1 else
75     return -1.;
76     }
77    
78 root 1.40 #define EVENT_STRINGIFY(s) # s
79     #define EVENT_VERSION(a,b) EVENT_STRINGIFY (a) "." EVENT_STRINGIFY (b)
80 root 1.1
81 root 1.52 const char *
82     event_get_version (void)
83 root 1.1 {
84 root 1.40 /* returns ABI, not API or library, version */
85 root 1.1 return EVENT_VERSION (EV_VERSION_MAJOR, EV_VERSION_MINOR);
86     }
87    
88 root 1.52 const char *
89     event_get_method (void)
90 root 1.1 {
91     return "libev";
92     }
93    
94     void *event_init (void)
95     {
96 root 1.9 #if EV_MULTIPLICITY
97 root 1.37 if (ev_x_cur)
98     ev_x_cur = (struct event_base *)ev_loop_new (EVFLAG_AUTO);
99 root 1.10 else
100 root 1.37 ev_x_cur = (struct event_base *)ev_default_loop (EVFLAG_AUTO);
101 root 1.9 #else
102 root 1.39 assert (("libev: multiple event bases not supported when not compiled with EV_MULTIPLICITY", !ev_x_cur));
103 root 1.10
104 root 1.37 ev_x_cur = (struct event_base *)(long)ev_default_loop (EVFLAG_AUTO);
105 root 1.9 #endif
106 root 1.1
107 root 1.37 return ev_x_cur;
108 root 1.1 }
109    
110 root 1.52 const char *
111     event_base_get_method (const struct event_base *base)
112     {
113     return "libev";
114     }
115    
116     struct event_base *
117     event_base_new (void)
118     {
119     #if EV_MULTIPLICITY
120     return (struct event_base *)ev_loop_new (EVFLAG_AUTO);
121     #else
122     assert (("libev: multiple event bases not supported when not compiled with EV_MULTIPLICITY"));
123     return NULL;
124     #endif
125     }
126    
127 root 1.1 void event_base_free (struct event_base *base)
128     {
129 root 1.8 dLOOPbase;
130    
131 root 1.9 #if EV_MULTIPLICITY
132 root 1.49 if (!ev_is_default_loop (loop))
133 root 1.13 ev_loop_destroy (loop);
134 root 1.9 #endif
135 root 1.1 }
136    
137     int event_dispatch (void)
138     {
139 root 1.37 return event_base_dispatch (ev_x_cur);
140 root 1.1 }
141    
142 root 1.12 #ifdef EV_STANDALONE
143 root 1.1 void event_set_log_callback (event_log_cb cb)
144     {
145     /* nop */
146     }
147 root 1.5 #endif
148 root 1.1
149     int event_loop (int flags)
150     {
151 root 1.37 return event_base_loop (ev_x_cur, flags);
152 root 1.1 }
153    
154     int event_loopexit (struct timeval *tv)
155     {
156 root 1.37 return event_base_loopexit (ev_x_cur, tv);
157 root 1.1 }
158    
159 root 1.52 event_callback_fn event_get_callback
160     (const struct event *ev)
161     {
162     return ev->ev_callback;
163     }
164    
165 root 1.1 static void
166 root 1.37 ev_x_cb (struct event *ev, int revents)
167 root 1.1 {
168 root 1.45 revents &= EV_READ | EV_WRITE | EV_TIMER | EV_SIGNAL;
169 root 1.1
170     ev->ev_res = revents;
171 root 1.26 ev->ev_callback (ev->ev_fd, (short)revents, ev->ev_arg);
172 root 1.1 }
173    
174     static void
175 root 1.37 ev_x_cb_sig (EV_P_ struct ev_signal *w, int revents)
176 root 1.1 {
177 root 1.20 struct event *ev = (struct event *)(((char *)w) - offsetof (struct event, iosig.sig));
178    
179     if (revents & EV_ERROR)
180     event_del (ev);
181    
182 root 1.37 ev_x_cb (ev, revents);
183 root 1.1 }
184    
185     static void
186 root 1.37 ev_x_cb_io (EV_P_ struct ev_io *w, int revents)
187 root 1.1 {
188 root 1.7 struct event *ev = (struct event *)(((char *)w) - offsetof (struct event, iosig.io));
189    
190 root 1.32 if ((revents & EV_ERROR) || !(ev->ev_events & EV_PERSIST))
191 root 1.20 event_del (ev);
192 root 1.7
193 root 1.37 ev_x_cb (ev, revents);
194 root 1.1 }
195    
196     static void
197 root 1.37 ev_x_cb_to (EV_P_ struct ev_timer *w, int revents)
198 root 1.1 {
199 root 1.14 struct event *ev = (struct event *)(((char *)w) - offsetof (struct event, to));
200    
201     event_del (ev);
202    
203 root 1.37 ev_x_cb (ev, revents);
204 root 1.1 }
205    
206     void event_set (struct event *ev, int fd, short events, void (*cb)(int, short, void *), void *arg)
207     {
208 root 1.14 if (events & EV_SIGNAL)
209 root 1.37 ev_init (&ev->iosig.sig, ev_x_cb_sig);
210 root 1.14 else
211 root 1.37 ev_init (&ev->iosig.io, ev_x_cb_io);
212 root 1.4
213 root 1.37 ev_init (&ev->to, ev_x_cb_to);
214 root 1.1
215 root 1.37 ev->ev_base = ev_x_cur; /* not threadsafe, but it's how libevent works */
216 root 1.1 ev->ev_fd = fd;
217     ev->ev_events = events;
218     ev->ev_pri = 0;
219     ev->ev_callback = cb;
220     ev->ev_arg = arg;
221     ev->ev_res = 0;
222 root 1.27 ev->ev_flags = EVLIST_INIT;
223 root 1.1 }
224    
225     int event_once (int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv)
226     {
227 root 1.37 return event_base_once (ev_x_cur, fd, events, cb, arg, tv);
228 root 1.1 }
229    
230     int event_add (struct event *ev, struct timeval *tv)
231     {
232 root 1.7 dLOOPev;
233    
234 root 1.4 if (ev->ev_events & EV_SIGNAL)
235 root 1.1 {
236 root 1.31 if (!ev_is_active (&ev->iosig.sig))
237     {
238     ev_signal_set (&ev->iosig.sig, ev->ev_fd);
239     ev_signal_start (EV_A_ &ev->iosig.sig);
240 root 1.27
241 root 1.31 ev->ev_flags |= EVLIST_SIGNAL;
242     }
243 root 1.1 }
244 root 1.4 else if (ev->ev_events & (EV_READ | EV_WRITE))
245 root 1.1 {
246 root 1.31 if (!ev_is_active (&ev->iosig.io))
247     {
248     ev_io_set (&ev->iosig.io, ev->ev_fd, ev->ev_events & (EV_READ | EV_WRITE));
249     ev_io_start (EV_A_ &ev->iosig.io);
250 root 1.27
251 root 1.31 ev->ev_flags |= EVLIST_INSERTED;
252     }
253 root 1.1 }
254    
255 root 1.4 if (tv)
256 root 1.1 {
257 root 1.37 ev->to.repeat = ev_tv_get (tv);
258 root 1.31 ev_timer_again (EV_A_ &ev->to);
259 root 1.27 ev->ev_flags |= EVLIST_TIMEOUT;
260 root 1.1 }
261 root 1.31 else
262 root 1.32 {
263 root 1.31 ev_timer_stop (EV_A_ &ev->to);
264 root 1.32 ev->ev_flags &= ~EVLIST_TIMEOUT;
265     }
266 root 1.1
267 root 1.27 ev->ev_flags |= EVLIST_ACTIVE;
268    
269 root 1.1 return 0;
270     }
271    
272     int event_del (struct event *ev)
273     {
274 root 1.7 dLOOPev;
275    
276 root 1.4 if (ev->ev_events & EV_SIGNAL)
277 root 1.32 ev_signal_stop (EV_A_ &ev->iosig.sig);
278 root 1.16 else if (ev->ev_events & (EV_READ | EV_WRITE))
279 root 1.32 ev_io_stop (EV_A_ &ev->iosig.io);
280 root 1.1
281     if (ev_is_active (&ev->to))
282 root 1.7 ev_timer_stop (EV_A_ &ev->to);
283 root 1.1
284 root 1.27 ev->ev_flags = EVLIST_INIT;
285    
286 root 1.1 return 0;
287     }
288    
289 root 1.21 void event_active (struct event *ev, int res, short ncalls)
290     {
291 root 1.23 dLOOPev;
292    
293 root 1.21 if (res & EV_TIMEOUT)
294 root 1.23 ev_feed_event (EV_A_ &ev->to, res & EV_TIMEOUT);
295 root 1.21
296     if (res & EV_SIGNAL)
297 root 1.23 ev_feed_event (EV_A_ &ev->iosig.sig, res & EV_SIGNAL);
298 root 1.21
299     if (res & (EV_READ | EV_WRITE))
300 root 1.23 ev_feed_event (EV_A_ &ev->iosig.io, res & (EV_READ | EV_WRITE));
301 root 1.21 }
302    
303 root 1.1 int event_pending (struct event *ev, short events, struct timeval *tv)
304     {
305 root 1.18 short revents = 0;
306 root 1.7 dLOOPev;
307    
308 root 1.4 if (ev->ev_events & EV_SIGNAL)
309     {
310     /* sig */
311 root 1.14 if (ev_is_active (&ev->iosig.sig) || ev_is_pending (&ev->iosig.sig))
312 root 1.4 revents |= EV_SIGNAL;
313     }
314 root 1.16 else if (ev->ev_events & (EV_READ | EV_WRITE))
315 root 1.4 {
316     /* io */
317 root 1.14 if (ev_is_active (&ev->iosig.io) || ev_is_pending (&ev->iosig.io))
318 root 1.4 revents |= ev->ev_events & (EV_READ | EV_WRITE);
319     }
320 root 1.1
321 root 1.14 if (ev->ev_events & EV_TIMEOUT || ev_is_active (&ev->to) || ev_is_pending (&ev->to))
322 root 1.1 {
323     revents |= EV_TIMEOUT;
324    
325     if (tv)
326 root 1.47 {
327     ev_tstamp at = ev_now (EV_A);
328    
329     tv->tv_sec = (long)at;
330     tv->tv_usec = (long)((at - (ev_tstamp)tv->tv_sec) * 1e6);
331     }
332 root 1.1 }
333    
334     return events & revents;
335     }
336    
337     int event_priority_init (int npri)
338     {
339 root 1.37 return event_base_priority_init (ev_x_cur, npri);
340 root 1.1 }
341    
342     int event_priority_set (struct event *ev, int pri)
343     {
344     ev->ev_pri = pri;
345    
346     return 0;
347     }
348    
349     int event_base_set (struct event_base *base, struct event *ev)
350     {
351     ev->ev_base = base;
352    
353     return 0;
354     }
355    
356     int event_base_loop (struct event_base *base, int flags)
357     {
358 root 1.7 dLOOPbase;
359 root 1.8
360 root 1.52 return !ev_run (EV_A_ flags);
361 root 1.1 }
362    
363     int event_base_dispatch (struct event_base *base)
364     {
365     return event_base_loop (base, 0);
366     }
367    
368     static void
369 root 1.37 ev_x_loopexit_cb (int revents, void *base)
370 root 1.1 {
371 root 1.9 dLOOPbase;
372    
373 root 1.45 ev_break (EV_A_ EVBREAK_ONE);
374 root 1.1 }
375    
376     int event_base_loopexit (struct event_base *base, struct timeval *tv)
377     {
378 root 1.37 ev_tstamp after = ev_tv_get (tv);
379 root 1.7 dLOOPbase;
380 root 1.1
381 root 1.37 ev_once (EV_A_ -1, 0, after >= 0. ? after : 0., ev_x_loopexit_cb, (void *)base);
382 root 1.5
383 root 1.34 return 0;
384 root 1.1 }
385    
386 root 1.37 struct ev_x_once
387 root 1.1 {
388     int fd;
389     void (*cb)(int, short, void *);
390     void *arg;
391     };
392    
393     static void
394 root 1.37 ev_x_once_cb (int revents, void *arg)
395 root 1.1 {
396 root 1.37 struct ev_x_once *once = (struct ev_x_once *)arg;
397 root 1.1
398 root 1.26 once->cb (once->fd, (short)revents, once->arg);
399 root 1.1 free (once);
400     }
401    
402     int event_base_once (struct event_base *base, int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv)
403     {
404 root 1.37 struct ev_x_once *once = (struct ev_x_once *)malloc (sizeof (struct ev_x_once));
405 root 1.7 dLOOPbase;
406 root 1.1
407     if (!once)
408     return -1;
409    
410     once->fd = fd;
411     once->cb = cb;
412     once->arg = arg;
413    
414 root 1.37 ev_once (EV_A_ fd, events & (EV_READ | EV_WRITE), ev_tv_get (tv), ev_x_once_cb, (void *)once);
415 root 1.1
416     return 0;
417     }
418    
419     int event_base_priority_init (struct event_base *base, int npri)
420     {
421 root 1.13 /*dLOOPbase;*/
422 root 1.7
423 root 1.1 return 0;
424     }
425