ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/iom.C
Revision: 1.16
Committed: Fri Apr 2 14:30:06 2004 UTC (20 years, 1 month ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_4, rel-3_3, rel-3_2, rel-2_8, rel-3_0, rel-2_7
Changes since 1.15: +65 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 iom.C -- generic I/O multiplexor
3 Copyright (C) 2003, 2004 Marc Lehmann <pcg@goof.com>
4
5 This program is free software; you can redistribute it and/or modify
6 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
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20 #include <cstdio>
21 #include <cstdlib>
22 #include <cerrno>
23
24 #include <sys/time.h>
25
26 #include <assert.h>
27
28 #if 1 // older unices need these includes for select (2)
29 # include <unistd.h>
30 # include <sys/types.h>
31 #endif
32
33 // if the BSDs would at least be marginally POSIX-compatible.. *sigh*
34 // until that happens, sys/select.h must come last
35 #include <sys/select.h>
36
37 // for IOM_SIG
38 #include <signal.h>
39
40 #include "iom.h"
41
42 // TSTAMP_MAX must still fit into a positive struct timeval
43 #define TSTAMP_MAX (double)(1UL<<31)
44
45 // this is a dummy time watcher to ensure that the first
46 // time watcher is _always_ valid, this gets rid of a lot
47 // of null-pointer-checks
48 // (must come _before_ iom is being defined)
49 static struct tw0 : time_watcher
50 {
51 void cb (time_watcher &w)
52 {
53 // should never get called
54 // reached end-of-time, or tstamp has a bogus definition,
55 // or compiler initilization order broken, or somethine else :)
56 abort ();
57 }
58
59 tw0 ()
60 : time_watcher (this, &tw0::cb)
61 { }
62 } tw0;
63
64 tstamp NOW;
65 static bool iom_valid;
66 io_manager iom;
67
68 template<class watcher>
69 void io_manager::reg (watcher *w, io_manager_vec<watcher> &queue)
70 {
71 if (!iom_valid)
72 abort ();
73
74 if (!w->active)
75 {
76 #if IOM_CHECK
77 queue.activity = true;
78 #endif
79 queue.push_back (w);
80 w->active = queue.size ();
81 }
82 }
83
84 template<class watcher>
85 void io_manager::unreg (watcher *w, io_manager_vec<watcher> &queue)
86 {
87 if (!iom_valid)
88 return;
89
90 if (w->active)
91 {
92 queue [w->active - 1] = 0;
93 w->active = 0;
94 }
95 }
96
97 #if IOM_TIME
98 void time_watcher::trigger ()
99 {
100 call (*this);
101
102 iom.reg (this);
103 }
104
105 void io_manager::reg (time_watcher *w) { reg (w, tw); }
106 void io_manager::unreg (time_watcher *w) { unreg (w, tw); }
107 #endif
108
109 #if IOM_IO
110 void io_manager::reg (io_watcher *w) { reg (w, iow); }
111 void io_manager::unreg (io_watcher *w) { unreg (w, iow); }
112 #endif
113
114 #if IOM_CHECK
115 void io_manager::reg (check_watcher *w) { reg (w, cw); }
116 void io_manager::unreg (check_watcher *w) { unreg (w, cw); }
117 #endif
118
119 #if IOM_IDLE
120 void io_manager::reg (idle_watcher *w) { reg (w, iw); }
121 void io_manager::unreg (idle_watcher *w) { unreg (w, iw); }
122 #endif
123
124 #if IOM_TIME
125 inline void set_now (void)
126 {
127 struct timeval tv;
128
129 gettimeofday (&tv, 0);
130
131 NOW = (tstamp)tv.tv_sec + (tstamp)tv.tv_usec / 1000000;
132 }
133 #endif
134
135 #if IOM_SIG
136 // race conditions galore
137
138 void io_manager::sighandler (int signum)
139 {
140 assert (0 < signum && signum <= iom.sw.size ());
141
142 sig_vec &sv = *iom.sw [signum - 1];
143
144 for (int i = sv.size (); i--; )
145 if (!sv[i])
146 sv.erase_unordered (i);
147 else
148 sv[i]->call (*sv[i]);
149 }
150
151 void io_manager::reg (sig_watcher *w)
152 {
153 assert (0 < w->signum);
154
155 sw.reserve (w->signum);
156
157 sig_vec *&sv = sw [w->signum - 1];
158
159 if (!sv)
160 {
161 sv = new sig_vec;
162
163 struct sigaction sa;
164 sa.sa_handler = io_manager::sighandler;
165 sigfillset (&sa.sa_mask);
166 sa.sa_flags = 0;
167
168 if (sigaction (w->signum, &sa, 0))
169 {
170 perror ("Error while installing signal handler");
171 abort ();
172 }
173 }
174
175 reg (w, *sv);
176 }
177
178 void io_manager::unreg (sig_watcher *w)
179 {
180 assert (0 < w->signum && w->signum <= sw.size ());
181
182 unreg (w, *sw [w->signum - 1]);
183 }
184
185 void sig_watcher::start (int signum)
186 {
187 stop ();
188 this->signum = signum;
189 iom.reg (this);
190 }
191 #endif
192
193 void io_manager::loop ()
194 {
195 #if IOM_TIME
196 set_now ();
197 #endif
198
199 for (;;)
200 {
201 struct timeval *to = 0;
202 struct timeval tval;
203
204 #if IOM_IDLE
205 if (iw.size ())
206 {
207 tval.tv_sec = 0;
208 tval.tv_usec = 0;
209 to = &tval;
210 }
211 else
212 #endif
213
214 {
215 #if IOM_TIME
216 time_watcher *next;
217
218 for (;;)
219 {
220 next = tw[0]; // the first time-watcher must exist at ALL times
221
222 for (int i = tw.size (); i--; )
223 if (!tw[i])
224 tw.erase_unordered (i);
225 else if (tw[i]->at < next->at)
226 next = tw[i];
227
228 if (next->at > NOW)
229 {
230 if (next != tw[0])
231 {
232 double diff = next->at - NOW;
233 tval.tv_sec = (int)diff;
234 tval.tv_usec = (int) ((diff - tval.tv_sec) * 1000000);
235 to = &tval;
236 }
237 break;
238 }
239 else
240 {
241 unreg (next);
242 next->call (*next);
243 }
244 }
245 #endif
246
247 }
248
249 #if IOM_CHECK
250 tw.activity = false;
251
252 for (int i = cw.size (); i--; )
253 if (!cw[i])
254 cw.erase_unordered (i);
255 else
256 cw[i]->call (*cw[i]);
257
258 if (tw.activity)
259 {
260 tval.tv_sec = 0;
261 tval.tv_usec = 0;
262 to = &tval;
263 }
264 #endif
265
266 #if IOM_IO
267 fd_set rfd, wfd;
268
269 FD_ZERO (&rfd);
270 FD_ZERO (&wfd);
271
272 int fds = 0;
273
274 for (io_manager_vec<io_watcher>::iterator i = iow.end (); i-- > iow.begin (); )
275 if (*i)
276 {
277 if ((*i)->events & EVENT_READ ) FD_SET ((*i)->fd, &rfd);
278 if ((*i)->events & EVENT_WRITE) FD_SET ((*i)->fd, &wfd);
279
280 if ((*i)->fd >= fds) fds = (*i)->fd + 1;
281 }
282
283 if (!to && !fds) //TODO: also check idle_watchers and check_watchers
284 break; // no events
285
286 fds = select (fds, &rfd, &wfd, NULL, to);
287 # if IOM_TIME
288 set_now ();
289 # endif
290
291 if (fds > 0)
292 for (int i = iow.size (); i--; )
293 if (!iow[i])
294 iow.erase_unordered (i);
295 else
296 {
297 short revents = iow[i]->events;
298
299 if (!FD_ISSET (iow[i]->fd, &rfd)) revents &= ~EVENT_READ;
300 if (!FD_ISSET (iow[i]->fd, &wfd)) revents &= ~EVENT_WRITE;
301
302 if (revents)
303 iow[i]->call (*iow[i], revents);
304 }
305 else if (fds < 0 && errno != EINTR)
306 {
307 perror ("Error while waiting for I/O or time event");
308 abort ();
309 }
310 #if IOM_IDLE
311 else
312 for (int i = iw.size (); i--; )
313 if (!iw[i])
314 iw.erase_unordered (i);
315 else
316 iw[i]->call (*iw[i]);
317 #endif
318
319 #elif IOM_TIME
320 if (!to)
321 break;
322
323 select (0, 0, 0, 0, &to);
324 set_now ();
325 #else
326 break;
327 #endif
328
329 }
330 }
331
332 io_manager::io_manager ()
333 {
334 iom_valid = true;
335
336 #if IOM_TIME
337 set_now ();
338
339 tw0.start (TSTAMP_MAX);
340 #endif
341 }
342
343 io_manager::~io_manager ()
344 {
345 iom_valid = false;
346 }
347