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 "sel_thread.h"
60 sel_thread_t sel_thread;
66 iochan_man_t iochan_man_create(int no_threads)
68 iochan_man_t man = xmalloc(sizeof(*man));
69 man->channel_list = 0;
70 man->sel_thread = 0; /* can't create sel_thread yet because we may fork */
72 man->no_threads = no_threads;
73 man->log_level = yaz_log_module_level("iochan");
78 void iochan_man_destroy(iochan_man_t *mp)
83 if ((*mp)->sel_thread)
84 sel_thread_destroy((*mp)->sel_thread);
86 c = (*mp)->channel_list;
89 IOCHAN c_next = c->next;
99 void iochan_add(iochan_man_t man, IOCHAN chan)
102 chan->next = man->channel_list;
103 man->channel_list = chan;
106 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags,
111 if (!(new_iochan = (IOCHAN)xmalloc(sizeof(*new_iochan))))
113 new_iochan->destroyed = 0;
115 new_iochan->flags = flags;
116 new_iochan->fun = cb;
117 new_iochan->socketfun = NULL;
118 new_iochan->maskfun = NULL;
119 new_iochan->last_event = new_iochan->max_idle = 0;
120 new_iochan->next = NULL;
122 new_iochan->thread_users = 0;
123 new_iochan->name = name ? xstrdup(name) : 0;
127 static void work_handler(void *work_data)
129 IOCHAN p = work_data;
131 yaz_log(p->man->log_level, "eventl: work begin chan=%p name=%s event=%d",
132 p, p->name ? p->name : "", p->this_event);
134 if (!p->destroyed && (p->this_event & EVENT_TIMEOUT))
135 (*p->fun)(p, EVENT_TIMEOUT);
136 if (!p->destroyed && (p->this_event & EVENT_INPUT))
137 (*p->fun)(p, EVENT_INPUT);
138 if (!p->destroyed && (p->this_event & EVENT_OUTPUT))
139 (*p->fun)(p, EVENT_OUTPUT);
140 if (!p->destroyed && (p->this_event & EVENT_EXCEPT))
141 (*p->fun)(p, EVENT_EXCEPT);
143 yaz_log(p->man->log_level, "eventl: work end chan=%p name=%s event=%d",
144 p, p->name ? p->name : "", p->this_event);
147 static void run_fun(iochan_man_t man, IOCHAN p)
153 yaz_log(man->log_level, "eventl: work add chan=%p name=%s event=%d",
154 p, p->name ? p->name : "", p->this_event);
156 sel_thread_add(man->sel_thread, p);
163 static int event_loop(iochan_man_t man, IOCHAN *iochans)
165 do /* loop as long as there are active associations to process */
168 fd_set in, out, except;
170 static struct timeval nullto = {0, 0}, to;
171 struct timeval *timeout;
176 timeout = &to; /* hang on select */
180 for (p = *iochans; p; p = p->next)
182 if (p->thread_users > 0)
185 p->flags = (*p->maskfun)(p);
187 p->fd = (*p->socketfun)(p);
188 if (p->max_idle && p->max_idle < to.tv_sec)
189 to.tv_sec = p->max_idle;
192 if (p->flags & EVENT_INPUT)
194 if (p->flags & EVENT_OUTPUT)
196 if (p->flags & EVENT_EXCEPT)
197 FD_SET(p->fd, &except);
201 if (man->sel_fd != -1)
203 if (man->sel_fd > max)
205 FD_SET(man->sel_fd, &in);
207 yaz_log(man->log_level, "select begin nofds=%d", max);
208 res = select(max + 1, &in, &out, &except, timeout);
209 yaz_log(man->log_level, "select returned res=%d", res);
216 yaz_log(YLOG_ERRNO|YLOG_WARN, "select");
220 if (man->sel_fd != -1)
222 if (FD_ISSET(man->sel_fd, &in))
226 yaz_log(man->log_level, "eventl: sel input on sel_fd=%d",
228 while ((chan = sel_thread_result(man->sel_thread)))
230 yaz_log(man->log_level, "eventl: got thread result chan=%p name=%s",
231 chan, chan->name ? chan->name : "");
232 chan->thread_users--;
239 for (p = *iochans; p; p = p->next)
241 yaz_log(man->log_level, "%d channels", no);
243 for (p = *iochans; p; p = p->next)
245 time_t now = time(0);
249 yaz_log(man->log_level, "eventl: skip destroyed chan=%p name=%s", p, p->name ? p->name : "");
252 if (p->thread_users > 0)
254 yaz_log(man->log_level, "eventl: skip chan=%p name=%s users=%d", p, p->name ? p->name : "", p->thread_users);
259 if (p->max_idle && now - p->last_event > p->max_idle)
262 p->this_event |= EVENT_TIMEOUT;
266 if (FD_ISSET(p->fd, &in))
269 p->this_event |= EVENT_INPUT;
271 if (FD_ISSET(p->fd, &out))
274 p->this_event |= EVENT_OUTPUT;
276 if (FD_ISSET(p->fd, &except))
279 p->this_event |= EVENT_EXCEPT;
284 for (nextp = iochans; *nextp; )
287 if (p->destroyed && p->thread_users == 0)
301 void iochan_man_events(iochan_man_t man)
303 if (man->no_threads > 0 && !man->sel_thread)
305 man->sel_thread = sel_thread_create(
306 work_handler, 0 /*work_destroy */, &man->sel_fd, man->no_threads);
307 yaz_log(man->log_level, "iochan_man_events. Using %d threads",
310 event_loop(man, &man->channel_list);
316 * c-file-style: "Stroustrup"
317 * indent-tabs-mode: nil
319 * vim: shiftwidth=4 tabstop=8 expandtab