Remove maskfun/socketfun
[pazpar2-moved-to-github.git] / src / eventl.c
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2010 Index Data
3
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
7 version.
8
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
12 for more details.
13
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
17
18 */
19
20 /*
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.
25  */
26
27 /*
28  * Based on revision YAZ' server/eventl.c 1.29.
29  */
30
31 #if HAVE_CONFIG_H
32 #include <config.h>
33 #endif
34
35 #include <math.h>
36 #include <stdio.h>
37 #include <assert.h>
38
39 #ifdef WIN32
40 #include <winsock.h>
41 #else
42 #include <unistd.h>
43 #endif
44 #if HAVE_SYS_TIME_H
45 #include <sys/time.h>
46 #endif
47
48 #include <stdlib.h>
49 #include <errno.h>
50 #include <string.h>
51
52 #include <yaz/yconfig.h>
53 #include <yaz/log.h>
54 #include <yaz/comstack.h>
55 #include <yaz/xmalloc.h>
56 #include "eventl.h"
57 #include "sel_thread.h"
58
59 struct iochan_man_s {
60     IOCHAN channel_list;
61     sel_thread_t sel_thread;
62     int sel_fd;
63     int no_threads;
64     int log_level;
65 };
66
67 iochan_man_t iochan_man_create(int no_threads)
68 {
69     iochan_man_t man = xmalloc(sizeof(*man));
70     man->channel_list = 0;
71     man->sel_thread = 0; /* can't create sel_thread yet because we may fork */
72     man->sel_fd = -1;
73     man->no_threads = no_threads;
74     man->log_level = yaz_log_module_level("iochan");
75
76     return man;
77 }
78
79 void iochan_man_destroy(iochan_man_t *mp)
80 {
81     if (*mp)
82     {
83         IOCHAN c;
84         if ((*mp)->sel_thread)
85             sel_thread_destroy((*mp)->sel_thread);
86         
87         c = (*mp)->channel_list;
88         while (c)
89         {
90             IOCHAN c_next = c->next;
91             xfree(c->name);
92             xfree(c);
93             c = c_next;
94         }
95         xfree(*mp);
96         *mp = 0;
97     }
98 }
99
100 void iochan_add(iochan_man_t man, IOCHAN chan)
101 {
102     chan->man = man;
103     chan->next = man->channel_list;
104     man->channel_list = chan;
105 }
106
107 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags,
108                      const char *name)
109 {
110     IOCHAN new_iochan;
111
112     if (!(new_iochan = (IOCHAN)xmalloc(sizeof(*new_iochan))))
113         return 0;
114     new_iochan->destroyed = 0;
115     new_iochan->fd = fd;
116     new_iochan->flags = flags;
117     new_iochan->fun = cb;
118     new_iochan->last_event = new_iochan->max_idle = 0;
119     new_iochan->next = NULL;
120     new_iochan->man = 0;
121     new_iochan->thread_users = 0;
122     new_iochan->name = name ? xstrdup(name) : 0;
123     return new_iochan;
124 }
125
126 static void work_handler(void *work_data)
127 {
128     IOCHAN p = work_data;
129
130     yaz_log(p->man->log_level, "eventl: work begin chan=%p name=%s event=%d",
131             p, p->name ? p->name : "", p->this_event);
132     
133     if (!p->destroyed && (p->this_event & EVENT_TIMEOUT))
134         (*p->fun)(p, EVENT_TIMEOUT);
135     if (!p->destroyed && (p->this_event & EVENT_INPUT))
136         (*p->fun)(p, EVENT_INPUT);
137     if (!p->destroyed && (p->this_event & EVENT_OUTPUT))
138         (*p->fun)(p, EVENT_OUTPUT);
139     if (!p->destroyed && (p->this_event & EVENT_EXCEPT))
140         (*p->fun)(p, EVENT_EXCEPT);
141
142     yaz_log(p->man->log_level, "eventl: work end chan=%p name=%s event=%d",
143             p, p->name ? p->name : "", p->this_event);
144 }
145
146 static void run_fun(iochan_man_t man, IOCHAN p)
147 {
148     if (p->this_event)
149     {
150         if (man->sel_thread)
151         {
152             yaz_log(man->log_level, "eventl: work add chan=%p name=%s event=%d",
153                     p, p->name ? p->name : "", p->this_event);
154             p->thread_users++;
155             sel_thread_add(man->sel_thread, p);
156         }
157         else
158             work_handler(p);
159     }
160 }
161
162 static int event_loop(iochan_man_t man, IOCHAN *iochans)
163 {
164     do /* loop as long as there are active associations to process */
165     {
166         IOCHAN p, *nextp;
167         fd_set in, out, except;
168         int res, max;
169         static struct timeval to;
170         struct timeval *timeout;
171
172         FD_ZERO(&in);
173         FD_ZERO(&out);
174         FD_ZERO(&except);
175         timeout = &to; /* hang on select */
176         to.tv_sec = 300;
177         to.tv_usec = 0;
178         max = 0;
179         for (p = *iochans; p; p = p->next)
180         {
181             if (p->thread_users > 0)
182                 continue;
183             if (p->max_idle && p->max_idle < to.tv_sec)
184                 to.tv_sec = p->max_idle;
185             if (p->fd < 0)
186                 continue;
187             if (p->flags & EVENT_INPUT)
188                 FD_SET(p->fd, &in);
189             if (p->flags & EVENT_OUTPUT)
190                 FD_SET(p->fd, &out);
191             if (p->flags & EVENT_EXCEPT)
192                 FD_SET(p->fd, &except);
193             if (p->fd > max)
194                 max = p->fd;
195         }
196         if (man->sel_fd != -1)
197         {
198             if (man->sel_fd > max)
199                 max = man->sel_fd;
200             FD_SET(man->sel_fd, &in);
201         }
202         yaz_log(man->log_level, "select begin nofds=%d", max);
203         res = select(max + 1, &in, &out, &except, timeout);
204         yaz_log(man->log_level, "select returned res=%d", res);
205         if (res < 0)
206         {
207             if (errno == EINTR)
208                 continue;
209             else
210             {
211                 yaz_log(YLOG_ERRNO|YLOG_WARN, "select");
212                 return 0;
213             }
214         }
215         if (man->sel_fd != -1)
216         {
217             if (FD_ISSET(man->sel_fd, &in))
218             {
219                 IOCHAN chan;
220
221                 yaz_log(man->log_level, "eventl: sel input on sel_fd=%d",
222                         man->sel_fd);
223                 while ((chan = sel_thread_result(man->sel_thread)))
224                 {
225                     yaz_log(man->log_level, "eventl: got thread result chan=%p name=%s",
226                             chan, chan->name ? chan->name : "");
227                     chan->thread_users--;
228                 }
229             }
230         }
231         if (man->log_level)
232         {
233             int no = 0;
234             for (p = *iochans; p; p = p->next)
235                 no++;
236             yaz_log(man->log_level, "%d channels", no);
237         }
238         for (p = *iochans; p; p = p->next)
239         {
240             time_t now = time(0);
241             
242             if (p->destroyed)
243             {
244                 yaz_log(man->log_level, "eventl: skip destroyed chan=%p name=%s", p, p->name ? p->name : "");
245                 continue;
246             }
247             if (p->thread_users > 0)
248             {
249                 yaz_log(man->log_level, "eventl: skip chan=%p name=%s users=%d", p, p->name ? p->name : "", p->thread_users);
250                 continue;
251             }
252             p->this_event = 0;
253
254             if (p->max_idle && now - p->last_event > p->max_idle)
255             {
256                 p->last_event = now;
257                 p->this_event |= EVENT_TIMEOUT;
258             }
259             if (p->fd >= 0)
260             {
261                 if (FD_ISSET(p->fd, &in))
262                 {
263                     p->last_event = now;
264                     p->this_event |= EVENT_INPUT;
265                 }
266                 if (FD_ISSET(p->fd, &out))
267                 {
268                     p->last_event = now;
269                     p->this_event |= EVENT_OUTPUT;
270                 }
271                 if (FD_ISSET(p->fd, &except))
272                 {
273                     p->last_event = now;
274                     p->this_event |= EVENT_EXCEPT;
275                 }
276             }
277             run_fun(man, p);
278         }
279         for (nextp = iochans; *nextp; )
280         {
281             IOCHAN p = *nextp;
282             if (p->destroyed && p->thread_users == 0)
283             {
284                 *nextp = p->next;
285                 xfree(p->name);
286                 xfree(p);
287             }
288             else
289                 nextp = &p->next;
290         }
291     }
292     while (*iochans);
293     return 0;
294 }
295
296 void iochan_man_events(iochan_man_t man)
297 {
298     if (man->no_threads > 0 && !man->sel_thread)
299     {
300         man->sel_thread = sel_thread_create(
301             work_handler, 0 /*work_destroy */, &man->sel_fd, man->no_threads);
302         yaz_log(man->log_level, "iochan_man_events. Using %d threads",
303                 man->no_threads);
304     }
305     event_loop(man, &man->channel_list);
306 }
307
308 void pazpar2_sleep(double d)
309 {
310 #ifdef WIN32
311     Sleep( (DWORD) (d * 1000));
312 #else
313     struct timeval tv;
314     tv.tv_sec = floor(d);
315     tv.tv_usec = (d - floor(d)) * 1000000;
316     select(0, 0, 0, 0, &tv);
317 #endif
318 }
319
320 /*
321  * Local variables:
322  * c-basic-offset: 4
323  * c-file-style: "Stroustrup"
324  * indent-tabs-mode: nil
325  * End:
326  * vim: shiftwidth=4 tabstop=8 expandtab
327  */
328