X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=server%2Feventl.c;h=668eeb72586c8c0958eb44165b460b4236597483;hb=adae7ab7df270a3187630876b8d4668038a42e88;hp=2ed53c6491ded373bc326eae0a194df53a44e8a5;hpb=adbeacef10c4a91ba652516dff43c16fb3258f36;p=yaz-moved-to-github.git diff --git a/server/eventl.c b/server/eventl.c index 2ed53c6..668eeb7 100644 --- a/server/eventl.c +++ b/server/eventl.c @@ -1,9 +1,9 @@ /* - * Copyright (c) 1995-2001, Index Data + * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * - * $Id: eventl.c,v 1.33 2002-11-26 13:15:42 adam Exp $ + * $Id: eventl.c,v 1.39 2003-02-21 12:08:59 adam Exp $ */ #include @@ -57,27 +57,27 @@ 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()) { - fprintf (stderr, "must terminate 1\n"); - for (p = *iochans; p; p = p->next) p->force_event = EVENT_TIMEOUT; } 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) { + 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,8 +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; + } } - res = YAZ_EV_SELECT(max + 1, &in, &out, &except, timeout); + 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) @@ -112,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) || @@ -136,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;