ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.c
(Generate patch)

Comparing libev/ev.c (file contents):
Revision 1.17 by root, Wed Oct 31 14:44:15 2007 UTC vs.
Revision 1.43 by root, Fri Nov 2 20:21:33 2007 UTC

1/* 1/*
2 * libev event processing core, watcher management
3 *
2 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de> 4 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
3 * All rights reserved. 5 * All rights reserved.
4 * 6 *
5 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 8 * modification, are permitted provided that the following conditions are
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 30 */
31#if EV_USE_CONFIG_H
32# include "config.h"
33#endif
29 34
30#include <math.h> 35#include <math.h>
31#include <stdlib.h> 36#include <stdlib.h>
32#include <unistd.h> 37#include <unistd.h>
33#include <fcntl.h> 38#include <fcntl.h>
36 41
37#include <stdio.h> 42#include <stdio.h>
38 43
39#include <assert.h> 44#include <assert.h>
40#include <errno.h> 45#include <errno.h>
46#include <sys/types.h>
47#include <sys/wait.h>
41#include <sys/time.h> 48#include <sys/time.h>
42#include <time.h> 49#include <time.h>
43 50
44#define HAVE_EPOLL 1 51/**/
45 52
46#ifndef HAVE_MONOTONIC 53#ifndef EV_USE_MONOTONIC
54# define EV_USE_MONOTONIC 1
55#endif
56
57#ifndef EV_USE_SELECT
58# define EV_USE_SELECT 1
59#endif
60
61#ifndef EV_USE_POLL
62# define EV_USE_POLL 0 /* poll is usually slower than select, and not as well tested */
63#endif
64
65#ifndef EV_USE_EPOLL
66# define EV_USE_EPOLL 0
67#endif
68
69#ifndef EV_USE_REALTIME
70# define EV_USE_REALTIME 1
71#endif
72
73/**/
74
47# ifdef CLOCK_MONOTONIC 75#ifndef CLOCK_MONOTONIC
76# undef EV_USE_MONOTONIC
48# define HAVE_MONOTONIC 1 77# define EV_USE_MONOTONIC 0
49# endif 78#endif
50#endif
51 79
52#ifndef HAVE_SELECT
53# define HAVE_SELECT 1
54#endif
55
56#ifndef HAVE_EPOLL
57# define HAVE_EPOLL 0
58#endif
59
60#ifndef HAVE_REALTIME 80#ifndef CLOCK_REALTIME
61# define HAVE_REALTIME 1 /* posix requirement, but might be slower */ 81# undef EV_USE_REALTIME
82# define EV_USE_REALTIME 0
62#endif 83#endif
84
85/**/
63 86
64#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */ 87#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
65#define MAX_BLOCKTIME 60. 88#define MAX_BLOCKTIME 59.731 /* never wait longer than this time (to detect time jumps) */
89#define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */
90/*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */
66 91
67#include "ev.h" 92#include "ev.h"
93
94#if __GNUC__ >= 3
95# define expect(expr,value) __builtin_expect ((expr),(value))
96# define inline inline
97#else
98# define expect(expr,value) (expr)
99# define inline static
100#endif
101
102#define expect_false(expr) expect ((expr) != 0, 0)
103#define expect_true(expr) expect ((expr) != 0, 1)
104
105#define NUMPRI (EV_MAXPRI - EV_MINPRI + 1)
106#define ABSPRI(w) ((w)->priority - EV_MINPRI)
68 107
69typedef struct ev_watcher *W; 108typedef struct ev_watcher *W;
70typedef struct ev_watcher_list *WL; 109typedef struct ev_watcher_list *WL;
71typedef struct ev_watcher_time *WT; 110typedef struct ev_watcher_time *WT;
72 111
73static ev_tstamp now, diff; /* monotonic clock */ 112static ev_tstamp now_floor, now, diff; /* monotonic clock */
74ev_tstamp ev_now; 113ev_tstamp ev_now;
75int ev_method; 114int ev_method;
76 115
77static int have_monotonic; /* runtime */ 116static int have_monotonic; /* runtime */
78 117
83/*****************************************************************************/ 122/*****************************************************************************/
84 123
85ev_tstamp 124ev_tstamp
86ev_time (void) 125ev_time (void)
87{ 126{
88#if HAVE_REALTIME 127#if EV_USE_REALTIME
89 struct timespec ts; 128 struct timespec ts;
90 clock_gettime (CLOCK_REALTIME, &ts); 129 clock_gettime (CLOCK_REALTIME, &ts);
91 return ts.tv_sec + ts.tv_nsec * 1e-9; 130 return ts.tv_sec + ts.tv_nsec * 1e-9;
92#else 131#else
93 struct timeval tv; 132 struct timeval tv;
97} 136}
98 137
99static ev_tstamp 138static ev_tstamp
100get_clock (void) 139get_clock (void)
101{ 140{
102#if HAVE_MONOTONIC 141#if EV_USE_MONOTONIC
103 if (have_monotonic) 142 if (expect_true (have_monotonic))
104 { 143 {
105 struct timespec ts; 144 struct timespec ts;
106 clock_gettime (CLOCK_MONOTONIC, &ts); 145 clock_gettime (CLOCK_MONOTONIC, &ts);
107 return ts.tv_sec + ts.tv_nsec * 1e-9; 146 return ts.tv_sec + ts.tv_nsec * 1e-9;
108 } 147 }
109#endif 148#endif
110 149
111 return ev_time (); 150 return ev_time ();
112} 151}
113 152
153#define array_roundsize(base,n) ((n) | 4 & ~3)
154
114#define array_needsize(base,cur,cnt,init) \ 155#define array_needsize(base,cur,cnt,init) \
115 if ((cnt) > cur) \ 156 if (expect_false ((cnt) > cur)) \
116 { \ 157 { \
117 int newcnt = cur ? cur << 1 : 16; \ 158 int newcnt = cur; \
159 do \
160 { \
161 newcnt = array_roundsize (base, newcnt << 1); \
162 } \
163 while ((cnt) > newcnt); \
164 \
118 base = realloc (base, sizeof (*base) * (newcnt)); \ 165 base = realloc (base, sizeof (*base) * (newcnt)); \
119 init (base + cur, newcnt - cur); \ 166 init (base + cur, newcnt - cur); \
120 cur = newcnt; \ 167 cur = newcnt; \
121 } 168 }
122 169
123/*****************************************************************************/ 170/*****************************************************************************/
124 171
125typedef struct 172typedef struct
126{ 173{
127 struct ev_io *head; 174 struct ev_io *head;
128 unsigned char wev, rev; /* want, received event set */ 175 unsigned char events;
176 unsigned char reify;
129} ANFD; 177} ANFD;
130 178
131static ANFD *anfds; 179static ANFD *anfds;
132static int anfdmax; 180static int anfdmax;
133 181
134static int *fdchanges;
135static int fdchangemax, fdchangecnt;
136
137static void 182static void
138anfds_init (ANFD *base, int count) 183anfds_init (ANFD *base, int count)
139{ 184{
140 while (count--) 185 while (count--)
141 { 186 {
142 base->head = 0; 187 base->head = 0;
143 base->wev = base->rev = EV_NONE; 188 base->events = EV_NONE;
189 base->reify = 0;
190
144 ++base; 191 ++base;
145 } 192 }
146} 193}
147 194
148typedef struct 195typedef struct
149{ 196{
150 W w; 197 W w;
151 int events; 198 int events;
152} ANPENDING; 199} ANPENDING;
153 200
154static ANPENDING *pendings; 201static ANPENDING *pendings [NUMPRI];
155static int pendingmax, pendingcnt; 202static int pendingmax [NUMPRI], pendingcnt [NUMPRI];
156 203
157static void 204static void
158event (W w, int events) 205event (W w, int events)
159{ 206{
160 if (w->active) 207 if (w->pending)
161 { 208 {
162 w->pending = ++pendingcnt;
163 array_needsize (pendings, pendingmax, pendingcnt, );
164 pendings [pendingcnt - 1].w = w;
165 pendings [pendingcnt - 1].events = events; 209 pendings [ABSPRI (w)][w->pending - 1].events |= events;
210 return;
166 } 211 }
212
213 w->pending = ++pendingcnt [ABSPRI (w)];
214 array_needsize (pendings [ABSPRI (w)], pendingmax [ABSPRI (w)], pendingcnt [ABSPRI (w)], );
215 pendings [ABSPRI (w)][w->pending - 1].w = w;
216 pendings [ABSPRI (w)][w->pending - 1].events = events;
217}
218
219static void
220queue_events (W *events, int eventcnt, int type)
221{
222 int i;
223
224 for (i = 0; i < eventcnt; ++i)
225 event (events [i], type);
167} 226}
168 227
169static void 228static void
170fd_event (int fd, int events) 229fd_event (int fd, int events)
171{ 230{
179 if (ev) 238 if (ev)
180 event ((W)w, ev); 239 event ((W)w, ev);
181 } 240 }
182} 241}
183 242
243/*****************************************************************************/
244
245static int *fdchanges;
246static int fdchangemax, fdchangecnt;
247
184static void 248static void
185queue_events (W *events, int eventcnt, int type) 249fd_reify (void)
186{ 250{
187 int i; 251 int i;
188 252
189 for (i = 0; i < eventcnt; ++i) 253 for (i = 0; i < fdchangecnt; ++i)
190 event (events [i], type); 254 {
255 int fd = fdchanges [i];
256 ANFD *anfd = anfds + fd;
257 struct ev_io *w;
258
259 int events = 0;
260
261 for (w = anfd->head; w; w = w->next)
262 events |= w->events;
263
264 anfd->reify = 0;
265
266 if (anfd->events != events)
267 {
268 method_modify (fd, anfd->events, events);
269 anfd->events = events;
270 }
271 }
272
273 fdchangecnt = 0;
274}
275
276static void
277fd_change (int fd)
278{
279 if (anfds [fd].reify || fdchangecnt < 0)
280 return;
281
282 anfds [fd].reify = 1;
283
284 ++fdchangecnt;
285 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
286 fdchanges [fdchangecnt - 1] = fd;
287}
288
289static void
290fd_kill (int fd)
291{
292 struct ev_io *w;
293
294 printf ("killing fd %d\n", fd);//D
295 while ((w = anfds [fd].head))
296 {
297 ev_io_stop (w);
298 event ((W)w, EV_ERROR | EV_READ | EV_WRITE);
299 }
300}
301
302/* called on EBADF to verify fds */
303static void
304fd_ebadf (void)
305{
306 int fd;
307
308 for (fd = 0; fd < anfdmax; ++fd)
309 if (anfds [fd].events)
310 if (fcntl (fd, F_GETFD) == -1 && errno == EBADF)
311 fd_kill (fd);
312}
313
314/* called on ENOMEM in select/poll to kill some fds and retry */
315static void
316fd_enomem (void)
317{
318 int fd = anfdmax;
319
320 while (fd--)
321 if (anfds [fd].events)
322 {
323 close (fd);
324 fd_kill (fd);
325 return;
326 }
191} 327}
192 328
193/*****************************************************************************/ 329/*****************************************************************************/
194 330
195static struct ev_timer **timers; 331static struct ev_timer **timers;
242/*****************************************************************************/ 378/*****************************************************************************/
243 379
244typedef struct 380typedef struct
245{ 381{
246 struct ev_signal *head; 382 struct ev_signal *head;
247 sig_atomic_t gotsig; 383 sig_atomic_t volatile gotsig;
248} ANSIG; 384} ANSIG;
249 385
250static ANSIG *signals; 386static ANSIG *signals;
251static int signalmax; 387static int signalmax;
252 388
253static int sigpipe [2]; 389static int sigpipe [2];
254static sig_atomic_t gotsig; 390static sig_atomic_t volatile gotsig;
255static struct ev_io sigev; 391static struct ev_io sigev;
256 392
257static void 393static void
258signals_init (ANSIG *base, int count) 394signals_init (ANSIG *base, int count)
259{ 395{
260 while (count--) 396 while (count--)
261 { 397 {
262 base->head = 0; 398 base->head = 0;
263 base->gotsig = 0; 399 base->gotsig = 0;
400
264 ++base; 401 ++base;
265 } 402 }
266} 403}
267 404
268static void 405static void
271 signals [signum - 1].gotsig = 1; 408 signals [signum - 1].gotsig = 1;
272 409
273 if (!gotsig) 410 if (!gotsig)
274 { 411 {
275 gotsig = 1; 412 gotsig = 1;
276 write (sigpipe [1], &gotsig, 1); 413 write (sigpipe [1], &signum, 1);
277 } 414 }
278} 415}
279 416
280static void 417static void
281sigcb (struct ev_io *iow, int revents) 418sigcb (struct ev_io *iow, int revents)
282{ 419{
283 struct ev_signal *w; 420 struct ev_signal *w;
284 int sig; 421 int signum;
285 422
423 read (sigpipe [0], &revents, 1);
286 gotsig = 0; 424 gotsig = 0;
287 read (sigpipe [0], &revents, 1);
288 425
289 for (sig = signalmax; sig--; ) 426 for (signum = signalmax; signum--; )
290 if (signals [sig].gotsig) 427 if (signals [signum].gotsig)
291 { 428 {
292 signals [sig].gotsig = 0; 429 signals [signum].gotsig = 0;
293 430
294 for (w = signals [sig].head; w; w = w->next) 431 for (w = signals [signum].head; w; w = w->next)
295 event ((W)w, EV_SIGNAL); 432 event ((W)w, EV_SIGNAL);
296 } 433 }
297} 434}
298 435
299static void 436static void
304 441
305 /* rather than sort out wether we really need nb, set it */ 442 /* rather than sort out wether we really need nb, set it */
306 fcntl (sigpipe [0], F_SETFL, O_NONBLOCK); 443 fcntl (sigpipe [0], F_SETFL, O_NONBLOCK);
307 fcntl (sigpipe [1], F_SETFL, O_NONBLOCK); 444 fcntl (sigpipe [1], F_SETFL, O_NONBLOCK);
308 445
309 evio_set (&sigev, sigpipe [0], EV_READ); 446 ev_io_set (&sigev, sigpipe [0], EV_READ);
310 evio_start (&sigev); 447 ev_io_start (&sigev);
311} 448}
312 449
313/*****************************************************************************/ 450/*****************************************************************************/
314 451
315static struct ev_idle **idles; 452static struct ev_idle **idles;
316static int idlemax, idlecnt; 453static int idlemax, idlecnt;
317 454
455static struct ev_prepare **prepares;
456static int preparemax, preparecnt;
457
318static struct ev_check **checks; 458static struct ev_check **checks;
319static int checkmax, checkcnt; 459static int checkmax, checkcnt;
320 460
321/*****************************************************************************/ 461/*****************************************************************************/
322 462
463static struct ev_child *childs [PID_HASHSIZE];
464static struct ev_signal childev;
465
466#ifndef WCONTINUED
467# define WCONTINUED 0
468#endif
469
470static void
471childcb (struct ev_signal *sw, int revents)
472{
473 struct ev_child *w;
474 int pid, status;
475
476 while ((pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)) != -1)
477 for (w = childs [pid & (PID_HASHSIZE - 1)]; w; w = w->next)
478 if (w->pid == pid || !w->pid)
479 {
480 w->status = status;
481 event ((W)w, EV_CHILD);
482 }
483}
484
485/*****************************************************************************/
486
323#if HAVE_EPOLL 487#if EV_USE_EPOLL
324# include "ev_epoll.c" 488# include "ev_epoll.c"
325#endif 489#endif
490#if EV_USE_POLL
491# include "ev_poll.c"
492#endif
326#if HAVE_SELECT 493#if EV_USE_SELECT
327# include "ev_select.c" 494# include "ev_select.c"
328#endif 495#endif
329 496
497int
498ev_version_major (void)
499{
500 return EV_VERSION_MAJOR;
501}
502
503int
504ev_version_minor (void)
505{
506 return EV_VERSION_MINOR;
507}
508
509/* return true if we are running with elevated privileges and ignore env variables */
510static int
511enable_secure ()
512{
513 return getuid () != geteuid ()
514 || getgid () != getegid ();
515}
516
330int ev_init (int flags) 517int ev_init (int methods)
331{ 518{
332#if HAVE_MONOTONIC
333 {
334 struct timespec ts;
335 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
336 have_monotonic = 1;
337 }
338#endif
339
340 ev_now = ev_time ();
341 now = get_clock ();
342 diff = ev_now - now;
343
344 if (pipe (sigpipe))
345 return 0;
346
347 ev_method = EVMETHOD_NONE;
348#if HAVE_EPOLL
349 if (ev_method == EVMETHOD_NONE) epoll_init (flags);
350#endif
351#if HAVE_SELECT
352 if (ev_method == EVMETHOD_NONE) select_init (flags);
353#endif
354
355 if (ev_method) 519 if (!ev_method)
520 {
521#if EV_USE_MONOTONIC
356 { 522 {
523 struct timespec ts;
524 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
525 have_monotonic = 1;
526 }
527#endif
528
529 ev_now = ev_time ();
530 now = get_clock ();
531 now_floor = now;
532 diff = ev_now - now;
533
534 if (pipe (sigpipe))
535 return 0;
536
537 if (methods == EVMETHOD_AUTO)
538 if (!enable_secure () && getenv ("LIBEV_METHODS"))
539 methods = atoi (getenv ("LIBEV_METHODS"));
540 else
541 methods = EVMETHOD_ANY;
542
543 ev_method = 0;
544#if EV_USE_EPOLL
545 if (!ev_method && (methods & EVMETHOD_EPOLL )) epoll_init (methods);
546#endif
547#if EV_USE_POLL
548 if (!ev_method && (methods & EVMETHOD_POLL )) poll_init (methods);
549#endif
550#if EV_USE_SELECT
551 if (!ev_method && (methods & EVMETHOD_SELECT)) select_init (methods);
552#endif
553
554 if (ev_method)
555 {
357 evw_init (&sigev, sigcb); 556 ev_watcher_init (&sigev, sigcb);
358 siginit (); 557 siginit ();
558
559 ev_signal_init (&childev, childcb, SIGCHLD);
560 ev_signal_start (&childev);
561 }
359 } 562 }
360 563
361 return ev_method; 564 return ev_method;
362} 565}
363 566
364/*****************************************************************************/ 567/*****************************************************************************/
365 568
366void ev_prefork (void) 569void
570ev_fork_prepare (void)
367{ 571{
368 /* nop */ 572 /* nop */
369} 573}
370 574
575void
371void ev_postfork_parent (void) 576ev_fork_parent (void)
372{ 577{
373 /* nop */ 578 /* nop */
374} 579}
375 580
581void
376void ev_postfork_child (void) 582ev_fork_child (void)
377{ 583{
378#if HAVE_EPOLL 584#if EV_USE_EPOLL
379 if (ev_method == EVMETHOD_EPOLL) 585 if (ev_method == EVMETHOD_EPOLL)
380 epoll_postfork_child (); 586 epoll_postfork_child ();
381#endif 587#endif
382 588
383 evio_stop (&sigev); 589 ev_io_stop (&sigev);
384 close (sigpipe [0]); 590 close (sigpipe [0]);
385 close (sigpipe [1]); 591 close (sigpipe [1]);
386 pipe (sigpipe); 592 pipe (sigpipe);
387 siginit (); 593 siginit ();
388} 594}
389 595
390/*****************************************************************************/ 596/*****************************************************************************/
391 597
392static void 598static void
393fd_reify (void) 599call_pending (void)
394{ 600{
395 int i; 601 int pri;
396 602
397 for (i = 0; i < fdchangecnt; ++i) 603 for (pri = NUMPRI; pri--; )
398 { 604 while (pendingcnt [pri])
399 int fd = fdchanges [i];
400 ANFD *anfd = anfds + fd;
401 struct ev_io *w;
402
403 int wev = 0;
404
405 for (w = anfd->head; w; w = w->next)
406 wev |= w->events;
407
408 if (anfd->wev != wev)
409 { 605 {
410 method_modify (fd, anfd->wev, wev); 606 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
411 anfd->wev = wev;
412 }
413 }
414 607
415 fdchangecnt = 0;
416}
417
418static void
419call_pending ()
420{
421 int i;
422
423 for (i = 0; i < pendingcnt; ++i)
424 {
425 ANPENDING *p = pendings + i;
426
427 if (p->w) 608 if (p->w)
428 { 609 {
429 p->w->pending = 0; 610 p->w->pending = 0;
430 p->w->cb (p->w, p->events); 611 p->w->cb (p->w, p->events);
431 } 612 }
432 } 613 }
433
434 pendingcnt = 0;
435} 614}
436 615
437static void 616static void
438timers_reify () 617timers_reify (void)
439{ 618{
440 while (timercnt && timers [0]->at <= now) 619 while (timercnt && timers [0]->at <= now)
441 { 620 {
442 struct ev_timer *w = timers [0]; 621 struct ev_timer *w = timers [0];
443
444 event ((W)w, EV_TIMEOUT);
445 622
446 /* first reschedule or stop timer */ 623 /* first reschedule or stop timer */
447 if (w->repeat) 624 if (w->repeat)
448 { 625 {
626 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.));
449 w->at = now + w->repeat; 627 w->at = now + w->repeat;
450 assert (("timer timeout in the past, negative repeat?", w->at > now));
451 downheap ((WT *)timers, timercnt, 0); 628 downheap ((WT *)timers, timercnt, 0);
452 } 629 }
453 else 630 else
454 evtimer_stop (w); /* nonrepeating: stop timer */ 631 ev_timer_stop (w); /* nonrepeating: stop timer */
455 }
456}
457 632
633 event ((W)w, EV_TIMEOUT);
634 }
635}
636
458static void 637static void
459periodics_reify () 638periodics_reify (void)
460{ 639{
461 while (periodiccnt && periodics [0]->at <= ev_now) 640 while (periodiccnt && periodics [0]->at <= ev_now)
462 { 641 {
463 struct ev_periodic *w = periodics [0]; 642 struct ev_periodic *w = periodics [0];
464 643
465 /* first reschedule or stop timer */ 644 /* first reschedule or stop timer */
466 if (w->interval) 645 if (w->interval)
467 { 646 {
468 w->at += floor ((ev_now - w->at) / w->interval + 1.) * w->interval; 647 w->at += floor ((ev_now - w->at) / w->interval + 1.) * w->interval;
469 assert (("periodic timeout in the past, negative interval?", w->at > ev_now)); 648 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", w->at > ev_now));
470 downheap ((WT *)periodics, periodiccnt, 0); 649 downheap ((WT *)periodics, periodiccnt, 0);
471 } 650 }
472 else 651 else
473 evperiodic_stop (w); /* nonrepeating: stop timer */ 652 ev_periodic_stop (w); /* nonrepeating: stop timer */
474 653
475 event ((W)w, EV_TIMEOUT); 654 event ((W)w, EV_PERIODIC);
476 } 655 }
477} 656}
478 657
479static void 658static void
480periodics_reschedule (ev_tstamp diff) 659periodics_reschedule (ev_tstamp diff)
490 { 669 {
491 ev_tstamp diff = ceil ((ev_now - w->at) / w->interval) * w->interval; 670 ev_tstamp diff = ceil ((ev_now - w->at) / w->interval) * w->interval;
492 671
493 if (fabs (diff) >= 1e-4) 672 if (fabs (diff) >= 1e-4)
494 { 673 {
495 evperiodic_stop (w); 674 ev_periodic_stop (w);
496 evperiodic_start (w); 675 ev_periodic_start (w);
497 676
498 i = 0; /* restart loop, inefficient, but time jumps should be rare */ 677 i = 0; /* restart loop, inefficient, but time jumps should be rare */
499 } 678 }
500 } 679 }
501 } 680 }
502} 681}
503 682
504static void 683static int
684time_update_monotonic (void)
685{
686 now = get_clock ();
687
688 if (expect_true (now - now_floor < MIN_TIMEJUMP * .5))
689 {
690 ev_now = now + diff;
691 return 0;
692 }
693 else
694 {
695 now_floor = now;
696 ev_now = ev_time ();
697 return 1;
698 }
699}
700
701static void
505time_update () 702time_update (void)
506{ 703{
507 int i; 704 int i;
508 705
509 ev_now = ev_time (); 706#if EV_USE_MONOTONIC
510
511 if (have_monotonic) 707 if (expect_true (have_monotonic))
512 { 708 {
709 if (time_update_monotonic ())
710 {
513 ev_tstamp odiff = diff; 711 ev_tstamp odiff = diff;
514 712
515 for (i = 4; --i; ) /* loop a few times, before making important decisions */ 713 for (i = 4; --i; ) /* loop a few times, before making important decisions */
516 { 714 {
517 now = get_clock ();
518 diff = ev_now - now; 715 diff = ev_now - now;
519 716
520 if (fabs (odiff - diff) < MIN_TIMEJUMP) 717 if (fabs (odiff - diff) < MIN_TIMEJUMP)
521 return; /* all is well */ 718 return; /* all is well */
522 719
523 ev_now = ev_time (); 720 ev_now = ev_time ();
721 now = get_clock ();
722 now_floor = now;
524 } 723 }
525 724
526 periodics_reschedule (diff - odiff); 725 periodics_reschedule (diff - odiff);
527 /* no timer adjustment, as the monotonic clock doesn't jump */ 726 /* no timer adjustment, as the monotonic clock doesn't jump */
727 }
528 } 728 }
529 else 729 else
730#endif
530 { 731 {
732 ev_now = ev_time ();
733
531 if (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP) 734 if (expect_false (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
532 { 735 {
533 periodics_reschedule (ev_now - now); 736 periodics_reschedule (ev_now - now);
534 737
535 /* adjust timers. this is easy, as the offset is the same for all */ 738 /* adjust timers. this is easy, as the offset is the same for all */
536 for (i = 0; i < timercnt; ++i) 739 for (i = 0; i < timercnt; ++i)
544int ev_loop_done; 747int ev_loop_done;
545 748
546void ev_loop (int flags) 749void ev_loop (int flags)
547{ 750{
548 double block; 751 double block;
549 ev_loop_done = flags & EVLOOP_ONESHOT ? 1 : 0; 752 ev_loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK) ? 1 : 0;
550
551 if (checkcnt)
552 {
553 queue_events ((W *)checks, checkcnt, EV_CHECK);
554 call_pending ();
555 }
556 753
557 do 754 do
558 { 755 {
756 /* queue check watchers (and execute them) */
757 if (expect_false (preparecnt))
758 {
759 queue_events ((W *)prepares, preparecnt, EV_PREPARE);
760 call_pending ();
761 }
762
559 /* update fd-related kernel structures */ 763 /* update fd-related kernel structures */
560 fd_reify (); 764 fd_reify ();
561 765
562 /* calculate blocking time */ 766 /* calculate blocking time */
563 767
564 /* we only need this for !monotonic clock, but as we always have timers, we just calculate it every time */ 768 /* we only need this for !monotonic clockor timers, but as we basically
769 always have timers, we just calculate it always */
770#if EV_USE_MONOTONIC
771 if (expect_true (have_monotonic))
772 time_update_monotonic ();
773 else
774#endif
775 {
565 ev_now = ev_time (); 776 ev_now = ev_time ();
777 now = ev_now;
778 }
566 779
567 if (flags & EVLOOP_NONBLOCK || idlecnt) 780 if (flags & EVLOOP_NONBLOCK || idlecnt)
568 block = 0.; 781 block = 0.;
569 else 782 else
570 { 783 {
571 block = MAX_BLOCKTIME; 784 block = MAX_BLOCKTIME;
572 785
573 if (timercnt) 786 if (timercnt)
574 { 787 {
575 ev_tstamp to = timers [0]->at - (have_monotonic ? get_clock () : ev_now) + method_fudge; 788 ev_tstamp to = timers [0]->at - now + method_fudge;
576 if (block > to) block = to; 789 if (block > to) block = to;
577 } 790 }
578 791
579 if (periodiccnt) 792 if (periodiccnt)
580 { 793 {
589 802
590 /* update ev_now, do magic */ 803 /* update ev_now, do magic */
591 time_update (); 804 time_update ();
592 805
593 /* queue pending timers and reschedule them */ 806 /* queue pending timers and reschedule them */
807 timers_reify (); /* relative timers called last */
594 periodics_reify (); /* absolute timers first */ 808 periodics_reify (); /* absolute timers called first */
595 timers_reify (); /* relative timers second */
596 809
597 /* queue idle watchers unless io or timers are pending */ 810 /* queue idle watchers unless io or timers are pending */
598 if (!pendingcnt) 811 if (!pendingcnt)
599 queue_events ((W *)idles, idlecnt, EV_IDLE); 812 queue_events ((W *)idles, idlecnt, EV_IDLE);
600 813
601 /* queue check and possibly idle watchers */ 814 /* queue check watchers, to be executed first */
815 if (checkcnt)
602 queue_events ((W *)checks, checkcnt, EV_CHECK); 816 queue_events ((W *)checks, checkcnt, EV_CHECK);
603 817
604 call_pending (); 818 call_pending ();
605 } 819 }
606 while (!ev_loop_done); 820 while (!ev_loop_done);
607 821
632 head = &(*head)->next; 846 head = &(*head)->next;
633 } 847 }
634} 848}
635 849
636static void 850static void
637ev_clear (W w) 851ev_clear_pending (W w)
638{ 852{
639 if (w->pending) 853 if (w->pending)
640 { 854 {
641 pendings [w->pending - 1].w = 0; 855 pendings [ABSPRI (w)][w->pending - 1].w = 0;
642 w->pending = 0; 856 w->pending = 0;
643 } 857 }
644} 858}
645 859
646static void 860static void
647ev_start (W w, int active) 861ev_start (W w, int active)
648{ 862{
863 if (w->priority < EV_MINPRI) w->priority = EV_MINPRI;
864 if (w->priority > EV_MAXPRI) w->priority = EV_MAXPRI;
865
649 w->active = active; 866 w->active = active;
650} 867}
651 868
652static void 869static void
653ev_stop (W w) 870ev_stop (W w)
656} 873}
657 874
658/*****************************************************************************/ 875/*****************************************************************************/
659 876
660void 877void
661evio_start (struct ev_io *w) 878ev_io_start (struct ev_io *w)
662{ 879{
880 int fd = w->fd;
881
663 if (ev_is_active (w)) 882 if (ev_is_active (w))
664 return; 883 return;
665 884
666 int fd = w->fd; 885 assert (("ev_io_start called with negative fd", fd >= 0));
667 886
668 ev_start ((W)w, 1); 887 ev_start ((W)w, 1);
669 array_needsize (anfds, anfdmax, fd + 1, anfds_init); 888 array_needsize (anfds, anfdmax, fd + 1, anfds_init);
670 wlist_add ((WL *)&anfds[fd].head, (WL)w); 889 wlist_add ((WL *)&anfds[fd].head, (WL)w);
671 890
672 ++fdchangecnt; 891 fd_change (fd);
673 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
674 fdchanges [fdchangecnt - 1] = fd;
675} 892}
676 893
677void 894void
678evio_stop (struct ev_io *w) 895ev_io_stop (struct ev_io *w)
679{ 896{
680 ev_clear ((W)w); 897 ev_clear_pending ((W)w);
681 if (!ev_is_active (w)) 898 if (!ev_is_active (w))
682 return; 899 return;
683 900
684 wlist_del ((WL *)&anfds[w->fd].head, (WL)w); 901 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
685 ev_stop ((W)w); 902 ev_stop ((W)w);
686 903
687 ++fdchangecnt; 904 fd_change (w->fd);
688 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
689 fdchanges [fdchangecnt - 1] = w->fd;
690} 905}
691 906
692void 907void
693evtimer_start (struct ev_timer *w) 908ev_timer_start (struct ev_timer *w)
694{ 909{
695 if (ev_is_active (w)) 910 if (ev_is_active (w))
696 return; 911 return;
697 912
698 w->at += now; 913 w->at += now;
699 914
700 assert (("timer repeat value less than zero not allowed", w->repeat >= 0.)); 915 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
701 916
702 ev_start ((W)w, ++timercnt); 917 ev_start ((W)w, ++timercnt);
703 array_needsize (timers, timermax, timercnt, ); 918 array_needsize (timers, timermax, timercnt, );
704 timers [timercnt - 1] = w; 919 timers [timercnt - 1] = w;
705 upheap ((WT *)timers, timercnt - 1); 920 upheap ((WT *)timers, timercnt - 1);
706} 921}
707 922
708void 923void
709evtimer_stop (struct ev_timer *w) 924ev_timer_stop (struct ev_timer *w)
710{ 925{
711 ev_clear ((W)w); 926 ev_clear_pending ((W)w);
712 if (!ev_is_active (w)) 927 if (!ev_is_active (w))
713 return; 928 return;
714 929
715 if (w->active < timercnt--) 930 if (w->active < timercnt--)
716 { 931 {
722 937
723 ev_stop ((W)w); 938 ev_stop ((W)w);
724} 939}
725 940
726void 941void
727evtimer_again (struct ev_timer *w) 942ev_timer_again (struct ev_timer *w)
728{ 943{
729 if (ev_is_active (w)) 944 if (ev_is_active (w))
730 { 945 {
731 if (w->repeat) 946 if (w->repeat)
732 { 947 {
733 w->at = now + w->repeat; 948 w->at = now + w->repeat;
734 downheap ((WT *)timers, timercnt, w->active - 1); 949 downheap ((WT *)timers, timercnt, w->active - 1);
735 } 950 }
736 else 951 else
737 evtimer_stop (w); 952 ev_timer_stop (w);
738 } 953 }
739 else if (w->repeat) 954 else if (w->repeat)
740 evtimer_start (w); 955 ev_timer_start (w);
741} 956}
742 957
743void 958void
744evperiodic_start (struct ev_periodic *w) 959ev_periodic_start (struct ev_periodic *w)
745{ 960{
746 if (ev_is_active (w)) 961 if (ev_is_active (w))
747 return; 962 return;
748 963
749 assert (("periodic interval value less than zero not allowed", w->interval >= 0.)); 964 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.));
750 965
751 /* this formula differs from the one in periodic_reify because we do not always round up */ 966 /* this formula differs from the one in periodic_reify because we do not always round up */
752 if (w->interval) 967 if (w->interval)
753 w->at += ceil ((ev_now - w->at) / w->interval) * w->interval; 968 w->at += ceil ((ev_now - w->at) / w->interval) * w->interval;
754 969
757 periodics [periodiccnt - 1] = w; 972 periodics [periodiccnt - 1] = w;
758 upheap ((WT *)periodics, periodiccnt - 1); 973 upheap ((WT *)periodics, periodiccnt - 1);
759} 974}
760 975
761void 976void
762evperiodic_stop (struct ev_periodic *w) 977ev_periodic_stop (struct ev_periodic *w)
763{ 978{
764 ev_clear ((W)w); 979 ev_clear_pending ((W)w);
765 if (!ev_is_active (w)) 980 if (!ev_is_active (w))
766 return; 981 return;
767 982
768 if (w->active < periodiccnt--) 983 if (w->active < periodiccnt--)
769 { 984 {
773 988
774 ev_stop ((W)w); 989 ev_stop ((W)w);
775} 990}
776 991
777void 992void
778evsignal_start (struct ev_signal *w) 993ev_signal_start (struct ev_signal *w)
779{ 994{
780 if (ev_is_active (w)) 995 if (ev_is_active (w))
781 return; 996 return;
997
998 assert (("ev_signal_start called with illegal signal number", w->signum > 0));
782 999
783 ev_start ((W)w, 1); 1000 ev_start ((W)w, 1);
784 array_needsize (signals, signalmax, w->signum, signals_init); 1001 array_needsize (signals, signalmax, w->signum, signals_init);
785 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w); 1002 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
786 1003
793 sigaction (w->signum, &sa, 0); 1010 sigaction (w->signum, &sa, 0);
794 } 1011 }
795} 1012}
796 1013
797void 1014void
798evsignal_stop (struct ev_signal *w) 1015ev_signal_stop (struct ev_signal *w)
799{ 1016{
800 ev_clear ((W)w); 1017 ev_clear_pending ((W)w);
801 if (!ev_is_active (w)) 1018 if (!ev_is_active (w))
802 return; 1019 return;
803 1020
804 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w); 1021 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
805 ev_stop ((W)w); 1022 ev_stop ((W)w);
806 1023
807 if (!signals [w->signum - 1].head) 1024 if (!signals [w->signum - 1].head)
808 signal (w->signum, SIG_DFL); 1025 signal (w->signum, SIG_DFL);
809} 1026}
810 1027
1028void
811void evidle_start (struct ev_idle *w) 1029ev_idle_start (struct ev_idle *w)
812{ 1030{
813 if (ev_is_active (w)) 1031 if (ev_is_active (w))
814 return; 1032 return;
815 1033
816 ev_start ((W)w, ++idlecnt); 1034 ev_start ((W)w, ++idlecnt);
817 array_needsize (idles, idlemax, idlecnt, ); 1035 array_needsize (idles, idlemax, idlecnt, );
818 idles [idlecnt - 1] = w; 1036 idles [idlecnt - 1] = w;
819} 1037}
820 1038
1039void
821void evidle_stop (struct ev_idle *w) 1040ev_idle_stop (struct ev_idle *w)
822{ 1041{
823 ev_clear ((W)w); 1042 ev_clear_pending ((W)w);
824 if (ev_is_active (w)) 1043 if (ev_is_active (w))
825 return; 1044 return;
826 1045
827 idles [w->active - 1] = idles [--idlecnt]; 1046 idles [w->active - 1] = idles [--idlecnt];
828 ev_stop ((W)w); 1047 ev_stop ((W)w);
829} 1048}
830 1049
1050void
1051ev_prepare_start (struct ev_prepare *w)
1052{
1053 if (ev_is_active (w))
1054 return;
1055
1056 ev_start ((W)w, ++preparecnt);
1057 array_needsize (prepares, preparemax, preparecnt, );
1058 prepares [preparecnt - 1] = w;
1059}
1060
1061void
1062ev_prepare_stop (struct ev_prepare *w)
1063{
1064 ev_clear_pending ((W)w);
1065 if (ev_is_active (w))
1066 return;
1067
1068 prepares [w->active - 1] = prepares [--preparecnt];
1069 ev_stop ((W)w);
1070}
1071
1072void
831void evcheck_start (struct ev_check *w) 1073ev_check_start (struct ev_check *w)
832{ 1074{
833 if (ev_is_active (w)) 1075 if (ev_is_active (w))
834 return; 1076 return;
835 1077
836 ev_start ((W)w, ++checkcnt); 1078 ev_start ((W)w, ++checkcnt);
837 array_needsize (checks, checkmax, checkcnt, ); 1079 array_needsize (checks, checkmax, checkcnt, );
838 checks [checkcnt - 1] = w; 1080 checks [checkcnt - 1] = w;
839} 1081}
840 1082
1083void
841void evcheck_stop (struct ev_check *w) 1084ev_check_stop (struct ev_check *w)
842{ 1085{
843 ev_clear ((W)w); 1086 ev_clear_pending ((W)w);
844 if (ev_is_active (w)) 1087 if (ev_is_active (w))
845 return; 1088 return;
846 1089
847 checks [w->active - 1] = checks [--checkcnt]; 1090 checks [w->active - 1] = checks [--checkcnt];
1091 ev_stop ((W)w);
1092}
1093
1094void
1095ev_child_start (struct ev_child *w)
1096{
1097 if (ev_is_active (w))
1098 return;
1099
1100 ev_start ((W)w, 1);
1101 wlist_add ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1102}
1103
1104void
1105ev_child_stop (struct ev_child *w)
1106{
1107 ev_clear_pending ((W)w);
1108 if (ev_is_active (w))
1109 return;
1110
1111 wlist_del ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
848 ev_stop ((W)w); 1112 ev_stop ((W)w);
849} 1113}
850 1114
851/*****************************************************************************/ 1115/*****************************************************************************/
852 1116
862once_cb (struct ev_once *once, int revents) 1126once_cb (struct ev_once *once, int revents)
863{ 1127{
864 void (*cb)(int revents, void *arg) = once->cb; 1128 void (*cb)(int revents, void *arg) = once->cb;
865 void *arg = once->arg; 1129 void *arg = once->arg;
866 1130
867 evio_stop (&once->io); 1131 ev_io_stop (&once->io);
868 evtimer_stop (&once->to); 1132 ev_timer_stop (&once->to);
869 free (once); 1133 free (once);
870 1134
871 cb (revents, arg); 1135 cb (revents, arg);
872} 1136}
873 1137
887ev_once (int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg) 1151ev_once (int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg)
888{ 1152{
889 struct ev_once *once = malloc (sizeof (struct ev_once)); 1153 struct ev_once *once = malloc (sizeof (struct ev_once));
890 1154
891 if (!once) 1155 if (!once)
892 cb (EV_ERROR, arg); 1156 cb (EV_ERROR | EV_READ | EV_WRITE | EV_TIMEOUT, arg);
893 else 1157 else
894 { 1158 {
895 once->cb = cb; 1159 once->cb = cb;
896 once->arg = arg; 1160 once->arg = arg;
897 1161
898 evw_init (&once->io, once_cb_io); 1162 ev_watcher_init (&once->io, once_cb_io);
899
900 if (fd >= 0) 1163 if (fd >= 0)
901 { 1164 {
902 evio_set (&once->io, fd, events); 1165 ev_io_set (&once->io, fd, events);
903 evio_start (&once->io); 1166 ev_io_start (&once->io);
904 } 1167 }
905 1168
906 evw_init (&once->to, once_cb_to); 1169 ev_watcher_init (&once->to, once_cb_to);
907
908 if (timeout >= 0.) 1170 if (timeout >= 0.)
909 { 1171 {
910 evtimer_set (&once->to, timeout, 0.); 1172 ev_timer_set (&once->to, timeout, 0.);
911 evtimer_start (&once->to); 1173 ev_timer_start (&once->to);
912 } 1174 }
913 } 1175 }
914} 1176}
915 1177
916/*****************************************************************************/ 1178/*****************************************************************************/
927 1189
928static void 1190static void
929ocb (struct ev_timer *w, int revents) 1191ocb (struct ev_timer *w, int revents)
930{ 1192{
931 //fprintf (stderr, "timer %f,%f (%x) (%f) d%p\n", w->at, w->repeat, revents, w->at - ev_time (), w->data); 1193 //fprintf (stderr, "timer %f,%f (%x) (%f) d%p\n", w->at, w->repeat, revents, w->at - ev_time (), w->data);
932 evtimer_stop (w); 1194 ev_timer_stop (w);
933 evtimer_start (w); 1195 ev_timer_start (w);
934} 1196}
935 1197
936static void 1198static void
937scb (struct ev_signal *w, int revents) 1199scb (struct ev_signal *w, int revents)
938{ 1200{
939 fprintf (stderr, "signal %x,%d\n", revents, w->signum); 1201 fprintf (stderr, "signal %x,%d\n", revents, w->signum);
940 evio_stop (&wio); 1202 ev_io_stop (&wio);
941 evio_start (&wio); 1203 ev_io_start (&wio);
942} 1204}
943 1205
944static void 1206static void
945gcb (struct ev_signal *w, int revents) 1207gcb (struct ev_signal *w, int revents)
946{ 1208{
950 1212
951int main (void) 1213int main (void)
952{ 1214{
953 ev_init (0); 1215 ev_init (0);
954 1216
955 evio_init (&wio, sin_cb, 0, EV_READ); 1217 ev_io_init (&wio, sin_cb, 0, EV_READ);
956 evio_start (&wio); 1218 ev_io_start (&wio);
957 1219
958 struct ev_timer t[10000]; 1220 struct ev_timer t[10000];
959 1221
960#if 0 1222#if 0
961 int i; 1223 int i;
962 for (i = 0; i < 10000; ++i) 1224 for (i = 0; i < 10000; ++i)
963 { 1225 {
964 struct ev_timer *w = t + i; 1226 struct ev_timer *w = t + i;
965 evw_init (w, ocb, i); 1227 ev_watcher_init (w, ocb, i);
966 evtimer_init_abs (w, ocb, drand48 (), 0.99775533); 1228 ev_timer_init_abs (w, ocb, drand48 (), 0.99775533);
967 evtimer_start (w); 1229 ev_timer_start (w);
968 if (drand48 () < 0.5) 1230 if (drand48 () < 0.5)
969 evtimer_stop (w); 1231 ev_timer_stop (w);
970 } 1232 }
971#endif 1233#endif
972 1234
973 struct ev_timer t1; 1235 struct ev_timer t1;
974 evtimer_init (&t1, ocb, 5, 10); 1236 ev_timer_init (&t1, ocb, 5, 10);
975 evtimer_start (&t1); 1237 ev_timer_start (&t1);
976 1238
977 struct ev_signal sig; 1239 struct ev_signal sig;
978 evsignal_init (&sig, scb, SIGQUIT); 1240 ev_signal_init (&sig, scb, SIGQUIT);
979 evsignal_start (&sig); 1241 ev_signal_start (&sig);
980 1242
981 struct ev_check cw; 1243 struct ev_check cw;
982 evcheck_init (&cw, gcb); 1244 ev_check_init (&cw, gcb);
983 evcheck_start (&cw); 1245 ev_check_start (&cw);
984 1246
985 struct ev_idle iw; 1247 struct ev_idle iw;
986 evidle_init (&iw, gcb); 1248 ev_idle_init (&iw, gcb);
987 evidle_start (&iw); 1249 ev_idle_start (&iw);
988 1250
989 ev_loop (0); 1251 ev_loop (0);
990 1252
991 return 0; 1253 return 0;
992} 1254}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines