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

Comparing rxvt-unicode/src/iom.C (file contents):
Revision 1.25 by root, Wed Dec 15 02:53:49 2004 UTC vs.
Revision 1.34 by root, Thu Jan 19 11:56:00 2006 UTC

1/* 1/*
2 iom.C -- generic I/O multiplexer 2 iom.C -- generic I/O multiplexer
3 Copyright (C) 2003, 2004 Marc Lehmann <pcg@goof.com> 3 Copyright (C) 2003-2006 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. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18*/ 20*/
19 21
20#include "iom.h" 22#include "iom.h"
21 23
22#include <cstdio> 24#include <cstdio>
23#include <cstdlib> 25#include <cstdlib>
24#include <cerrno> 26#include <cerrno>
27#include <cassert>
25 28
29#include <sys/types.h>
26#include <sys/time.h> 30#include <sys/time.h>
27
28#include <assert.h>
29 31
30#if 1 // older unices need these includes for select (2) 32#if 1 // older unices need these includes for select (2)
31# include <unistd.h> 33# include <unistd.h>
32# include <sys/types.h>
33# include <time.h> 34# include <time.h>
34#endif 35#endif
35 36
36// for IOM_SIG 37#if IOM_CHILD
38# include <sys/wait.h>
39#endif
40
37#if IOM_SIG 41#if IOM_SIG
38# include <signal.h> 42# include <csignal>
39# include <fcntl.h> 43# include <fcntl.h>
40#endif 44#endif
41 45
42// if the BSDs would at least be marginally POSIX-compatible.. *sigh* 46// if the BSDs would at least be marginally POSIX-compatible.. *sigh*
43// until that happens, sys/select.h must come last 47// until that happens, sys/select.h must come last
44#include <sys/select.h> 48#include <sys/select.h>
45
46// TSTAMP_MAX must still fit into a positive struct timeval
47#define TSTAMP_MAX (double)(1UL<<31)
48 49
49#define TIMEVAL timeval 50#define TIMEVAL timeval
50#define TV_FRAC tv_usec 51#define TV_FRAC tv_usec
51#define TV_MULT 1000000L 52#define TV_MULT 1000000L
52 53
71 : pending (false) 72 : pending (false)
72 { } 73 { }
73}; 74};
74static vector<sig_vec *> sw; 75static vector<sig_vec *> sw;
75#endif 76#endif
77#if IOM_CHILD
78static io_manager_vec<child_watcher> pw;
79#endif
76 80
77// this is a dummy time watcher to ensure that the first 81// this is a dummy time watcher to ensure that the first
78// time watcher is _always_ valid, this gets rid of a lot 82// time watcher is _always_ valid, this gets rid of a lot
79// of null-pointer-checks 83// of null-pointer-checks
80// (must come _before_ iom is being defined) 84// (must come _before_ iom is being defined)
81static struct tw0 : time_watcher 85static struct tw0 : time_watcher
86{
87 void cb (time_watcher &w)
82 { 88 {
83 void cb (time_watcher &w)
84 {
85 // should never get called 89 // should never get called
86 // reached end-of-time, or tstamp has a bogus definition, 90 // reached end-of-time, or tstamp has a bogus definition,
87 // or compiler initialisation order broken, or something else :) 91 // or compiler initialisation order broken, or something else :)
88 abort (); 92 abort ();
89 } 93 }
90 94
91 tw0 () 95 tw0 ()
92 : time_watcher (this, &tw0::cb) 96 : time_watcher (this, &tw0::cb)
93 { } 97 { }
94 } tw0; 98} tw0;
95 99
96tstamp NOW; 100tstamp NOW;
101
102#if IOM_CHILD
103// sig_watcher for child signal(s)
104static struct sw0 : sig_watcher
105{
106 void cb (sig_watcher &w)
107 {
108 // SIGCHLD, call corresponding watchera
109 pid_t pid;
110 int status;
111
112 while ((pid = waitpid (-1, &status, WNOHANG)) > 0)
113 for (int i = pw.size (); i--; )
114 {
115 child_watcher *w = pw[i];
116
117 if (!w)
118 pw.erase_unordered (i);
119 else if (w->pid == pid)
120 {
121 w->stop ();
122 w->call (*w, status);
123 }
124 }
125
126 }
127
128 sw0 ()
129 : sig_watcher (this, &sw0::cb)
130 { }
131} sw0;
132#endif
97 133
98#if IOM_TIME 134#if IOM_TIME
99tstamp io_manager::now () 135tstamp io_manager::now ()
100{ 136{
101 struct timeval tv; 137 struct timeval tv;
114 150
115// used for initialisation only 151// used for initialisation only
116static struct init { 152static struct init {
117 init () 153 init ()
118 { 154 {
155 iom_valid = true;
156
119#if IOM_SIG 157#if IOM_SIG
120 sigemptyset (&sigs); 158 sigemptyset (&sigs);
121 159
122 if (pipe (sigpipe)) 160 if (pipe (sigpipe))
123 { 161 {
127 165
128 fcntl (sigpipe[0], F_SETFL, O_NONBLOCK); fcntl (sigpipe[0], F_SETFD, FD_CLOEXEC); 166 fcntl (sigpipe[0], F_SETFL, O_NONBLOCK); fcntl (sigpipe[0], F_SETFD, FD_CLOEXEC);
129 fcntl (sigpipe[1], F_SETFL, O_NONBLOCK); fcntl (sigpipe[1], F_SETFD, FD_CLOEXEC); 167 fcntl (sigpipe[1], F_SETFL, O_NONBLOCK); fcntl (sigpipe[1], F_SETFD, FD_CLOEXEC);
130#endif 168#endif
131 169
132 iom_valid = true; 170#if IOM_CHILD
171 sw0.start (SIGCHLD);
172#endif
133 173
134#if IOM_TIME 174#if IOM_TIME
135 io_manager::set_now (); 175 io_manager::set_now ();
136 176
137 tw0.start (TSTAMP_MAX); 177 tw0.start (TSTAMP_MAX);
138#endif 178#endif
179 }
180
181 ~init ()
182 {
183 iom_valid = false;
139 } 184 }
140 185
141 static void required (); 186 static void required ();
142} init; 187} init;
143 188
215 write (sigpipe[1], &ch, 1); 260 write (sigpipe[1], &ch, 1);
216} 261}
217 262
218void io_manager::reg (sig_watcher &w) 263void io_manager::reg (sig_watcher &w)
219{ 264{
265 init::required ();
266
220 assert (0 < w.signum); 267 assert (0 < w.signum);
221 268
222 sw.reserve (w.signum); 269 sw.reserve (w.signum);
223 270
224 while (sw.size () < w.signum) // pathetic 271 while (sw.size () < w.signum) // pathetic
249 io_manager::reg (w, *sv); 296 io_manager::reg (w, *sv);
250} 297}
251 298
252void io_manager::unreg (sig_watcher &w) 299void io_manager::unreg (sig_watcher &w)
253{ 300{
254 if (!w.active) 301 if (!w.active || !iom_valid)
255 return; 302 return;
256 303
257 assert (0 < w.signum && w.signum <= sw.size ()); 304 assert (0 < w.signum && w.signum <= sw.size ());
258 305
259 io_manager::unreg (w, *sw[w.signum - 1]); 306 io_manager::unreg (w, *sw[w.signum - 1]);
263{ 310{
264 stop (); 311 stop ();
265 this->signum = signum; 312 this->signum = signum;
266 io_manager::reg (*this); 313 io_manager::reg (*this);
267} 314}
315#endif
316
317#if IOM_CHILD
318void io_manager::reg (child_watcher &w) { io_manager::reg (w, pw); }
319void io_manager::unreg (child_watcher &w) { io_manager::unreg (w, pw); }
268#endif 320#endif
269 321
270void io_manager::loop () 322void io_manager::loop ()
271{ 323{
272 init::required (); 324 init::required ();
380# if IOM_SIG 432# if IOM_SIG
381 sigprocmask (SIG_BLOCK, &sigs, NULL); 433 sigprocmask (SIG_BLOCK, &sigs, NULL);
382# endif 434# endif
383 435
384# if IOM_TIME 436# if IOM_TIME
437 {
438 // update time, try to compensate for gross non-monotonic time changes
439 tstamp diff = NOW;
385 set_now (); 440 set_now ();
441 diff = NOW - diff;
442
443 if (diff < 0)
444 for (io_manager_vec<time_watcher>::const_iterator i = tw.end (); i-- > tw.begin (); )
445 if (*i)
446 (*i)->at += diff;
447 }
386# endif 448# endif
387 449
388 if (fds > 0) 450 if (fds > 0)
389 { 451 {
390# if IOM_SIG 452# if IOM_SIG
414 for (int i = iow.size (); i--; ) 476 for (int i = iow.size (); i--; )
415 if (!iow[i]) 477 if (!iow[i])
416 iow.erase_unordered (i); 478 iow.erase_unordered (i);
417 else 479 else
418 { 480 {
481 io_watcher &w = *iow[i];
419 short revents = iow[i]->events; 482 short revents = w.events;
420 483
421 if (!FD_ISSET (iow[i]->fd, &rfd)) revents &= ~EVENT_READ; 484 if (!FD_ISSET (w.fd, &rfd)) revents &= ~EVENT_READ;
422 if (!FD_ISSET (iow[i]->fd, &wfd)) revents &= ~EVENT_WRITE; 485 if (!FD_ISSET (w.fd, &wfd)) revents &= ~EVENT_WRITE;
423 486
424 if (revents) 487 if (revents)
425 iow[i]->call (*iow[i], revents); 488 w.call (w, revents);
426 } 489 }
427#endif 490#endif
428 } 491 }
429 else if (fds < 0 && errno != EINTR) 492 else if (fds < 0 && errno != EINTR)
430 { 493 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines