1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2008 Index Data
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 * Based on ParaZ - a simple tool for harvesting performance data for
22 * parallel operations using Z39.50.
23 * Copyright (c) 2000-2004 Index Data ApS
24 * See LICENSE file for details.
28 * Based on revision YAZ' server/eventl.c 1.29.
48 #include <yaz/yconfig.h>
50 #include <yaz/comstack.h>
51 #include <yaz/xmalloc.h>
53 #include <yaz/statserv.h>
55 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags)
59 if (!(new_iochan = (IOCHAN)xmalloc(sizeof(*new_iochan))))
61 new_iochan->destroyed = 0;
63 new_iochan->flags = flags;
65 new_iochan->force_event = 0;
66 new_iochan->last_event = new_iochan->max_idle = 0;
67 new_iochan->next = NULL;
71 int event_loop(IOCHAN *iochans)
73 do /* loop as long as there are active associations to process */
76 fd_set in, out, except;
78 static struct timeval nullto = {0, 0}, to;
79 struct timeval *timeout;
84 timeout = &to; /* hang on select */
88 for (p = *iochans; p; p = p->next)
93 timeout = &nullto; /* polling select */
94 if (p->flags & EVENT_INPUT)
96 if (p->flags & EVENT_OUTPUT)
98 if (p->flags & EVENT_EXCEPT)
99 FD_SET(p->fd, &except);
102 if (p->max_idle && p->max_idle < to.tv_sec)
103 to.tv_sec = p->max_idle;
105 if ((res = select(max + 1, &in, &out, &except, timeout)) < 0)
112 for (p = *iochans; p; p = p->next)
114 int force_event = p->force_event;
115 time_t now = time(0);
118 if (!p->destroyed && ((p->max_idle && now - p->last_event >
119 p->max_idle) || force_event == EVENT_TIMEOUT))
122 (*p->fun)(p, EVENT_TIMEOUT);
126 if (!p->destroyed && (FD_ISSET(p->fd, &in) ||
127 force_event == EVENT_INPUT))
130 (*p->fun)(p, EVENT_INPUT);
132 if (!p->destroyed && (FD_ISSET(p->fd, &out) ||
133 force_event == EVENT_OUTPUT))
136 (*p->fun)(p, EVENT_OUTPUT);
138 if (!p->destroyed && (FD_ISSET(p->fd, &except) ||
139 force_event == EVENT_EXCEPT))
142 (*p->fun)(p, EVENT_EXCEPT);
145 for (p = *iochans; p; p = nextp)
153 /* Now reset the pointers */
158 for (pr = *iochans; pr; pr = pr->next)
161 assert(pr); /* grave error if it weren't there */
177 * indent-tabs-mode: nil
179 * vim: shiftwidth=4 tabstop=8 expandtab