aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/FbTk/Timer.cc32
1 files changed, 18 insertions, 14 deletions
diff --git a/src/FbTk/Timer.cc b/src/FbTk/Timer.cc
index f63ea38..dd736dd 100644
--- a/src/FbTk/Timer.cc
+++ b/src/FbTk/Timer.cc
@@ -52,6 +52,7 @@
52#endif 52#endif
53 53
54#include <cstdio> 54#include <cstdio>
55#include <vector>
55#include <set> 56#include <set>
56 57
57 58
@@ -195,32 +196,35 @@ void Timer::updateTimers(int fd) {
195 return; 196 return;
196 } 197 }
197 198
199 // stoping / restarting the timers modifies the list in an upredictable
200 // way. to avoid problems such as infinite loops we save the current
201 // (ordered) list of timers into a list and work on it.
202
203 ssize_t i;
204 const ssize_t ts = s_timerlist.size();
205 std::vector<FbTk::Timer*> timers;
206
207 timers.reserve(ts);
208 for (it = s_timerlist.begin(); it != s_timerlist.end(); ++it ) {
209 timers.push_back(*it);
210 }
211
198 now = FbTime::now(); 212 now = FbTime::now();
199 for (it = s_timerlist.begin(); it != s_timerlist.end(); ) { 213 for (i = 0; i < ts; ++i) {
214
215 FbTk::Timer* t = timers[i];
200 216
201 // t->fireTimeout() might add timers to the list
202 // this invalidates 'it'. thus we store the current timer
203 Timer* t = *it;
204 if (now < t->getEndTime()) { 217 if (now < t->getEndTime()) {
205 break; 218 break;
206 } 219 }
207 220
208 t->fireTimeout(); 221 t->fireTimeout();
209 222 t->stop();
210 // find the iterator to the timer again
211 // and continue working on the list
212 it = s_timerlist.find(t);
213 it++;
214 s_timerlist.erase(t);
215 223
216 if (! t->doOnce()) { // restart the current timer 224 if (! t->doOnce()) { // restart the current timer
217 t->m_timing = false;
218 t->start(); 225 t->start();
219 } else {
220 t->stop();
221 } 226 }
222 } 227 }
223
224} 228}
225 229
226 230