Version 3.0.49. Update news.
[yaz-moved-to-github.git] / src / eventl.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2009 Index Data
3  * See the file LICENSE for details.
4  */
5
6 /**
7  * \file eventl.c
8  * \brief Implements event loop handling for GFS.
9  *
10  * This source implements the main event loop for the Generic Frontend
11  * Server.
12  */
13
14 #include <assert.h>
15 #include <errno.h>
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <string.h>
19
20 #if HAVE_SYS_TYPES_H
21 #include <sys/types.h>
22 #endif
23 #if HAVE_SYS_TIME_H
24 #include <sys/time.h>
25 #endif
26
27 #include <yaz/poll.h>
28
29 #include <yaz/log.h>
30 #include <yaz/comstack.h>
31 #include <yaz/xmalloc.h>
32 #include <yaz/errno.h>
33 #include "eventl.h"
34 #include "session.h"
35 #include <yaz/statserv.h>
36
37 static int log_level=0;
38 static int log_level_initialized=0;
39
40 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags, int chan_id)
41 {
42     IOCHAN new_iochan;
43
44     if (!log_level_initialized)
45     {
46         log_level=yaz_log_module_level("eventl");
47         log_level_initialized=1;
48     }
49
50     if (!(new_iochan = (IOCHAN)xmalloc(sizeof(*new_iochan))))
51         return 0;
52     new_iochan->destroyed = 0;
53     new_iochan->fd = fd;
54     new_iochan->flags = flags;
55     new_iochan->fun = cb;
56     new_iochan->force_event = 0;
57     new_iochan->last_event = new_iochan->max_idle = 0;
58     new_iochan->next = NULL;
59     new_iochan->chan_id = chan_id;
60     return new_iochan;
61 }
62
63
64 int iochan_is_alive(IOCHAN chan)
65 {
66     struct yaz_poll_fd fds;
67     int res;
68
69     fds.fd = chan->fd;
70     fds.input_mask = yaz_poll_read;
71     res = yaz_poll(&fds, 1, 0, 0);
72     if (res == 0)
73         return 1;
74     if (!ir_read(chan, EVENT_INPUT))
75         return 0;
76     return 1;
77 }
78
79 int iochan_event_loop(IOCHAN *iochans)
80 {
81     do /* loop as long as there are active associations to process */
82     {
83         IOCHAN p, nextp;
84         int i;
85         int tv_sec = 3600;
86         int no_fds = 0;
87         struct yaz_poll_fd *fds = 0;
88         int res;
89         time_t now = time(0);
90
91         if (statserv_must_terminate())
92         {
93             for (p = *iochans; p; p = p->next)
94                 p->force_event = EVENT_TIMEOUT;
95         }
96         for (p = *iochans; p; p = p->next)
97             no_fds++;
98         fds = (struct yaz_poll_fd *) xmalloc(no_fds * sizeof(*fds));
99         for (i = 0, p = *iochans; p; p = p->next, i++)
100         {
101             time_t w, ftime;
102             enum yaz_poll_mask input_mask = yaz_poll_none;
103             yaz_log(log_level, "fd=%d flags=%d force_event=%d",
104                     p->fd, p->flags, p->force_event);
105             if (p->force_event)
106                 tv_sec = 0;          /* polling select */
107             if (p->flags & EVENT_INPUT)
108                 yaz_poll_add(input_mask, yaz_poll_read);
109             if (p->flags & EVENT_OUTPUT)
110                 yaz_poll_add(input_mask, yaz_poll_write);
111             if (p->flags & EVENT_EXCEPT)
112                 yaz_poll_add(input_mask, yaz_poll_except);
113             if (p->max_idle && p->last_event)
114             {
115                 ftime = p->last_event + p->max_idle;
116                 if (ftime < now)
117                     w = p->max_idle;
118                 else
119                     w = ftime - now;
120                 if (w < tv_sec)
121                     tv_sec = w;
122             }
123             fds[i].fd = p->fd;
124             fds[i].input_mask = input_mask;
125         }
126         res = yaz_poll(fds, no_fds, tv_sec, 0);
127         if (res < 0)
128         {
129             if (yaz_errno() == EINTR)
130             {
131                 if (statserv_must_terminate())
132                 {
133                     for (p = *iochans; p; p = p->next)
134                         p->force_event = EVENT_TIMEOUT;
135                 }
136                 xfree(fds);
137                 continue;
138             }
139             else
140             {
141                 yaz_log(YLOG_WARN|YLOG_ERRNO, "yaz_poll");
142                 xfree(fds);
143                 continue;
144             }
145         }
146         now = time(0);
147         for (i = 0, p = *iochans; p; p = p->next, i++)
148         {
149             int force_event = p->force_event;
150             enum yaz_poll_mask output_mask = fds[i].output_mask;
151
152             p->force_event = 0;
153             if (!p->destroyed && ((output_mask & yaz_poll_read) ||
154                                   force_event == EVENT_INPUT))
155             {
156                 p->last_event = now;
157                 (*p->fun)(p, EVENT_INPUT);
158             }
159             if (!p->destroyed && ((output_mask & yaz_poll_write) ||
160                                   force_event == EVENT_OUTPUT))
161             {
162                 p->last_event = now;
163                 (*p->fun)(p, EVENT_OUTPUT);
164             }
165             if (!p->destroyed && ((output_mask & yaz_poll_except) ||
166                 force_event == EVENT_EXCEPT))
167             {
168                 p->last_event = now;
169                 (*p->fun)(p, EVENT_EXCEPT);
170             }
171             if (!p->destroyed && ((p->max_idle && now - p->last_event >=
172                 p->max_idle) || force_event == EVENT_TIMEOUT))
173             {
174                 p->last_event = now;
175                 (*p->fun)(p, EVENT_TIMEOUT);
176             }
177         }
178         xfree(fds);
179         for (p = *iochans; p; p = nextp)
180         {
181             nextp = p->next;
182
183             if (p->destroyed)
184             {
185                 IOCHAN tmp = p, pr;
186
187                 /* We need to inform the threadlist that this channel has been destroyed */
188                 statserv_remove(p);
189
190                 /* Now reset the pointers */
191                 if (p == *iochans)
192                     *iochans = p->next;
193                 else
194                 {
195                     for (pr = *iochans; pr; pr = pr->next)
196                         if (pr->next == p)
197                             break;
198                     assert(pr); /* grave error if it weren't there */
199                     pr->next = p->next;
200                 }
201                 if (nextp == p)
202                     nextp = p->next;
203                 xfree(tmp);
204             }
205         }
206     }
207     while (*iochans);
208     return 0;
209 }
210 /*
211  * Local variables:
212  * c-basic-offset: 4
213  * c-file-style: "Stroustrup"
214  * indent-tabs-mode: nil
215  * End:
216  * vim: shiftwidth=4 tabstop=8 expandtab
217  */
218