ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/iom.C
Revision: 1.10
Committed: Fri Apr 4 05:26:45 2003 UTC (21 years, 1 month ago) by pcg
Content type: text/plain
Branch: MAIN
Changes since 1.9: +35 -22 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 iom.C -- I/O multiplexor
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19 #include "config.h"
20
21 #include <sys/time.h>
22
23 #include <algorithm>
24 #include <functional>
25
26 #include "slog.h"
27 #include "iom.h"
28
29 tstamp NOW;
30 bool iom_valid;
31 io_manager iom;
32
33 inline bool earliest_first (const time_watcher *a, const time_watcher *b)
34 {
35 return a->at > b->at;
36 }
37
38 void time_watcher::set (tstamp when)
39 {
40 at = when;
41
42 if (registered)
43 iom.reschedule_time_watchers ();
44 else
45 iom.reg (this);
46 }
47
48 void time_watcher::trigger ()
49 {
50 call (*this);
51
52 if (registered)
53 iom.reschedule_time_watchers ();
54 else
55 iom.reg (this);
56 }
57
58 void time_watcher::start ()
59 {
60 if (!registered)
61 iom.reg (this);
62 }
63
64 time_watcher::~time_watcher ()
65 {
66 if (iom_valid)
67 iom.unreg (this);
68 }
69
70 io_watcher::~io_watcher ()
71 {
72 if (iom_valid)
73 iom.unreg (this);
74 }
75
76 void io_manager::reg (io_watcher *w)
77 {
78 pollfd pfd;
79
80 pfs.push_back (pfd);
81 iow.push_back (w);
82
83 w->p = &(*(pfs.end () - 1));
84 }
85
86 void io_manager::unreg (io_watcher *w)
87 {
88 if (w->p)
89 {
90 unsigned int sz = iow.size ();
91 unsigned int i = find (iow.begin (), iow.end (), w) - iow.begin ();
92
93 assert (i != sz);
94
95 if (sz == 1)
96 {
97 pfs.clear ();
98 iow.clear ();
99 }
100 else if (i == sz - 1)
101 {
102 iow.pop_back ();
103 pfs.pop_back ();
104 }
105 else
106 {
107 iow[i] = iow[sz - 1]; iow.pop_back ();
108 pfs[i] = pfs[sz - 1]; pfs.pop_back ();
109 }
110
111 w->p = 0;
112 }
113 }
114
115 void io_manager::reschedule_time_watchers ()
116 {
117 make_heap (tw.begin (), tw.end (), earliest_first);
118 }
119
120 void io_manager::reg (time_watcher *w)
121 {
122 w->registered = true;
123
124 tw.push_back (w);
125 push_heap (tw.begin (), tw.end (), earliest_first);
126 }
127
128 void io_manager::unreg (time_watcher *w)
129 {
130 if (w->registered)
131 {
132 unsigned int sz = tw.size ();
133 unsigned int i = find (tw.begin (), tw.end (), w) - tw.begin ();
134
135 assert (i != sz);
136
137 if (i != sz - 1)
138 tw[i] = tw[sz - 1];
139
140 tw.pop_back ();
141 reschedule_time_watchers ();
142
143 w->registered = false;
144 }
145 }
146
147 inline void set_now (void)
148 {
149 struct timeval tv;
150
151 gettimeofday (&tv, 0);
152
153 NOW = (tstamp)tv.tv_sec + (tstamp)tv.tv_usec / 1000000;
154 }
155
156 void io_manager::loop ()
157 {
158 set_now ();
159
160 for (;;)
161 {
162 while (tw[0]->at <= NOW)
163 {
164 // remove the first watcher
165 time_watcher *w = tw[0];
166
167 pop_heap (tw.begin (), tw.end (), earliest_first);
168 tw.pop_back ();
169
170 w->registered = false;
171
172 // call it
173 w->call (*w);
174
175 // re-add it if necessary
176 if (w->at >= 0 && !w->registered)
177 reg (w);
178 }
179
180 int timeout = (int) ((tw[0]->at - NOW) * 1000);
181
182 int fds = poll (&pfs[0], pfs.size (), timeout);
183
184 set_now ();
185
186 vector<io_watcher *>::iterator w;
187 vector<pollfd>::iterator p;
188
189 for (w = iow.begin (), p = pfs.begin ();
190 fds > 0 && w < iow.end ();
191 ++w, ++p)
192 if (p->revents)
193 {
194 --fds;
195 (*w)->call (**w, p->revents);
196 }
197 }
198 }
199
200 void io_manager::idle_cb (time_watcher &w)
201 {
202 w.at = NOW + 86400; // wake up every day, for no good reason
203 }
204
205 io_manager::io_manager ()
206 {
207 iom_valid = true;
208
209 set_now ();
210 idle = new time_watcher (this, &io_manager::idle_cb);
211 idle->start (0);
212 }
213
214 io_manager::~io_manager ()
215 {
216 iom_valid = false;
217 }
218