X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=server%2Feventl.c;h=668eeb72586c8c0958eb44165b460b4236597483;hb=b0555501e434d0f71f97ea17f282db2e795ff950;hp=541bba4b5bde5ee2e12021bbdfb73b639bbc4c51;hpb=c620a713f1418315efcd4e6fab225e036775d365;p=yaz-moved-to-github.git diff --git a/server/eventl.c b/server/eventl.c index 541bba4..668eeb7 100644 --- a/server/eventl.c +++ b/server/eventl.c @@ -3,7 +3,7 @@ * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * - * $Id: eventl.c,v 1.35 2003-02-12 15:06:43 adam Exp $ + * $Id: eventl.c,v 1.39 2003-02-21 12:08:59 adam Exp $ */ #include @@ -57,8 +57,8 @@ int event_loop(IOCHAN *iochans) IOCHAN p, nextp; fd_set in, out, except; int res, max; - static struct timeval nullto = {0, 0}, to; - struct timeval *timeout; + static struct timeval to; + time_t now = time(0); if (statserv_must_terminate()) { @@ -68,16 +68,16 @@ int event_loop(IOCHAN *iochans) FD_ZERO(&in); FD_ZERO(&out); FD_ZERO(&except); - timeout = &to; /* hang on select */ - to.tv_sec = 5*60; + to.tv_sec = 3600; to.tv_usec = 0; max = 0; for (p = *iochans; p; p = p->next) { - yaz_log(LOG_LOG, "fd=%d flags=%d force_event=%d", + time_t w, ftime; + yaz_log(LOG_DEBUG, "fd=%d flags=%d force_event=%d", p->fd, p->flags, p->force_event); if (p->force_event) - timeout = &nullto; /* polling select */ + to.tv_sec = 0; /* polling select */ if (p->flags & EVENT_INPUT) FD_SET(p->fd, &in); if (p->flags & EVENT_OUTPUT) @@ -86,10 +86,20 @@ int event_loop(IOCHAN *iochans) FD_SET(p->fd, &except); if (p->fd > max) max = p->fd; + if (p->max_idle && p->last_event) + { + ftime = p->last_event + p->max_idle; + if (ftime < now) + w = p->max_idle; + else + w = ftime - now; + if (w < to.tv_sec) + to.tv_sec = w; + } } - yaz_log(LOG_LOG, "select start"); - res = YAZ_EV_SELECT(max + 1, &in, &out, &except, timeout); - yaz_log(LOG_LOG, "select end"); + yaz_log(LOG_DEBUG, "select start %ld", (long) to.tv_sec); + res = YAZ_EV_SELECT(max + 1, &in, &out, &except, &to); + yaz_log(LOG_DEBUG, "select end"); if (res < 0) { if (yaz_errno() == EINTR) @@ -114,10 +124,10 @@ int event_loop(IOCHAN *iochans) *iochans); } } + now = time(0); for (p = *iochans; p; p = p->next) { int force_event = p->force_event; - time_t now = time(0); p->force_event = 0; if (!p->destroyed && (FD_ISSET(p->fd, &in) || @@ -138,7 +148,7 @@ int event_loop(IOCHAN *iochans) p->last_event = now; (*p->fun)(p, EVENT_EXCEPT); } - if (!p->destroyed && ((p->max_idle && now - p->last_event > + if (!p->destroyed && ((p->max_idle && now - p->last_event >= p->max_idle) || force_event == EVENT_TIMEOUT)) { p->last_event = now;