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.33 by root, Thu Nov 1 11:11:22 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines