2 * libev event processing core, watcher management
4 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 # if HAVE_CLOCK_GETTIME
40 # ifndef EV_USE_MONOTONIC
41 # define EV_USE_MONOTONIC 1
43 # ifndef EV_USE_REALTIME
44 # define EV_USE_REALTIME 1
48 # if HAVE_SELECT && HAVE_SYS_SELECT_H && !defined (EV_USE_SELECT)
49 # define EV_USE_SELECT 1
52 # if HAVE_POLL && HAVE_POLL_H && !defined (EV_USE_POLL) && !defined (__APPLE__)
53 # define EV_USE_POLL 1
56 # if HAVE_EPOLL_CTL && HAVE_SYS_EPOLL_H && !defined (EV_USE_EPOLL)
57 # define EV_USE_EPOLL 1
60 # if HAVE_KQUEUE && HAVE_SYS_EVENT_H && HAVE_SYS_QUEUE_H && !defined (EV_USE_KQUEUE) && !defined (__APPLE__)
61 # define EV_USE_KQUEUE 1
75 #include <sys/types.h>
82 # include <sys/time.h>
83 # include <sys/wait.h>
85 # define WIN32_LEAN_AND_MEAN
87 # ifndef EV_SELECT_IS_WINSOCKET
88 # define EV_SELECT_IS_WINSOCKET 1
94 #ifndef EV_USE_MONOTONIC
95 # define EV_USE_MONOTONIC 1
99 # define EV_USE_SELECT 1
100 # define EV_SELECT_USE_FD_SET 1
105 # define EV_USE_POLL 0
107 # define EV_USE_POLL 1
112 # define EV_USE_EPOLL 0
115 #ifndef EV_USE_KQUEUE
116 # define EV_USE_KQUEUE 0
119 #ifndef EV_USE_REALTIME
120 # define EV_USE_REALTIME 1
125 #ifndef CLOCK_MONOTONIC
126 # undef EV_USE_MONOTONIC
127 # define EV_USE_MONOTONIC 0
130 #ifndef CLOCK_REALTIME
131 # undef EV_USE_REALTIME
132 # define EV_USE_REALTIME 0
135 #if EV_SELECT_IS_WINSOCKET
136 # include <winsock.h>
141 #define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
142 #define MAX_BLOCKTIME 59.731 /* never wait longer than this time (to detect time jumps) */
143 #define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */
144 /*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */
153 # define expect(expr,value) __builtin_expect ((expr),(value))
154 # define inline inline
156 # define expect(expr,value) (expr)
157 # define inline static
160 #define expect_false(expr) expect ((expr) != 0, 0)
161 #define expect_true(expr) expect ((expr) != 0, 1)
163 #define NUMPRI (EV_MAXPRI - EV_MINPRI + 1)
164 #define ABSPRI(w) ((w)->priority - EV_MINPRI)
166 #define EMPTY /* required for microsofts broken pseudo-c compiler */
168 typedef struct ev_watcher *W;
169 typedef struct ev_watcher_list *WL;
170 typedef struct ev_watcher_time *WT;
172 static int have_monotonic; /* did clock_gettime (CLOCK_MONOTONIC) work? */
175 # include "ev_win32.c"
178 /*****************************************************************************/
180 static void (*syserr_cb)(const char *msg);
182 void ev_set_syserr_cb (void (*cb)(const char *msg))
188 syserr (const char *msg)
191 msg = "(libev) system error";
202 static void *(*alloc)(void *ptr, long size);
204 void ev_set_allocator (void *(*cb)(void *ptr, long size))
210 ev_realloc (void *ptr, long size)
212 ptr = alloc ? alloc (ptr, size) : realloc (ptr, size);
216 fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", size);
223 #define ev_malloc(size) ev_realloc (0, (size))
224 #define ev_free(ptr) ev_realloc ((ptr), 0)
226 /*****************************************************************************/
231 unsigned char events;
233 #if EV_SELECT_IS_WINSOCKET
249 #define ev_rt_now ((loop)->ev_rt_now)
250 #define VAR(name,decl) decl;
256 struct ev_loop default_loop_struct;
257 static struct ev_loop *default_loop;
262 #define VAR(name,decl) static decl;
266 static int default_loop;
270 /*****************************************************************************/
277 clock_gettime (CLOCK_REALTIME, &ts);
278 return ts.tv_sec + ts.tv_nsec * 1e-9;
281 gettimeofday (&tv, 0);
282 return tv.tv_sec + tv.tv_usec * 1e-6;
290 if (expect_true (have_monotonic))
293 clock_gettime (CLOCK_MONOTONIC, &ts);
294 return ts.tv_sec + ts.tv_nsec * 1e-9;
309 #define array_roundsize(type,n) ((n) | 4 & ~3)
311 #define array_needsize(type,base,cur,cnt,init) \
312 if (expect_false ((cnt) > cur)) \
317 newcnt = array_roundsize (type, newcnt << 1); \
319 while ((cnt) > newcnt); \
321 base = (type *)ev_realloc (base, sizeof (type) * (newcnt));\
322 init (base + cur, newcnt - cur); \
326 #define array_slim(type,stem) \
327 if (stem ## max < array_roundsize (stem ## cnt >> 2)) \
329 stem ## max = array_roundsize (stem ## cnt >> 1); \
330 base = (type *)ev_realloc (base, sizeof (type) * (stem ## max));\
331 fprintf (stderr, "slimmed down " # stem " to %d\n", stem ## max);/*D*/\
334 #define array_free(stem, idx) \
335 ev_free (stem ## s idx); stem ## cnt idx = stem ## max idx = 0;
337 /*****************************************************************************/
340 anfds_init (ANFD *base, int count)
345 base->events = EV_NONE;
353 ev_feed_event (EV_P_ void *w, int revents)
359 pendings [ABSPRI (w_)][w_->pending - 1].events |= revents;
363 w_->pending = ++pendingcnt [ABSPRI (w_)];
364 array_needsize (ANPENDING, pendings [ABSPRI (w_)], pendingmax [ABSPRI (w_)], pendingcnt [ABSPRI (w_)], (void));
365 pendings [ABSPRI (w_)][w_->pending - 1].w = w_;
366 pendings [ABSPRI (w_)][w_->pending - 1].events = revents;
370 queue_events (EV_P_ W *events, int eventcnt, int type)
374 for (i = 0; i < eventcnt; ++i)
375 ev_feed_event (EV_A_ events [i], type);
379 fd_event (EV_P_ int fd, int revents)
381 ANFD *anfd = anfds + fd;
384 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next)
386 int ev = w->events & revents;
389 ev_feed_event (EV_A_ (W)w, ev);
394 ev_feed_fd_event (EV_P_ int fd, int revents)
396 fd_event (EV_A_ fd, revents);
399 /*****************************************************************************/
406 for (i = 0; i < fdchangecnt; ++i)
408 int fd = fdchanges [i];
409 ANFD *anfd = anfds + fd;
414 for (w = (struct ev_io *)anfd->head; w; w = (struct ev_io *)((WL)w)->next)
417 #if EV_SELECT_IS_WINSOCKET
421 anfd->handle = _get_osfhandle (fd);
422 assert (("libev only supports socket fds in this configuration", ioctlsocket (anfd->handle, FIONREAD, &argp) == 0));
428 method_modify (EV_A_ fd, anfd->events, events);
429 anfd->events = events;
436 fd_change (EV_P_ int fd)
438 if (anfds [fd].reify)
441 anfds [fd].reify = 1;
444 array_needsize (int, fdchanges, fdchangemax, fdchangecnt, (void));
445 fdchanges [fdchangecnt - 1] = fd;
449 fd_kill (EV_P_ int fd)
453 while ((w = (struct ev_io *)anfds [fd].head))
455 ev_io_stop (EV_A_ w);
456 ev_feed_event (EV_A_ (W)w, EV_ERROR | EV_READ | EV_WRITE);
464 return _get_osfhandle (fd) != -1;
466 return fcntl (fd, F_GETFD) != -1;
470 /* called on EBADF to verify fds */
476 for (fd = 0; fd < anfdmax; ++fd)
477 if (anfds [fd].events)
478 if (!fd_valid (fd) == -1 && errno == EBADF)
482 /* called on ENOMEM in select/poll to kill some fds and retry */
488 for (fd = anfdmax; fd--; )
489 if (anfds [fd].events)
496 /* usually called after fork if method needs to re-arm all fds from scratch */
502 /* this should be highly optimised to not do anything but set a flag */
503 for (fd = 0; fd < anfdmax; ++fd)
504 if (anfds [fd].events)
506 anfds [fd].events = 0;
507 fd_change (EV_A_ fd);
511 /*****************************************************************************/
514 upheap (WT *heap, int k)
518 while (k && heap [k >> 1]->at > w->at)
520 heap [k] = heap [k >> 1];
521 ((W)heap [k])->active = k + 1;
526 ((W)heap [k])->active = k + 1;
531 downheap (WT *heap, int N, int k)
539 if (j + 1 < N && heap [j]->at > heap [j + 1]->at)
542 if (w->at <= heap [j]->at)
546 ((W)heap [k])->active = k + 1;
551 ((W)heap [k])->active = k + 1;
555 adjustheap (WT *heap, int N, int k)
558 downheap (heap, N, k);
561 /*****************************************************************************/
566 sig_atomic_t volatile gotsig;
569 static ANSIG *signals;
570 static int signalmax;
572 static int sigpipe [2];
573 static sig_atomic_t volatile gotsig;
574 static struct ev_io sigev;
577 signals_init (ANSIG *base, int count)
589 sighandler (int signum)
592 signal (signum, sighandler);
595 signals [signum - 1].gotsig = 1;
599 int old_errno = errno;
601 write (sigpipe [1], &signum, 1);
607 ev_feed_signal_event (EV_P_ int signum)
612 assert (("feeding signal events is only supported in the default loop", loop == default_loop));
617 if (signum < 0 || signum >= signalmax)
620 signals [signum].gotsig = 0;
622 for (w = signals [signum].head; w; w = w->next)
623 ev_feed_event (EV_A_ (W)w, EV_SIGNAL);
627 sigcb (EV_P_ struct ev_io *iow, int revents)
631 read (sigpipe [0], &revents, 1);
634 for (signum = signalmax; signum--; )
635 if (signals [signum].gotsig)
636 ev_feed_signal_event (EV_A_ signum + 1);
644 ioctlsocket (_get_osfhandle (fd), FIONBIO, &arg);
646 fcntl (fd, F_SETFD, FD_CLOEXEC);
647 fcntl (fd, F_SETFL, O_NONBLOCK);
654 fd_intern (sigpipe [0]);
655 fd_intern (sigpipe [1]);
657 ev_io_set (&sigev, sigpipe [0], EV_READ);
658 ev_io_start (EV_A_ &sigev);
659 ev_unref (EV_A); /* child watcher should not keep loop alive */
662 /*****************************************************************************/
664 static struct ev_child *childs [PID_HASHSIZE];
668 static struct ev_signal childev;
671 # define WCONTINUED 0
675 child_reap (EV_P_ struct ev_signal *sw, int chain, int pid, int status)
679 for (w = (struct ev_child *)childs [chain & (PID_HASHSIZE - 1)]; w; w = (struct ev_child *)((WL)w)->next)
680 if (w->pid == pid || !w->pid)
682 ev_priority (w) = ev_priority (sw); /* need to do it *now* */
685 ev_feed_event (EV_A_ (W)w, EV_CHILD);
690 childcb (EV_P_ struct ev_signal *sw, int revents)
694 if (0 < (pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)))
696 /* make sure we are called again until all childs have been reaped */
697 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL);
699 child_reap (EV_A_ sw, pid, pid, status);
700 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but event catches that */
706 /*****************************************************************************/
709 # include "ev_kqueue.c"
712 # include "ev_epoll.c"
715 # include "ev_poll.c"
718 # include "ev_select.c"
722 ev_version_major (void)
724 return EV_VERSION_MAJOR;
728 ev_version_minor (void)
730 return EV_VERSION_MINOR;
733 /* return true if we are running with elevated privileges and should ignore env variables */
740 return getuid () != geteuid ()
741 || getgid () != getegid ();
752 loop_init (EV_P_ int methods)
759 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
764 ev_rt_now = ev_time ();
765 mn_now = get_clock ();
767 rtmn_diff = ev_rt_now - mn_now;
769 if (methods == EVMETHOD_AUTO)
770 if (!enable_secure () && getenv ("LIBEV_METHODS"))
771 methods = atoi (getenv ("LIBEV_METHODS"));
773 methods = EVMETHOD_ANY;
777 if (!method && (methods & EVMETHOD_KQUEUE)) method = kqueue_init (EV_A_ methods);
780 if (!method && (methods & EVMETHOD_EPOLL )) method = epoll_init (EV_A_ methods);
783 if (!method && (methods & EVMETHOD_POLL )) method = poll_init (EV_A_ methods);
786 if (!method && (methods & EVMETHOD_SELECT)) method = select_init (EV_A_ methods);
789 ev_init (&sigev, sigcb);
790 ev_set_priority (&sigev, EV_MAXPRI);
800 if (method == EVMETHOD_KQUEUE) kqueue_destroy (EV_A);
803 if (method == EVMETHOD_EPOLL ) epoll_destroy (EV_A);
806 if (method == EVMETHOD_POLL ) poll_destroy (EV_A);
809 if (method == EVMETHOD_SELECT) select_destroy (EV_A);
812 for (i = NUMPRI; i--; )
813 array_free (pending, [i]);
815 /* have to use the microsoft-never-gets-it-right macro */
816 array_free (fdchange, EMPTY);
817 array_free (timer, EMPTY);
819 array_free (periodic, EMPTY);
821 array_free (idle, EMPTY);
822 array_free (prepare, EMPTY);
823 array_free (check, EMPTY);
832 if (method == EVMETHOD_EPOLL ) epoll_fork (EV_A);
835 if (method == EVMETHOD_KQUEUE) kqueue_fork (EV_A);
838 if (ev_is_active (&sigev))
843 ev_io_stop (EV_A_ &sigev);
847 while (pipe (sigpipe))
848 syserr ("(libev) error creating pipe");
858 ev_loop_new (int methods)
860 struct ev_loop *loop = (struct ev_loop *)ev_malloc (sizeof (struct ev_loop));
862 memset (loop, 0, sizeof (struct ev_loop));
864 loop_init (EV_A_ methods);
866 if (ev_method (EV_A))
873 ev_loop_destroy (EV_P)
892 ev_default_loop (int methods)
894 if (sigpipe [0] == sigpipe [1])
901 struct ev_loop *loop = default_loop = &default_loop_struct;
906 loop_init (EV_A_ methods);
908 if (ev_method (EV_A))
913 ev_signal_init (&childev, childcb, SIGCHLD);
914 ev_set_priority (&childev, EV_MAXPRI);
915 ev_signal_start (EV_A_ &childev);
916 ev_unref (EV_A); /* child watcher should not keep loop alive */
927 ev_default_destroy (void)
930 struct ev_loop *loop = default_loop;
934 ev_ref (EV_A); /* child watcher */
935 ev_signal_stop (EV_A_ &childev);
938 ev_ref (EV_A); /* signal watcher */
939 ev_io_stop (EV_A_ &sigev);
941 close (sigpipe [0]); sigpipe [0] = 0;
942 close (sigpipe [1]); sigpipe [1] = 0;
948 ev_default_fork (void)
951 struct ev_loop *loop = default_loop;
958 /*****************************************************************************/
965 for (pri = NUMPRI; pri--; )
966 if (pendingcnt [pri])
977 for (pri = NUMPRI; pri--; )
978 while (pendingcnt [pri])
980 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
985 EV_CB_INVOKE (p->w, p->events);
993 while (timercnt && ((WT)timers [0])->at <= mn_now)
995 struct ev_timer *w = timers [0];
997 assert (("inactive timer on timer heap detected", ev_is_active (w)));
999 /* first reschedule or stop timer */
1002 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.));
1004 ((WT)w)->at += w->repeat;
1005 if (((WT)w)->at < mn_now)
1006 ((WT)w)->at = mn_now;
1008 downheap ((WT *)timers, timercnt, 0);
1011 ev_timer_stop (EV_A_ w); /* nonrepeating: stop timer */
1013 ev_feed_event (EV_A_ (W)w, EV_TIMEOUT);
1019 periodics_reify (EV_P)
1021 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now)
1023 struct ev_periodic *w = periodics [0];
1025 assert (("inactive timer on periodic heap detected", ev_is_active (w)));
1027 /* first reschedule or stop timer */
1028 if (w->reschedule_cb)
1030 ev_tstamp at = ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + 0.0001);
1032 assert (("ev_periodic reschedule callback returned time in the past", ((WT)w)->at > ev_rt_now));
1033 downheap ((WT *)periodics, periodiccnt, 0);
1035 else if (w->interval)
1037 ((WT)w)->at += floor ((ev_rt_now - ((WT)w)->at) / w->interval + 1.) * w->interval;
1038 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", ((WT)w)->at > ev_rt_now));
1039 downheap ((WT *)periodics, periodiccnt, 0);
1042 ev_periodic_stop (EV_A_ w); /* nonrepeating: stop timer */
1044 ev_feed_event (EV_A_ (W)w, EV_PERIODIC);
1049 periodics_reschedule (EV_P)
1053 /* adjust periodics after time jump */
1054 for (i = 0; i < periodiccnt; ++i)
1056 struct ev_periodic *w = periodics [i];
1058 if (w->reschedule_cb)
1059 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now);
1060 else if (w->interval)
1061 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval;
1064 /* now rebuild the heap */
1065 for (i = periodiccnt >> 1; i--; )
1066 downheap ((WT *)periodics, periodiccnt, i);
1071 time_update_monotonic (EV_P)
1073 mn_now = get_clock ();
1075 if (expect_true (mn_now - now_floor < MIN_TIMEJUMP * .5))
1077 ev_rt_now = rtmn_diff + mn_now;
1083 ev_rt_now = ev_time ();
1093 #if EV_USE_MONOTONIC
1094 if (expect_true (have_monotonic))
1096 if (time_update_monotonic (EV_A))
1098 ev_tstamp odiff = rtmn_diff;
1100 for (i = 4; --i; ) /* loop a few times, before making important decisions */
1102 rtmn_diff = ev_rt_now - mn_now;
1104 if (fabs (odiff - rtmn_diff) < MIN_TIMEJUMP)
1105 return; /* all is well */
1107 ev_rt_now = ev_time ();
1108 mn_now = get_clock ();
1113 periodics_reschedule (EV_A);
1115 /* no timer adjustment, as the monotonic clock doesn't jump */
1116 /* timers_reschedule (EV_A_ rtmn_diff - odiff) */
1122 ev_rt_now = ev_time ();
1124 if (expect_false (mn_now > ev_rt_now || mn_now < ev_rt_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
1127 periodics_reschedule (EV_A);
1130 /* adjust timers. this is easy, as the offset is the same for all */
1131 for (i = 0; i < timercnt; ++i)
1132 ((WT)timers [i])->at += ev_rt_now - mn_now;
1151 static int loop_done;
1154 ev_loop (EV_P_ int flags)
1157 loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK) ? 1 : 0;
1161 /* queue check watchers (and execute them) */
1162 if (expect_false (preparecnt))
1164 queue_events (EV_A_ (W *)prepares, preparecnt, EV_PREPARE);
1165 call_pending (EV_A);
1168 /* we might have forked, so reify kernel state if necessary */
1169 if (expect_false (postfork))
1172 /* update fd-related kernel structures */
1175 /* calculate blocking time */
1177 /* we only need this for !monotonic clock or timers, but as we basically
1178 always have timers, we just calculate it always */
1179 #if EV_USE_MONOTONIC
1180 if (expect_true (have_monotonic))
1181 time_update_monotonic (EV_A);
1185 ev_rt_now = ev_time ();
1189 if (flags & EVLOOP_NONBLOCK || idlecnt)
1193 block = MAX_BLOCKTIME;
1197 ev_tstamp to = ((WT)timers [0])->at - mn_now + method_fudge;
1198 if (block > to) block = to;
1204 ev_tstamp to = ((WT)periodics [0])->at - ev_rt_now + method_fudge;
1205 if (block > to) block = to;
1209 if (block < 0.) block = 0.;
1212 method_poll (EV_A_ block);
1214 /* update ev_rt_now, do magic */
1217 /* queue pending timers and reschedule them */
1218 timers_reify (EV_A); /* relative timers called last */
1220 periodics_reify (EV_A); /* absolute timers called first */
1223 /* queue idle watchers unless io or timers are pending */
1224 if (idlecnt && !any_pending (EV_A))
1225 queue_events (EV_A_ (W *)idles, idlecnt, EV_IDLE);
1227 /* queue check watchers, to be executed first */
1229 queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK);
1231 call_pending (EV_A);
1233 while (activecnt && !loop_done);
1240 ev_unloop (EV_P_ int how)
1245 /*****************************************************************************/
1248 wlist_add (WL *head, WL elem)
1255 wlist_del (WL *head, WL elem)
1265 head = &(*head)->next;
1270 ev_clear_pending (EV_P_ W w)
1274 pendings [ABSPRI (w)][w->pending - 1].w = 0;
1280 ev_start (EV_P_ W w, int active)
1282 if (w->priority < EV_MINPRI) w->priority = EV_MINPRI;
1283 if (w->priority > EV_MAXPRI) w->priority = EV_MAXPRI;
1296 /*****************************************************************************/
1299 ev_io_start (EV_P_ struct ev_io *w)
1303 if (ev_is_active (w))
1306 assert (("ev_io_start called with negative fd", fd >= 0));
1308 ev_start (EV_A_ (W)w, 1);
1309 array_needsize (ANFD, anfds, anfdmax, fd + 1, anfds_init);
1310 wlist_add ((WL *)&anfds[fd].head, (WL)w);
1312 fd_change (EV_A_ fd);
1316 ev_io_stop (EV_P_ struct ev_io *w)
1318 ev_clear_pending (EV_A_ (W)w);
1319 if (!ev_is_active (w))
1322 assert (("ev_io_start called with illegal fd (must stay constant after start!)", w->fd >= 0 && w->fd < anfdmax));
1324 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
1325 ev_stop (EV_A_ (W)w);
1327 fd_change (EV_A_ w->fd);
1331 ev_timer_start (EV_P_ struct ev_timer *w)
1333 if (ev_is_active (w))
1336 ((WT)w)->at += mn_now;
1338 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
1340 ev_start (EV_A_ (W)w, ++timercnt);
1341 array_needsize (struct ev_timer *, timers, timermax, timercnt, (void));
1342 timers [timercnt - 1] = w;
1343 upheap ((WT *)timers, timercnt - 1);
1345 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));
1349 ev_timer_stop (EV_P_ struct ev_timer *w)
1351 ev_clear_pending (EV_A_ (W)w);
1352 if (!ev_is_active (w))
1355 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));
1357 if (((W)w)->active < timercnt--)
1359 timers [((W)w)->active - 1] = timers [timercnt];
1360 adjustheap ((WT *)timers, timercnt, ((W)w)->active - 1);
1363 ((WT)w)->at -= mn_now;
1365 ev_stop (EV_A_ (W)w);
1369 ev_timer_again (EV_P_ struct ev_timer *w)
1371 if (ev_is_active (w))
1375 ((WT)w)->at = mn_now + w->repeat;
1376 adjustheap ((WT *)timers, timercnt, ((W)w)->active - 1);
1379 ev_timer_stop (EV_A_ w);
1382 ev_timer_start (EV_A_ w);
1387 ev_periodic_start (EV_P_ struct ev_periodic *w)
1389 if (ev_is_active (w))
1392 if (w->reschedule_cb)
1393 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now);
1394 else if (w->interval)
1396 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.));
1397 /* this formula differs from the one in periodic_reify because we do not always round up */
1398 ((WT)w)->at += ceil ((ev_rt_now - ((WT)w)->at) / w->interval) * w->interval;
1401 ev_start (EV_A_ (W)w, ++periodiccnt);
1402 array_needsize (struct ev_periodic *, periodics, periodicmax, periodiccnt, (void));
1403 periodics [periodiccnt - 1] = w;
1404 upheap ((WT *)periodics, periodiccnt - 1);
1406 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));
1410 ev_periodic_stop (EV_P_ struct ev_periodic *w)
1412 ev_clear_pending (EV_A_ (W)w);
1413 if (!ev_is_active (w))
1416 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));
1418 if (((W)w)->active < periodiccnt--)
1420 periodics [((W)w)->active - 1] = periodics [periodiccnt];
1421 adjustheap ((WT *)periodics, periodiccnt, ((W)w)->active - 1);
1424 ev_stop (EV_A_ (W)w);
1428 ev_periodic_again (EV_P_ struct ev_periodic *w)
1430 /* TODO: use adjustheap and recalculation */
1431 ev_periodic_stop (EV_A_ w);
1432 ev_periodic_start (EV_A_ w);
1437 ev_idle_start (EV_P_ struct ev_idle *w)
1439 if (ev_is_active (w))
1442 ev_start (EV_A_ (W)w, ++idlecnt);
1443 array_needsize (struct ev_idle *, idles, idlemax, idlecnt, (void));
1444 idles [idlecnt - 1] = w;
1448 ev_idle_stop (EV_P_ struct ev_idle *w)
1450 ev_clear_pending (EV_A_ (W)w);
1451 if (!ev_is_active (w))
1454 idles [((W)w)->active - 1] = idles [--idlecnt];
1455 ev_stop (EV_A_ (W)w);
1459 ev_prepare_start (EV_P_ struct ev_prepare *w)
1461 if (ev_is_active (w))
1464 ev_start (EV_A_ (W)w, ++preparecnt);
1465 array_needsize (struct ev_prepare *, prepares, preparemax, preparecnt, (void));
1466 prepares [preparecnt - 1] = w;
1470 ev_prepare_stop (EV_P_ struct ev_prepare *w)
1472 ev_clear_pending (EV_A_ (W)w);
1473 if (!ev_is_active (w))
1476 prepares [((W)w)->active - 1] = prepares [--preparecnt];
1477 ev_stop (EV_A_ (W)w);
1481 ev_check_start (EV_P_ struct ev_check *w)
1483 if (ev_is_active (w))
1486 ev_start (EV_A_ (W)w, ++checkcnt);
1487 array_needsize (struct ev_check *, checks, checkmax, checkcnt, (void));
1488 checks [checkcnt - 1] = w;
1492 ev_check_stop (EV_P_ struct ev_check *w)
1494 ev_clear_pending (EV_A_ (W)w);
1495 if (!ev_is_active (w))
1498 checks [((W)w)->active - 1] = checks [--checkcnt];
1499 ev_stop (EV_A_ (W)w);
1503 # define SA_RESTART 0
1507 ev_signal_start (EV_P_ struct ev_signal *w)
1510 assert (("signal watchers are only supported in the default loop", loop == default_loop));
1512 if (ev_is_active (w))
1515 assert (("ev_signal_start called with illegal signal number", w->signum > 0));
1517 ev_start (EV_A_ (W)w, 1);
1518 array_needsize (ANSIG, signals, signalmax, w->signum, signals_init);
1519 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
1524 signal (w->signum, sighandler);
1526 struct sigaction sa;
1527 sa.sa_handler = sighandler;
1528 sigfillset (&sa.sa_mask);
1529 sa.sa_flags = SA_RESTART; /* if restarting works we save one iteration */
1530 sigaction (w->signum, &sa, 0);
1536 ev_signal_stop (EV_P_ struct ev_signal *w)
1538 ev_clear_pending (EV_A_ (W)w);
1539 if (!ev_is_active (w))
1542 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
1543 ev_stop (EV_A_ (W)w);
1545 if (!signals [w->signum - 1].head)
1546 signal (w->signum, SIG_DFL);
1550 ev_child_start (EV_P_ struct ev_child *w)
1553 assert (("child watchers are only supported in the default loop", loop == default_loop));
1555 if (ev_is_active (w))
1558 ev_start (EV_A_ (W)w, 1);
1559 wlist_add ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1563 ev_child_stop (EV_P_ struct ev_child *w)
1565 ev_clear_pending (EV_A_ (W)w);
1566 if (!ev_is_active (w))
1569 wlist_del ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1570 ev_stop (EV_A_ (W)w);
1573 /*****************************************************************************/
1579 void (*cb)(int revents, void *arg);
1584 once_cb (EV_P_ struct ev_once *once, int revents)
1586 void (*cb)(int revents, void *arg) = once->cb;
1587 void *arg = once->arg;
1589 ev_io_stop (EV_A_ &once->io);
1590 ev_timer_stop (EV_A_ &once->to);
1597 once_cb_io (EV_P_ struct ev_io *w, int revents)
1599 once_cb (EV_A_ (struct ev_once *)(((char *)w) - offsetof (struct ev_once, io)), revents);
1603 once_cb_to (EV_P_ struct ev_timer *w, int revents)
1605 once_cb (EV_A_ (struct ev_once *)(((char *)w) - offsetof (struct ev_once, to)), revents);
1609 ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg)
1611 struct ev_once *once = (struct ev_once *)ev_malloc (sizeof (struct ev_once));
1614 cb (EV_ERROR | EV_READ | EV_WRITE | EV_TIMEOUT, arg);
1620 ev_init (&once->io, once_cb_io);
1623 ev_io_set (&once->io, fd, events);
1624 ev_io_start (EV_A_ &once->io);
1627 ev_init (&once->to, once_cb_to);
1630 ev_timer_set (&once->to, timeout, 0.);
1631 ev_timer_start (EV_A_ &once->to);