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

Comparing libev/ev.c (file contents):
Revision 1.3 by root, Tue Oct 30 21:45:00 2007 UTC vs.
Revision 1.18 by root, Wed Oct 31 16:29:52 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
1#include <math.h> 30#include <math.h>
2#include <stdlib.h> 31#include <stdlib.h>
32#include <unistd.h>
33#include <fcntl.h>
34#include <signal.h>
35#include <stddef.h>
3 36
4#include <stdio.h> 37#include <stdio.h>
5 38
39#include <assert.h>
6#include <errno.h> 40#include <errno.h>
7#include <sys/time.h> 41#include <sys/time.h>
8#include <time.h> 42#include <time.h>
9 43
10#ifdef CLOCK_MONOTONIC
11# define HAVE_MONOTONIC 1
12#endif
13
14#define HAVE_EPOLL 1 44#define HAVE_EPOLL 1
15#define HAVE_REALTIME 1 45
46#ifndef HAVE_MONOTONIC
47# ifdef CLOCK_MONOTONIC
48# define HAVE_MONOTONIC 1
49# endif
50#endif
51
52#ifndef HAVE_SELECT
16#define HAVE_SELECT 0 53# define HAVE_SELECT 1
54#endif
17 55
56#ifndef HAVE_EPOLL
57# define HAVE_EPOLL 0
58#endif
59
60#ifndef HAVE_REALTIME
61# define HAVE_REALTIME 1 /* posix requirement, but might be slower */
62#endif
63
64#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
18#define MAX_BLOCKTIME 60. 65#define MAX_BLOCKTIME 60.
19 66
20#include "ev.h" 67#include "ev.h"
21 68
22struct ev_watcher { 69typedef struct ev_watcher *W;
23 EV_WATCHER (ev_watcher);
24};
25
26struct ev_watcher_list { 70typedef struct ev_watcher_list *WL;
27 EV_WATCHER_LIST (ev_watcher_list); 71typedef struct ev_watcher_time *WT;
28};
29 72
73static ev_tstamp now, diff; /* monotonic clock */
30ev_tstamp ev_now; 74ev_tstamp ev_now;
31int ev_method; 75int ev_method;
32 76
33static int have_monotonic; /* runtime */ 77static int have_monotonic; /* runtime */
34 78
35static ev_tstamp method_fudge; /* stupid epoll-returns-early bug */ 79static ev_tstamp method_fudge; /* stupid epoll-returns-early bug */
36static void (*method_reify)(void); 80static void (*method_modify)(int fd, int oev, int nev);
37static void (*method_poll)(ev_tstamp timeout); 81static void (*method_poll)(ev_tstamp timeout);
82
83/*****************************************************************************/
38 84
39ev_tstamp 85ev_tstamp
40ev_time (void) 86ev_time (void)
41{ 87{
42#if HAVE_REALTIME 88#if HAVE_REALTIME
67 113
68#define array_needsize(base,cur,cnt,init) \ 114#define array_needsize(base,cur,cnt,init) \
69 if ((cnt) > cur) \ 115 if ((cnt) > cur) \
70 { \ 116 { \
71 int newcnt = cur ? cur << 1 : 16; \ 117 int newcnt = cur ? cur << 1 : 16; \
72 fprintf (stderr, "resize(" # base ") from %d to %d\n", cur, newcnt);\
73 base = realloc (base, sizeof (*base) * (newcnt)); \ 118 base = realloc (base, sizeof (*base) * (newcnt)); \
74 init (base + cur, newcnt - cur); \ 119 init (base + cur, newcnt - cur); \
75 cur = newcnt; \ 120 cur = newcnt; \
76 } 121 }
77 122
123/*****************************************************************************/
124
78typedef struct 125typedef struct
79{ 126{
80 struct ev_io *head; 127 struct ev_io *head;
81 unsigned char wev, rev; /* want, received event set */ 128 unsigned char wev, rev; /* want, received event set */
82} ANFD; 129} ANFD;
98 } 145 }
99} 146}
100 147
101typedef struct 148typedef struct
102{ 149{
103 struct ev_watcher *w; 150 W w;
104 int events; 151 int events;
105} ANPENDING; 152} ANPENDING;
106 153
107static ANPENDING *pendings; 154static ANPENDING *pendings;
108static int pendingmax, pendingcnt; 155static int pendingmax, pendingcnt;
109 156
110static void 157static void
111event (struct ev_watcher *w, int events) 158event (W w, int events)
112{ 159{
160 if (w->active)
161 {
113 w->pending = ++pendingcnt; 162 w->pending = ++pendingcnt;
114 array_needsize (pendings, pendingmax, pendingcnt, ); 163 array_needsize (pendings, pendingmax, pendingcnt, );
115 pendings [pendingcnt - 1].w = w; 164 pendings [pendingcnt - 1].w = w;
116 pendings [pendingcnt - 1].events = events; 165 pendings [pendingcnt - 1].events = events;
166 }
117} 167}
118 168
119static void 169static void
120fd_event (int fd, int events) 170fd_event (int fd, int events)
121{ 171{
125 for (w = anfd->head; w; w = w->next) 175 for (w = anfd->head; w; w = w->next)
126 { 176 {
127 int ev = w->events & events; 177 int ev = w->events & events;
128 178
129 if (ev) 179 if (ev)
130 event ((struct ev_watcher *)w, ev); 180 event ((W)w, ev);
131 } 181 }
132} 182}
183
184static void
185queue_events (W *events, int eventcnt, int type)
186{
187 int i;
188
189 for (i = 0; i < eventcnt; ++i)
190 event (events [i], type);
191}
192
193/*****************************************************************************/
133 194
134static struct ev_timer **timers; 195static struct ev_timer **timers;
135static int timermax, timercnt; 196static int timermax, timercnt;
136 197
198static struct ev_periodic **periodics;
199static int periodicmax, periodiccnt;
200
137static void 201static void
138upheap (int k) 202upheap (WT *timers, int k)
139{ 203{
140 struct ev_timer *w = timers [k]; 204 WT w = timers [k];
141 205
142 while (k && timers [k >> 1]->at > w->at) 206 while (k && timers [k >> 1]->at > w->at)
143 { 207 {
144 timers [k] = timers [k >> 1]; 208 timers [k] = timers [k >> 1];
145 timers [k]->active = k + 1; 209 timers [k]->active = k + 1;
150 timers [k]->active = k + 1; 214 timers [k]->active = k + 1;
151 215
152} 216}
153 217
154static void 218static void
155downheap (int k) 219downheap (WT *timers, int N, int k)
156{ 220{
157 struct ev_timer *w = timers [k]; 221 WT w = timers [k];
158 222
159 while (k < (timercnt >> 1)) 223 while (k < (N >> 1))
160 { 224 {
161 int j = k << 1; 225 int j = k << 1;
162 226
163 if (j + 1 < timercnt && timers [j]->at > timers [j + 1]->at) 227 if (j + 1 < N && timers [j]->at > timers [j + 1]->at)
164 ++j; 228 ++j;
165 229
166 if (w->at <= timers [j]->at) 230 if (w->at <= timers [j]->at)
167 break; 231 break;
168 232
173 237
174 timers [k] = w; 238 timers [k] = w;
175 timers [k]->active = k + 1; 239 timers [k]->active = k + 1;
176} 240}
177 241
178static struct ev_signal **signals; 242/*****************************************************************************/
243
244typedef struct
245{
246 struct ev_signal *head;
247 sig_atomic_t gotsig;
248} ANSIG;
249
250static ANSIG *signals;
179static int signalmax, signalcnt; 251static int signalmax;
180 252
253static int sigpipe [2];
254static sig_atomic_t gotsig;
255static struct ev_io sigev;
256
181static void 257static void
182signals_init (struct ev_signal **base, int count) 258signals_init (ANSIG *base, int count)
183{ 259{
184 while (count--) 260 while (count--)
185 *base++ = 0; 261 {
262 base->head = 0;
263 base->gotsig = 0;
264 ++base;
265 }
186} 266}
267
268static void
269sighandler (int signum)
270{
271 signals [signum - 1].gotsig = 1;
272
273 if (!gotsig)
274 {
275 gotsig = 1;
276 write (sigpipe [1], &gotsig, 1);
277 }
278}
279
280static void
281sigcb (struct ev_io *iow, int revents)
282{
283 struct ev_signal *w;
284 int sig;
285
286 gotsig = 0;
287 read (sigpipe [0], &revents, 1);
288
289 for (sig = signalmax; sig--; )
290 if (signals [sig].gotsig)
291 {
292 signals [sig].gotsig = 0;
293
294 for (w = signals [sig].head; w; w = w->next)
295 event ((W)w, EV_SIGNAL);
296 }
297}
298
299static void
300siginit (void)
301{
302 fcntl (sigpipe [0], F_SETFD, FD_CLOEXEC);
303 fcntl (sigpipe [1], F_SETFD, FD_CLOEXEC);
304
305 /* rather than sort out wether we really need nb, set it */
306 fcntl (sigpipe [0], F_SETFL, O_NONBLOCK);
307 fcntl (sigpipe [1], F_SETFL, O_NONBLOCK);
308
309 evio_set (&sigev, sigpipe [0], EV_READ);
310 evio_start (&sigev);
311}
312
313/*****************************************************************************/
314
315static struct ev_idle **idles;
316static int idlemax, idlecnt;
317
318static struct ev_check **checks;
319static int checkmax, checkcnt;
320
321/*****************************************************************************/
187 322
188#if HAVE_EPOLL 323#if HAVE_EPOLL
189# include "ev_epoll.c" 324# include "ev_epoll.c"
190#endif 325#endif
191#if HAVE_SELECT 326#if HAVE_SELECT
201 have_monotonic = 1; 336 have_monotonic = 1;
202 } 337 }
203#endif 338#endif
204 339
205 ev_now = ev_time (); 340 ev_now = ev_time ();
341 now = get_clock ();
342 diff = ev_now - now;
206 343
344 if (pipe (sigpipe))
345 return 0;
346
347 ev_method = EVMETHOD_NONE;
207#if HAVE_EPOLL 348#if HAVE_EPOLL
208 if (epoll_init (flags)) 349 if (ev_method == EVMETHOD_NONE) epoll_init (flags);
209 return ev_method;
210#endif 350#endif
211#if HAVE_SELECT 351#if HAVE_SELECT
212 if (select_init (flags)) 352 if (ev_method == EVMETHOD_NONE) select_init (flags);
213 return ev_method;
214#endif 353#endif
215 354
216 ev_method = EVMETHOD_NONE; 355 if (ev_method)
356 {
357 evw_init (&sigev, sigcb);
358 siginit ();
359 }
360
217 return ev_method; 361 return ev_method;
218} 362}
219 363
364/*****************************************************************************/
365
220void ev_prefork (void) 366void ev_prefork (void)
221{ 367{
368 /* nop */
222} 369}
223 370
224void ev_postfork_parent (void) 371void ev_postfork_parent (void)
225{ 372{
373 /* nop */
226} 374}
227 375
228void ev_postfork_child (void) 376void ev_postfork_child (void)
229{ 377{
230#if HAVE_EPOLL 378#if HAVE_EPOLL
379 if (ev_method == EVMETHOD_EPOLL)
231 epoll_postfork_child (); 380 epoll_postfork_child ();
232#endif 381#endif
382
383 evio_stop (&sigev);
384 close (sigpipe [0]);
385 close (sigpipe [1]);
386 pipe (sigpipe);
387 siginit ();
388}
389
390/*****************************************************************************/
391
392static void
393fd_reify (void)
394{
395 int i;
396
397 for (i = 0; i < fdchangecnt; ++i)
398 {
399 int fd = fdchanges [i];
400 ANFD *anfd = anfds + fd;
401 struct ev_io *w;
402
403 int wev = 0;
404
405 for (w = anfd->head; w; w = w->next)
406 wev |= w->events;
407
408 if (anfd->wev != wev)
409 {
410 method_modify (fd, anfd->wev, wev);
411 anfd->wev = wev;
412 }
413 }
414
415 fdchangecnt = 0;
233} 416}
234 417
235static void 418static void
236call_pending () 419call_pending ()
237{ 420{
238 int i; 421 while (pendingcnt)
239
240 for (i = 0; i < pendingcnt; ++i)
241 { 422 {
242 ANPENDING *p = pendings + i; 423 ANPENDING *p = pendings + --pendingcnt;
243 424
244 if (p->w) 425 if (p->w)
245 { 426 {
246 p->w->pending = 0; 427 p->w->pending = 0;
247 p->w->cb (p->w, p->events); 428 p->w->cb (p->w, p->events);
248 } 429 }
249 } 430 }
250
251 pendingcnt = 0;
252} 431}
253 432
254static void 433static void
255timer_reify (void) 434timers_reify ()
256{ 435{
257 while (timercnt && timers [0]->at <= ev_now) 436 while (timercnt && timers [0]->at <= now)
258 { 437 {
259 struct ev_timer *w = timers [0]; 438 struct ev_timer *w = timers [0];
260 439
440 event ((W)w, EV_TIMEOUT);
441
261 /* first reschedule timer */ 442 /* first reschedule or stop timer */
262 if (w->repeat) 443 if (w->repeat)
263 { 444 {
264 if (w->is_abs)
265 w->at += ceil ((ev_now - w->at) / w->repeat + 1.) * w->repeat;
266 else
267 w->at = ev_now + w->repeat; 445 w->at = now + w->repeat;
268 446 assert (("timer timeout in the past, negative repeat?", w->at > now));
269 downheap (0); 447 downheap ((WT *)timers, timercnt, 0);
270 } 448 }
271 else 449 else
272 evtimer_stop (w); /* nonrepeating: stop timer */ 450 evtimer_stop (w); /* nonrepeating: stop timer */
451 }
452}
273 453
454static void
455periodics_reify ()
456{
457 while (periodiccnt && periodics [0]->at <= ev_now)
458 {
459 struct ev_periodic *w = periodics [0];
460
461 /* first reschedule or stop timer */
462 if (w->interval)
463 {
464 w->at += floor ((ev_now - w->at) / w->interval + 1.) * w->interval;
465 assert (("periodic timeout in the past, negative interval?", w->at > ev_now));
466 downheap ((WT *)periodics, periodiccnt, 0);
467 }
468 else
469 evperiodic_stop (w); /* nonrepeating: stop timer */
470
274 event ((struct ev_watcher *)w, EV_TIMEOUT); 471 event ((W)w, EV_TIMEOUT);
472 }
473}
474
475static void
476periodics_reschedule (ev_tstamp diff)
477{
478 int i;
479
480 /* adjust periodics after time jump */
481 for (i = 0; i < periodiccnt; ++i)
482 {
483 struct ev_periodic *w = periodics [i];
484
485 if (w->interval)
486 {
487 ev_tstamp diff = ceil ((ev_now - w->at) / w->interval) * w->interval;
488
489 if (fabs (diff) >= 1e-4)
490 {
491 evperiodic_stop (w);
492 evperiodic_start (w);
493
494 i = 0; /* restart loop, inefficient, but time jumps should be rare */
495 }
496 }
497 }
498}
499
500static void
501time_update ()
502{
503 int i;
504
505 ev_now = ev_time ();
506
507 if (have_monotonic)
508 {
509 ev_tstamp odiff = diff;
510
511 for (i = 4; --i; ) /* loop a few times, before making important decisions */
512 {
513 now = get_clock ();
514 diff = ev_now - now;
515
516 if (fabs (odiff - diff) < MIN_TIMEJUMP)
517 return; /* all is well */
518
519 ev_now = ev_time ();
520 }
521
522 periodics_reschedule (diff - odiff);
523 /* no timer adjustment, as the monotonic clock doesn't jump */
524 }
525 else
526 {
527 if (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP)
528 {
529 periodics_reschedule (ev_now - now);
530
531 /* adjust timers. this is easy, as the offset is the same for all */
532 for (i = 0; i < timercnt; ++i)
533 timers [i]->at += diff;
534 }
535
536 now = ev_now;
275 } 537 }
276} 538}
277 539
278int ev_loop_done; 540int ev_loop_done;
279 541
280int ev_loop (int flags) 542void ev_loop (int flags)
281{ 543{
282 double block; 544 double block;
283 ev_loop_done = flags & EVLOOP_ONESHOT; 545 ev_loop_done = flags & EVLOOP_ONESHOT ? 1 : 0;
546
547 if (checkcnt)
548 {
549 queue_events ((W *)checks, checkcnt, EV_CHECK);
550 call_pending ();
551 }
284 552
285 do 553 do
286 { 554 {
287 /* update fd-related kernel structures */ 555 /* update fd-related kernel structures */
288 method_reify (); fdchangecnt = 0; 556 fd_reify ();
289 557
290 /* calculate blocking time */ 558 /* calculate blocking time */
559
560 /* we only need this for !monotonic clock, but as we always have timers, we just calculate it every time */
291 ev_now = ev_time (); 561 ev_now = ev_time ();
292 562
293 if (flags & EVLOOP_NONBLOCK) 563 if (flags & EVLOOP_NONBLOCK || idlecnt)
294 block = 0.; 564 block = 0.;
295 else if (!timercnt)
296 block = MAX_BLOCKTIME;
297 else 565 else
298 { 566 {
567 block = MAX_BLOCKTIME;
568
569 if (timercnt)
570 {
571 ev_tstamp to = timers [0]->at - (have_monotonic ? get_clock () : ev_now) + method_fudge;
572 if (block > to) block = to;
573 }
574
575 if (periodiccnt)
576 {
299 block = timers [0]->at - ev_now + method_fudge; 577 ev_tstamp to = periodics [0]->at - ev_now + method_fudge;
578 if (block > to) block = to;
579 }
580
300 if (block < 0.) block = 0.; 581 if (block < 0.) block = 0.;
301 else if (block > MAX_BLOCKTIME) block = MAX_BLOCKTIME;
302 } 582 }
303 583
304 method_poll (block); 584 method_poll (block);
305 585
586 /* update ev_now, do magic */
587 time_update ();
588
306 /* put pending timers into pendign queue and reschedule them */ 589 /* queue pending timers and reschedule them */
307 timer_reify (); 590 periodics_reify (); /* absolute timers first */
591 timers_reify (); /* relative timers second */
308 592
309 ev_now = ev_time (); 593 /* queue idle watchers unless io or timers are pending */
594 if (!pendingcnt)
595 queue_events ((W *)idles, idlecnt, EV_IDLE);
596
597 /* queue check and possibly idle watchers */
598 queue_events ((W *)checks, checkcnt, EV_CHECK);
599
310 call_pending (); 600 call_pending ();
311 } 601 }
312 while (!ev_loop_done); 602 while (!ev_loop_done);
313}
314 603
604 if (ev_loop_done != 2)
605 ev_loop_done = 0;
606}
607
608/*****************************************************************************/
609
315static void 610static void
316wlist_add (struct ev_watcher_list **head, struct ev_watcher_list *elem) 611wlist_add (WL *head, WL elem)
317{ 612{
318 elem->next = *head; 613 elem->next = *head;
319 *head = elem; 614 *head = elem;
320} 615}
321 616
322static void 617static void
323wlist_del (struct ev_watcher_list **head, struct ev_watcher_list *elem) 618wlist_del (WL *head, WL elem)
324{ 619{
325 while (*head) 620 while (*head)
326 { 621 {
327 if (*head == elem) 622 if (*head == elem)
328 { 623 {
333 head = &(*head)->next; 628 head = &(*head)->next;
334 } 629 }
335} 630}
336 631
337static void 632static void
338ev_start (struct ev_watcher *w, int active) 633ev_clear (W w)
339{ 634{
635 if (w->pending)
636 {
637 pendings [w->pending - 1].w = 0;
340 w->pending = 0; 638 w->pending = 0;
639 }
640}
641
642static void
643ev_start (W w, int active)
644{
341 w->active = active; 645 w->active = active;
342} 646}
343 647
344static void 648static void
345ev_stop (struct ev_watcher *w) 649ev_stop (W w)
346{ 650{
347 if (w->pending)
348 pendings [w->pending - 1].w = 0;
349
350 w->active = 0; 651 w->active = 0;
351 /* nop */
352} 652}
653
654/*****************************************************************************/
353 655
354void 656void
355evio_start (struct ev_io *w) 657evio_start (struct ev_io *w)
356{ 658{
357 if (ev_is_active (w)) 659 if (ev_is_active (w))
358 return; 660 return;
359 661
360 int fd = w->fd; 662 int fd = w->fd;
361 663
362 ev_start ((struct ev_watcher *)w, 1); 664 ev_start ((W)w, 1);
363 array_needsize (anfds, anfdmax, fd + 1, anfds_init); 665 array_needsize (anfds, anfdmax, fd + 1, anfds_init);
364 wlist_add ((struct ev_watcher_list **)&anfds[fd].head, (struct ev_watcher_list *)w); 666 wlist_add ((WL *)&anfds[fd].head, (WL)w);
365 667
366 ++fdchangecnt; 668 ++fdchangecnt;
367 array_needsize (fdchanges, fdchangemax, fdchangecnt, ); 669 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
368 fdchanges [fdchangecnt - 1] = fd; 670 fdchanges [fdchangecnt - 1] = fd;
369} 671}
370 672
371void 673void
372evio_stop (struct ev_io *w) 674evio_stop (struct ev_io *w)
373{ 675{
676 ev_clear ((W)w);
374 if (!ev_is_active (w)) 677 if (!ev_is_active (w))
375 return; 678 return;
376 679
377 wlist_del ((struct ev_watcher_list **)&anfds[w->fd].head, (struct ev_watcher_list *)w); 680 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
378 ev_stop ((struct ev_watcher *)w); 681 ev_stop ((W)w);
379 682
380 ++fdchangecnt; 683 ++fdchangecnt;
381 array_needsize (fdchanges, fdchangemax, fdchangecnt, ); 684 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
382 fdchanges [fdchangecnt - 1] = w->fd; 685 fdchanges [fdchangecnt - 1] = w->fd;
383} 686}
386evtimer_start (struct ev_timer *w) 689evtimer_start (struct ev_timer *w)
387{ 690{
388 if (ev_is_active (w)) 691 if (ev_is_active (w))
389 return; 692 return;
390 693
391 if (w->is_abs)
392 {
393 /* this formula differs from the one in timer_reify becuse we do not round up */
394 if (w->repeat)
395 w->at += ceil ((ev_now - w->at) / w->repeat) * w->repeat;
396 }
397 else
398 w->at += ev_now; 694 w->at += now;
399 695
400 ev_start ((struct ev_watcher *)w, ++timercnt); 696 assert (("timer repeat value less than zero not allowed", w->repeat >= 0.));
697
698 ev_start ((W)w, ++timercnt);
401 array_needsize (timers, timermax, timercnt, ); 699 array_needsize (timers, timermax, timercnt, );
402 timers [timercnt - 1] = w; 700 timers [timercnt - 1] = w;
403 upheap (timercnt - 1); 701 upheap ((WT *)timers, timercnt - 1);
404} 702}
405 703
406void 704void
407evtimer_stop (struct ev_timer *w) 705evtimer_stop (struct ev_timer *w)
408{ 706{
707 ev_clear ((W)w);
409 if (!ev_is_active (w)) 708 if (!ev_is_active (w))
410 return; 709 return;
411 710
412 if (w->active < timercnt--) 711 if (w->active < timercnt--)
413 { 712 {
414 timers [w->active - 1] = timers [timercnt]; 713 timers [w->active - 1] = timers [timercnt];
415 downheap (w->active - 1); 714 downheap ((WT *)timers, timercnt, w->active - 1);
715 }
716
717 w->at = w->repeat;
718
719 ev_stop ((W)w);
720}
721
722void
723evtimer_again (struct ev_timer *w)
724{
725 if (ev_is_active (w))
416 } 726 {
727 if (w->repeat)
728 {
729 w->at = now + w->repeat;
730 downheap ((WT *)timers, timercnt, w->active - 1);
731 }
732 else
733 evtimer_stop (w);
734 }
735 else if (w->repeat)
736 evtimer_start (w);
737}
417 738
418 ev_stop ((struct ev_watcher *)w); 739void
740evperiodic_start (struct ev_periodic *w)
741{
742 if (ev_is_active (w))
743 return;
744
745 assert (("periodic interval value less than zero not allowed", w->interval >= 0.));
746
747 /* this formula differs from the one in periodic_reify because we do not always round up */
748 if (w->interval)
749 w->at += ceil ((ev_now - w->at) / w->interval) * w->interval;
750
751 ev_start ((W)w, ++periodiccnt);
752 array_needsize (periodics, periodicmax, periodiccnt, );
753 periodics [periodiccnt - 1] = w;
754 upheap ((WT *)periodics, periodiccnt - 1);
755}
756
757void
758evperiodic_stop (struct ev_periodic *w)
759{
760 ev_clear ((W)w);
761 if (!ev_is_active (w))
762 return;
763
764 if (w->active < periodiccnt--)
765 {
766 periodics [w->active - 1] = periodics [periodiccnt];
767 downheap ((WT *)periodics, periodiccnt, w->active - 1);
768 }
769
770 ev_stop ((W)w);
419} 771}
420 772
421void 773void
422evsignal_start (struct ev_signal *w) 774evsignal_start (struct ev_signal *w)
423{ 775{
424 if (ev_is_active (w)) 776 if (ev_is_active (w))
425 return; 777 return;
426 778
427 ev_start ((struct ev_watcher *)w, 1); 779 ev_start ((W)w, 1);
428 array_needsize (signals, signalmax, w->signum, signals_init); 780 array_needsize (signals, signalmax, w->signum, signals_init);
429 wlist_add ((struct ev_watcher_list **)&signals [w->signum - 1], (struct ev_watcher_list *)w); 781 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
782
783 if (!w->next)
784 {
785 struct sigaction sa;
786 sa.sa_handler = sighandler;
787 sigfillset (&sa.sa_mask);
788 sa.sa_flags = 0;
789 sigaction (w->signum, &sa, 0);
790 }
430} 791}
431 792
432void 793void
433evsignal_stop (struct ev_signal *w) 794evsignal_stop (struct ev_signal *w)
434{ 795{
796 ev_clear ((W)w);
435 if (!ev_is_active (w)) 797 if (!ev_is_active (w))
436 return; 798 return;
437 799
438 wlist_del ((struct ev_watcher_list **)&signals [w->signum - 1], (struct ev_watcher_list *)w); 800 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
439 ev_stop ((struct ev_watcher *)w); 801 ev_stop ((W)w);
440}
441 802
803 if (!signals [w->signum - 1].head)
804 signal (w->signum, SIG_DFL);
805}
806
807void evidle_start (struct ev_idle *w)
808{
809 if (ev_is_active (w))
810 return;
811
812 ev_start ((W)w, ++idlecnt);
813 array_needsize (idles, idlemax, idlecnt, );
814 idles [idlecnt - 1] = w;
815}
816
817void evidle_stop (struct ev_idle *w)
818{
819 ev_clear ((W)w);
820 if (ev_is_active (w))
821 return;
822
823 idles [w->active - 1] = idles [--idlecnt];
824 ev_stop ((W)w);
825}
826
827void evcheck_start (struct ev_check *w)
828{
829 if (ev_is_active (w))
830 return;
831
832 ev_start ((W)w, ++checkcnt);
833 array_needsize (checks, checkmax, checkcnt, );
834 checks [checkcnt - 1] = w;
835}
836
837void evcheck_stop (struct ev_check *w)
838{
839 ev_clear ((W)w);
840 if (ev_is_active (w))
841 return;
842
843 checks [w->active - 1] = checks [--checkcnt];
844 ev_stop ((W)w);
845}
846
442/*****************************************************************************/ 847/*****************************************************************************/
848
849struct ev_once
850{
851 struct ev_io io;
852 struct ev_timer to;
853 void (*cb)(int revents, void *arg);
854 void *arg;
855};
856
857static void
858once_cb (struct ev_once *once, int revents)
859{
860 void (*cb)(int revents, void *arg) = once->cb;
861 void *arg = once->arg;
862
863 evio_stop (&once->io);
864 evtimer_stop (&once->to);
865 free (once);
866
867 cb (revents, arg);
868}
869
870static void
871once_cb_io (struct ev_io *w, int revents)
872{
873 once_cb ((struct ev_once *)(((char *)w) - offsetof (struct ev_once, io)), revents);
874}
875
876static void
877once_cb_to (struct ev_timer *w, int revents)
878{
879 once_cb ((struct ev_once *)(((char *)w) - offsetof (struct ev_once, to)), revents);
880}
881
882void
883ev_once (int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg)
884{
885 struct ev_once *once = malloc (sizeof (struct ev_once));
886
887 if (!once)
888 cb (EV_ERROR, arg);
889 else
890 {
891 once->cb = cb;
892 once->arg = arg;
893
894 evw_init (&once->io, once_cb_io);
895
896 if (fd >= 0)
897 {
898 evio_set (&once->io, fd, events);
899 evio_start (&once->io);
900 }
901
902 evw_init (&once->to, once_cb_to);
903
904 if (timeout >= 0.)
905 {
906 evtimer_set (&once->to, timeout, 0.);
907 evtimer_start (&once->to);
908 }
909 }
910}
911
912/*****************************************************************************/
913
443#if 1 914#if 0
915
916struct ev_io wio;
444 917
445static void 918static void
446sin_cb (struct ev_io *w, int revents) 919sin_cb (struct ev_io *w, int revents)
447{ 920{
448 fprintf (stderr, "sin %d, revents %d\n", w->fd, revents); 921 fprintf (stderr, "sin %d, revents %d\n", w->fd, revents);
449} 922}
450 923
451static void 924static void
452ocb (struct ev_timer *w, int revents) 925ocb (struct ev_timer *w, int revents)
453{ 926{
454 fprintf (stderr, "timer %f,%f (%x) (%f) d%p\n", w->at, w->repeat, revents, w->at - ev_time (), w->data); 927 //fprintf (stderr, "timer %f,%f (%x) (%f) d%p\n", w->at, w->repeat, revents, w->at - ev_time (), w->data);
928 evtimer_stop (w);
929 evtimer_start (w);
930}
931
932static void
933scb (struct ev_signal *w, int revents)
934{
935 fprintf (stderr, "signal %x,%d\n", revents, w->signum);
936 evio_stop (&wio);
937 evio_start (&wio);
938}
939
940static void
941gcb (struct ev_signal *w, int revents)
942{
943 fprintf (stderr, "generic %x\n", revents);
944
455} 945}
456 946
457int main (void) 947int main (void)
458{ 948{
459 struct ev_io sin;
460
461 ev_init (0); 949 ev_init (0);
462 950
463 evw_init (&sin, sin_cb, 55);
464 evio_set (&sin, 0, EV_READ); 951 evio_init (&wio, sin_cb, 0, EV_READ);
465 evio_start (&sin); 952 evio_start (&wio);
466 953
467 struct ev_timer t[1000]; 954 struct ev_timer t[10000];
468 955
956#if 0
469 int i; 957 int i;
470 for (i = 0; i < 1000; ++i) 958 for (i = 0; i < 10000; ++i)
471 { 959 {
472 struct ev_timer *w = t + i; 960 struct ev_timer *w = t + i;
473 evw_init (w, ocb, i); 961 evw_init (w, ocb, i);
474 evtimer_set_rel (w, drand48 (), 0); 962 evtimer_init_abs (w, ocb, drand48 (), 0.99775533);
475 evtimer_start (w); 963 evtimer_start (w);
476 if (drand48 () < 0.5) 964 if (drand48 () < 0.5)
477 evtimer_stop (w); 965 evtimer_stop (w);
478 } 966 }
967#endif
968
969 struct ev_timer t1;
970 evtimer_init (&t1, ocb, 5, 10);
971 evtimer_start (&t1);
972
973 struct ev_signal sig;
974 evsignal_init (&sig, scb, SIGQUIT);
975 evsignal_start (&sig);
976
977 struct ev_check cw;
978 evcheck_init (&cw, gcb);
979 evcheck_start (&cw);
980
981 struct ev_idle iw;
982 evidle_init (&iw, gcb);
983 evidle_start (&iw);
479 984
480 ev_loop (0); 985 ev_loop (0);
481 986
482 return 0; 987 return 0;
483} 988}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines