1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2010 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) 2006-2010 Index Data ApS
24 * See LICENSE file for details.
28 * Based on revision YAZ' server/eventl.c 1.29.
51 #include <yaz/yconfig.h>
53 #include <yaz/comstack.h>
54 #include <yaz/xmalloc.h>
56 #include <yaz/statserv.h>
58 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags)
62 if (!(new_iochan = (IOCHAN)xmalloc(sizeof(*new_iochan))))
64 new_iochan->destroyed = 0;
66 new_iochan->flags = flags;
68 new_iochan->socketfun = NULL;
69 new_iochan->maskfun = NULL;
70 new_iochan->force_event = 0;
71 new_iochan->last_event = new_iochan->max_idle = 0;
72 new_iochan->next = NULL;
76 int event_loop(IOCHAN *iochans)
78 do /* loop as long as there are active associations to process */
81 fd_set in, out, except;
83 static struct timeval nullto = {0, 0}, to;
84 struct timeval *timeout;
89 timeout = &to; /* hang on select */
93 for (p = *iochans; p; p = p->next)
96 p->flags = (*p->maskfun)(p);
98 p->fd = (*p->socketfun)(p);
102 timeout = &nullto; /* polling select */
103 if (p->flags & EVENT_INPUT)
105 if (p->flags & EVENT_OUTPUT)
107 if (p->flags & EVENT_EXCEPT)
108 FD_SET(p->fd, &except);
111 if (p->max_idle && p->max_idle < to.tv_sec)
112 to.tv_sec = p->max_idle;
114 res = select(max + 1, &in, &out, &except, timeout);
121 yaz_log(YLOG_ERRNO|YLOG_WARN, "select");
125 for (p = *iochans; p; p = p->next)
127 int force_event = p->force_event;
128 time_t now = time(0);
131 if (!p->destroyed && ((p->max_idle && now - p->last_event >
132 p->max_idle) || force_event == EVENT_TIMEOUT))
135 (*p->fun)(p, EVENT_TIMEOUT);
139 if (!p->destroyed && (FD_ISSET(p->fd, &in) ||
140 force_event == EVENT_INPUT))
143 yaz_log(YLOG_DEBUG, "Eventl input event");
144 (*p->fun)(p, EVENT_INPUT);
146 if (!p->destroyed && (FD_ISSET(p->fd, &out) ||
147 force_event == EVENT_OUTPUT))
150 yaz_log(YLOG_DEBUG, "Eventl output event");
151 (*p->fun)(p, EVENT_OUTPUT);
153 if (!p->destroyed && (FD_ISSET(p->fd, &except) ||
154 force_event == EVENT_EXCEPT))
157 (*p->fun)(p, EVENT_EXCEPT);
160 for (p = *iochans; p; p = nextp)
168 /* Now reset the pointers */
173 for (pr = *iochans; pr; pr = pr->next)
176 assert(pr); /* grave error if it weren't there */
192 * c-file-style: "Stroustrup"
193 * indent-tabs-mode: nil
195 * vim: shiftwidth=4 tabstop=8 expandtab