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

Comparing libev/ev.c (file contents):
Revision 1.20 by root, Wed Oct 31 18:28:00 2007 UTC vs.
Revision 1.38 by root, Thu Nov 1 15:21:13 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines