ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/iom.C
(Generate patch)

Comparing gvpe/src/iom.C (file contents):
Revision 1.17 by pcg, Thu Jan 29 23:17:39 2004 UTC vs.
Revision 1.31 by pcg, Mon Mar 7 01:31:26 2005 UTC

1/* 1/*
2 iom.C -- generic I/O multiplexor 2 iom.C -- generic I/O multiplexer
3 Copyright (C) 2003, 2004 Marc Lehmann <pcg@goof.com> 3 Copyright (C) 2003, 2004 Marc Lehmann <gvpe@schmorp.de>
4 4
5 This file is part of GVPE.
6
5 This program is free software; you can redistribute it and/or modify 7 GVPE is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 8 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 9 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 10 (at your option) any later version.
9 11
10 This program is distributed in the hope that it will be useful, 12 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 15 GNU General Public License for more details.
14 16
15 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 18 along with gvpe; if not, write to the Free Software
17 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/ 20*/
21
22#include "iom.h"
19 23
20#include <cstdio> 24#include <cstdio>
21#include <cstdlib> 25#include <cstdlib>
22#include <cerrno> 26#include <cerrno>
23 27
24#include <sys/time.h> 28#include <sys/time.h>
25 29
30#include <assert.h>
31
26#if 1 // older unices need these includes for select(2) 32#if 1 // older unices need these includes for select (2)
27# include <unistd.h> 33# include <unistd.h>
28# include <sys/types.h> 34# include <sys/types.h>
35# include <time.h>
36#endif
37
38// for IOM_SIG
39#if IOM_SIG
40# include <csignal>
41# include <fcntl.h>
29#endif 42#endif
30 43
31// if the BSDs would at least be marginally POSIX-compatible.. *sigh* 44// if the BSDs would at least be marginally POSIX-compatible.. *sigh*
32// until that happens, sys/select.h must come last 45// until that happens, sys/select.h must come last
33#include <sys/select.h> 46#include <sys/select.h>
34 47
35#include "iom.h" 48#define TIMEVAL timeval
49#define TV_FRAC tv_usec
50#define TV_MULT 1000000L
36 51
37// TSTAMP_MAX must still fit into a positive struct timeval 52#if IOM_IO
38#define TSTAMP_MAX (double)(1UL<<31) 53static io_manager_vec<io_watcher> iow;
54#endif
55#if IOM_CHECK
56static io_manager_vec<check_watcher> cw;
57#endif
58#if IOM_TIME
59static io_manager_vec<time_watcher> tw;
60#endif
61#if IOM_IDLE
62static io_manager_vec<idle_watcher> iw;
63#endif
64#if IOM_SIG
65static int sigpipe[2]; // signal signalling pipe
66static sigset_t sigs;
67struct sig_vec : io_manager_vec<sig_watcher> {
68 int pending;
69 sig_vec ()
70 : pending (false)
71 { }
72};
73static vector<sig_vec *> sw;
74#endif
39 75
40// this is a dummy time watcher to ensure that the first 76// this is a dummy time watcher to ensure that the first
41// time watcher is _always_ valid, this gets rid of a lot 77// time watcher is _always_ valid, this gets rid of a lot
42// of null-pointer-checks 78// of null-pointer-checks
43// (must come _before_ iom is being defined) 79// (must come _before_ iom is being defined)
44static struct tw0 : time_watcher { 80static struct tw0 : time_watcher
45 void cb (time_watcher &w)
46 { 81 {
82 void cb (time_watcher &w)
83 {
47 // should never get called 84 // should never get called
48 // reached end-of-time, or tstamp has a bogus definition, 85 // reached end-of-time, or tstamp has a bogus definition,
49 // or compiler initilization order broken, or somethine else :) 86 // or compiler initialisation order broken, or something else :)
50 abort (); 87 abort ();
88 }
89
90 tw0 ()
91 : time_watcher (this, &tw0::cb)
92 { }
93 } tw0;
94
95tstamp NOW;
96
97#if IOM_TIME
98tstamp io_manager::now ()
99{
100 struct timeval tv;
101
102 gettimeofday (&tv, 0);
103 return (tstamp)tv.tv_sec + (tstamp)tv.tv_usec / 1000000.;
104}
105
106void io_manager::set_now ()
107{
108 NOW = now ();
109}
110#endif
111
112static bool iom_valid;
113
114// used for initialisation only
115static struct init {
116 init ()
117 {
118#if IOM_SIG
119 sigemptyset (&sigs);
120
121 if (pipe (sigpipe))
122 {
123 perror ("io_manager: unable to create signal pipe, aborting.");
124 abort ();
125 }
126
127 fcntl (sigpipe[0], F_SETFL, O_NONBLOCK); fcntl (sigpipe[0], F_SETFD, FD_CLOEXEC);
128 fcntl (sigpipe[1], F_SETFL, O_NONBLOCK); fcntl (sigpipe[1], F_SETFD, FD_CLOEXEC);
129#endif
130
131 iom_valid = true;
132
133#if IOM_TIME
134 io_manager::set_now ();
135
136 tw0.start (TSTAMP_MAX);
137#endif
51 } 138 }
52 139
53 tw0() 140 static void required ();
54 : time_watcher (this, &tw0::cb) 141} init;
142
143void
144init::required ()
145{
146 if (!iom_valid)
147 {
148 write (2, "io_manager: early registration attempt, aborting.\n",
149 sizeof ("io_manager: early registration attempt, aborting.\n") - 1);
150 abort ();
55 { } 151 }
56} tw0; 152}
57
58tstamp NOW;
59static bool iom_valid;
60io_manager iom;
61 153
62template<class watcher> 154template<class watcher>
63void io_manager::reg (watcher *w, io_manager_vec<watcher> &queue) 155void io_manager::reg (watcher &w, io_manager_vec<watcher> &queue)
64{ 156{
65 if (!iom_valid) 157 init::required ();
66 abort ();
67 158
68 if (!w->active) 159 if (!w.active)
69 { 160 {
70#if IOM_CHECK
71 queue.activity = true;
72#endif
73 queue.push_back (w); 161 queue.push_back (&w);
74 w->active = queue.size (); 162 w.active = queue.size ();
75 } 163 }
76} 164}
77 165
78template<class watcher> 166template<class watcher>
79void io_manager::unreg (watcher *w, io_manager_vec<watcher> &queue) 167void io_manager::unreg (watcher &w, io_manager_vec<watcher> &queue)
80{ 168{
81 if (!iom_valid) 169 if (!iom_valid)
82 return; 170 return;
83 171
84 if (w->active) 172 if (w.active)
85 { 173 {
86 queue [w->active - 1] = 0; 174 queue [w.active - 1] = 0;
87 w->active = 0; 175 w.active = 0;
88 } 176 }
89} 177}
90 178
91#if IOM_TIME 179#if IOM_TIME
92void time_watcher::trigger () 180void time_watcher::trigger ()
93{ 181{
94 call (*this); 182 call (*this);
95 183 io_manager::reg (*this);
96 iom.reg (this);
97} 184}
98 185
99void io_manager::reg (time_watcher *w) { reg (w, tw); } 186void io_manager::reg (time_watcher &w) { io_manager::reg (w, tw); }
100void io_manager::unreg (time_watcher *w) { unreg (w, tw); } 187void io_manager::unreg (time_watcher &w) { io_manager::unreg (w, tw); }
101#endif 188#endif
102 189
103#if IOM_IO 190#if IOM_IO
104void io_manager::reg (io_watcher *w) { reg (w, iow); } 191void io_manager::reg (io_watcher &w) { io_manager::reg (w, iow); }
105void io_manager::unreg (io_watcher *w) { unreg (w, iow); } 192void io_manager::unreg (io_watcher &w) { io_manager::unreg (w, iow); }
106#endif 193#endif
107 194
108#if IOM_CHECK 195#if IOM_CHECK
109void io_manager::reg (check_watcher *w) { reg (w, cw); } 196void io_manager::reg (check_watcher &w) { io_manager::reg (w, cw); }
110void io_manager::unreg (check_watcher *w) { unreg (w, cw); } 197void io_manager::unreg (check_watcher &w) { io_manager::unreg (w, cw); }
111#endif 198#endif
112 199
113#if IOM_IDLE 200#if IOM_IDLE
114void io_manager::reg (idle_watcher *w) { reg (w, iw); } 201void io_manager::reg (idle_watcher &w) { io_manager::reg (w, iw); }
115void io_manager::unreg (idle_watcher *w) { unreg (w, iw); } 202void io_manager::unreg (idle_watcher &w) { io_manager::unreg (w, iw); }
116#endif 203#endif
117 204
118#if IOM_TIME 205#if IOM_SIG
119inline void set_now (void) 206static void
207sighandler (int signum)
120{ 208{
121 struct timeval tv; 209 sw [signum - 1]->pending = true;
122 210
123 gettimeofday (&tv, 0); 211 // we use a pipe for signal notifications, as most current
124 212 // OSes (Linux...) do not implement pselect correctly. ugh.
125 NOW = (tstamp)tv.tv_sec + (tstamp)tv.tv_usec / 1000000; 213 char ch = signum; // actual content not used
126#endif 214 write (sigpipe[1], &ch, 1);
127} 215}
216
217void io_manager::reg (sig_watcher &w)
218{
219 assert (0 < w.signum);
220
221 sw.reserve (w.signum);
222
223 while (sw.size () < w.signum) // pathetic
224 sw.push_back (0);
225
226 sig_vec *&sv = sw[w.signum - 1];
227
228 if (!sv)
229 {
230 sv = new sig_vec;
231
232 sigaddset (&sigs, w.signum);
233 sigprocmask (SIG_BLOCK, &sigs, NULL);
234
235 struct sigaction sa;
236 sa.sa_handler = sighandler;
237 sigfillset (&sa.sa_mask);
238 sa.sa_flags = SA_RESTART;
239
240 if (sigaction (w.signum, &sa, 0))
241 {
242 perror ("io_manager: error while installing signal handler, ignoring.");
243 abort ();
244 }
245
246 }
247
248 io_manager::reg (w, *sv);
249}
250
251void io_manager::unreg (sig_watcher &w)
252{
253 if (!w.active)
254 return;
255
256 assert (0 < w.signum && w.signum <= sw.size ());
257
258 io_manager::unreg (w, *sw[w.signum - 1]);
259}
260
261void sig_watcher::start (int signum)
262{
263 stop ();
264 this->signum = signum;
265 io_manager::reg (*this);
266}
267#endif
128 268
129void io_manager::loop () 269void io_manager::loop ()
130{ 270{
271 init::required ();
272
131#if IOM_TIME 273#if IOM_TIME
132 set_now (); 274 set_now ();
133#endif 275#endif
134 276
135 for (;;) 277 for (;;)
136 { 278 {
137 struct timeval *to = 0;
138 struct timeval tval;
139 279
140#if IOM_IDLE 280#if IOM_TIME
141 if (iw.size ()) 281 // call pending time watchers
142 { 282 {
143 tval.tv_sec = 0; 283 bool activity;
144 tval.tv_usec = 0; 284
145 to = &tval;
146 } 285 do
147 else
148#endif
149 {
150#if IOM_TIME
151 time_watcher *next;
152
153 for (;;)
154 { 286 {
155 next = tw[0]; // the first time-watcher must exist at ALL times 287 activity = false;
156 288
157 for (int i = tw.size (); i--; ) 289 for (int i = tw.size (); i--; )
158 if (!tw[i]) 290 if (!tw[i])
159 tw.erase_unordered (i); 291 tw.erase_unordered (i);
160 else if (tw[i]->at < next->at) 292 else if (tw[i]->at <= NOW)
161 next = tw[i];
162
163 if (next->at > NOW)
164 { 293 {
165 if (next != tw[0]) 294 time_watcher &w = *tw[i];
166 { 295
167 double diff = next->at - NOW;
168 tval.tv_sec = (int)diff;
169 tval.tv_usec = (int)((diff - tval.tv_sec) * 1000000);
170 to = &tval;
171 }
172 break; 296 unreg (w);
297 w.call (w);
298
299 activity = true;
173 } 300 }
174 else
175 {
176 unreg (next);
177 next->call (*next);
178 }
179 } 301 }
180#endif 302 while (activity);
181 } 303 }
304#endif
182 305
183#if IOM_CHECK 306#if IOM_CHECK
184 tw.activity = false; 307 // call all check watchers
185
186 for (int i = cw.size (); i--; ) 308 for (int i = cw.size (); i--; )
187 if (!cw[i]) 309 if (!cw[i])
188 cw.erase_unordered (i); 310 cw.erase_unordered (i);
189 else 311 else
190 cw[i]->call (*cw[i]); 312 cw[i]->call (*cw[i]);
313#endif
191 314
192 if (tw.activity) 315 struct TIMEVAL *to = 0;
316 struct TIMEVAL tval;
317
318#if IOM_IDLE
319 if (iw.size ())
193 { 320 {
194 tval.tv_sec = 0; 321 tval.tv_sec = 0;
195 tval.tv_usec = 0; 322 tval.TV_FRAC = 0;
196 to = &tval; 323 to = &tval;
197 } 324 }
325 else
198#endif 326#endif
199 327 {
200#if IOM_IO 328#if IOM_TIME
329 // find earliest active watcher
330 time_watcher *next = tw[0]; // the first time-watcher must exist at ALL times
331
332 for (io_manager_vec<time_watcher>::const_iterator i = tw.end (); i-- > tw.begin (); )
333 if (*i && (*i)->at < next->at)
334 next = *i;
335
336 if (next->at > NOW && next != tw[0])
337 {
338 double diff = next->at - NOW;
339 tval.tv_sec = (int)diff;
340 tval.TV_FRAC = (int) ((diff - tval.tv_sec) * TV_MULT);
341 to = &tval;
342 }
343 }
344#endif
345
346#if IOM_IO || IOM_SIG
201 fd_set rfd, wfd, efd; 347 fd_set rfd, wfd;
202 348
203 FD_ZERO (&rfd); 349 FD_ZERO (&rfd);
204 FD_ZERO (&wfd); 350 FD_ZERO (&wfd);
205 351
206 int fds = 0; 352 int fds = 0;
207 353
354# if IOM_IO
208 for (io_manager_vec<io_watcher>::iterator i = iow.end (); i-- > iow.begin (); ) 355 for (io_manager_vec<io_watcher>::const_iterator i = iow.end (); i-- > iow.begin (); )
209 if (*i) 356 if (*i)
210 { 357 {
211 if ((*i)->events & EVENT_READ ) FD_SET ((*i)->fd, &rfd); 358 if ((*i)->events & EVENT_READ ) FD_SET ((*i)->fd, &rfd);
212 if ((*i)->events & EVENT_WRITE) FD_SET ((*i)->fd, &wfd); 359 if ((*i)->events & EVENT_WRITE) FD_SET ((*i)->fd, &wfd);
213 360
214 if ((*i)->fd >= fds) fds = (*i)->fd + 1; 361 if ((*i)->fd >= fds) fds = (*i)->fd + 1;
215 } 362 }
363# endif
216 364
217 if (!to && !fds) //TODO: also check idle_watchers and check_watchers 365 if (!to && !fds) //TODO: also check idle_watchers and check_watchers?
218 break; // no events 366 break; // no events
219 367
368# if IOM_SIG
369 FD_SET (sigpipe[0], &rfd);
370 if (sigpipe[0] >= fds) fds = sigpipe[0] + 1;
371# endif
372
373# if IOM_SIG
374 // there is no race, as we use a pipe for signals, so select
375 // will return if a signal is caught.
376 sigprocmask (SIG_UNBLOCK, &sigs, NULL);
377# endif
220 fds = select (fds, &rfd, &wfd, &efd, to); 378 fds = select (fds, &rfd, &wfd, NULL, to);
379# if IOM_SIG
380 sigprocmask (SIG_BLOCK, &sigs, NULL);
381# endif
382
221# if IOM_TIME 383# if IOM_TIME
384 {
385 // update time, try to compensate for gross non-monotonic time changes
386 tstamp diff = NOW;
222 set_now (); 387 set_now ();
388 diff = NOW - diff;
389
390 if (diff < 0)
391 for (io_manager_vec<time_watcher>::const_iterator i = tw.end (); i-- > tw.begin (); )
392 if (*i)
393 (*i)->at += diff;
394 }
223# endif 395# endif
224 396
225 if (fds > 0) 397 if (fds > 0)
226 for (int i = iow.size (); i--; ) 398 {
227 if (!iow[i]) 399# if IOM_SIG
228 iow.erase_unordered (i); 400 if (FD_ISSET (sigpipe[0], &rfd))
229 else
230 { 401 {
231 short revents = iow[i]->events; 402 char ch;
232 403
233 if (!FD_ISSET (iow[i]->fd, &rfd)) revents &= ~EVENT_READ; 404 while (read (sigpipe[0], &ch, 1) > 0)
234 if (!FD_ISSET (iow[i]->fd, &wfd)) revents &= ~EVENT_WRITE; 405 ;
235 406
236 if (revents) 407 for (vector<sig_vec *>::iterator svp = sw.end (); svp-- > sw.begin (); )
237 iow[i]->call (*iow[i], revents); 408 if (*svp && (*svp)->pending)
409 {
410 sig_vec &sv = **svp;
411 for (int i = sv.size (); i--; )
412 if (!sv[i])
413 sv.erase_unordered (i);
414 else
415 sv[i]->call (*sv[i]);
416
417 sv.pending = false;
418 }
238 } 419 }
420# endif
421
422# if IOM_IO
423 for (int i = iow.size (); i--; )
424 if (!iow[i])
425 iow.erase_unordered (i);
426 else
427 {
428 io_watcher &w = *iow[i];
429 short revents = w.events;
430
431 if (!FD_ISSET (w.fd, &rfd)) revents &= ~EVENT_READ;
432 if (!FD_ISSET (w.fd, &wfd)) revents &= ~EVENT_WRITE;
433
434 if (revents)
435 w.call (w, revents);
436 }
437#endif
438 }
239 else if (fds < 0 && errno != EINTR) 439 else if (fds < 0 && errno != EINTR)
240 { 440 {
241 perror ("Error while waiting for I/O or time event"); 441 perror ("io_manager: fatal error while waiting for I/O or time event, aborting.");
242 abort (); 442 abort ();
243 } 443 }
244#if IOM_IDLE 444#if IOM_IDLE
245 else 445 else
246 for (int i = iw.size (); i--; ) 446 for (int i = iw.size (); i--; )
260 break; 460 break;
261#endif 461#endif
262 } 462 }
263} 463}
264 464
265io_manager::io_manager ()
266{
267 iom_valid = true;
268
269#if IOM_TIME
270 set_now ();
271
272 tw0.start (TSTAMP_MAX);
273#endif
274}
275
276io_manager::~io_manager ()
277{
278 iom_valid = false;
279}
280

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines