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.32 by root, Wed Jan 11 21:24:41 2006 UTC vs.
Revision 1.37 by root, Mon Feb 12 17:34:58 2007 UTC

1/* 1/*
2 iom.C -- generic I/O multiplexer 2 iom.C -- generic I/O multiplexer
3 Copyright (C) 2003, 2004 Marc Lehmann <gvpe@schmorp.de> 3 Copyright (C) 2003-2006 Marc Lehmann <gvpe@schmorp.de>
4 4
5 This file is part of GVPE. 5 This file is part of GVPE.
6 6
7 GVPE is free software; you can redistribute it and/or modify 7 GVPE is free software; you can redistribute it and/or modify
8 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
22#include "iom.h" 22#include "iom.h"
23 23
24#include <cstdio> 24#include <cstdio>
25#include <cstdlib> 25#include <cstdlib>
26#include <cerrno> 26#include <cerrno>
27#include <cassert>
27 28
29#include <sys/types.h>
28#include <sys/time.h> 30#include <sys/time.h>
29
30#include <assert.h>
31 31
32#if 1 // older unices need these includes for select (2) 32#if 1 // older unices need these includes for select (2)
33# include <unistd.h> 33# include <unistd.h>
34# include <sys/types.h>
35# include <time.h> 34# include <time.h>
36#endif 35#endif
37 36
38// for IOM_SIG 37#if IOM_CHILD
38# include <sys/wait.h>
39#endif
40
39#if IOM_SIG 41#if IOM_SIG
40# include <csignal> 42# include <csignal>
41# include <fcntl.h> 43# include <fcntl.h>
42#endif 44#endif
43 45
70 : pending (false) 72 : pending (false)
71 { } 73 { }
72}; 74};
73static vector<sig_vec *> sw; 75static vector<sig_vec *> sw;
74#endif 76#endif
77#if IOM_CHILD
78static io_manager_vec<child_watcher> pw;
79#endif
75 80
76// this is a dummy time watcher to ensure that the first 81// this is a dummy time watcher to ensure that the first
77// time watcher is _always_ valid, this gets rid of a lot 82// time watcher is _always_ valid, this gets rid of a lot
78// of null-pointer-checks 83// of null-pointer-checks
79// (must come _before_ iom is being defined) 84// (must come _before_ iom is being defined)
80static struct tw0 : time_watcher 85static struct tw0 : time_watcher
86{
87 void cb (time_watcher &w)
81 { 88 {
82 void cb (time_watcher &w)
83 {
84 // should never get called 89 // should never get called
85 // reached end-of-time, or tstamp has a bogus definition, 90 // reached end-of-time, or tstamp has a bogus definition,
86 // or compiler initialisation order broken, or something else :) 91 // or compiler initialisation order broken, or something else :)
87 abort (); 92 abort ();
88 } 93 }
89 94
90 tw0 () 95 tw0 ()
91 : time_watcher (this, &tw0::cb) 96 : time_watcher (this, &tw0::cb)
92 { } 97 { }
93 } tw0; 98} tw0;
94 99
95tstamp 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 io_manager::unreg (*w);
122 w->call (*w, status);
123 }
124 }
125 }
126
127 sw0 ()
128 : sig_watcher (this, &sw0::cb)
129 { }
130} sw0;
131#endif
96 132
97#if IOM_TIME 133#if IOM_TIME
98tstamp io_manager::now () 134tstamp io_manager::now ()
99{ 135{
100 struct timeval tv; 136 struct timeval tv;
113 149
114// used for initialisation only 150// used for initialisation only
115static struct init { 151static struct init {
116 init () 152 init ()
117 { 153 {
154#ifdef IOM_PREINIT
155 { IOM_PREINIT }
156#endif
157 iom_valid = true;
158
118#if IOM_SIG 159#if IOM_SIG
119 sigemptyset (&sigs); 160 sigemptyset (&sigs);
120 161
121 if (pipe (sigpipe)) 162 if (pipe (sigpipe))
122 { 163 {
126 167
127 fcntl (sigpipe[0], F_SETFL, O_NONBLOCK); fcntl (sigpipe[0], F_SETFD, FD_CLOEXEC); 168 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); 169 fcntl (sigpipe[1], F_SETFL, O_NONBLOCK); fcntl (sigpipe[1], F_SETFD, FD_CLOEXEC);
129#endif 170#endif
130 171
131 iom_valid = true; 172#if IOM_CHILD
173 sw0.start (SIGCHLD);
174#endif
132 175
133#if IOM_TIME 176#if IOM_TIME
134 io_manager::set_now (); 177 io_manager::set_now ();
135 178
136 tw0.start (TSTAMP_MAX); 179 tw0.start (TSTAMP_MAX);
180#endif
181
182#ifdef IOM_POSTINIT
183 { IOM_POSTINIT }
137#endif 184#endif
138 } 185 }
139 186
140 ~init () 187 ~init ()
141 { 188 {
269{ 316{
270 stop (); 317 stop ();
271 this->signum = signum; 318 this->signum = signum;
272 io_manager::reg (*this); 319 io_manager::reg (*this);
273} 320}
321#endif
322
323#if IOM_CHILD
324void io_manager::reg (child_watcher &w) { io_manager::reg (w, pw); }
325void io_manager::unreg (child_watcher &w) { io_manager::unreg (w, pw); }
274#endif 326#endif
275 327
276void io_manager::loop () 328void io_manager::loop ()
277{ 329{
278 init::required (); 330 init::required ();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines