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

Comparing libev/ev.c (file contents):
Revision 1.1 by root, Tue Oct 30 20:59:31 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>
37#include <unistd.h>
38#include <fcntl.h>
39#include <signal.h>
40#include <stddef.h>
3 41
4#include <stdio.h> 42#include <stdio.h>
5 43
44#include <assert.h>
6#include <errno.h> 45#include <errno.h>
46#include <sys/types.h>
47#include <sys/wait.h>
7#include <sys/time.h> 48#include <sys/time.h>
8#include <time.h> 49#include <time.h>
9 50
51/**/
52
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
10#ifdef CLOCK_MONOTONIC 75#ifndef CLOCK_MONOTONIC
76# undef EV_USE_MONOTONIC
11# define HAVE_MONOTONIC 1 77# define EV_USE_MONOTONIC 0
12#endif 78#endif
13 79
14#define HAVE_EPOLL 1 80#ifndef CLOCK_REALTIME
81# undef EV_USE_REALTIME
15#define HAVE_REALTIME 1 82# define EV_USE_REALTIME 0
16#define HAVE_SELECT 0 83#endif
17 84
18#define MAX_BLOCKTIME 60. 85/**/
86
87#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
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 */
19 91
20#include "ev.h" 92#include "ev.h"
21 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
22struct ev_watcher { 105typedef struct ev_watcher *W;
23 EV_WATCHER (ev_watcher);
24};
25
26struct ev_watcher_list { 106typedef struct ev_watcher_list *WL;
27 EV_WATCHER_LIST (ev_watcher_list); 107typedef struct ev_watcher_time *WT;
28};
29 108
109static ev_tstamp now_floor, now, diff; /* monotonic clock */
30ev_tstamp ev_now; 110ev_tstamp ev_now;
31int ev_method; 111int ev_method;
32 112
33static int have_monotonic; /* runtime */ 113static int have_monotonic; /* runtime */
34 114
35static ev_tstamp method_fudge; /* stupid epoll-returns-early bug */ 115static ev_tstamp method_fudge; /* stupid epoll-returns-early bug */
36static void (*method_reify)(void); 116static void (*method_modify)(int fd, int oev, int nev);
37static void (*method_poll)(ev_tstamp timeout); 117static void (*method_poll)(ev_tstamp timeout);
118
119/*****************************************************************************/
38 120
39ev_tstamp 121ev_tstamp
40ev_time (void) 122ev_time (void)
41{ 123{
42#if HAVE_REALTIME 124#if EV_USE_REALTIME
43 struct timespec ts; 125 struct timespec ts;
44 clock_gettime (CLOCK_REALTIME, &ts); 126 clock_gettime (CLOCK_REALTIME, &ts);
45 return ts.tv_sec + ts.tv_nsec * 1e-9; 127 return ts.tv_sec + ts.tv_nsec * 1e-9;
46#else 128#else
47 struct timeval tv; 129 struct timeval tv;
51} 133}
52 134
53static ev_tstamp 135static ev_tstamp
54get_clock (void) 136get_clock (void)
55{ 137{
56#if HAVE_MONOTONIC 138#if EV_USE_MONOTONIC
57 if (have_monotonic) 139 if (expect_true (have_monotonic))
58 { 140 {
59 struct timespec ts; 141 struct timespec ts;
60 clock_gettime (CLOCK_MONOTONIC, &ts); 142 clock_gettime (CLOCK_MONOTONIC, &ts);
61 return ts.tv_sec + ts.tv_nsec * 1e-9; 143 return ts.tv_sec + ts.tv_nsec * 1e-9;
62 } 144 }
63#endif 145#endif
64 146
65 return ev_time (); 147 return ev_time ();
66} 148}
67 149
150#define array_roundsize(base,n) ((n) | 4 & ~3)
151
68#define array_needsize(base,cur,cnt,init) \ 152#define array_needsize(base,cur,cnt,init) \
69 if ((cnt) > cur) \ 153 if (expect_false ((cnt) > cur)) \
70 { \ 154 { \
71 int newcnt = cur; \ 155 int newcnt = cur; \
72 do \ 156 do \
73 { \ 157 { \
74 newcnt += (newcnt >> 1) + 16; \ 158 newcnt = array_roundsize (base, newcnt << 1); \
75 } \ 159 } \
76 while ((cnt) > newcnt); \ 160 while ((cnt) > newcnt); \
77 fprintf (stderr, "resize(" # base ") from %d to %d\n", cur, newcnt);\ 161 \
78 base = realloc (base, sizeof (*base) * (newcnt)); \ 162 base = realloc (base, sizeof (*base) * (newcnt)); \
79 init (base + cur, newcnt - cur); \ 163 init (base + cur, newcnt - cur); \
80 cur = newcnt; \ 164 cur = newcnt; \
81 } 165 }
82 166
167/*****************************************************************************/
168
83typedef struct 169typedef struct
84{ 170{
85 struct ev_io *head; 171 struct ev_io *head;
86 unsigned char wev, rev; /* want, received event set */ 172 unsigned char events;
173 unsigned char reify;
87} ANFD; 174} ANFD;
88 175
89static ANFD *anfds; 176static ANFD *anfds;
90static int anfdmax; 177static int anfdmax;
91 178
92static int *fdchanges;
93static int fdchangemax, fdchangecnt;
94
95static void 179static void
96anfds_init (ANFD *base, int count) 180anfds_init (ANFD *base, int count)
97{ 181{
98 while (count--) 182 while (count--)
99 { 183 {
100 base->head = 0; 184 base->head = 0;
101 base->wev = base->rev = EV_NONE; 185 base->events = EV_NONE;
186 base->reify = 0;
187
102 ++base; 188 ++base;
103 } 189 }
104} 190}
105 191
106typedef struct 192typedef struct
107{ 193{
108 struct ev_watcher *w; 194 W w;
109 int events; 195 int events;
110} ANPENDING; 196} ANPENDING;
111 197
112static ANPENDING *pendings; 198static ANPENDING *pendings;
113static int pendingmax, pendingcnt; 199static int pendingmax, pendingcnt;
114 200
115static void 201static void
116event (struct ev_watcher *w, int events) 202event (W w, int events)
117{ 203{
204 if (w->pending)
205 {
206 pendings [w->pending - 1].events |= events;
207 return;
208 }
209
118 w->pending = ++pendingcnt; 210 w->pending = ++pendingcnt;
119 array_needsize (pendings, pendingmax, pendingcnt, ); 211 array_needsize (pendings, pendingmax, pendingcnt, );
120 pendings [pendingcnt - 1].w = w; 212 pendings [pendingcnt - 1].w = w;
121 pendings [pendingcnt - 1].events = events; 213 pendings [pendingcnt - 1].events = events;
122} 214}
123 215
124static 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
125fd_event (int fd, int events) 226fd_event (int fd, int events)
126{ 227{
127 ANFD *anfd = anfds + fd; 228 ANFD *anfd = anfds + fd;
128 struct ev_io *w; 229 struct ev_io *w;
129 230
130 for (w = anfd->head; w; w = w->next) 231 for (w = anfd->head; w; w = w->next)
131 { 232 {
132 int ev = w->events & events; 233 int ev = w->events & events;
133 234
134 if (ev) 235 if (ev)
135 event ((struct ev_watcher *)w, ev); 236 event ((W)w, ev);
237 }
238}
239
240/*****************************************************************************/
241
242static int *fdchanges;
243static int fdchangemax, fdchangecnt;
244
245static void
246fd_reify (void)
247{
248 int i;
249
250 for (i = 0; i < fdchangecnt; ++i)
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;
136 } 323 }
137} 324}
325
326/*****************************************************************************/
138 327
139static struct ev_timer **timers; 328static struct ev_timer **timers;
140static int timermax, timercnt; 329static int timermax, timercnt;
141 330
331static struct ev_periodic **periodics;
332static int periodicmax, periodiccnt;
333
142static void 334static void
143upheap (int k) 335upheap (WT *timers, int k)
144{ 336{
145 struct ev_timer *w = timers [k]; 337 WT w = timers [k];
146 338
147 while (k && timers [k >> 1]->at > w->at) 339 while (k && timers [k >> 1]->at > w->at)
148 { 340 {
149 timers [k] = timers [k >> 1]; 341 timers [k] = timers [k >> 1];
150 timers [k]->active = k + 1; 342 timers [k]->active = k + 1;
155 timers [k]->active = k + 1; 347 timers [k]->active = k + 1;
156 348
157} 349}
158 350
159static void 351static void
160downheap (int k) 352downheap (WT *timers, int N, int k)
161{ 353{
162 struct ev_timer *w = timers [k]; 354 WT w = timers [k];
163 355
164 while (k <= (timercnt >> 1)) 356 while (k < (N >> 1))
165 { 357 {
166 int j = k << 1; 358 int j = k << 1;
167 359
168 if (j + 1 < timercnt && timers [j]->at > timers [j + 1]->at) 360 if (j + 1 < N && timers [j]->at > timers [j + 1]->at)
169 ++j; 361 ++j;
170 362
171 if (w->at <= timers [j]->at) 363 if (w->at <= timers [j]->at)
172 break; 364 break;
173 365
174 timers [k] = timers [j]; 366 timers [k] = timers [j];
175 timers [k]->active = k; 367 timers [k]->active = k + 1;
176 k = j; 368 k = j;
177 } 369 }
178 370
179 timers [k] = w; 371 timers [k] = w;
180 timers [k]->active = k + 1; 372 timers [k]->active = k + 1;
181} 373}
182 374
183static struct ev_signal **signals; 375/*****************************************************************************/
376
377typedef struct
378{
379 struct ev_signal *head;
380 sig_atomic_t volatile gotsig;
381} ANSIG;
382
383static ANSIG *signals;
184static int signalmax, signalcnt; 384static int signalmax;
185 385
386static int sigpipe [2];
387static sig_atomic_t volatile gotsig;
388static struct ev_io sigev;
389
186static void 390static void
187signals_init (struct ev_signal **base, int count) 391signals_init (ANSIG *base, int count)
188{ 392{
189 while (count--) 393 while (count--)
190 *base++ = 0; 394 {
191} 395 base->head = 0;
396 base->gotsig = 0;
192 397
398 ++base;
399 }
400}
401
402static void
403sighandler (int signum)
404{
405 signals [signum - 1].gotsig = 1;
406
407 if (!gotsig)
408 {
409 gotsig = 1;
410 write (sigpipe [1], &signum, 1);
411 }
412}
413
414static void
415sigcb (struct ev_io *iow, int revents)
416{
417 struct ev_signal *w;
418 int signum;
419
420 read (sigpipe [0], &revents, 1);
421 gotsig = 0;
422
423 for (signum = signalmax; signum--; )
424 if (signals [signum].gotsig)
425 {
426 signals [signum].gotsig = 0;
427
428 for (w = signals [signum].head; w; w = w->next)
429 event ((W)w, EV_SIGNAL);
430 }
431}
432
433static void
434siginit (void)
435{
436 fcntl (sigpipe [0], F_SETFD, FD_CLOEXEC);
437 fcntl (sigpipe [1], F_SETFD, FD_CLOEXEC);
438
439 /* rather than sort out wether we really need nb, set it */
440 fcntl (sigpipe [0], F_SETFL, O_NONBLOCK);
441 fcntl (sigpipe [1], F_SETFL, O_NONBLOCK);
442
443 ev_io_set (&sigev, sigpipe [0], EV_READ);
444 ev_io_start (&sigev);
445}
446
447/*****************************************************************************/
448
449static struct ev_idle **idles;
450static int idlemax, idlecnt;
451
452static struct ev_prepare **prepares;
453static int preparemax, preparecnt;
454
455static struct ev_check **checks;
456static int checkmax, checkcnt;
457
458/*****************************************************************************/
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
193#if HAVE_EPOLL 484#if EV_USE_EPOLL
194# include "ev_epoll.c" 485# include "ev_epoll.c"
195#endif 486#endif
487#if EV_USE_POLL
488# include "ev_poll.c"
489#endif
196#if HAVE_SELECT 490#if EV_USE_SELECT
197# include "ev_select.c" 491# include "ev_select.c"
198#endif 492#endif
199 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
200int ev_init (int flags) 514int ev_init (int methods)
201{ 515{
516 if (!ev_method)
517 {
202#if HAVE_MONOTONIC 518#if EV_USE_MONOTONIC
203 { 519 {
204 struct timespec ts; 520 struct timespec ts;
205 if (!clock_gettime (CLOCK_MONOTONIC, &ts)) 521 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
206 have_monotonic = 1; 522 have_monotonic = 1;
207 } 523 }
208#endif 524#endif
209 525
210 ev_now = ev_time (); 526 ev_now = ev_time ();
527 now = get_clock ();
528 now_floor = now;
529 diff = ev_now - now;
211 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;
212#if HAVE_EPOLL 541#if EV_USE_EPOLL
213 if (epoll_init (flags)) 542 if (!ev_method && (methods & EVMETHOD_EPOLL )) epoll_init (methods);
214 return ev_method;
215#endif 543#endif
544#if EV_USE_POLL
545 if (!ev_method && (methods & EVMETHOD_POLL )) poll_init (methods);
546#endif
216#if HAVE_SELECT 547#if EV_USE_SELECT
217 if (select_init (flags)) 548 if (!ev_method && (methods & EVMETHOD_SELECT)) select_init (methods);
218 return ev_method;
219#endif 549#endif
220 550
221 ev_method = EVMETHOD_NONE; 551 if (ev_method)
552 {
553 ev_watcher_init (&sigev, sigcb);
554 siginit ();
555
556 ev_signal_init (&childev, childcb, SIGCHLD);
557 ev_signal_start (&childev);
558 }
559 }
560
222 return ev_method; 561 return ev_method;
223} 562}
224 563
225void ev_prefork (void) 564/*****************************************************************************/
226{
227}
228 565
566void
567ev_fork_prepare (void)
568{
569 /* nop */
570}
571
572void
229void ev_postfork_parent (void) 573ev_fork_parent (void)
230{ 574{
575 /* nop */
231} 576}
232 577
578void
233void ev_postfork_child (void) 579ev_fork_child (void)
234{ 580{
235#if HAVE_EPOLL 581#if EV_USE_EPOLL
582 if (ev_method == EVMETHOD_EPOLL)
236 epoll_postfork_child (); 583 epoll_postfork_child ();
237#endif 584#endif
238}
239 585
586 ev_io_stop (&sigev);
587 close (sigpipe [0]);
588 close (sigpipe [1]);
589 pipe (sigpipe);
590 siginit ();
591}
592
593/*****************************************************************************/
594
240static void 595static void
241call_pending () 596call_pending (void)
242{ 597{
243 int i; 598 while (pendingcnt)
244
245 for (i = 0; i < pendingcnt; ++i)
246 { 599 {
247 ANPENDING *p = pendings + i; 600 ANPENDING *p = pendings + --pendingcnt;
248 601
249 if (p->w) 602 if (p->w)
250 { 603 {
251 p->w->pending = 0; 604 p->w->pending = 0;
252 p->w->cb (p->w, p->events); 605 p->w->cb (p->w, p->events);
253 } 606 }
254 } 607 }
255
256 pendingcnt = 0;
257} 608}
258 609
259static void 610static void
260timer_reify (void) 611timers_reify (void)
261{ 612{
262 while (timercnt && timers [0]->at <= ev_now) 613 while (timercnt && timers [0]->at <= now)
263 { 614 {
264 struct ev_timer *w = timers [0]; 615 struct ev_timer *w = timers [0];
265 616
266 /* first reschedule timer */ 617 /* first reschedule or stop timer */
267 if (w->repeat) 618 if (w->repeat)
268 { 619 {
269 fprintf (stderr, "a %f now %f repeat %f, %f\n", w->at, ev_now, w->repeat, w->repeat *1e30);//D 620 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.));
270 if (w->is_abs)
271 w->at += floor ((ev_now - w->at) / w->repeat + 1.) * w->repeat;
272 else
273 w->at = ev_now + w->repeat; 621 w->at = now + w->repeat;
274 622 downheap ((WT *)timers, timercnt, 0);
275 fprintf (stderr, "b %f\n", w->at);//D
276
277 downheap (0);
278 } 623 }
279 else 624 else
280 evtimer_stop (w); /* nonrepeating: stop timer */ 625 ev_timer_stop (w); /* nonrepeating: stop timer */
281 626
282 event ((struct ev_watcher *)w, EV_TIMEOUT); 627 event ((W)w, EV_TIMEOUT);
628 }
629}
630
631static void
632periodics_reify (void)
633{
634 while (periodiccnt && periodics [0]->at <= ev_now)
635 {
636 struct ev_periodic *w = periodics [0];
637
638 /* first reschedule or stop timer */
639 if (w->interval)
640 {
641 w->at += floor ((ev_now - w->at) / w->interval + 1.) * w->interval;
642 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", w->at > ev_now));
643 downheap ((WT *)periodics, periodiccnt, 0);
644 }
645 else
646 ev_periodic_stop (w); /* nonrepeating: stop timer */
647
648 event ((W)w, EV_PERIODIC);
649 }
650}
651
652static void
653periodics_reschedule (ev_tstamp diff)
654{
655 int i;
656
657 /* adjust periodics after time jump */
658 for (i = 0; i < periodiccnt; ++i)
659 {
660 struct ev_periodic *w = periodics [i];
661
662 if (w->interval)
663 {
664 ev_tstamp diff = ceil ((ev_now - w->at) / w->interval) * w->interval;
665
666 if (fabs (diff) >= 1e-4)
667 {
668 ev_periodic_stop (w);
669 ev_periodic_start (w);
670
671 i = 0; /* restart loop, inefficient, but time jumps should be rare */
672 }
673 }
674 }
675}
676
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
696time_update (void)
697{
698 int i;
699
700#if EV_USE_MONOTONIC
701 if (expect_true (have_monotonic))
702 {
703 if (time_update_monotonic ())
704 {
705 ev_tstamp odiff = diff;
706
707 for (i = 4; --i; ) /* loop a few times, before making important decisions */
708 {
709 diff = ev_now - now;
710
711 if (fabs (odiff - diff) < MIN_TIMEJUMP)
712 return; /* all is well */
713
714 ev_now = ev_time ();
715 now = get_clock ();
716 now_floor = now;
717 }
718
719 periodics_reschedule (diff - odiff);
720 /* no timer adjustment, as the monotonic clock doesn't jump */
721 }
722 }
723 else
724#endif
725 {
726 ev_now = ev_time ();
727
728 if (expect_false (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
729 {
730 periodics_reschedule (ev_now - now);
731
732 /* adjust timers. this is easy, as the offset is the same for all */
733 for (i = 0; i < timercnt; ++i)
734 timers [i]->at += diff;
735 }
736
737 now = ev_now;
283 } 738 }
284} 739}
285 740
286int ev_loop_done; 741int ev_loop_done;
287 742
288int ev_loop (int flags) 743void ev_loop (int flags)
289{ 744{
290 double block; 745 double block;
291 ev_loop_done = flags & EVLOOP_ONESHOT; 746 ev_loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK) ? 1 : 0;
292 747
293 do 748 do
294 { 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
295 /* update fd-related kernel structures */ 757 /* update fd-related kernel structures */
296 method_reify (); fdchangecnt = 0; 758 fd_reify ();
297 759
298 /* calculate blocking time */ 760 /* calculate blocking time */
761
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 {
299 ev_now = ev_time (); 770 ev_now = ev_time ();
771 now = ev_now;
772 }
300 773
301 if (flags & EVLOOP_NONBLOCK) 774 if (flags & EVLOOP_NONBLOCK || idlecnt)
302 block = 0.; 775 block = 0.;
303 else if (!timercnt)
304 block = MAX_BLOCKTIME;
305 else 776 else
306 { 777 {
778 block = MAX_BLOCKTIME;
779
780 if (timercnt)
781 {
307 block = timers [0]->at - ev_now + method_fudge; 782 ev_tstamp to = timers [0]->at - now + method_fudge;
783 if (block > to) block = to;
784 }
785
786 if (periodiccnt)
787 {
788 ev_tstamp to = periodics [0]->at - ev_now + method_fudge;
789 if (block > to) block = to;
790 }
791
308 if (block < 0.) block = 0.; 792 if (block < 0.) block = 0.;
309 else if (block > MAX_BLOCKTIME) block = MAX_BLOCKTIME;
310 } 793 }
311 794
312 fprintf (stderr, "block %f\n", block);//D
313 method_poll (block); 795 method_poll (block);
314 796
797 /* update ev_now, do magic */
798 time_update ();
799
315 /* put pending timers into pendign queue and reschedule them */ 800 /* queue pending timers and reschedule them */
316 timer_reify (); 801 timers_reify (); /* relative timers called last */
802 periodics_reify (); /* absolute timers called first */
317 803
318 ev_now = ev_time (); 804 /* queue idle watchers unless io or timers are pending */
805 if (!pendingcnt)
806 queue_events ((W *)idles, idlecnt, EV_IDLE);
807
808 /* queue check watchers, to be executed first */
809 if (checkcnt)
810 queue_events ((W *)checks, checkcnt, EV_CHECK);
811
319 call_pending (); 812 call_pending ();
320 } 813 }
321 while (!ev_loop_done); 814 while (!ev_loop_done);
322}
323 815
816 if (ev_loop_done != 2)
817 ev_loop_done = 0;
818}
819
820/*****************************************************************************/
821
324static void 822static void
325wlist_add (struct ev_watcher_list **head, struct ev_watcher_list *elem) 823wlist_add (WL *head, WL elem)
326{ 824{
327 elem->next = *head; 825 elem->next = *head;
328 *head = elem; 826 *head = elem;
329} 827}
330 828
331static void 829static void
332wlist_del (struct ev_watcher_list **head, struct ev_watcher_list *elem) 830wlist_del (WL *head, WL elem)
333{ 831{
334 while (*head) 832 while (*head)
335 { 833 {
336 if (*head == elem) 834 if (*head == elem)
337 { 835 {
342 head = &(*head)->next; 840 head = &(*head)->next;
343 } 841 }
344} 842}
345 843
346static void 844static void
347ev_start (struct ev_watcher *w, int active) 845ev_clear_pending (W w)
348{ 846{
847 if (w->pending)
848 {
849 pendings [w->pending - 1].w = 0;
349 w->pending = 0; 850 w->pending = 0;
851 }
852}
853
854static void
855ev_start (W w, int active)
856{
350 w->active = active; 857 w->active = active;
351} 858}
352 859
353static void 860static void
354ev_stop (struct ev_watcher *w) 861ev_stop (W w)
355{ 862{
356 if (w->pending)
357 pendings [w->pending - 1].w = 0;
358
359 w->active = 0; 863 w->active = 0;
360 /* nop */
361} 864}
362 865
866/*****************************************************************************/
867
363void 868void
364evio_start (struct ev_io *w) 869ev_io_start (struct ev_io *w)
365{ 870{
871 int fd = w->fd;
872
366 if (ev_is_active (w)) 873 if (ev_is_active (w))
367 return; 874 return;
368 875
369 int fd = w->fd; 876 assert (("ev_io_start called with negative fd", fd >= 0));
370 877
371 ev_start ((struct ev_watcher *)w, 1); 878 ev_start ((W)w, 1);
372 array_needsize (anfds, anfdmax, fd + 1, anfds_init); 879 array_needsize (anfds, anfdmax, fd + 1, anfds_init);
373 wlist_add ((struct ev_watcher_list **)&anfds[fd].head, (struct ev_watcher_list *)w); 880 wlist_add ((WL *)&anfds[fd].head, (WL)w);
374 881
375 ++fdchangecnt; 882 fd_change (fd);
376 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
377 fdchanges [fdchangecnt - 1] = fd;
378} 883}
379 884
380void 885void
381evio_stop (struct ev_io *w) 886ev_io_stop (struct ev_io *w)
382{ 887{
888 ev_clear_pending ((W)w);
383 if (!ev_is_active (w)) 889 if (!ev_is_active (w))
384 return; 890 return;
385 891
386 wlist_del ((struct ev_watcher_list **)&anfds[w->fd].head, (struct ev_watcher_list *)w); 892 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
387 ev_stop ((struct ev_watcher *)w); 893 ev_stop ((W)w);
388 894
389 ++fdchangecnt; 895 fd_change (w->fd);
390 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
391 fdchanges [fdchangecnt - 1] = w->fd;
392} 896}
393 897
394void 898void
395evtimer_start (struct ev_timer *w) 899ev_timer_start (struct ev_timer *w)
396{ 900{
397 if (ev_is_active (w)) 901 if (ev_is_active (w))
398 return; 902 return;
399 903
400 fprintf (stderr, "t1 %f a %d\n", w->at, w->is_abs);//D
401 if (w->is_abs)
402 {
403 if (w->repeat)
404 w->at += ceil ((ev_now - w->at) / w->repeat) * w->repeat;
405 }
406 else
407 w->at += ev_now; 904 w->at += now;
408 fprintf (stderr, "t2 %f a %d\n", w->at, w->is_abs);//D
409 905
410 ev_start ((struct ev_watcher *)w, ++timercnt); 906 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
907
908 ev_start ((W)w, ++timercnt);
411 array_needsize (timers, timermax, timercnt, ); 909 array_needsize (timers, timermax, timercnt, );
412 timers [timercnt - 1] = w; 910 timers [timercnt - 1] = w;
413 upheap (timercnt - 1); 911 upheap ((WT *)timers, timercnt - 1);
414} 912}
415 913
416void 914void
417evtimer_stop (struct ev_timer *w) 915ev_timer_stop (struct ev_timer *w)
418{ 916{
917 ev_clear_pending ((W)w);
419 if (!ev_is_active (w)) 918 if (!ev_is_active (w))
420 return; 919 return;
421 920
921 if (w->active < timercnt--)
922 {
422 timers [w->active - 1] = timers [--timercnt]; 923 timers [w->active - 1] = timers [timercnt];
423 downheap (w->active - 1); 924 downheap ((WT *)timers, timercnt, w->active - 1);
424 ev_stop ((struct ev_watcher *)w); 925 }
425}
426 926
927 w->at = w->repeat;
928
929 ev_stop ((W)w);
930}
931
427void 932void
428evsignal_start (struct ev_signal *w) 933ev_timer_again (struct ev_timer *w)
429{ 934{
430 if (ev_is_active (w)) 935 if (ev_is_active (w))
431 return; 936 {
937 if (w->repeat)
938 {
939 w->at = now + w->repeat;
940 downheap ((WT *)timers, timercnt, w->active - 1);
941 }
942 else
943 ev_timer_stop (w);
944 }
945 else if (w->repeat)
946 ev_timer_start (w);
947}
432 948
433 ev_start ((struct ev_watcher *)w, 1); 949void
950ev_periodic_start (struct ev_periodic *w)
951{
952 if (ev_is_active (w))
953 return;
954
955 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.));
956
957 /* this formula differs from the one in periodic_reify because we do not always round up */
958 if (w->interval)
959 w->at += ceil ((ev_now - w->at) / w->interval) * w->interval;
960
961 ev_start ((W)w, ++periodiccnt);
962 array_needsize (periodics, periodicmax, periodiccnt, );
963 periodics [periodiccnt - 1] = w;
964 upheap ((WT *)periodics, periodiccnt - 1);
965}
966
967void
968ev_periodic_stop (struct ev_periodic *w)
969{
970 ev_clear_pending ((W)w);
971 if (!ev_is_active (w))
972 return;
973
974 if (w->active < periodiccnt--)
975 {
976 periodics [w->active - 1] = periodics [periodiccnt];
977 downheap ((WT *)periodics, periodiccnt, w->active - 1);
978 }
979
980 ev_stop ((W)w);
981}
982
983void
984ev_signal_start (struct ev_signal *w)
985{
986 if (ev_is_active (w))
987 return;
988
989 assert (("ev_signal_start called with illegal signal number", w->signum > 0));
990
991 ev_start ((W)w, 1);
434 array_needsize (signals, signalmax, w->signum, signals_init); 992 array_needsize (signals, signalmax, w->signum, signals_init);
435 wlist_add ((struct ev_watcher_list **)&signals [w->signum - 1], (struct ev_watcher_list *)w); 993 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
436}
437 994
995 if (!w->next)
996 {
997 struct sigaction sa;
998 sa.sa_handler = sighandler;
999 sigfillset (&sa.sa_mask);
1000 sa.sa_flags = 0;
1001 sigaction (w->signum, &sa, 0);
1002 }
1003}
1004
438void 1005void
439evsignal_stop (struct ev_signal *w) 1006ev_signal_stop (struct ev_signal *w)
440{ 1007{
1008 ev_clear_pending ((W)w);
441 if (!ev_is_active (w)) 1009 if (!ev_is_active (w))
442 return; 1010 return;
443 1011
444 wlist_del ((struct ev_watcher_list **)&signals [w->signum - 1], (struct ev_watcher_list *)w); 1012 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
1013 ev_stop ((W)w);
1014
1015 if (!signals [w->signum - 1].head)
1016 signal (w->signum, SIG_DFL);
1017}
1018
1019void
1020ev_idle_start (struct ev_idle *w)
1021{
1022 if (ev_is_active (w))
1023 return;
1024
1025 ev_start ((W)w, ++idlecnt);
1026 array_needsize (idles, idlemax, idlecnt, );
1027 idles [idlecnt - 1] = w;
1028}
1029
1030void
1031ev_idle_stop (struct ev_idle *w)
1032{
1033 ev_clear_pending ((W)w);
1034 if (ev_is_active (w))
1035 return;
1036
1037 idles [w->active - 1] = idles [--idlecnt];
1038 ev_stop ((W)w);
1039}
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
1064ev_check_start (struct ev_check *w)
1065{
1066 if (ev_is_active (w))
1067 return;
1068
1069 ev_start ((W)w, ++checkcnt);
1070 array_needsize (checks, checkmax, checkcnt, );
1071 checks [checkcnt - 1] = w;
1072}
1073
1074void
445 ev_stop ((struct ev_watcher *)w); 1075ev_check_stop (struct ev_check *w)
446} 1076{
1077 ev_clear_pending ((W)w);
1078 if (ev_is_active (w))
1079 return;
447 1080
1081 checks [w->active - 1] = checks [--checkcnt];
1082 ev_stop ((W)w);
1083}
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
448/*****************************************************************************/ 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
1169/*****************************************************************************/
1170
449#if 1 1171#if 0
1172
1173struct ev_io wio;
450 1174
451static void 1175static void
452sin_cb (struct ev_io *w, int revents) 1176sin_cb (struct ev_io *w, int revents)
453{ 1177{
454 fprintf (stderr, "sin %d, revents %d\n", w->fd, revents); 1178 fprintf (stderr, "sin %d, revents %d\n", w->fd, revents);
455} 1179}
456 1180
457static void 1181static void
458ocb (struct ev_timer *w, int revents) 1182ocb (struct ev_timer *w, int revents)
459{ 1183{
460 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);
1185 ev_timer_stop (w);
1186 ev_timer_start (w);
1187}
1188
1189static void
1190scb (struct ev_signal *w, int revents)
1191{
1192 fprintf (stderr, "signal %x,%d\n", revents, w->signum);
1193 ev_io_stop (&wio);
1194 ev_io_start (&wio);
1195}
1196
1197static void
1198gcb (struct ev_signal *w, int revents)
1199{
1200 fprintf (stderr, "generic %x\n", revents);
1201
461} 1202}
462 1203
463int main (void) 1204int main (void)
464{ 1205{
465 struct ev_io sin;
466
467 ev_init (0); 1206 ev_init (0);
468 1207
469 evw_init (&sin, sin_cb, 55);
470 evio_set (&sin, 0, EV_READ); 1208 ev_io_init (&wio, sin_cb, 0, EV_READ);
471 evio_start (&sin); 1209 ev_io_start (&wio);
1210
1211 struct ev_timer t[10000];
1212
1213#if 0
1214 int i;
1215 for (i = 0; i < 10000; ++i)
1216 {
1217 struct ev_timer *w = t + i;
1218 ev_watcher_init (w, ocb, i);
1219 ev_timer_init_abs (w, ocb, drand48 (), 0.99775533);
1220 ev_timer_start (w);
1221 if (drand48 () < 0.5)
1222 ev_timer_stop (w);
1223 }
1224#endif
472 1225
473 struct ev_timer t1; 1226 struct ev_timer t1;
474 evw_init (&t1, ocb, 1); 1227 ev_timer_init (&t1, ocb, 5, 10);
475 evtimer_set_rel (&t1, 1, 0);
476 evtimer_start (&t1); 1228 ev_timer_start (&t1);
477 1229
478 struct ev_timer t2; 1230 struct ev_signal sig;
479 evw_init (&t2, ocb, 2); 1231 ev_signal_init (&sig, scb, SIGQUIT);
480 evtimer_set_abs (&t2, ev_time () + 2, 0); 1232 ev_signal_start (&sig);
1233
1234 struct ev_check cw;
1235 ev_check_init (&cw, gcb);
1236 ev_check_start (&cw);
1237
1238 struct ev_idle iw;
1239 ev_idle_init (&iw, gcb);
481 evtimer_start (&t2); 1240 ev_idle_start (&iw);
482 1241
483 ev_loop (0); 1242 ev_loop (0);
484 1243
485 return 0; 1244 return 0;
486} 1245}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines