2 * Copyright (c) 1995-1998, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.25 1998-01-29 13:30:23 adam
8 * Better event handle system for NT/Unix.
10 * Revision 1.24 1997/09/04 14:19:13 adam
13 * Revision 1.23 1997/09/01 08:52:59 adam
14 * New windows NT/95 port using MSV5.0. The test server 'ztest' was
15 * moved a separate directory. MSV5.0 project server.dsp created.
16 * As an option, the server can now operate as an NT service.
18 * Revision 1.22 1996/07/06 19:58:35 quinn
19 * System headerfiles gathered in yconfig
21 * Revision 1.21 1996/02/21 12:55:51 quinn
24 * Revision 1.20 1996/02/21 12:52:55 quinn
27 * Revision 1.19 1995/12/05 11:17:30 quinn
28 * Moved some paranthesises around. Sigh.
30 * Revision 1.18 1995/11/13 09:27:41 quinn
31 * Fiddling with the variant stuff.
33 * Revision 1.17 1995/11/07 12:37:44 quinn
34 * Added support for forcing TIMEOUT event.
36 * Revision 1.16 1995/11/01 13:54:56 quinn
39 * Revision 1.15 1995/09/15 14:44:15 quinn
40 * *** empty log message ***
42 * Revision 1.14 1995/08/29 14:44:50 quinn
45 * Revision 1.13 1995/08/29 11:17:56 quinn
46 * Added code to receive close
48 * Revision 1.12 1995/08/29 10:41:18 quinn
51 * Revision 1.11 1995/06/19 12:39:09 quinn
52 * Fixed bug in timeout code. Added BER dumper.
54 * Revision 1.10 1995/06/16 10:31:33 quinn
55 * Added session timeout.
57 * Revision 1.9 1995/06/05 10:53:31 quinn
58 * Added a better SCAN.
60 * Revision 1.8 1995/05/16 08:51:01 quinn
61 * License, documentation, and memory fixes
63 * Revision 1.7 1995/03/27 15:02:01 quinn
64 * Added some includes for better portability
66 * Revision 1.6 1995/03/27 08:34:21 quinn
67 * Added dynamic server functionality.
68 * Released bindings to session.c (is now redundant)
70 * Revision 1.5 1995/03/15 08:37:41 quinn
71 * Now we're pretty much set for nonblocking I/O.
73 * Revision 1.4 1995/03/14 16:59:48 quinn
76 * Revision 1.3 1995/03/14 11:30:14 quinn
79 * Revision 1.2 1995/03/14 10:27:59 quinn
80 * More work on demo server.
82 * Revision 1.1 1995/03/10 18:22:44 quinn
83 * The rudiments of an asynchronous server.
100 #include <comstack.h>
104 #include <statserv.h>
106 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags)
110 if (!(new_iochan = xmalloc(sizeof(*new_iochan))))
112 new_iochan->destroyed = 0;
114 new_iochan->flags = flags;
115 new_iochan->fun = cb;
116 new_iochan->force_event = 0;
117 new_iochan->last_event = new_iochan->max_idle = 0;
118 new_iochan->next = NULL;
122 int event_loop(IOCHAN *iochans)
124 do /* loop as long as there are active associations to process */
127 fd_set in, out, except;
129 static struct timeval nullto = {0, 0}, to;
130 struct timeval *timeout;
135 timeout = &to; /* hang on select */
139 for (p = *iochans; p; p = p->next)
142 timeout = &nullto; /* polling select */
143 if (p->flags & EVENT_INPUT)
145 if (p->flags & EVENT_OUTPUT)
147 if (p->flags & EVENT_EXCEPT)
148 FD_SET(p->fd, &except);
152 if ((res = select(max + 1, &in, &out, &except, timeout)) < 0)
158 /* Destroy the first member in the chain, and try again */
159 association *assoc = iochan_getdata(*iochans);
160 COMSTACK conn = assoc->client_link;
163 destroy_association(assoc);
164 iochan_destroy(*iochans);
165 logf(LOG_DEBUG, "error while selecting, destroying iochan %p",
169 for (p = *iochans; p; p = p->next)
171 int force_event = p->force_event;
172 time_t now = time(0);
175 if (!p->destroyed && (FD_ISSET(p->fd, &in) ||
176 force_event == EVENT_INPUT))
179 (*p->fun)(p, EVENT_INPUT);
181 if (!p->destroyed && (FD_ISSET(p->fd, &out) ||
182 force_event == EVENT_OUTPUT))
185 (*p->fun)(p, EVENT_OUTPUT);
187 if (!p->destroyed && (FD_ISSET(p->fd, &except) ||
188 force_event == EVENT_EXCEPT))
191 (*p->fun)(p, EVENT_EXCEPT);
193 if (!p->destroyed && ((p->max_idle && now - p->last_event >
194 p->max_idle) || force_event == EVENT_TIMEOUT))
197 (*p->fun)(p, EVENT_TIMEOUT);
200 for (p = *iochans; p; p = nextp)
208 /* We need to inform the threadlist that this channel has been destroyed */
211 /* Now reset the pointers */
216 for (pr = *iochans; pr; pr = pr->next)
219 assert(pr); /* grave error if it weren't there */