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

Comparing libev/ev.c (file contents):
Revision 1.15 by root, Wed Oct 31 11:56:34 2007 UTC vs.
Revision 1.41 by root, Fri Nov 2 16:54:34 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines