zoomtst3: print event name
[yaz-moved-to-github.git] / src / eventl.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2010 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         for (p = *iochans; p; p = p->next)
92             no_fds++;
93         fds = (struct yaz_poll_fd *) xmalloc(no_fds * sizeof(*fds));
94         for (i = 0, p = *iochans; p; p = p->next, i++)
95         {
96             time_t w, ftime;
97             enum yaz_poll_mask input_mask = yaz_poll_none;
98             yaz_log(log_level, "fd=%d flags=%d force_event=%d",
99                     p->fd, p->flags, p->force_event);
100             if (p->force_event)
101                 tv_sec = 0;          /* polling select */
102             if (p->flags & EVENT_INPUT)
103                 yaz_poll_add(input_mask, yaz_poll_read);
104             if (p->flags & EVENT_OUTPUT)
105                 yaz_poll_add(input_mask, yaz_poll_write);
106             if (p->flags & EVENT_EXCEPT)
107                 yaz_poll_add(input_mask, yaz_poll_except);
108             if (p->max_idle && p->last_event)
109             {
110                 ftime = p->last_event + p->max_idle;
111                 if (ftime < now)
112                     w = p->max_idle;
113                 else
114                     w = ftime - now;
115                 /* tv_sec will be minimum wait.. */
116                 if (w < tv_sec)
117                     tv_sec = (int) w; /* can hold it because w < tv_sec */
118             }
119             fds[i].fd = p->fd;
120             fds[i].input_mask = input_mask;
121         }
122         res = yaz_poll(fds, no_fds, tv_sec, 0);
123         if (res < 0)
124         {
125             if (yaz_errno() == EINTR)
126             {
127                 xfree(fds);
128                 continue;
129             }
130             else
131             {
132                 yaz_log(YLOG_WARN|YLOG_ERRNO, "yaz_poll");
133                 xfree(fds);
134                 continue;
135             }
136         }
137         now = time(0);
138         for (i = 0, p = *iochans; p; p = p->next, i++)
139         {
140             int force_event = p->force_event;
141             enum yaz_poll_mask output_mask = fds[i].output_mask;
142
143             p->force_event = 0;
144             if (!p->destroyed && ((output_mask & yaz_poll_read) ||
145                                   force_event == EVENT_INPUT))
146             {
147                 p->last_event = now;
148                 (*p->fun)(p, EVENT_INPUT);
149             }
150             if (!p->destroyed && ((output_mask & yaz_poll_write) ||
151                                   force_event == EVENT_OUTPUT))
152             {
153                 p->last_event = now;
154                 (*p->fun)(p, EVENT_OUTPUT);
155             }
156             if (!p->destroyed && ((output_mask & yaz_poll_except) ||
157                 force_event == EVENT_EXCEPT))
158             {
159                 p->last_event = now;
160                 (*p->fun)(p, EVENT_EXCEPT);
161             }
162             if (!p->destroyed && ((p->max_idle && now - p->last_event >=
163                 p->max_idle) || force_event == EVENT_TIMEOUT))
164             {
165                 p->last_event = now;
166                 (*p->fun)(p, EVENT_TIMEOUT);
167             }
168         }
169         xfree(fds);
170         for (p = *iochans; p; p = nextp)
171         {
172             nextp = p->next;
173
174             if (p->destroyed)
175             {
176                 IOCHAN tmp = p, pr;
177
178                 /* We need to inform the threadlist that this channel has been destroyed */
179                 statserv_remove(p);
180
181                 /* Now reset the pointers */
182                 if (p == *iochans)
183                     *iochans = p->next;
184                 else
185                 {
186                     for (pr = *iochans; pr; pr = pr->next)
187                         if (pr->next == p)
188                             break;
189                     assert(pr); /* grave error if it weren't there */
190                     pr->next = p->next;
191                 }
192                 if (nextp == p)
193                     nextp = p->next;
194                 xfree(tmp);
195             }
196         }
197     }
198     while (*iochans);
199     return 0;
200 }
201 /*
202  * Local variables:
203  * c-basic-offset: 4
204  * c-file-style: "Stroustrup"
205  * indent-tabs-mode: nil
206  * End:
207  * vim: shiftwidth=4 tabstop=8 expandtab
208  */
209