libev/ev.c

884 lines
16 KiB
C
Raw Normal View History

#include <math.h>
#include <stdlib.h>
2007-10-31 00:24:16 +00:00
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <stdio.h>
2007-10-30 23:10:33 +00:00
#include <assert.h>
#include <errno.h>
#include <sys/time.h>
#include <time.h>
2007-10-31 09:23:17 +00:00
#define HAVE_EPOLL 1
#ifndef HAVE_MONOTONIC
# ifdef CLOCK_MONOTONIC
# define HAVE_MONOTONIC 1
# endif
#endif
#ifndef HAVE_SELECT
# define HAVE_SELECT 1
#endif
#ifndef HAVE_EPOLL
# define HAVE_EPOLL 0
#endif
#ifndef HAVE_REALTIME
# define HAVE_REALTIME 1 /* posix requirement, but might be slower */
#endif
2007-10-30 23:10:33 +00:00
#define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
#define MAX_BLOCKTIME 60.
#include "ev.h"
typedef struct ev_watcher *W;
typedef struct ev_watcher_list *WL;
2007-10-31 09:23:17 +00:00
typedef struct ev_watcher_time *WT;
2007-10-30 23:10:33 +00:00
static ev_tstamp now, diff; /* monotonic clock */
ev_tstamp ev_now;
int ev_method;
static int have_monotonic; /* runtime */
static ev_tstamp method_fudge; /* stupid epoll-returns-early bug */
2007-10-30 23:54:38 +00:00
static void (*method_modify)(int fd, int oev, int nev);
static void (*method_poll)(ev_tstamp timeout);
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
ev_tstamp
ev_time (void)
{
#if HAVE_REALTIME
struct timespec ts;
clock_gettime (CLOCK_REALTIME, &ts);
return ts.tv_sec + ts.tv_nsec * 1e-9;
#else
struct timeval tv;
gettimeofday (&tv, 0);
return tv.tv_sec + tv.tv_usec * 1e-6;
#endif
}
static ev_tstamp
get_clock (void)
{
#if HAVE_MONOTONIC
if (have_monotonic)
{
struct timespec ts;
clock_gettime (CLOCK_MONOTONIC, &ts);
return ts.tv_sec + ts.tv_nsec * 1e-9;
}
#endif
return ev_time ();
}
#define array_needsize(base,cur,cnt,init) \
if ((cnt) > cur) \
{ \
2007-10-30 21:42:12 +00:00
int newcnt = cur ? cur << 1 : 16; \
base = realloc (base, sizeof (*base) * (newcnt)); \
init (base + cur, newcnt - cur); \
cur = newcnt; \
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
typedef struct
{
struct ev_io *head;
unsigned char wev, rev; /* want, received event set */
} ANFD;
static ANFD *anfds;
static int anfdmax;
static int *fdchanges;
static int fdchangemax, fdchangecnt;
static void
anfds_init (ANFD *base, int count)
{
while (count--)
{
base->head = 0;
base->wev = base->rev = EV_NONE;
++base;
}
}
typedef struct
{
W w;
int events;
} ANPENDING;
static ANPENDING *pendings;
static int pendingmax, pendingcnt;
static void
event (W w, int events)
{
w->pending = ++pendingcnt;
array_needsize (pendings, pendingmax, pendingcnt, );
pendings [pendingcnt - 1].w = w;
pendings [pendingcnt - 1].events = events;
}
static void
fd_event (int fd, int events)
{
ANFD *anfd = anfds + fd;
struct ev_io *w;
for (w = anfd->head; w; w = w->next)
{
int ev = w->events & events;
if (ev)
event ((W)w, ev);
}
}
static void
queue_events (W *events, int eventcnt, int type)
{
int i;
for (i = 0; i < eventcnt; ++i)
event (events [i], type);
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
2007-10-31 09:23:17 +00:00
static struct ev_timer **timers;
static int timermax, timercnt;
2007-10-30 23:10:33 +00:00
2007-10-31 09:23:17 +00:00
static struct ev_periodic **periodics;
static int periodicmax, periodiccnt;
static void
2007-10-31 09:23:17 +00:00
upheap (WT *timers, int k)
{
2007-10-31 09:23:17 +00:00
WT w = timers [k];
while (k && timers [k >> 1]->at > w->at)
{
timers [k] = timers [k >> 1];
timers [k]->active = k + 1;
k >>= 1;
}
timers [k] = w;
timers [k]->active = k + 1;
}
static void
2007-10-31 09:23:17 +00:00
downheap (WT *timers, int N, int k)
{
2007-10-31 09:23:17 +00:00
WT w = timers [k];
2007-10-30 23:10:33 +00:00
while (k < (N >> 1))
{
int j = k << 1;
2007-10-30 23:10:33 +00:00
if (j + 1 < N && timers [j]->at > timers [j + 1]->at)
++j;
if (w->at <= timers [j]->at)
break;
timers [k] = timers [j];
2007-10-30 21:42:12 +00:00
timers [k]->active = k + 1;
k = j;
}
timers [k] = w;
timers [k]->active = k + 1;
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
2007-10-31 00:24:16 +00:00
typedef struct
{
struct ev_signal *head;
sig_atomic_t gotsig;
} ANSIG;
static ANSIG *signals;
2007-10-30 23:10:33 +00:00
static int signalmax;
2007-10-31 00:24:16 +00:00
static int sigpipe [2];
static sig_atomic_t gotsig;
static struct ev_io sigev;
static void
2007-10-31 00:24:16 +00:00
signals_init (ANSIG *base, int count)
{
while (count--)
2007-10-31 00:24:16 +00:00
{
base->head = 0;
base->gotsig = 0;
++base;
}
}
static void
sighandler (int signum)
{
signals [signum - 1].gotsig = 1;
if (!gotsig)
{
gotsig = 1;
write (sigpipe [1], &gotsig, 1);
}
}
static void
sigcb (struct ev_io *iow, int revents)
{
struct ev_signal *w;
int sig;
gotsig = 0;
read (sigpipe [0], &revents, 1);
for (sig = signalmax; sig--; )
if (signals [sig].gotsig)
{
signals [sig].gotsig = 0;
for (w = signals [sig].head; w; w = w->next)
event ((W)w, EV_SIGNAL);
2007-10-31 00:24:16 +00:00
}
}
static void
siginit (void)
{
fcntl (sigpipe [0], F_SETFD, FD_CLOEXEC);
fcntl (sigpipe [1], F_SETFD, FD_CLOEXEC);
/* rather than sort out wether we really need nb, set it */
fcntl (sigpipe [0], F_SETFL, O_NONBLOCK);
fcntl (sigpipe [1], F_SETFL, O_NONBLOCK);
evio_set (&sigev, sigpipe [0], EV_READ);
evio_start (&sigev);
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
static struct ev_idle **idles;
static int idlemax, idlecnt;
static struct ev_check **checks;
static int checkmax, checkcnt;
/*****************************************************************************/
#if HAVE_EPOLL
# include "ev_epoll.c"
#endif
#if HAVE_SELECT
# include "ev_select.c"
#endif
int ev_init (int flags)
{
#if HAVE_MONOTONIC
{
struct timespec ts;
if (!clock_gettime (CLOCK_MONOTONIC, &ts))
have_monotonic = 1;
}
#endif
ev_now = ev_time ();
2007-10-30 23:10:33 +00:00
now = get_clock ();
diff = ev_now - now;
2007-10-31 00:24:16 +00:00
if (pipe (sigpipe))
return 0;
ev_method = EVMETHOD_NONE;
#if HAVE_EPOLL
2007-10-31 00:24:16 +00:00
if (ev_method == EVMETHOD_NONE) epoll_init (flags);
#endif
#if HAVE_SELECT
2007-10-31 00:24:16 +00:00
if (ev_method == EVMETHOD_NONE) select_init (flags);
#endif
2007-10-31 00:24:16 +00:00
if (ev_method)
{
2007-10-31 09:23:17 +00:00
evw_init (&sigev, sigcb);
2007-10-31 00:24:16 +00:00
siginit ();
}
return ev_method;
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
void ev_prefork (void)
{
2007-10-31 07:40:49 +00:00
/* nop */
}
void ev_postfork_parent (void)
{
2007-10-31 07:40:49 +00:00
/* nop */
}
void ev_postfork_child (void)
{
#if HAVE_EPOLL
2007-10-30 23:54:38 +00:00
if (ev_method == EVMETHOD_EPOLL)
epoll_postfork_child ();
#endif
2007-10-31 00:24:16 +00:00
evio_stop (&sigev);
close (sigpipe [0]);
close (sigpipe [1]);
pipe (sigpipe);
siginit ();
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
2007-10-30 23:54:38 +00:00
static void
fd_reify (void)
{
int i;
for (i = 0; i < fdchangecnt; ++i)
{
int fd = fdchanges [i];
ANFD *anfd = anfds + fd;
struct ev_io *w;
int wev = 0;
for (w = anfd->head; w; w = w->next)
wev |= w->events;
if (anfd->wev != wev)
{
method_modify (fd, anfd->wev, wev);
anfd->wev = wev;
}
}
fdchangecnt = 0;
}
static void
call_pending ()
{
int i;
for (i = 0; i < pendingcnt; ++i)
{
ANPENDING *p = pendings + i;
if (p->w)
{
p->w->pending = 0;
p->w->cb (p->w, p->events);
}
}
pendingcnt = 0;
}
static void
2007-10-31 09:23:17 +00:00
timers_reify ()
{
2007-10-30 23:10:33 +00:00
while (timercnt && timers [0]->at <= now)
{
struct ev_timer *w = timers [0];
2007-10-30 23:10:33 +00:00
/* first reschedule or stop timer */
if (w->repeat)
{
2007-10-31 09:23:17 +00:00
w->at = now + w->repeat;
assert (("timer timeout in the past, negative repeat?", w->at > now));
downheap ((WT *)timers, timercnt, 0);
}
else
2007-10-31 09:23:17 +00:00
evtimer_stop (w); /* nonrepeating: stop timer */
event ((W)w, EV_TIMEOUT);
}
}
static void
periodics_reify ()
{
while (periodiccnt && periodics [0]->at <= ev_now)
{
struct ev_periodic *w = periodics [0];
/* first reschedule or stop timer */
if (w->interval)
2007-10-30 23:10:33 +00:00
{
2007-10-31 09:23:17 +00:00
w->at += floor ((ev_now - w->at) / w->interval + 1.) * w->interval;
assert (("periodic timeout in the past, negative interval?", w->at > ev_now));
downheap ((WT *)periodics, periodiccnt, 0);
2007-10-30 23:10:33 +00:00
}
2007-10-31 09:23:17 +00:00
else
evperiodic_stop (w); /* nonrepeating: stop timer */
event ((W)w, EV_TIMEOUT);
}
}
2007-10-31 09:23:17 +00:00
static void
2007-10-31 10:50:05 +00:00
periodics_reschedule (ev_tstamp diff)
2007-10-31 09:23:17 +00:00
{
int i;
2007-10-31 10:50:05 +00:00
/* adjust periodics after time jump */
2007-10-31 09:23:17 +00:00
for (i = 0; i < periodiccnt; ++i)
{
struct ev_periodic *w = periodics [i];
if (w->interval)
{
ev_tstamp diff = ceil ((ev_now - w->at) / w->interval) * w->interval;
if (fabs (diff) >= 1e-4)
{
evperiodic_stop (w);
evperiodic_start (w);
i = 0; /* restart loop, inefficient, but time jumps should be rare */
}
}
}
}
2007-10-30 23:10:33 +00:00
static void
time_update ()
{
int i;
2007-10-31 09:23:17 +00:00
2007-10-30 23:10:33 +00:00
ev_now = ev_time ();
if (have_monotonic)
{
ev_tstamp odiff = diff;
2007-10-31 09:23:17 +00:00
for (i = 4; --i; ) /* loop a few times, before making important decisions */
2007-10-30 23:10:33 +00:00
{
now = get_clock ();
diff = ev_now - now;
if (fabs (odiff - diff) < MIN_TIMEJUMP)
return; /* all is well */
ev_now = ev_time ();
}
2007-10-31 10:50:05 +00:00
periodics_reschedule (diff - odiff);
/* no timer adjustment, as the monotonic clock doesn't jump */
2007-10-30 23:10:33 +00:00
}
else
{
if (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP)
2007-10-31 10:50:05 +00:00
{
periodics_reschedule (ev_now - now);
/* adjust timers. this is easy, as the offset is the same for all */
for (i = 0; i < timercnt; ++i)
timers [i]->at += diff;
}
2007-10-30 23:10:33 +00:00
now = ev_now;
}
}
int ev_loop_done;
2007-10-30 23:10:33 +00:00
void ev_loop (int flags)
{
double block;
2007-10-31 10:50:05 +00:00
ev_loop_done = flags & EVLOOP_ONESHOT ? 1 : 0;
if (checkcnt)
{
queue_events ((W *)checks, checkcnt, EV_CHECK);
call_pending ();
}
2007-10-31 00:32:33 +00:00
do
{
/* update fd-related kernel structures */
2007-10-30 23:54:38 +00:00
fd_reify ();
/* calculate blocking time */
2007-10-31 09:23:17 +00:00
/* we only need this for !monotonic clock, but as we always have timers, we just calculate it every time */
ev_now = ev_time ();
if (flags & EVLOOP_NONBLOCK || idlecnt)
block = 0.;
else
{
2007-10-30 23:10:33 +00:00
block = MAX_BLOCKTIME;
2007-10-31 09:23:17 +00:00
if (timercnt)
2007-10-30 23:10:33 +00:00
{
2007-10-31 11:52:12 +00:00
ev_tstamp to = timers [0]->at - (have_monotonic ? get_clock () : ev_now) + method_fudge;
2007-10-30 23:10:33 +00:00
if (block > to) block = to;
}
2007-10-31 09:23:17 +00:00
if (periodiccnt)
2007-10-30 23:10:33 +00:00
{
2007-10-31 09:23:17 +00:00
ev_tstamp to = periodics [0]->at - ev_now + method_fudge;
2007-10-30 23:10:33 +00:00
if (block > to) block = to;
}
if (block < 0.) block = 0.;
}
method_poll (block);
2007-10-30 23:10:33 +00:00
/* update ev_now, do magic */
time_update ();
/* queue pending timers and reschedule them */
2007-10-31 09:23:17 +00:00
periodics_reify (); /* absolute timers first */
timers_reify (); /* relative timers second */
/* queue idle watchers unless io or timers are pending */
if (!pendingcnt)
queue_events ((W *)idles, idlecnt, EV_IDLE);
/* queue check and possibly idle watchers */
queue_events ((W *)checks, checkcnt, EV_CHECK);
call_pending ();
}
while (!ev_loop_done);
2007-10-31 10:50:05 +00:00
if (ev_loop_done != 2)
ev_loop_done = 0;
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
static void
wlist_add (WL *head, WL elem)
{
elem->next = *head;
*head = elem;
}
static void
wlist_del (WL *head, WL elem)
{
while (*head)
{
if (*head == elem)
{
*head = elem->next;
return;
}
head = &(*head)->next;
}
}
static void
ev_start (W w, int active)
{
w->pending = 0;
w->active = active;
}
static void
ev_stop (W w)
{
if (w->pending)
pendings [w->pending - 1].w = 0;
w->active = 0;
}
2007-10-31 00:32:33 +00:00
/*****************************************************************************/
void
evio_start (struct ev_io *w)
{
if (ev_is_active (w))
return;
int fd = w->fd;
ev_start ((W)w, 1);
array_needsize (anfds, anfdmax, fd + 1, anfds_init);
wlist_add ((WL *)&anfds[fd].head, (WL)w);
++fdchangecnt;
array_needsize (fdchanges, fdchangemax, fdchangecnt, );
fdchanges [fdchangecnt - 1] = fd;
}
void
evio_stop (struct ev_io *w)
{
if (!ev_is_active (w))
return;
wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
ev_stop ((W)w);
++fdchangecnt;
array_needsize (fdchanges, fdchangemax, fdchangecnt, );
fdchanges [fdchangecnt - 1] = w->fd;
}
2007-10-31 09:23:17 +00:00
void
evtimer_start (struct ev_timer *w)
{
if (ev_is_active (w))
return;
2007-10-31 09:23:17 +00:00
w->at += now;
2007-10-31 10:50:05 +00:00
assert (("timer repeat value less than zero not allowed", w->repeat >= 0.));
2007-10-31 09:23:17 +00:00
ev_start ((W)w, ++timercnt);
array_needsize (timers, timermax, timercnt, );
timers [timercnt - 1] = w;
upheap ((WT *)timers, timercnt - 1);
}
void
evtimer_stop (struct ev_timer *w)
{
if (!ev_is_active (w))
return;
2007-10-31 09:23:17 +00:00
if (w->active < timercnt--)
2007-10-30 21:42:12 +00:00
{
2007-10-31 09:23:17 +00:00
timers [w->active - 1] = timers [timercnt];
downheap ((WT *)timers, timercnt, w->active - 1);
2007-10-30 23:10:33 +00:00
}
2007-10-31 09:23:17 +00:00
2007-10-31 11:52:12 +00:00
w->at = w->repeat;
2007-10-31 09:23:17 +00:00
ev_stop ((W)w);
}
2007-10-31 11:52:12 +00:00
void
evtimer_again (struct ev_timer *w)
{
if (ev_is_active (w))
{
if (w->repeat)
{
w->at = now + w->repeat;
downheap ((WT *)timers, timercnt, w->active - 1);
}
else
evtimer_stop (w);
}
else if (w->repeat)
evtimer_start (w);
}
2007-10-31 09:23:17 +00:00
void
evperiodic_start (struct ev_periodic *w)
{
if (ev_is_active (w))
return;
2007-10-31 10:50:05 +00:00
assert (("periodic interval value less than zero not allowed", w->interval >= 0.));
2007-10-31 09:23:17 +00:00
/* this formula differs from the one in periodic_reify because we do not always round up */
if (w->interval)
w->at += ceil ((ev_now - w->at) / w->interval) * w->interval;
ev_start ((W)w, ++periodiccnt);
array_needsize (periodics, periodicmax, periodiccnt, );
periodics [periodiccnt - 1] = w;
upheap ((WT *)periodics, periodiccnt - 1);
}
void
evperiodic_stop (struct ev_periodic *w)
{
if (!ev_is_active (w))
return;
if (w->active < periodiccnt--)
2007-10-30 23:10:33 +00:00
{
2007-10-31 09:23:17 +00:00
periodics [w->active - 1] = periodics [periodiccnt];
downheap ((WT *)periodics, periodiccnt, w->active - 1);
2007-10-30 21:42:12 +00:00
}
ev_stop ((W)w);
}
void
evsignal_start (struct ev_signal *w)
{
if (ev_is_active (w))
return;
ev_start ((W)w, 1);
array_needsize (signals, signalmax, w->signum, signals_init);
wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
2007-10-31 00:24:16 +00:00
if (!w->next)
{
struct sigaction sa;
sa.sa_handler = sighandler;
sigfillset (&sa.sa_mask);
sa.sa_flags = 0;
sigaction (w->signum, &sa, 0);
}
}
void
evsignal_stop (struct ev_signal *w)
{
if (!ev_is_active (w))
return;
wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
ev_stop ((W)w);
2007-10-31 00:24:16 +00:00
if (!signals [w->signum - 1].head)
signal (w->signum, SIG_DFL);
}
void evidle_start (struct ev_idle *w)
{
if (ev_is_active (w))
return;
ev_start ((W)w, ++idlecnt);
array_needsize (idles, idlemax, idlecnt, );
idles [idlecnt - 1] = w;
}
void evidle_stop (struct ev_idle *w)
{
idles [w->active - 1] = idles [--idlecnt];
ev_stop ((W)w);
}
void evcheck_start (struct ev_check *w)
{
if (ev_is_active (w))
return;
ev_start ((W)w, ++checkcnt);
array_needsize (checks, checkmax, checkcnt, );
checks [checkcnt - 1] = w;
}
void evcheck_stop (struct ev_check *w)
{
checks [w->active - 1] = checks [--checkcnt];
ev_stop ((W)w);
}
/*****************************************************************************/
2007-10-31 10:50:05 +00:00
#if 0
2007-10-31 09:23:17 +00:00
struct ev_io wio;
static void
sin_cb (struct ev_io *w, int revents)
{
fprintf (stderr, "sin %d, revents %d\n", w->fd, revents);
}
static void
ocb (struct ev_timer *w, int revents)
{
2007-10-30 23:10:33 +00:00
//fprintf (stderr, "timer %f,%f (%x) (%f) d%p\n", w->at, w->repeat, revents, w->at - ev_time (), w->data);
evtimer_stop (w);
evtimer_start (w);
}
2007-10-31 00:24:16 +00:00
static void
scb (struct ev_signal *w, int revents)
{
fprintf (stderr, "signal %x,%d\n", revents, w->signum);
2007-10-31 09:23:17 +00:00
evio_stop (&wio);
evio_start (&wio);
2007-10-31 00:24:16 +00:00
}
static void
gcb (struct ev_signal *w, int revents)
{
fprintf (stderr, "generic %x\n", revents);
2007-10-31 09:23:17 +00:00
}
int main (void)
{
ev_init (0);
2007-10-31 09:23:17 +00:00
evio_init (&wio, sin_cb, 0, EV_READ);
evio_start (&wio);
2007-10-30 23:10:33 +00:00
struct ev_timer t[10000];
#if 0
2007-10-30 21:42:12 +00:00
int i;
2007-10-30 23:10:33 +00:00
for (i = 0; i < 10000; ++i)
2007-10-30 21:42:12 +00:00
{
struct ev_timer *w = t + i;
evw_init (w, ocb, i);
2007-10-31 09:23:17 +00:00
evtimer_init_abs (w, ocb, drand48 (), 0.99775533);
2007-10-30 21:42:12 +00:00
evtimer_start (w);
if (drand48 () < 0.5)
evtimer_stop (w);
}
2007-10-30 23:10:33 +00:00
#endif
struct ev_timer t1;
2007-10-31 09:23:17 +00:00
evtimer_init (&t1, ocb, 5, 10);
2007-10-30 23:10:33 +00:00
evtimer_start (&t1);
2007-10-31 00:24:16 +00:00
struct ev_signal sig;
2007-10-31 09:23:17 +00:00
evsignal_init (&sig, scb, SIGQUIT);
2007-10-31 00:24:16 +00:00
evsignal_start (&sig);
struct ev_check cw;
2007-10-31 09:23:17 +00:00
evcheck_init (&cw, gcb);
evcheck_start (&cw);
struct ev_idle iw;
2007-10-31 09:23:17 +00:00
evidle_init (&iw, gcb);
evidle_start (&iw);
ev_loop (0);
return 0;
}
#endif