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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines