2 * Copyright (C) 1995-2005, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: eventl.c,v 1.9 2005-06-25 15:46:04 adam Exp $
10 * \brief Implements event loop handling for GFS.
12 * This source implements the main event loop for the Generic Frontend
13 * Server. It uses select(2).
23 #include <sys/types.h>
35 #include <sys/select.h>
38 #include <yaz/yconfig.h>
40 #include <yaz/comstack.h>
41 #include <yaz/xmalloc.h>
44 #include <yaz/statserv.h>
48 #define YAZ_EV_SELECT pth_select
52 #define YAZ_EV_SELECT select
55 static int log_level=0;
56 static int log_level_initialized=0;
58 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags, int chan_id)
62 if (!log_level_initialized)
64 log_level=yaz_log_module_level("eventl");
65 log_level_initialized=1;
68 if (!(new_iochan = (IOCHAN)xmalloc(sizeof(*new_iochan))))
70 new_iochan->destroyed = 0;
72 new_iochan->flags = flags;
74 new_iochan->force_event = 0;
75 new_iochan->last_event = new_iochan->max_idle = 0;
76 new_iochan->next = NULL;
77 new_iochan->chan_id = chan_id;
81 int event_loop(IOCHAN *iochans)
83 do /* loop as long as there are active associations to process */
86 fd_set in, out, except;
88 static struct timeval to;
91 if (statserv_must_terminate())
93 for (p = *iochans; p; p = p->next)
94 p->force_event = EVENT_TIMEOUT;
102 for (p = *iochans; p; p = p->next)
105 yaz_log(log_level, "fd=%d flags=%d force_event=%d",
106 p->fd, p->flags, p->force_event);
108 to.tv_sec = 0; /* polling select */
109 if (p->flags & EVENT_INPUT)
111 if (p->flags & EVENT_OUTPUT)
113 if (p->flags & EVENT_EXCEPT)
114 FD_SET(p->fd, &except);
117 if (p->max_idle && p->last_event)
119 ftime = p->last_event + p->max_idle;
128 yaz_log(log_level, "select start %ld", (long) to.tv_sec);
129 res = YAZ_EV_SELECT(max + 1, &in, &out, &except, &to);
130 yaz_log(log_level, "select end");
133 if (yaz_errno() == EINTR)
135 if (statserv_must_terminate())
137 for (p = *iochans; p; p = p->next)
138 p->force_event = EVENT_TIMEOUT;
144 /* Destroy the first member in the chain, and try again */
145 association *assoc = (association *)iochan_getdata(*iochans);
146 COMSTACK conn = assoc->client_link;
149 destroy_association(assoc);
150 iochan_destroy(*iochans);
151 yaz_log(log_level, "error select, destroying iochan %p",
156 for (p = *iochans; p; p = p->next)
158 int force_event = p->force_event;
161 if (!p->destroyed && (FD_ISSET(p->fd, &in) ||
162 force_event == EVENT_INPUT))
165 (*p->fun)(p, EVENT_INPUT);
167 if (!p->destroyed && (FD_ISSET(p->fd, &out) ||
168 force_event == EVENT_OUTPUT))
171 (*p->fun)(p, EVENT_OUTPUT);
173 if (!p->destroyed && (FD_ISSET(p->fd, &except) ||
174 force_event == EVENT_EXCEPT))
177 (*p->fun)(p, EVENT_EXCEPT);
179 if (!p->destroyed && ((p->max_idle && now - p->last_event >=
180 p->max_idle) || force_event == EVENT_TIMEOUT))
183 (*p->fun)(p, EVENT_TIMEOUT);
186 for (p = *iochans; p; p = nextp)
194 /* We need to inform the threadlist that this channel has been destroyed */
197 /* Now reset the pointers */
202 for (pr = *iochans; pr; pr = pr->next)
205 assert(pr); /* grave error if it weren't there */
220 * indent-tabs-mode: nil
222 * vim: shiftwidth=4 tabstop=8 expandtab