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

Comparing libev/ev.c (file contents):
Revision 1.133 by root, Fri Nov 23 11:32:22 2007 UTC vs.
Revision 1.167 by root, Sat Dec 8 04:02:31 2007 UTC

94# else 94# else
95# define EV_USE_PORT 0 95# define EV_USE_PORT 0
96# endif 96# endif
97# endif 97# endif
98 98
99# ifndef EV_USE_INOTIFY
100# if HAVE_INOTIFY_INIT && HAVE_SYS_INOTIFY_H
101# define EV_USE_INOTIFY 1
102# else
103# define EV_USE_INOTIFY 0
104# endif
105# endif
106
99#endif 107#endif
100 108
101#include <math.h> 109#include <math.h>
102#include <stdlib.h> 110#include <stdlib.h>
103#include <fcntl.h> 111#include <fcntl.h>
110#include <sys/types.h> 118#include <sys/types.h>
111#include <time.h> 119#include <time.h>
112 120
113#include <signal.h> 121#include <signal.h>
114 122
123#ifdef EV_H
124# include EV_H
125#else
126# include "ev.h"
127#endif
128
115#ifndef _WIN32 129#ifndef _WIN32
116# include <unistd.h>
117# include <sys/time.h> 130# include <sys/time.h>
118# include <sys/wait.h> 131# include <sys/wait.h>
132# include <unistd.h>
119#else 133#else
120# define WIN32_LEAN_AND_MEAN 134# define WIN32_LEAN_AND_MEAN
121# include <windows.h> 135# include <windows.h>
122# ifndef EV_SELECT_IS_WINSOCKET 136# ifndef EV_SELECT_IS_WINSOCKET
123# define EV_SELECT_IS_WINSOCKET 1 137# define EV_SELECT_IS_WINSOCKET 1
156 170
157#ifndef EV_USE_PORT 171#ifndef EV_USE_PORT
158# define EV_USE_PORT 0 172# define EV_USE_PORT 0
159#endif 173#endif
160 174
175#ifndef EV_USE_INOTIFY
176# define EV_USE_INOTIFY 0
177#endif
178
179#ifndef EV_PID_HASHSIZE
180# if EV_MINIMAL
181# define EV_PID_HASHSIZE 1
182# else
183# define EV_PID_HASHSIZE 16
184# endif
185#endif
186
187#ifndef EV_INOTIFY_HASHSIZE
188# if EV_MINIMAL
189# define EV_INOTIFY_HASHSIZE 1
190# else
191# define EV_INOTIFY_HASHSIZE 16
192# endif
193#endif
194
161/**/ 195/**/
162 196
163#ifndef CLOCK_MONOTONIC 197#ifndef CLOCK_MONOTONIC
164# undef EV_USE_MONOTONIC 198# undef EV_USE_MONOTONIC
165# define EV_USE_MONOTONIC 0 199# define EV_USE_MONOTONIC 0
172 206
173#if EV_SELECT_IS_WINSOCKET 207#if EV_SELECT_IS_WINSOCKET
174# include <winsock.h> 208# include <winsock.h>
175#endif 209#endif
176 210
211#if !EV_STAT_ENABLE
212# define EV_USE_INOTIFY 0
213#endif
214
215#if EV_USE_INOTIFY
216# include <sys/inotify.h>
217#endif
218
177/**/ 219/**/
178 220
179#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */ 221#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
180#define MAX_BLOCKTIME 59.743 /* never wait longer than this time (to detect time jumps) */ 222#define MAX_BLOCKTIME 59.743 /* never wait longer than this time (to detect time jumps) */
181#define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */
182/*#define CLEANUP_INTERVAL (MAX_BLOCKTIME * 5.) /* how often to try to free memory and re-check fds */ 223/*#define CLEANUP_INTERVAL (MAX_BLOCKTIME * 5.) /* how often to try to free memory and re-check fds */
183
184#ifdef EV_H
185# include EV_H
186#else
187# include "ev.h"
188#endif
189 224
190#if __GNUC__ >= 3 225#if __GNUC__ >= 3
191# define expect(expr,value) __builtin_expect ((expr),(value)) 226# define expect(expr,value) __builtin_expect ((expr),(value))
227# define inline_size static inline /* inline for codesize */
228# if EV_MINIMAL
229# define noinline __attribute__ ((noinline))
230# define inline_speed static noinline
231# else
232# define noinline
192# define inline static inline 233# define inline_speed static inline
234# endif
193#else 235#else
194# define expect(expr,value) (expr) 236# define expect(expr,value) (expr)
237# define inline_speed static
195# define inline static 238# define inline_size static
239# define noinline
196#endif 240#endif
197 241
198#define expect_false(expr) expect ((expr) != 0, 0) 242#define expect_false(expr) expect ((expr) != 0, 0)
199#define expect_true(expr) expect ((expr) != 0, 1) 243#define expect_true(expr) expect ((expr) != 0, 1)
200 244
201#define NUMPRI (EV_MAXPRI - EV_MINPRI + 1) 245#define NUMPRI (EV_MAXPRI - EV_MINPRI + 1)
202#define ABSPRI(w) ((w)->priority - EV_MINPRI) 246#define ABSPRI(w) (((W)w)->priority - EV_MINPRI)
203 247
204#define EMPTY0 /* required for microsofts broken pseudo-c compiler */ 248#define EMPTY /* required for microsofts broken pseudo-c compiler */
205#define EMPTY2(a,b) /* used to suppress some warnings */ 249#define EMPTY2(a,b) /* used to suppress some warnings */
206 250
207typedef struct ev_watcher *W; 251typedef ev_watcher *W;
208typedef struct ev_watcher_list *WL; 252typedef ev_watcher_list *WL;
209typedef struct ev_watcher_time *WT; 253typedef ev_watcher_time *WT;
210 254
211static int have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */ 255static int have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */
212 256
213#ifdef _WIN32 257#ifdef _WIN32
214# include "ev_win32.c" 258# include "ev_win32.c"
216 260
217/*****************************************************************************/ 261/*****************************************************************************/
218 262
219static void (*syserr_cb)(const char *msg); 263static void (*syserr_cb)(const char *msg);
220 264
265void
221void ev_set_syserr_cb (void (*cb)(const char *msg)) 266ev_set_syserr_cb (void (*cb)(const char *msg))
222{ 267{
223 syserr_cb = cb; 268 syserr_cb = cb;
224} 269}
225 270
226static void 271static void noinline
227syserr (const char *msg) 272syserr (const char *msg)
228{ 273{
229 if (!msg) 274 if (!msg)
230 msg = "(libev) system error"; 275 msg = "(libev) system error";
231 276
238 } 283 }
239} 284}
240 285
241static void *(*alloc)(void *ptr, long size); 286static void *(*alloc)(void *ptr, long size);
242 287
288void
243void ev_set_allocator (void *(*cb)(void *ptr, long size)) 289ev_set_allocator (void *(*cb)(void *ptr, long size))
244{ 290{
245 alloc = cb; 291 alloc = cb;
246} 292}
247 293
248static void * 294inline_speed void *
249ev_realloc (void *ptr, long size) 295ev_realloc (void *ptr, long size)
250{ 296{
251 ptr = alloc ? alloc (ptr, size) : realloc (ptr, size); 297 ptr = alloc ? alloc (ptr, size) : realloc (ptr, size);
252 298
253 if (!ptr && size) 299 if (!ptr && size)
277typedef struct 323typedef struct
278{ 324{
279 W w; 325 W w;
280 int events; 326 int events;
281} ANPENDING; 327} ANPENDING;
328
329#if EV_USE_INOTIFY
330typedef struct
331{
332 WL head;
333} ANFS;
334#endif
282 335
283#if EV_MULTIPLICITY 336#if EV_MULTIPLICITY
284 337
285 struct ev_loop 338 struct ev_loop
286 { 339 {
320 gettimeofday (&tv, 0); 373 gettimeofday (&tv, 0);
321 return tv.tv_sec + tv.tv_usec * 1e-6; 374 return tv.tv_sec + tv.tv_usec * 1e-6;
322#endif 375#endif
323} 376}
324 377
325inline ev_tstamp 378ev_tstamp inline_size
326get_clock (void) 379get_clock (void)
327{ 380{
328#if EV_USE_MONOTONIC 381#if EV_USE_MONOTONIC
329 if (expect_true (have_monotonic)) 382 if (expect_true (have_monotonic))
330 { 383 {
343{ 396{
344 return ev_rt_now; 397 return ev_rt_now;
345} 398}
346#endif 399#endif
347 400
348#define array_roundsize(type,n) (((n) | 4) & ~3) 401int inline_size
402array_nextsize (int elem, int cur, int cnt)
403{
404 int ncur = cur + 1;
405
406 do
407 ncur <<= 1;
408 while (cnt > ncur);
409
410 /* if size > 4096, round to 4096 - 4 * longs to accomodate malloc overhead */
411 if (elem * ncur > 4096)
412 {
413 ncur *= elem;
414 ncur = (ncur + elem + 4095 + sizeof (void *) * 4) & ~4095;
415 ncur = ncur - sizeof (void *) * 4;
416 ncur /= elem;
417 }
418
419 return ncur;
420}
421
422inline_speed void *
423array_realloc (int elem, void *base, int *cur, int cnt)
424{
425 *cur = array_nextsize (elem, *cur, cnt);
426 return ev_realloc (base, elem * *cur);
427}
349 428
350#define array_needsize(type,base,cur,cnt,init) \ 429#define array_needsize(type,base,cur,cnt,init) \
351 if (expect_false ((cnt) > cur)) \ 430 if (expect_false ((cnt) > (cur))) \
352 { \ 431 { \
353 int newcnt = cur; \ 432 int ocur_ = (cur); \
354 do \ 433 (base) = (type *)array_realloc \
355 { \ 434 (sizeof (type), (base), &(cur), (cnt)); \
356 newcnt = array_roundsize (type, newcnt << 1); \ 435 init ((base) + (ocur_), (cur) - ocur_); \
357 } \
358 while ((cnt) > newcnt); \
359 \
360 base = (type *)ev_realloc (base, sizeof (type) * (newcnt));\
361 init (base + cur, newcnt - cur); \
362 cur = newcnt; \
363 } 436 }
364 437
438#if 0
365#define array_slim(type,stem) \ 439#define array_slim(type,stem) \
366 if (stem ## max < array_roundsize (stem ## cnt >> 2)) \ 440 if (stem ## max < array_roundsize (stem ## cnt >> 2)) \
367 { \ 441 { \
368 stem ## max = array_roundsize (stem ## cnt >> 1); \ 442 stem ## max = array_roundsize (stem ## cnt >> 1); \
369 base = (type *)ev_realloc (base, sizeof (type) * (stem ## max));\ 443 base = (type *)ev_realloc (base, sizeof (type) * (stem ## max));\
370 fprintf (stderr, "slimmed down " # stem " to %d\n", stem ## max);/*D*/\ 444 fprintf (stderr, "slimmed down " # stem " to %d\n", stem ## max);/*D*/\
371 } 445 }
446#endif
372 447
373#define array_free(stem, idx) \ 448#define array_free(stem, idx) \
374 ev_free (stem ## s idx); stem ## cnt idx = stem ## max idx = 0; 449 ev_free (stem ## s idx); stem ## cnt idx = stem ## max idx = 0;
375 450
376/*****************************************************************************/ 451/*****************************************************************************/
377 452
378static void 453void noinline
379anfds_init (ANFD *base, int count)
380{
381 while (count--)
382 {
383 base->head = 0;
384 base->events = EV_NONE;
385 base->reify = 0;
386
387 ++base;
388 }
389}
390
391void
392ev_feed_event (EV_P_ void *w, int revents) 454ev_feed_event (EV_P_ void *w, int revents)
393{ 455{
394 W w_ = (W)w; 456 W w_ = (W)w;
395 457
396 if (expect_false (w_->pending)) 458 if (expect_false (w_->pending))
403 array_needsize (ANPENDING, pendings [ABSPRI (w_)], pendingmax [ABSPRI (w_)], pendingcnt [ABSPRI (w_)], EMPTY2); 465 array_needsize (ANPENDING, pendings [ABSPRI (w_)], pendingmax [ABSPRI (w_)], pendingcnt [ABSPRI (w_)], EMPTY2);
404 pendings [ABSPRI (w_)][w_->pending - 1].w = w_; 466 pendings [ABSPRI (w_)][w_->pending - 1].w = w_;
405 pendings [ABSPRI (w_)][w_->pending - 1].events = revents; 467 pendings [ABSPRI (w_)][w_->pending - 1].events = revents;
406} 468}
407 469
408static void 470void inline_size
409queue_events (EV_P_ W *events, int eventcnt, int type) 471queue_events (EV_P_ W *events, int eventcnt, int type)
410{ 472{
411 int i; 473 int i;
412 474
413 for (i = 0; i < eventcnt; ++i) 475 for (i = 0; i < eventcnt; ++i)
414 ev_feed_event (EV_A_ events [i], type); 476 ev_feed_event (EV_A_ events [i], type);
415} 477}
416 478
417inline void 479/*****************************************************************************/
480
481void inline_size
482anfds_init (ANFD *base, int count)
483{
484 while (count--)
485 {
486 base->head = 0;
487 base->events = EV_NONE;
488 base->reify = 0;
489
490 ++base;
491 }
492}
493
494void inline_speed
418fd_event (EV_P_ int fd, int revents) 495fd_event (EV_P_ int fd, int revents)
419{ 496{
420 ANFD *anfd = anfds + fd; 497 ANFD *anfd = anfds + fd;
421 struct ev_io *w; 498 ev_io *w;
422 499
423 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next) 500 for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next)
424 { 501 {
425 int ev = w->events & revents; 502 int ev = w->events & revents;
426 503
427 if (ev) 504 if (ev)
428 ev_feed_event (EV_A_ (W)w, ev); 505 ev_feed_event (EV_A_ (W)w, ev);
433ev_feed_fd_event (EV_P_ int fd, int revents) 510ev_feed_fd_event (EV_P_ int fd, int revents)
434{ 511{
435 fd_event (EV_A_ fd, revents); 512 fd_event (EV_A_ fd, revents);
436} 513}
437 514
438/*****************************************************************************/ 515void inline_size
439
440inline void
441fd_reify (EV_P) 516fd_reify (EV_P)
442{ 517{
443 int i; 518 int i;
444 519
445 for (i = 0; i < fdchangecnt; ++i) 520 for (i = 0; i < fdchangecnt; ++i)
446 { 521 {
447 int fd = fdchanges [i]; 522 int fd = fdchanges [i];
448 ANFD *anfd = anfds + fd; 523 ANFD *anfd = anfds + fd;
449 struct ev_io *w; 524 ev_io *w;
450 525
451 int events = 0; 526 int events = 0;
452 527
453 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next) 528 for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next)
454 events |= w->events; 529 events |= w->events;
455 530
456#if EV_SELECT_IS_WINSOCKET 531#if EV_SELECT_IS_WINSOCKET
457 if (events) 532 if (events)
458 { 533 {
469 } 544 }
470 545
471 fdchangecnt = 0; 546 fdchangecnt = 0;
472} 547}
473 548
474static void 549void inline_size
475fd_change (EV_P_ int fd) 550fd_change (EV_P_ int fd)
476{ 551{
477 if (expect_false (anfds [fd].reify)) 552 if (expect_false (anfds [fd].reify))
478 return; 553 return;
479 554
482 ++fdchangecnt; 557 ++fdchangecnt;
483 array_needsize (int, fdchanges, fdchangemax, fdchangecnt, EMPTY2); 558 array_needsize (int, fdchanges, fdchangemax, fdchangecnt, EMPTY2);
484 fdchanges [fdchangecnt - 1] = fd; 559 fdchanges [fdchangecnt - 1] = fd;
485} 560}
486 561
487static void 562void inline_speed
488fd_kill (EV_P_ int fd) 563fd_kill (EV_P_ int fd)
489{ 564{
490 struct ev_io *w; 565 ev_io *w;
491 566
492 while ((w = (struct ev_io *)anfds [fd].head)) 567 while ((w = (ev_io *)anfds [fd].head))
493 { 568 {
494 ev_io_stop (EV_A_ w); 569 ev_io_stop (EV_A_ w);
495 ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE); 570 ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE);
496 } 571 }
497} 572}
498 573
499inline int 574int inline_size
500fd_valid (int fd) 575fd_valid (int fd)
501{ 576{
502#ifdef _WIN32 577#ifdef _WIN32
503 return _get_osfhandle (fd) != -1; 578 return _get_osfhandle (fd) != -1;
504#else 579#else
505 return fcntl (fd, F_GETFD) != -1; 580 return fcntl (fd, F_GETFD) != -1;
506#endif 581#endif
507} 582}
508 583
509/* called on EBADF to verify fds */ 584/* called on EBADF to verify fds */
510static void 585static void noinline
511fd_ebadf (EV_P) 586fd_ebadf (EV_P)
512{ 587{
513 int fd; 588 int fd;
514 589
515 for (fd = 0; fd < anfdmax; ++fd) 590 for (fd = 0; fd < anfdmax; ++fd)
517 if (!fd_valid (fd) == -1 && errno == EBADF) 592 if (!fd_valid (fd) == -1 && errno == EBADF)
518 fd_kill (EV_A_ fd); 593 fd_kill (EV_A_ fd);
519} 594}
520 595
521/* called on ENOMEM in select/poll to kill some fds and retry */ 596/* called on ENOMEM in select/poll to kill some fds and retry */
522static void 597static void noinline
523fd_enomem (EV_P) 598fd_enomem (EV_P)
524{ 599{
525 int fd; 600 int fd;
526 601
527 for (fd = anfdmax; fd--; ) 602 for (fd = anfdmax; fd--; )
531 return; 606 return;
532 } 607 }
533} 608}
534 609
535/* usually called after fork if backend needs to re-arm all fds from scratch */ 610/* usually called after fork if backend needs to re-arm all fds from scratch */
536static void 611static void noinline
537fd_rearm_all (EV_P) 612fd_rearm_all (EV_P)
538{ 613{
539 int fd; 614 int fd;
540 615
541 /* this should be highly optimised to not do anything but set a flag */
542 for (fd = 0; fd < anfdmax; ++fd) 616 for (fd = 0; fd < anfdmax; ++fd)
543 if (anfds [fd].events) 617 if (anfds [fd].events)
544 { 618 {
545 anfds [fd].events = 0; 619 anfds [fd].events = 0;
546 fd_change (EV_A_ fd); 620 fd_change (EV_A_ fd);
547 } 621 }
548} 622}
549 623
550/*****************************************************************************/ 624/*****************************************************************************/
551 625
552static void 626void inline_speed
553upheap (WT *heap, int k) 627upheap (WT *heap, int k)
554{ 628{
555 WT w = heap [k]; 629 WT w = heap [k];
556 630
557 while (k && heap [k >> 1]->at > w->at) 631 while (k && heap [k >> 1]->at > w->at)
564 heap [k] = w; 638 heap [k] = w;
565 ((W)heap [k])->active = k + 1; 639 ((W)heap [k])->active = k + 1;
566 640
567} 641}
568 642
569static void 643void inline_speed
570downheap (WT *heap, int N, int k) 644downheap (WT *heap, int N, int k)
571{ 645{
572 WT w = heap [k]; 646 WT w = heap [k];
573 647
574 while (k < (N >> 1)) 648 while (k < (N >> 1))
588 662
589 heap [k] = w; 663 heap [k] = w;
590 ((W)heap [k])->active = k + 1; 664 ((W)heap [k])->active = k + 1;
591} 665}
592 666
593inline void 667void inline_size
594adjustheap (WT *heap, int N, int k) 668adjustheap (WT *heap, int N, int k)
595{ 669{
596 upheap (heap, k); 670 upheap (heap, k);
597 downheap (heap, N, k); 671 downheap (heap, N, k);
598} 672}
608static ANSIG *signals; 682static ANSIG *signals;
609static int signalmax; 683static int signalmax;
610 684
611static int sigpipe [2]; 685static int sigpipe [2];
612static sig_atomic_t volatile gotsig; 686static sig_atomic_t volatile gotsig;
613static struct ev_io sigev; 687static ev_io sigev;
614 688
615static void 689void inline_size
616signals_init (ANSIG *base, int count) 690signals_init (ANSIG *base, int count)
617{ 691{
618 while (count--) 692 while (count--)
619 { 693 {
620 base->head = 0; 694 base->head = 0;
640 write (sigpipe [1], &signum, 1); 714 write (sigpipe [1], &signum, 1);
641 errno = old_errno; 715 errno = old_errno;
642 } 716 }
643} 717}
644 718
645void 719void noinline
646ev_feed_signal_event (EV_P_ int signum) 720ev_feed_signal_event (EV_P_ int signum)
647{ 721{
648 WL w; 722 WL w;
649 723
650#if EV_MULTIPLICITY 724#if EV_MULTIPLICITY
661 for (w = signals [signum].head; w; w = w->next) 735 for (w = signals [signum].head; w; w = w->next)
662 ev_feed_event (EV_A_ (W)w, EV_SIGNAL); 736 ev_feed_event (EV_A_ (W)w, EV_SIGNAL);
663} 737}
664 738
665static void 739static void
666sigcb (EV_P_ struct ev_io *iow, int revents) 740sigcb (EV_P_ ev_io *iow, int revents)
667{ 741{
668 int signum; 742 int signum;
669 743
670 read (sigpipe [0], &revents, 1); 744 read (sigpipe [0], &revents, 1);
671 gotsig = 0; 745 gotsig = 0;
673 for (signum = signalmax; signum--; ) 747 for (signum = signalmax; signum--; )
674 if (signals [signum].gotsig) 748 if (signals [signum].gotsig)
675 ev_feed_signal_event (EV_A_ signum + 1); 749 ev_feed_signal_event (EV_A_ signum + 1);
676} 750}
677 751
678static void 752void inline_size
679fd_intern (int fd) 753fd_intern (int fd)
680{ 754{
681#ifdef _WIN32 755#ifdef _WIN32
682 int arg = 1; 756 int arg = 1;
683 ioctlsocket (_get_osfhandle (fd), FIONBIO, &arg); 757 ioctlsocket (_get_osfhandle (fd), FIONBIO, &arg);
685 fcntl (fd, F_SETFD, FD_CLOEXEC); 759 fcntl (fd, F_SETFD, FD_CLOEXEC);
686 fcntl (fd, F_SETFL, O_NONBLOCK); 760 fcntl (fd, F_SETFL, O_NONBLOCK);
687#endif 761#endif
688} 762}
689 763
690static void 764static void noinline
691siginit (EV_P) 765siginit (EV_P)
692{ 766{
693 fd_intern (sigpipe [0]); 767 fd_intern (sigpipe [0]);
694 fd_intern (sigpipe [1]); 768 fd_intern (sigpipe [1]);
695 769
698 ev_unref (EV_A); /* child watcher should not keep loop alive */ 772 ev_unref (EV_A); /* child watcher should not keep loop alive */
699} 773}
700 774
701/*****************************************************************************/ 775/*****************************************************************************/
702 776
703static struct ev_child *childs [PID_HASHSIZE]; 777static ev_child *childs [EV_PID_HASHSIZE];
704 778
705#ifndef _WIN32 779#ifndef _WIN32
706 780
707static struct ev_signal childev; 781static ev_signal childev;
782
783void inline_speed
784child_reap (EV_P_ ev_signal *sw, int chain, int pid, int status)
785{
786 ev_child *w;
787
788 for (w = (ev_child *)childs [chain & (EV_PID_HASHSIZE - 1)]; w; w = (ev_child *)((WL)w)->next)
789 if (w->pid == pid || !w->pid)
790 {
791 ev_set_priority (w, ev_priority (sw)); /* need to do it *now* */
792 w->rpid = pid;
793 w->rstatus = status;
794 ev_feed_event (EV_A_ (W)w, EV_CHILD);
795 }
796}
708 797
709#ifndef WCONTINUED 798#ifndef WCONTINUED
710# define WCONTINUED 0 799# define WCONTINUED 0
711#endif 800#endif
712 801
713static void 802static void
714child_reap (EV_P_ struct ev_signal *sw, int chain, int pid, int status)
715{
716 struct ev_child *w;
717
718 for (w = (struct ev_child *)childs [chain & (PID_HASHSIZE - 1)]; w; w = (struct ev_child *)((WL)w)->next)
719 if (w->pid == pid || !w->pid)
720 {
721 ev_priority (w) = ev_priority (sw); /* need to do it *now* */
722 w->rpid = pid;
723 w->rstatus = status;
724 ev_feed_event (EV_A_ (W)w, EV_CHILD);
725 }
726}
727
728static void
729childcb (EV_P_ struct ev_signal *sw, int revents) 803childcb (EV_P_ ev_signal *sw, int revents)
730{ 804{
731 int pid, status; 805 int pid, status;
732 806
807 /* some systems define WCONTINUED but then fail to support it (linux 2.4) */
733 if (0 < (pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED))) 808 if (0 >= (pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)))
734 { 809 if (!WCONTINUED
810 || errno != EINVAL
811 || 0 >= (pid = waitpid (-1, &status, WNOHANG | WUNTRACED)))
812 return;
813
735 /* make sure we are called again until all childs have been reaped */ 814 /* make sure we are called again until all childs have been reaped */
736 /* we need to do it this way so that the callback gets called before we continue */ 815 /* we need to do it this way so that the callback gets called before we continue */
737 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL); 816 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL);
738 817
739 child_reap (EV_A_ sw, pid, pid, status); 818 child_reap (EV_A_ sw, pid, pid, status);
819 if (EV_PID_HASHSIZE > 1)
740 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but feed_event catches that */ 820 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but feed_event catches that */
741 }
742} 821}
743 822
744#endif 823#endif
745 824
746/*****************************************************************************/ 825/*****************************************************************************/
772{ 851{
773 return EV_VERSION_MINOR; 852 return EV_VERSION_MINOR;
774} 853}
775 854
776/* return true if we are running with elevated privileges and should ignore env variables */ 855/* return true if we are running with elevated privileges and should ignore env variables */
777static int 856int inline_size
778enable_secure (void) 857enable_secure (void)
779{ 858{
780#ifdef _WIN32 859#ifdef _WIN32
781 return 0; 860 return 0;
782#else 861#else
816 895
817 return flags; 896 return flags;
818} 897}
819 898
820unsigned int 899unsigned int
900ev_embeddable_backends (void)
901{
902 return EVBACKEND_EPOLL
903 | EVBACKEND_KQUEUE
904 | EVBACKEND_PORT;
905}
906
907unsigned int
821ev_backend (EV_P) 908ev_backend (EV_P)
822{ 909{
823 return backend; 910 return backend;
824} 911}
825 912
826static void 913unsigned int
914ev_loop_count (EV_P)
915{
916 return loop_count;
917}
918
919static void noinline
827loop_init (EV_P_ unsigned int flags) 920loop_init (EV_P_ unsigned int flags)
828{ 921{
829 if (!backend) 922 if (!backend)
830 { 923 {
831#if EV_USE_MONOTONIC 924#if EV_USE_MONOTONIC
839 ev_rt_now = ev_time (); 932 ev_rt_now = ev_time ();
840 mn_now = get_clock (); 933 mn_now = get_clock ();
841 now_floor = mn_now; 934 now_floor = mn_now;
842 rtmn_diff = ev_rt_now - mn_now; 935 rtmn_diff = ev_rt_now - mn_now;
843 936
937 /* pid check not overridable via env */
938#ifndef _WIN32
939 if (flags & EVFLAG_FORKCHECK)
940 curpid = getpid ();
941#endif
942
844 if (!(flags & EVFLAG_NOENV) 943 if (!(flags & EVFLAG_NOENV)
845 && !enable_secure () 944 && !enable_secure ()
846 && getenv ("LIBEV_FLAGS")) 945 && getenv ("LIBEV_FLAGS"))
847 flags = atoi (getenv ("LIBEV_FLAGS")); 946 flags = atoi (getenv ("LIBEV_FLAGS"));
848 947
849 if (!(flags & 0x0000ffffUL)) 948 if (!(flags & 0x0000ffffUL))
850 flags |= ev_recommended_backends (); 949 flags |= ev_recommended_backends ();
851 950
852 backend = 0; 951 backend = 0;
952 backend_fd = -1;
953#if EV_USE_INOTIFY
954 fs_fd = -2;
955#endif
956
853#if EV_USE_PORT 957#if EV_USE_PORT
854 if (!backend && (flags & EVBACKEND_PORT )) backend = port_init (EV_A_ flags); 958 if (!backend && (flags & EVBACKEND_PORT )) backend = port_init (EV_A_ flags);
855#endif 959#endif
856#if EV_USE_KQUEUE 960#if EV_USE_KQUEUE
857 if (!backend && (flags & EVBACKEND_KQUEUE)) backend = kqueue_init (EV_A_ flags); 961 if (!backend && (flags & EVBACKEND_KQUEUE)) backend = kqueue_init (EV_A_ flags);
869 ev_init (&sigev, sigcb); 973 ev_init (&sigev, sigcb);
870 ev_set_priority (&sigev, EV_MAXPRI); 974 ev_set_priority (&sigev, EV_MAXPRI);
871 } 975 }
872} 976}
873 977
874static void 978static void noinline
875loop_destroy (EV_P) 979loop_destroy (EV_P)
876{ 980{
877 int i; 981 int i;
982
983#if EV_USE_INOTIFY
984 if (fs_fd >= 0)
985 close (fs_fd);
986#endif
987
988 if (backend_fd >= 0)
989 close (backend_fd);
878 990
879#if EV_USE_PORT 991#if EV_USE_PORT
880 if (backend == EVBACKEND_PORT ) port_destroy (EV_A); 992 if (backend == EVBACKEND_PORT ) port_destroy (EV_A);
881#endif 993#endif
882#if EV_USE_KQUEUE 994#if EV_USE_KQUEUE
891#if EV_USE_SELECT 1003#if EV_USE_SELECT
892 if (backend == EVBACKEND_SELECT) select_destroy (EV_A); 1004 if (backend == EVBACKEND_SELECT) select_destroy (EV_A);
893#endif 1005#endif
894 1006
895 for (i = NUMPRI; i--; ) 1007 for (i = NUMPRI; i--; )
1008 {
896 array_free (pending, [i]); 1009 array_free (pending, [i]);
1010#if EV_IDLE_ENABLE
1011 array_free (idle, [i]);
1012#endif
1013 }
897 1014
898 /* have to use the microsoft-never-gets-it-right macro */ 1015 /* have to use the microsoft-never-gets-it-right macro */
899 array_free (fdchange, EMPTY0); 1016 array_free (fdchange, EMPTY);
900 array_free (timer, EMPTY0); 1017 array_free (timer, EMPTY);
901#if EV_PERIODICS 1018#if EV_PERIODIC_ENABLE
902 array_free (periodic, EMPTY0); 1019 array_free (periodic, EMPTY);
903#endif 1020#endif
904 array_free (idle, EMPTY0);
905 array_free (prepare, EMPTY0); 1021 array_free (prepare, EMPTY);
906 array_free (check, EMPTY0); 1022 array_free (check, EMPTY);
907 1023
908 backend = 0; 1024 backend = 0;
909} 1025}
910 1026
911static void 1027void inline_size infy_fork (EV_P);
1028
1029void inline_size
912loop_fork (EV_P) 1030loop_fork (EV_P)
913{ 1031{
914#if EV_USE_PORT 1032#if EV_USE_PORT
915 if (backend == EVBACKEND_PORT ) port_fork (EV_A); 1033 if (backend == EVBACKEND_PORT ) port_fork (EV_A);
916#endif 1034#endif
917#if EV_USE_KQUEUE 1035#if EV_USE_KQUEUE
918 if (backend == EVBACKEND_KQUEUE) kqueue_fork (EV_A); 1036 if (backend == EVBACKEND_KQUEUE) kqueue_fork (EV_A);
919#endif 1037#endif
920#if EV_USE_EPOLL 1038#if EV_USE_EPOLL
921 if (backend == EVBACKEND_EPOLL ) epoll_fork (EV_A); 1039 if (backend == EVBACKEND_EPOLL ) epoll_fork (EV_A);
1040#endif
1041#if EV_USE_INOTIFY
1042 infy_fork (EV_A);
922#endif 1043#endif
923 1044
924 if (ev_is_active (&sigev)) 1045 if (ev_is_active (&sigev))
925 { 1046 {
926 /* default loop */ 1047 /* default loop */
1042 postfork = 1; 1163 postfork = 1;
1043} 1164}
1044 1165
1045/*****************************************************************************/ 1166/*****************************************************************************/
1046 1167
1047static int 1168void inline_speed
1048any_pending (EV_P)
1049{
1050 int pri;
1051
1052 for (pri = NUMPRI; pri--; )
1053 if (pendingcnt [pri])
1054 return 1;
1055
1056 return 0;
1057}
1058
1059inline void
1060call_pending (EV_P) 1169call_pending (EV_P)
1061{ 1170{
1062 int pri; 1171 int pri;
1063 1172
1064 for (pri = NUMPRI; pri--; ) 1173 for (pri = NUMPRI; pri--; )
1066 { 1175 {
1067 ANPENDING *p = pendings [pri] + --pendingcnt [pri]; 1176 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
1068 1177
1069 if (expect_true (p->w)) 1178 if (expect_true (p->w))
1070 { 1179 {
1180 /*assert (("non-pending watcher on pending list", p->w->pending));*/
1181
1071 p->w->pending = 0; 1182 p->w->pending = 0;
1072 EV_CB_INVOKE (p->w, p->events); 1183 EV_CB_INVOKE (p->w, p->events);
1073 } 1184 }
1074 } 1185 }
1075} 1186}
1076 1187
1077inline void 1188void inline_size
1078timers_reify (EV_P) 1189timers_reify (EV_P)
1079{ 1190{
1080 while (timercnt && ((WT)timers [0])->at <= mn_now) 1191 while (timercnt && ((WT)timers [0])->at <= mn_now)
1081 { 1192 {
1082 struct ev_timer *w = timers [0]; 1193 ev_timer *w = timers [0];
1083 1194
1084 assert (("inactive timer on timer heap detected", ev_is_active (w))); 1195 /*assert (("inactive timer on timer heap detected", ev_is_active (w)));*/
1085 1196
1086 /* first reschedule or stop timer */ 1197 /* first reschedule or stop timer */
1087 if (w->repeat) 1198 if (w->repeat)
1088 { 1199 {
1089 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.)); 1200 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.));
1099 1210
1100 ev_feed_event (EV_A_ (W)w, EV_TIMEOUT); 1211 ev_feed_event (EV_A_ (W)w, EV_TIMEOUT);
1101 } 1212 }
1102} 1213}
1103 1214
1104#if EV_PERIODICS 1215#if EV_PERIODIC_ENABLE
1105inline void 1216void inline_size
1106periodics_reify (EV_P) 1217periodics_reify (EV_P)
1107{ 1218{
1108 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now) 1219 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now)
1109 { 1220 {
1110 struct ev_periodic *w = periodics [0]; 1221 ev_periodic *w = periodics [0];
1111 1222
1112 assert (("inactive timer on periodic heap detected", ev_is_active (w))); 1223 /*assert (("inactive timer on periodic heap detected", ev_is_active (w)));*/
1113 1224
1114 /* first reschedule or stop timer */ 1225 /* first reschedule or stop timer */
1115 if (w->reschedule_cb) 1226 if (w->reschedule_cb)
1116 { 1227 {
1117 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + 0.0001); 1228 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + 0.0001);
1129 1240
1130 ev_feed_event (EV_A_ (W)w, EV_PERIODIC); 1241 ev_feed_event (EV_A_ (W)w, EV_PERIODIC);
1131 } 1242 }
1132} 1243}
1133 1244
1134static void 1245static void noinline
1135periodics_reschedule (EV_P) 1246periodics_reschedule (EV_P)
1136{ 1247{
1137 int i; 1248 int i;
1138 1249
1139 /* adjust periodics after time jump */ 1250 /* adjust periodics after time jump */
1140 for (i = 0; i < periodiccnt; ++i) 1251 for (i = 0; i < periodiccnt; ++i)
1141 { 1252 {
1142 struct ev_periodic *w = periodics [i]; 1253 ev_periodic *w = periodics [i];
1143 1254
1144 if (w->reschedule_cb) 1255 if (w->reschedule_cb)
1145 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now); 1256 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now);
1146 else if (w->interval) 1257 else if (w->interval)
1147 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval; 1258 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval;
1151 for (i = periodiccnt >> 1; i--; ) 1262 for (i = periodiccnt >> 1; i--; )
1152 downheap ((WT *)periodics, periodiccnt, i); 1263 downheap ((WT *)periodics, periodiccnt, i);
1153} 1264}
1154#endif 1265#endif
1155 1266
1156inline int 1267#if EV_IDLE_ENABLE
1268void inline_size
1269idle_reify (EV_P)
1270{
1271 if (expect_false (idleall))
1272 {
1273 int pri;
1274
1275 for (pri = NUMPRI; pri--; )
1276 {
1277 if (pendingcnt [pri])
1278 break;
1279
1280 if (idlecnt [pri])
1281 {
1282 queue_events (EV_A_ (W *)idles [pri], idlecnt [pri], EV_IDLE);
1283 break;
1284 }
1285 }
1286 }
1287}
1288#endif
1289
1290int inline_size
1157time_update_monotonic (EV_P) 1291time_update_monotonic (EV_P)
1158{ 1292{
1159 mn_now = get_clock (); 1293 mn_now = get_clock ();
1160 1294
1161 if (expect_true (mn_now - now_floor < MIN_TIMEJUMP * .5)) 1295 if (expect_true (mn_now - now_floor < MIN_TIMEJUMP * .5))
1169 ev_rt_now = ev_time (); 1303 ev_rt_now = ev_time ();
1170 return 1; 1304 return 1;
1171 } 1305 }
1172} 1306}
1173 1307
1174inline void 1308void inline_size
1175time_update (EV_P) 1309time_update (EV_P)
1176{ 1310{
1177 int i; 1311 int i;
1178 1312
1179#if EV_USE_MONOTONIC 1313#if EV_USE_MONOTONIC
1181 { 1315 {
1182 if (time_update_monotonic (EV_A)) 1316 if (time_update_monotonic (EV_A))
1183 { 1317 {
1184 ev_tstamp odiff = rtmn_diff; 1318 ev_tstamp odiff = rtmn_diff;
1185 1319
1186 for (i = 4; --i; ) /* loop a few times, before making important decisions */ 1320 /* loop a few times, before making important decisions.
1321 * on the choice of "4": one iteration isn't enough,
1322 * in case we get preempted during the calls to
1323 * ev_time and get_clock. a second call is almost guaranteed
1324 * to succeed in that case, though. and looping a few more times
1325 * doesn't hurt either as we only do this on time-jumps or
1326 * in the unlikely event of having been preempted here.
1327 */
1328 for (i = 4; --i; )
1187 { 1329 {
1188 rtmn_diff = ev_rt_now - mn_now; 1330 rtmn_diff = ev_rt_now - mn_now;
1189 1331
1190 if (fabs (odiff - rtmn_diff) < MIN_TIMEJUMP) 1332 if (fabs (odiff - rtmn_diff) < MIN_TIMEJUMP)
1191 return; /* all is well */ 1333 return; /* all is well */
1193 ev_rt_now = ev_time (); 1335 ev_rt_now = ev_time ();
1194 mn_now = get_clock (); 1336 mn_now = get_clock ();
1195 now_floor = mn_now; 1337 now_floor = mn_now;
1196 } 1338 }
1197 1339
1198# if EV_PERIODICS 1340# if EV_PERIODIC_ENABLE
1199 periodics_reschedule (EV_A); 1341 periodics_reschedule (EV_A);
1200# endif 1342# endif
1201 /* no timer adjustment, as the monotonic clock doesn't jump */ 1343 /* no timer adjustment, as the monotonic clock doesn't jump */
1202 /* timers_reschedule (EV_A_ rtmn_diff - odiff) */ 1344 /* timers_reschedule (EV_A_ rtmn_diff - odiff) */
1203 } 1345 }
1207 { 1349 {
1208 ev_rt_now = ev_time (); 1350 ev_rt_now = ev_time ();
1209 1351
1210 if (expect_false (mn_now > ev_rt_now || mn_now < ev_rt_now - MAX_BLOCKTIME - MIN_TIMEJUMP)) 1352 if (expect_false (mn_now > ev_rt_now || mn_now < ev_rt_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
1211 { 1353 {
1212#if EV_PERIODICS 1354#if EV_PERIODIC_ENABLE
1213 periodics_reschedule (EV_A); 1355 periodics_reschedule (EV_A);
1214#endif 1356#endif
1215 1357
1216 /* adjust timers. this is easy, as the offset is the same for all */ 1358 /* adjust timers. this is easy, as the offset is the same for all of them */
1217 for (i = 0; i < timercnt; ++i) 1359 for (i = 0; i < timercnt; ++i)
1218 ((WT)timers [i])->at += ev_rt_now - mn_now; 1360 ((WT)timers [i])->at += ev_rt_now - mn_now;
1219 } 1361 }
1220 1362
1221 mn_now = ev_rt_now; 1363 mn_now = ev_rt_now;
1237static int loop_done; 1379static int loop_done;
1238 1380
1239void 1381void
1240ev_loop (EV_P_ int flags) 1382ev_loop (EV_P_ int flags)
1241{ 1383{
1242 double block;
1243 loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK) ? 1 : 0; 1384 loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK)
1385 ? EVUNLOOP_ONE
1386 : EVUNLOOP_CANCEL;
1244 1387
1245 while (activecnt) 1388 call_pending (EV_A); /* in case we recurse, ensure ordering stays nice and clean */
1389
1390 do
1246 { 1391 {
1392#ifndef _WIN32
1393 if (expect_false (curpid)) /* penalise the forking check even more */
1394 if (expect_false (getpid () != curpid))
1395 {
1396 curpid = getpid ();
1397 postfork = 1;
1398 }
1399#endif
1400
1401#if EV_FORK_ENABLE
1402 /* we might have forked, so queue fork handlers */
1403 if (expect_false (postfork))
1404 if (forkcnt)
1405 {
1406 queue_events (EV_A_ (W *)forks, forkcnt, EV_FORK);
1407 call_pending (EV_A);
1408 }
1409#endif
1410
1247 /* queue check watchers (and execute them) */ 1411 /* queue check watchers (and execute them) */
1248 if (expect_false (preparecnt)) 1412 if (expect_false (preparecnt))
1249 { 1413 {
1250 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE); 1414 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE);
1251 call_pending (EV_A); 1415 call_pending (EV_A);
1252 } 1416 }
1253 1417
1418 if (expect_false (!activecnt))
1419 break;
1420
1254 /* we might have forked, so reify kernel state if necessary */ 1421 /* we might have forked, so reify kernel state if necessary */
1255 if (expect_false (postfork)) 1422 if (expect_false (postfork))
1256 loop_fork (EV_A); 1423 loop_fork (EV_A);
1257 1424
1258 /* update fd-related kernel structures */ 1425 /* update fd-related kernel structures */
1259 fd_reify (EV_A); 1426 fd_reify (EV_A);
1260 1427
1261 /* calculate blocking time */ 1428 /* calculate blocking time */
1429 {
1430 ev_tstamp block;
1262 1431
1263 /* we only need this for !monotonic clock or timers, but as we basically 1432 if (expect_false (flags & EVLOOP_NONBLOCK || idleall || !activecnt))
1264 always have timers, we just calculate it always */ 1433 block = 0.; /* do not block at all */
1434 else
1435 {
1436 /* update time to cancel out callback processing overhead */
1265#if EV_USE_MONOTONIC 1437#if EV_USE_MONOTONIC
1266 if (expect_true (have_monotonic)) 1438 if (expect_true (have_monotonic))
1267 time_update_monotonic (EV_A); 1439 time_update_monotonic (EV_A);
1268 else 1440 else
1269#endif 1441#endif
1270 { 1442 {
1271 ev_rt_now = ev_time (); 1443 ev_rt_now = ev_time ();
1272 mn_now = ev_rt_now; 1444 mn_now = ev_rt_now;
1273 } 1445 }
1274 1446
1275 if (flags & EVLOOP_NONBLOCK || idlecnt)
1276 block = 0.;
1277 else
1278 {
1279 block = MAX_BLOCKTIME; 1447 block = MAX_BLOCKTIME;
1280 1448
1281 if (timercnt) 1449 if (timercnt)
1282 { 1450 {
1283 ev_tstamp to = ((WT)timers [0])->at - mn_now + backend_fudge; 1451 ev_tstamp to = ((WT)timers [0])->at - mn_now + backend_fudge;
1284 if (block > to) block = to; 1452 if (block > to) block = to;
1285 } 1453 }
1286 1454
1287#if EV_PERIODICS 1455#if EV_PERIODIC_ENABLE
1288 if (periodiccnt) 1456 if (periodiccnt)
1289 { 1457 {
1290 ev_tstamp to = ((WT)periodics [0])->at - ev_rt_now + backend_fudge; 1458 ev_tstamp to = ((WT)periodics [0])->at - ev_rt_now + backend_fudge;
1291 if (block > to) block = to; 1459 if (block > to) block = to;
1292 } 1460 }
1293#endif 1461#endif
1294 1462
1295 if (expect_false (block < 0.)) block = 0.; 1463 if (expect_false (block < 0.)) block = 0.;
1296 } 1464 }
1297 1465
1466 ++loop_count;
1298 backend_poll (EV_A_ block); 1467 backend_poll (EV_A_ block);
1468 }
1299 1469
1300 /* update ev_rt_now, do magic */ 1470 /* update ev_rt_now, do magic */
1301 time_update (EV_A); 1471 time_update (EV_A);
1302 1472
1303 /* queue pending timers and reschedule them */ 1473 /* queue pending timers and reschedule them */
1304 timers_reify (EV_A); /* relative timers called last */ 1474 timers_reify (EV_A); /* relative timers called last */
1305#if EV_PERIODICS 1475#if EV_PERIODIC_ENABLE
1306 periodics_reify (EV_A); /* absolute timers called first */ 1476 periodics_reify (EV_A); /* absolute timers called first */
1307#endif 1477#endif
1308 1478
1479#if EV_IDLE_ENABLE
1309 /* queue idle watchers unless io or timers are pending */ 1480 /* queue idle watchers unless other events are pending */
1310 if (idlecnt && !any_pending (EV_A)) 1481 idle_reify (EV_A);
1311 queue_events (EV_A_ (W *)idles, idlecnt, EV_IDLE); 1482#endif
1312 1483
1313 /* queue check watchers, to be executed first */ 1484 /* queue check watchers, to be executed first */
1314 if (expect_false (checkcnt)) 1485 if (expect_false (checkcnt))
1315 queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK); 1486 queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK);
1316 1487
1317 call_pending (EV_A); 1488 call_pending (EV_A);
1318 1489
1319 if (expect_false (loop_done))
1320 break;
1321 } 1490 }
1491 while (expect_true (activecnt && !loop_done));
1322 1492
1323 if (loop_done != 2) 1493 if (loop_done == EVUNLOOP_ONE)
1324 loop_done = 0; 1494 loop_done = EVUNLOOP_CANCEL;
1325} 1495}
1326 1496
1327void 1497void
1328ev_unloop (EV_P_ int how) 1498ev_unloop (EV_P_ int how)
1329{ 1499{
1330 loop_done = how; 1500 loop_done = how;
1331} 1501}
1332 1502
1333/*****************************************************************************/ 1503/*****************************************************************************/
1334 1504
1335inline void 1505void inline_size
1336wlist_add (WL *head, WL elem) 1506wlist_add (WL *head, WL elem)
1337{ 1507{
1338 elem->next = *head; 1508 elem->next = *head;
1339 *head = elem; 1509 *head = elem;
1340} 1510}
1341 1511
1342inline void 1512void inline_size
1343wlist_del (WL *head, WL elem) 1513wlist_del (WL *head, WL elem)
1344{ 1514{
1345 while (*head) 1515 while (*head)
1346 { 1516 {
1347 if (*head == elem) 1517 if (*head == elem)
1352 1522
1353 head = &(*head)->next; 1523 head = &(*head)->next;
1354 } 1524 }
1355} 1525}
1356 1526
1357inline void 1527void inline_speed
1358ev_clear_pending (EV_P_ W w) 1528clear_pending (EV_P_ W w)
1359{ 1529{
1360 if (w->pending) 1530 if (w->pending)
1361 { 1531 {
1362 pendings [ABSPRI (w)][w->pending - 1].w = 0; 1532 pendings [ABSPRI (w)][w->pending - 1].w = 0;
1363 w->pending = 0; 1533 w->pending = 0;
1364 } 1534 }
1365} 1535}
1366 1536
1367inline void 1537int
1538ev_clear_pending (EV_P_ void *w)
1539{
1540 W w_ = (W)w;
1541 int pending = w_->pending;
1542
1543 if (!pending)
1544 return 0;
1545
1546 w_->pending = 0;
1547 ANPENDING *p = pendings [ABSPRI (w_)] + pending - 1;
1548 p->w = 0;
1549
1550 return p->events;
1551}
1552
1553void inline_size
1554pri_adjust (EV_P_ W w)
1555{
1556 int pri = w->priority;
1557 pri = pri < EV_MINPRI ? EV_MINPRI : pri;
1558 pri = pri > EV_MAXPRI ? EV_MAXPRI : pri;
1559 w->priority = pri;
1560}
1561
1562void inline_speed
1368ev_start (EV_P_ W w, int active) 1563ev_start (EV_P_ W w, int active)
1369{ 1564{
1370 if (w->priority < EV_MINPRI) w->priority = EV_MINPRI; 1565 pri_adjust (EV_A_ w);
1371 if (w->priority > EV_MAXPRI) w->priority = EV_MAXPRI;
1372
1373 w->active = active; 1566 w->active = active;
1374 ev_ref (EV_A); 1567 ev_ref (EV_A);
1375} 1568}
1376 1569
1377inline void 1570void inline_size
1378ev_stop (EV_P_ W w) 1571ev_stop (EV_P_ W w)
1379{ 1572{
1380 ev_unref (EV_A); 1573 ev_unref (EV_A);
1381 w->active = 0; 1574 w->active = 0;
1382} 1575}
1383 1576
1384/*****************************************************************************/ 1577/*****************************************************************************/
1385 1578
1386void 1579void
1387ev_io_start (EV_P_ struct ev_io *w) 1580ev_io_start (EV_P_ ev_io *w)
1388{ 1581{
1389 int fd = w->fd; 1582 int fd = w->fd;
1390 1583
1391 if (expect_false (ev_is_active (w))) 1584 if (expect_false (ev_is_active (w)))
1392 return; 1585 return;
1399 1592
1400 fd_change (EV_A_ fd); 1593 fd_change (EV_A_ fd);
1401} 1594}
1402 1595
1403void 1596void
1404ev_io_stop (EV_P_ struct ev_io *w) 1597ev_io_stop (EV_P_ ev_io *w)
1405{ 1598{
1406 ev_clear_pending (EV_A_ (W)w); 1599 clear_pending (EV_A_ (W)w);
1407 if (expect_false (!ev_is_active (w))) 1600 if (expect_false (!ev_is_active (w)))
1408 return; 1601 return;
1409 1602
1410 assert (("ev_io_start called with illegal fd (must stay constant after start!)", w->fd >= 0 && w->fd < anfdmax)); 1603 assert (("ev_io_start called with illegal fd (must stay constant after start!)", w->fd >= 0 && w->fd < anfdmax));
1411 1604
1414 1607
1415 fd_change (EV_A_ w->fd); 1608 fd_change (EV_A_ w->fd);
1416} 1609}
1417 1610
1418void 1611void
1419ev_timer_start (EV_P_ struct ev_timer *w) 1612ev_timer_start (EV_P_ ev_timer *w)
1420{ 1613{
1421 if (expect_false (ev_is_active (w))) 1614 if (expect_false (ev_is_active (w)))
1422 return; 1615 return;
1423 1616
1424 ((WT)w)->at += mn_now; 1617 ((WT)w)->at += mn_now;
1425 1618
1426 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.)); 1619 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
1427 1620
1428 ev_start (EV_A_ (W)w, ++timercnt); 1621 ev_start (EV_A_ (W)w, ++timercnt);
1429 array_needsize (struct ev_timer *, timers, timermax, timercnt, EMPTY2); 1622 array_needsize (ev_timer *, timers, timermax, timercnt, EMPTY2);
1430 timers [timercnt - 1] = w; 1623 timers [timercnt - 1] = w;
1431 upheap ((WT *)timers, timercnt - 1); 1624 upheap ((WT *)timers, timercnt - 1);
1432 1625
1626 /*assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));*/
1627}
1628
1629void
1630ev_timer_stop (EV_P_ ev_timer *w)
1631{
1632 clear_pending (EV_A_ (W)w);
1633 if (expect_false (!ev_is_active (w)))
1634 return;
1635
1433 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w)); 1636 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));
1434}
1435 1637
1436void 1638 {
1437ev_timer_stop (EV_P_ struct ev_timer *w) 1639 int active = ((W)w)->active;
1438{
1439 ev_clear_pending (EV_A_ (W)w);
1440 if (expect_false (!ev_is_active (w)))
1441 return;
1442 1640
1443 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));
1444
1445 if (expect_true (((W)w)->active < timercnt--)) 1641 if (expect_true (--active < --timercnt))
1446 { 1642 {
1447 timers [((W)w)->active - 1] = timers [timercnt]; 1643 timers [active] = timers [timercnt];
1448 adjustheap ((WT *)timers, timercnt, ((W)w)->active - 1); 1644 adjustheap ((WT *)timers, timercnt, active);
1449 } 1645 }
1646 }
1450 1647
1451 ((WT)w)->at -= mn_now; 1648 ((WT)w)->at -= mn_now;
1452 1649
1453 ev_stop (EV_A_ (W)w); 1650 ev_stop (EV_A_ (W)w);
1454} 1651}
1455 1652
1456void 1653void
1457ev_timer_again (EV_P_ struct ev_timer *w) 1654ev_timer_again (EV_P_ ev_timer *w)
1458{ 1655{
1459 if (ev_is_active (w)) 1656 if (ev_is_active (w))
1460 { 1657 {
1461 if (w->repeat) 1658 if (w->repeat)
1462 { 1659 {
1471 w->at = w->repeat; 1668 w->at = w->repeat;
1472 ev_timer_start (EV_A_ w); 1669 ev_timer_start (EV_A_ w);
1473 } 1670 }
1474} 1671}
1475 1672
1476#if EV_PERIODICS 1673#if EV_PERIODIC_ENABLE
1477void 1674void
1478ev_periodic_start (EV_P_ struct ev_periodic *w) 1675ev_periodic_start (EV_P_ ev_periodic *w)
1479{ 1676{
1480 if (expect_false (ev_is_active (w))) 1677 if (expect_false (ev_is_active (w)))
1481 return; 1678 return;
1482 1679
1483 if (w->reschedule_cb) 1680 if (w->reschedule_cb)
1488 /* this formula differs from the one in periodic_reify because we do not always round up */ 1685 /* this formula differs from the one in periodic_reify because we do not always round up */
1489 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval; 1686 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval;
1490 } 1687 }
1491 1688
1492 ev_start (EV_A_ (W)w, ++periodiccnt); 1689 ev_start (EV_A_ (W)w, ++periodiccnt);
1493 array_needsize (struct ev_periodic *, periodics, periodicmax, periodiccnt, EMPTY2); 1690 array_needsize (ev_periodic *, periodics, periodicmax, periodiccnt, EMPTY2);
1494 periodics [periodiccnt - 1] = w; 1691 periodics [periodiccnt - 1] = w;
1495 upheap ((WT *)periodics, periodiccnt - 1); 1692 upheap ((WT *)periodics, periodiccnt - 1);
1496 1693
1694 /*assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));*/
1695}
1696
1697void
1698ev_periodic_stop (EV_P_ ev_periodic *w)
1699{
1700 clear_pending (EV_A_ (W)w);
1701 if (expect_false (!ev_is_active (w)))
1702 return;
1703
1497 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w)); 1704 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));
1498}
1499 1705
1500void 1706 {
1501ev_periodic_stop (EV_P_ struct ev_periodic *w) 1707 int active = ((W)w)->active;
1502{
1503 ev_clear_pending (EV_A_ (W)w);
1504 if (expect_false (!ev_is_active (w)))
1505 return;
1506 1708
1507 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));
1508
1509 if (expect_true (((W)w)->active < periodiccnt--)) 1709 if (expect_true (--active < --periodiccnt))
1510 { 1710 {
1511 periodics [((W)w)->active - 1] = periodics [periodiccnt]; 1711 periodics [active] = periodics [periodiccnt];
1512 adjustheap ((WT *)periodics, periodiccnt, ((W)w)->active - 1); 1712 adjustheap ((WT *)periodics, periodiccnt, active);
1513 } 1713 }
1714 }
1514 1715
1515 ev_stop (EV_A_ (W)w); 1716 ev_stop (EV_A_ (W)w);
1516} 1717}
1517 1718
1518void 1719void
1519ev_periodic_again (EV_P_ struct ev_periodic *w) 1720ev_periodic_again (EV_P_ ev_periodic *w)
1520{ 1721{
1521 /* TODO: use adjustheap and recalculation */ 1722 /* TODO: use adjustheap and recalculation */
1522 ev_periodic_stop (EV_A_ w); 1723 ev_periodic_stop (EV_A_ w);
1523 ev_periodic_start (EV_A_ w); 1724 ev_periodic_start (EV_A_ w);
1524} 1725}
1525#endif 1726#endif
1526 1727
1527void
1528ev_idle_start (EV_P_ struct ev_idle *w)
1529{
1530 if (expect_false (ev_is_active (w)))
1531 return;
1532
1533 ev_start (EV_A_ (W)w, ++idlecnt);
1534 array_needsize (struct ev_idle *, idles, idlemax, idlecnt, EMPTY2);
1535 idles [idlecnt - 1] = w;
1536}
1537
1538void
1539ev_idle_stop (EV_P_ struct ev_idle *w)
1540{
1541 ev_clear_pending (EV_A_ (W)w);
1542 if (expect_false (!ev_is_active (w)))
1543 return;
1544
1545 idles [((W)w)->active - 1] = idles [--idlecnt];
1546 ev_stop (EV_A_ (W)w);
1547}
1548
1549void
1550ev_prepare_start (EV_P_ struct ev_prepare *w)
1551{
1552 if (expect_false (ev_is_active (w)))
1553 return;
1554
1555 ev_start (EV_A_ (W)w, ++preparecnt);
1556 array_needsize (struct ev_prepare *, prepares, preparemax, preparecnt, EMPTY2);
1557 prepares [preparecnt - 1] = w;
1558}
1559
1560void
1561ev_prepare_stop (EV_P_ struct ev_prepare *w)
1562{
1563 ev_clear_pending (EV_A_ (W)w);
1564 if (expect_false (!ev_is_active (w)))
1565 return;
1566
1567 prepares [((W)w)->active - 1] = prepares [--preparecnt];
1568 ev_stop (EV_A_ (W)w);
1569}
1570
1571void
1572ev_check_start (EV_P_ struct ev_check *w)
1573{
1574 if (expect_false (ev_is_active (w)))
1575 return;
1576
1577 ev_start (EV_A_ (W)w, ++checkcnt);
1578 array_needsize (struct ev_check *, checks, checkmax, checkcnt, EMPTY2);
1579 checks [checkcnt - 1] = w;
1580}
1581
1582void
1583ev_check_stop (EV_P_ struct ev_check *w)
1584{
1585 ev_clear_pending (EV_A_ (W)w);
1586 if (expect_false (!ev_is_active (w)))
1587 return;
1588
1589 checks [((W)w)->active - 1] = checks [--checkcnt];
1590 ev_stop (EV_A_ (W)w);
1591}
1592
1593#ifndef SA_RESTART 1728#ifndef SA_RESTART
1594# define SA_RESTART 0 1729# define SA_RESTART 0
1595#endif 1730#endif
1596 1731
1597void 1732void
1598ev_signal_start (EV_P_ struct ev_signal *w) 1733ev_signal_start (EV_P_ ev_signal *w)
1599{ 1734{
1600#if EV_MULTIPLICITY 1735#if EV_MULTIPLICITY
1601 assert (("signal watchers are only supported in the default loop", loop == ev_default_loop_ptr)); 1736 assert (("signal watchers are only supported in the default loop", loop == ev_default_loop_ptr));
1602#endif 1737#endif
1603 if (expect_false (ev_is_active (w))) 1738 if (expect_false (ev_is_active (w)))
1622#endif 1757#endif
1623 } 1758 }
1624} 1759}
1625 1760
1626void 1761void
1627ev_signal_stop (EV_P_ struct ev_signal *w) 1762ev_signal_stop (EV_P_ ev_signal *w)
1628{ 1763{
1629 ev_clear_pending (EV_A_ (W)w); 1764 clear_pending (EV_A_ (W)w);
1630 if (expect_false (!ev_is_active (w))) 1765 if (expect_false (!ev_is_active (w)))
1631 return; 1766 return;
1632 1767
1633 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w); 1768 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
1634 ev_stop (EV_A_ (W)w); 1769 ev_stop (EV_A_ (W)w);
1636 if (!signals [w->signum - 1].head) 1771 if (!signals [w->signum - 1].head)
1637 signal (w->signum, SIG_DFL); 1772 signal (w->signum, SIG_DFL);
1638} 1773}
1639 1774
1640void 1775void
1641ev_child_start (EV_P_ struct ev_child *w) 1776ev_child_start (EV_P_ ev_child *w)
1642{ 1777{
1643#if EV_MULTIPLICITY 1778#if EV_MULTIPLICITY
1644 assert (("child watchers are only supported in the default loop", loop == ev_default_loop_ptr)); 1779 assert (("child watchers are only supported in the default loop", loop == ev_default_loop_ptr));
1645#endif 1780#endif
1646 if (expect_false (ev_is_active (w))) 1781 if (expect_false (ev_is_active (w)))
1647 return; 1782 return;
1648 1783
1649 ev_start (EV_A_ (W)w, 1); 1784 ev_start (EV_A_ (W)w, 1);
1650 wlist_add ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w); 1785 wlist_add ((WL *)&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w);
1651} 1786}
1652 1787
1653void 1788void
1654ev_child_stop (EV_P_ struct ev_child *w) 1789ev_child_stop (EV_P_ ev_child *w)
1655{ 1790{
1656 ev_clear_pending (EV_A_ (W)w); 1791 clear_pending (EV_A_ (W)w);
1657 if (expect_false (!ev_is_active (w))) 1792 if (expect_false (!ev_is_active (w)))
1658 return; 1793 return;
1659 1794
1660 wlist_del ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w); 1795 wlist_del ((WL *)&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w);
1661 ev_stop (EV_A_ (W)w); 1796 ev_stop (EV_A_ (W)w);
1662} 1797}
1663 1798
1799#if EV_STAT_ENABLE
1800
1801# ifdef _WIN32
1802# undef lstat
1803# define lstat(a,b) _stati64 (a,b)
1804# endif
1805
1806#define DEF_STAT_INTERVAL 5.0074891
1807#define MIN_STAT_INTERVAL 0.1074891
1808
1809static void noinline stat_timer_cb (EV_P_ ev_timer *w_, int revents);
1810
1811#if EV_USE_INOTIFY
1812# define EV_INOTIFY_BUFSIZE 8192
1813
1814static void noinline
1815infy_add (EV_P_ ev_stat *w)
1816{
1817 w->wd = inotify_add_watch (fs_fd, w->path, IN_ATTRIB | IN_DELETE_SELF | IN_MOVE_SELF | IN_MODIFY | IN_DONT_FOLLOW | IN_MASK_ADD);
1818
1819 if (w->wd < 0)
1820 {
1821 ev_timer_start (EV_A_ &w->timer); /* this is not race-free, so we still need to recheck periodically */
1822
1823 /* monitor some parent directory for speedup hints */
1824 if ((errno == ENOENT || errno == EACCES) && strlen (w->path) < 4096)
1825 {
1826 char path [4096];
1827 strcpy (path, w->path);
1828
1829 do
1830 {
1831 int mask = IN_MASK_ADD | IN_DELETE_SELF | IN_MOVE_SELF
1832 | (errno == EACCES ? IN_ATTRIB : IN_CREATE | IN_MOVED_TO);
1833
1834 char *pend = strrchr (path, '/');
1835
1836 if (!pend)
1837 break; /* whoops, no '/', complain to your admin */
1838
1839 *pend = 0;
1840 w->wd = inotify_add_watch (fs_fd, path, mask);
1841 }
1842 while (w->wd < 0 && (errno == ENOENT || errno == EACCES));
1843 }
1844 }
1845 else
1846 ev_timer_stop (EV_A_ &w->timer); /* we can watch this in a race-free way */
1847
1848 if (w->wd >= 0)
1849 wlist_add (&fs_hash [w->wd & (EV_INOTIFY_HASHSIZE - 1)].head, (WL)w);
1850}
1851
1852static void noinline
1853infy_del (EV_P_ ev_stat *w)
1854{
1855 int slot;
1856 int wd = w->wd;
1857
1858 if (wd < 0)
1859 return;
1860
1861 w->wd = -2;
1862 slot = wd & (EV_INOTIFY_HASHSIZE - 1);
1863 wlist_del (&fs_hash [slot].head, (WL)w);
1864
1865 /* remove this watcher, if others are watching it, they will rearm */
1866 inotify_rm_watch (fs_fd, wd);
1867}
1868
1869static void noinline
1870infy_wd (EV_P_ int slot, int wd, struct inotify_event *ev)
1871{
1872 if (slot < 0)
1873 /* overflow, need to check for all hahs slots */
1874 for (slot = 0; slot < EV_INOTIFY_HASHSIZE; ++slot)
1875 infy_wd (EV_A_ slot, wd, ev);
1876 else
1877 {
1878 WL w_;
1879
1880 for (w_ = fs_hash [slot & (EV_INOTIFY_HASHSIZE - 1)].head; w_; )
1881 {
1882 ev_stat *w = (ev_stat *)w_;
1883 w_ = w_->next; /* lets us remove this watcher and all before it */
1884
1885 if (w->wd == wd || wd == -1)
1886 {
1887 if (ev->mask & (IN_IGNORED | IN_UNMOUNT | IN_DELETE_SELF))
1888 {
1889 w->wd = -1;
1890 infy_add (EV_A_ w); /* re-add, no matter what */
1891 }
1892
1893 stat_timer_cb (EV_A_ &w->timer, 0);
1894 }
1895 }
1896 }
1897}
1898
1899static void
1900infy_cb (EV_P_ ev_io *w, int revents)
1901{
1902 char buf [EV_INOTIFY_BUFSIZE];
1903 struct inotify_event *ev = (struct inotify_event *)buf;
1904 int ofs;
1905 int len = read (fs_fd, buf, sizeof (buf));
1906
1907 for (ofs = 0; ofs < len; ofs += sizeof (struct inotify_event) + ev->len)
1908 infy_wd (EV_A_ ev->wd, ev->wd, ev);
1909}
1910
1911void inline_size
1912infy_init (EV_P)
1913{
1914 if (fs_fd != -2)
1915 return;
1916
1917 fs_fd = inotify_init ();
1918
1919 if (fs_fd >= 0)
1920 {
1921 ev_io_init (&fs_w, infy_cb, fs_fd, EV_READ);
1922 ev_set_priority (&fs_w, EV_MAXPRI);
1923 ev_io_start (EV_A_ &fs_w);
1924 }
1925}
1926
1927void inline_size
1928infy_fork (EV_P)
1929{
1930 int slot;
1931
1932 if (fs_fd < 0)
1933 return;
1934
1935 close (fs_fd);
1936 fs_fd = inotify_init ();
1937
1938 for (slot = 0; slot < EV_INOTIFY_HASHSIZE; ++slot)
1939 {
1940 WL w_ = fs_hash [slot].head;
1941 fs_hash [slot].head = 0;
1942
1943 while (w_)
1944 {
1945 ev_stat *w = (ev_stat *)w_;
1946 w_ = w_->next; /* lets us add this watcher */
1947
1948 w->wd = -1;
1949
1950 if (fs_fd >= 0)
1951 infy_add (EV_A_ w); /* re-add, no matter what */
1952 else
1953 ev_timer_start (EV_A_ &w->timer);
1954 }
1955
1956 }
1957}
1958
1959#endif
1960
1961void
1962ev_stat_stat (EV_P_ ev_stat *w)
1963{
1964 if (lstat (w->path, &w->attr) < 0)
1965 w->attr.st_nlink = 0;
1966 else if (!w->attr.st_nlink)
1967 w->attr.st_nlink = 1;
1968}
1969
1970static void noinline
1971stat_timer_cb (EV_P_ ev_timer *w_, int revents)
1972{
1973 ev_stat *w = (ev_stat *)(((char *)w_) - offsetof (ev_stat, timer));
1974
1975 /* we copy this here each the time so that */
1976 /* prev has the old value when the callback gets invoked */
1977 w->prev = w->attr;
1978 ev_stat_stat (EV_A_ w);
1979
1980 /* memcmp doesn't work on netbsd, they.... do stuff to their struct stat */
1981 if (
1982 w->prev.st_dev != w->attr.st_dev
1983 || w->prev.st_ino != w->attr.st_ino
1984 || w->prev.st_mode != w->attr.st_mode
1985 || w->prev.st_nlink != w->attr.st_nlink
1986 || w->prev.st_uid != w->attr.st_uid
1987 || w->prev.st_gid != w->attr.st_gid
1988 || w->prev.st_rdev != w->attr.st_rdev
1989 || w->prev.st_size != w->attr.st_size
1990 || w->prev.st_atime != w->attr.st_atime
1991 || w->prev.st_mtime != w->attr.st_mtime
1992 || w->prev.st_ctime != w->attr.st_ctime
1993 ) {
1994 #if EV_USE_INOTIFY
1995 infy_del (EV_A_ w);
1996 infy_add (EV_A_ w);
1997 ev_stat_stat (EV_A_ w); /* avoid race... */
1998 #endif
1999
2000 ev_feed_event (EV_A_ w, EV_STAT);
2001 }
2002}
2003
2004void
2005ev_stat_start (EV_P_ ev_stat *w)
2006{
2007 if (expect_false (ev_is_active (w)))
2008 return;
2009
2010 /* since we use memcmp, we need to clear any padding data etc. */
2011 memset (&w->prev, 0, sizeof (ev_statdata));
2012 memset (&w->attr, 0, sizeof (ev_statdata));
2013
2014 ev_stat_stat (EV_A_ w);
2015
2016 if (w->interval < MIN_STAT_INTERVAL)
2017 w->interval = w->interval ? MIN_STAT_INTERVAL : DEF_STAT_INTERVAL;
2018
2019 ev_timer_init (&w->timer, stat_timer_cb, w->interval, w->interval);
2020 ev_set_priority (&w->timer, ev_priority (w));
2021
2022#if EV_USE_INOTIFY
2023 infy_init (EV_A);
2024
2025 if (fs_fd >= 0)
2026 infy_add (EV_A_ w);
2027 else
2028#endif
2029 ev_timer_start (EV_A_ &w->timer);
2030
2031 ev_start (EV_A_ (W)w, 1);
2032}
2033
2034void
2035ev_stat_stop (EV_P_ ev_stat *w)
2036{
2037 clear_pending (EV_A_ (W)w);
2038 if (expect_false (!ev_is_active (w)))
2039 return;
2040
2041#if EV_USE_INOTIFY
2042 infy_del (EV_A_ w);
2043#endif
2044 ev_timer_stop (EV_A_ &w->timer);
2045
2046 ev_stop (EV_A_ (W)w);
2047}
2048#endif
2049
2050#if EV_IDLE_ENABLE
2051void
2052ev_idle_start (EV_P_ ev_idle *w)
2053{
2054 if (expect_false (ev_is_active (w)))
2055 return;
2056
2057 pri_adjust (EV_A_ (W)w);
2058
2059 {
2060 int active = ++idlecnt [ABSPRI (w)];
2061
2062 ++idleall;
2063 ev_start (EV_A_ (W)w, active);
2064
2065 array_needsize (ev_idle *, idles [ABSPRI (w)], idlemax [ABSPRI (w)], active, EMPTY2);
2066 idles [ABSPRI (w)][active - 1] = w;
2067 }
2068}
2069
2070void
2071ev_idle_stop (EV_P_ ev_idle *w)
2072{
2073 clear_pending (EV_A_ (W)w);
2074 if (expect_false (!ev_is_active (w)))
2075 return;
2076
2077 {
2078 int active = ((W)w)->active;
2079
2080 idles [ABSPRI (w)][active - 1] = idles [ABSPRI (w)][--idlecnt [ABSPRI (w)]];
2081 ((W)idles [ABSPRI (w)][active - 1])->active = active;
2082
2083 ev_stop (EV_A_ (W)w);
2084 --idleall;
2085 }
2086}
2087#endif
2088
2089void
2090ev_prepare_start (EV_P_ ev_prepare *w)
2091{
2092 if (expect_false (ev_is_active (w)))
2093 return;
2094
2095 ev_start (EV_A_ (W)w, ++preparecnt);
2096 array_needsize (ev_prepare *, prepares, preparemax, preparecnt, EMPTY2);
2097 prepares [preparecnt - 1] = w;
2098}
2099
2100void
2101ev_prepare_stop (EV_P_ ev_prepare *w)
2102{
2103 clear_pending (EV_A_ (W)w);
2104 if (expect_false (!ev_is_active (w)))
2105 return;
2106
2107 {
2108 int active = ((W)w)->active;
2109 prepares [active - 1] = prepares [--preparecnt];
2110 ((W)prepares [active - 1])->active = active;
2111 }
2112
2113 ev_stop (EV_A_ (W)w);
2114}
2115
2116void
2117ev_check_start (EV_P_ ev_check *w)
2118{
2119 if (expect_false (ev_is_active (w)))
2120 return;
2121
2122 ev_start (EV_A_ (W)w, ++checkcnt);
2123 array_needsize (ev_check *, checks, checkmax, checkcnt, EMPTY2);
2124 checks [checkcnt - 1] = w;
2125}
2126
2127void
2128ev_check_stop (EV_P_ ev_check *w)
2129{
2130 clear_pending (EV_A_ (W)w);
2131 if (expect_false (!ev_is_active (w)))
2132 return;
2133
2134 {
2135 int active = ((W)w)->active;
2136 checks [active - 1] = checks [--checkcnt];
2137 ((W)checks [active - 1])->active = active;
2138 }
2139
2140 ev_stop (EV_A_ (W)w);
2141}
2142
2143#if EV_EMBED_ENABLE
2144void noinline
2145ev_embed_sweep (EV_P_ ev_embed *w)
2146{
2147 ev_loop (w->loop, EVLOOP_NONBLOCK);
2148}
2149
2150static void
2151embed_cb (EV_P_ ev_io *io, int revents)
2152{
2153 ev_embed *w = (ev_embed *)(((char *)io) - offsetof (ev_embed, io));
2154
2155 if (ev_cb (w))
2156 ev_feed_event (EV_A_ (W)w, EV_EMBED);
2157 else
2158 ev_embed_sweep (loop, w);
2159}
2160
2161void
2162ev_embed_start (EV_P_ ev_embed *w)
2163{
2164 if (expect_false (ev_is_active (w)))
2165 return;
2166
2167 {
2168 struct ev_loop *loop = w->loop;
2169 assert (("loop to be embedded is not embeddable", backend & ev_embeddable_backends ()));
2170 ev_io_init (&w->io, embed_cb, backend_fd, EV_READ);
2171 }
2172
2173 ev_set_priority (&w->io, ev_priority (w));
2174 ev_io_start (EV_A_ &w->io);
2175
2176 ev_start (EV_A_ (W)w, 1);
2177}
2178
2179void
2180ev_embed_stop (EV_P_ ev_embed *w)
2181{
2182 clear_pending (EV_A_ (W)w);
2183 if (expect_false (!ev_is_active (w)))
2184 return;
2185
2186 ev_io_stop (EV_A_ &w->io);
2187
2188 ev_stop (EV_A_ (W)w);
2189}
2190#endif
2191
2192#if EV_FORK_ENABLE
2193void
2194ev_fork_start (EV_P_ ev_fork *w)
2195{
2196 if (expect_false (ev_is_active (w)))
2197 return;
2198
2199 ev_start (EV_A_ (W)w, ++forkcnt);
2200 array_needsize (ev_fork *, forks, forkmax, forkcnt, EMPTY2);
2201 forks [forkcnt - 1] = w;
2202}
2203
2204void
2205ev_fork_stop (EV_P_ ev_fork *w)
2206{
2207 clear_pending (EV_A_ (W)w);
2208 if (expect_false (!ev_is_active (w)))
2209 return;
2210
2211 {
2212 int active = ((W)w)->active;
2213 forks [active - 1] = forks [--forkcnt];
2214 ((W)forks [active - 1])->active = active;
2215 }
2216
2217 ev_stop (EV_A_ (W)w);
2218}
2219#endif
2220
1664/*****************************************************************************/ 2221/*****************************************************************************/
1665 2222
1666struct ev_once 2223struct ev_once
1667{ 2224{
1668 struct ev_io io; 2225 ev_io io;
1669 struct ev_timer to; 2226 ev_timer to;
1670 void (*cb)(int revents, void *arg); 2227 void (*cb)(int revents, void *arg);
1671 void *arg; 2228 void *arg;
1672}; 2229};
1673 2230
1674static void 2231static void
1683 2240
1684 cb (revents, arg); 2241 cb (revents, arg);
1685} 2242}
1686 2243
1687static void 2244static void
1688once_cb_io (EV_P_ struct ev_io *w, int revents) 2245once_cb_io (EV_P_ ev_io *w, int revents)
1689{ 2246{
1690 once_cb (EV_A_ (struct ev_once *)(((char *)w) - offsetof (struct ev_once, io)), revents); 2247 once_cb (EV_A_ (struct ev_once *)(((char *)w) - offsetof (struct ev_once, io)), revents);
1691} 2248}
1692 2249
1693static void 2250static void
1694once_cb_to (EV_P_ struct ev_timer *w, int revents) 2251once_cb_to (EV_P_ ev_timer *w, int revents)
1695{ 2252{
1696 once_cb (EV_A_ (struct ev_once *)(((char *)w) - offsetof (struct ev_once, to)), revents); 2253 once_cb (EV_A_ (struct ev_once *)(((char *)w) - offsetof (struct ev_once, to)), revents);
1697} 2254}
1698 2255
1699void 2256void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines