]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1acd70f9 | 2 | // Name: mgl/timer.cpp |
32b8ec41 | 3 | // Purpose: wxTimer implementation |
1acd70f9 | 4 | // Author: Vaclav Slavik |
32b8ec41 | 5 | // Id: $Id$ |
6d89ddef | 6 | // Copyright: (c) Vaclav Slavik |
65571936 | 7 | // Licence: wxWindows licence |
32b8ec41 VZ |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 | 10 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
32b8ec41 VZ |
11 | #pragma implementation "timer.h" |
12 | #endif | |
13 | ||
a246f95e VS |
14 | // For compilers that support precompilation, includes "wx.h". |
15 | #include "wx/wxprec.h" | |
16 | ||
17 | #ifdef __BORLANDC__ | |
18 | #pragma hdrstop | |
19 | #endif | |
20 | ||
a0cb0ba5 | 21 | // ---------------------------------------------------------------------------- |
ca65c044 WS |
22 | // NB: when using generic wxTimer implementation in your port, you *must* call |
23 | // wxTimer::NotifyTimers() often enough. The ideal place for this | |
a0cb0ba5 VS |
24 | // is in wxEventLoop::Dispatch(). |
25 | // ---------------------------------------------------------------------------- | |
26 | ||
32b8ec41 VZ |
27 | #include "wx/timer.h" |
28 | ||
1acd70f9 VS |
29 | #if wxUSE_TIMER |
30 | ||
88f2a771 | 31 | #include "wx/log.h" |
0e4b9976 | 32 | #include "wx/module.h" |
1acd70f9 | 33 | |
a0cb0ba5 VS |
34 | // ---------------------------------------------------------------------------- |
35 | // Time input function | |
36 | // ---------------------------------------------------------------------------- | |
37 | ||
38 | #ifdef __WXMGL__ | |
39 | // We take advantage of wxMGL's _EVT_getTicks because it is faster | |
40 | // (especially under MS-DOS!) and more precise than wxGetLocalTimeMillis | |
41 | // if we are unlucky and the latter combines information from two sources. | |
42 | #include "wx/mgl/private.h" | |
43 | extern "C" ulong _EVT_getTicks(); | |
9750481f VZ |
44 | #define GetMillisecondsTime _EVT_getTicks |
45 | ||
46 | typedef ulong wxTimerTick_t; | |
5ed08e5b VZ |
47 | |
48 | #define wxTimerTickFmtSpec _T("lu") | |
49 | #define wxTimerTickPrintfArg(tt) (tt) | |
9814d926 MW |
50 | |
51 | #ifdef __DOS__ | |
52 | // Under DOS the MGL timer has a 24hr period, so consider the 12 hours | |
53 | // before y to be 'less' and the the 12 hours after 'greater' modulo | |
54 | // 24 hours. | |
55 | inline bool wxTickGreaterEqual(wxTimerTick_t x, wxTimerTick_t y) | |
56 | { | |
57 | // _EVT_getTicks wraps at 1573040 * 55 | |
58 | const wxTimerTick_t modulus = 1573040 * 55; | |
59 | return (2 * modulus + x - y) % modulus < modulus / 2; | |
60 | } | |
61 | #else | |
62 | // If wxTimerTick_t is 32-bits then it'll wrap in around 50 days. So | |
63 | // let the 25 days before y be 'less' and 25 days after be 'greater'. | |
64 | inline bool wxTickGreaterEqual(wxTimerTick_t x, wxTimerTick_t y) | |
65 | { | |
66 | // This code assumes wxTimerTick_t is an unsigned type. | |
67 | // Set half_modulus with top bit set and the rest zeros. | |
68 | const wxTimerTick_t half_modulus = ~((~(wxTimerTick_t)0) >> 1); | |
69 | return x - y < half_modulus; | |
70 | } | |
71 | #endif | |
5ed08e5b | 72 | #else // !__WXMGL__ |
9750481f VZ |
73 | #define GetMillisecondsTime wxGetLocalTimeMillis |
74 | ||
75 | typedef wxLongLong wxTimerTick_t; | |
5ed08e5b VZ |
76 | |
77 | #if wxUSE_LONGLONG_WX | |
78 | #define wxTimerTickFmtSpec wxLongLongFmtSpec _T("d") | |
79 | #define wxTimerTickPrintfArg(tt) (tt.GetValue()) | |
80 | #else // using native wxLongLong | |
81 | #define wxTimerTickFmtSpec _T("s") | |
82 | #define wxTimerTickPrintfArg(tt) (tt.ToString().c_str()) | |
83 | #endif // wx/native long long | |
9814d926 MW |
84 | |
85 | inline bool wxTickGreaterEqual(wxTimerTick_t x, wxTimerTick_t y) | |
86 | { | |
87 | return x >= y; | |
88 | } | |
5ed08e5b | 89 | #endif // __WXMGL__/!__WXMGL__ |
1acd70f9 VS |
90 | |
91 | // ---------------------------------------------------------------------------- | |
92 | // helper structures and wxTimerScheduler | |
93 | // ---------------------------------------------------------------------------- | |
94 | ||
95 | class wxTimerDesc | |
96 | { | |
97 | public: | |
ca65c044 WS |
98 | wxTimerDesc(wxTimer *t) : |
99 | timer(t), running(false), next(NULL), prev(NULL), | |
0e4b9976 | 100 | shotTime(0), deleteFlag(NULL) {} |
1acd70f9 VS |
101 | |
102 | wxTimer *timer; | |
103 | bool running; | |
104 | wxTimerDesc *next, *prev; | |
ca65c044 | 105 | wxTimerTick_t shotTime; |
0e4b9976 | 106 | volatile bool *deleteFlag; // see comment in ~wxTimer |
1acd70f9 VS |
107 | }; |
108 | ||
109 | class wxTimerScheduler | |
110 | { | |
111 | public: | |
112 | wxTimerScheduler() : m_timers(NULL) {} | |
113 | ||
9750481f | 114 | void QueueTimer(wxTimerDesc *desc, wxTimerTick_t when = 0); |
1acd70f9 VS |
115 | void RemoveTimer(wxTimerDesc *desc); |
116 | void NotifyTimers(); | |
ca65c044 | 117 | |
1acd70f9 VS |
118 | private: |
119 | wxTimerDesc *m_timers; | |
120 | }; | |
121 | ||
9750481f | 122 | void wxTimerScheduler::QueueTimer(wxTimerDesc *desc, wxTimerTick_t when) |
1acd70f9 | 123 | { |
0e4b9976 VS |
124 | if ( desc->running ) |
125 | return; // already scheduled | |
ca65c044 | 126 | |
1acd70f9 | 127 | if ( when == 0 ) |
a0cb0ba5 | 128 | when = GetMillisecondsTime() + desc->timer->GetInterval(); |
1acd70f9 | 129 | desc->shotTime = when; |
ca65c044 | 130 | desc->running = true; |
1acd70f9 | 131 | |
ee9768c9 | 132 | wxLogTrace( wxT("timer"), |
ca65c044 | 133 | wxT("queued timer %p at tick %") wxTimerTickFmtSpec, |
5ed08e5b | 134 | desc->timer, wxTimerTickPrintfArg(when)); |
88f2a771 | 135 | |
1acd70f9 VS |
136 | if ( m_timers ) |
137 | { | |
138 | wxTimerDesc *d = m_timers; | |
139 | while ( d->next && d->next->shotTime < when ) d = d->next; | |
140 | desc->next = d->next; | |
141 | desc->prev = d; | |
142 | if ( d->next ) | |
143 | d->next->prev = desc; | |
144 | d->next = desc; | |
145 | } | |
146 | else | |
147 | { | |
148 | m_timers = desc; | |
149 | desc->prev = desc->next = NULL; | |
150 | } | |
151 | } | |
152 | ||
153 | void wxTimerScheduler::RemoveTimer(wxTimerDesc *desc) | |
154 | { | |
ca65c044 | 155 | desc->running = false; |
1acd70f9 VS |
156 | if ( desc == m_timers ) |
157 | m_timers = desc->next; | |
158 | if ( desc->prev ) | |
159 | desc->prev->next = desc->next; | |
160 | if ( desc->next ) | |
161 | desc->next->prev = desc->prev; | |
162 | desc->prev = desc->next = NULL; | |
163 | } | |
164 | ||
165 | void wxTimerScheduler::NotifyTimers() | |
166 | { | |
167 | if ( m_timers ) | |
168 | { | |
0e4b9976 VS |
169 | bool oneShot; |
170 | volatile bool timerDeleted; | |
9750481f | 171 | wxTimerTick_t now = GetMillisecondsTime(); |
88f2a771 | 172 | |
c3732409 | 173 | for ( wxTimerDesc *desc = m_timers; desc; desc = desc->next ) |
1acd70f9 | 174 | { |
9814d926 | 175 | if ( desc->running && wxTickGreaterEqual(now, desc->shotTime) ) |
1acd70f9 | 176 | { |
c3732409 VZ |
177 | oneShot = desc->timer->IsOneShot(); |
178 | RemoveTimer(desc); | |
179 | ||
180 | timerDeleted = false; | |
181 | desc->deleteFlag = &timerDeleted; | |
182 | desc->timer->Notify(); | |
183 | ||
184 | if ( !timerDeleted ) | |
185 | { | |
186 | wxLogTrace( wxT("timer"), | |
187 | wxT("notified timer %p sheduled for %") | |
188 | wxTimerTickFmtSpec, | |
189 | desc->timer, | |
190 | wxTimerTickPrintfArg(desc->shotTime) ); | |
191 | ||
192 | desc->deleteFlag = NULL; | |
193 | if ( !oneShot ) | |
194 | QueueTimer(desc, now + desc->timer->GetInterval()); | |
195 | } | |
925fcf5f JS |
196 | else |
197 | desc = m_timers; | |
1acd70f9 VS |
198 | } |
199 | } | |
200 | } | |
201 | } | |
202 | ||
203 | ||
32b8ec41 VZ |
204 | // ---------------------------------------------------------------------------- |
205 | // wxTimer | |
206 | // ---------------------------------------------------------------------------- | |
207 | ||
313feadc | 208 | IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxEvtHandler) |
32b8ec41 | 209 | |
0e4b9976 | 210 | wxTimerScheduler *gs_scheduler = NULL; |
1acd70f9 VS |
211 | |
212 | void wxTimer::Init() | |
213 | { | |
0e4b9976 VS |
214 | if ( !gs_scheduler ) |
215 | gs_scheduler = new wxTimerScheduler; | |
1acd70f9 VS |
216 | m_desc = new wxTimerDesc(this); |
217 | } | |
218 | ||
219 | wxTimer::~wxTimer() | |
220 | { | |
2b5f62a0 | 221 | wxLogTrace( wxT("timer"), wxT("destroying timer %p..."), this); |
1acd70f9 VS |
222 | if ( IsRunning() ) |
223 | Stop(); | |
224 | ||
0e4b9976 | 225 | // NB: this is a hack: wxTimerScheduler must have some way of knowing |
ca65c044 | 226 | // that wxTimer object was deleted under its hands -- this may |
0e4b9976 VS |
227 | // happen if somebody is really nasty and deletes the timer |
228 | // from wxTimer::Notify() | |
229 | if ( m_desc->deleteFlag != NULL ) | |
ca65c044 | 230 | *m_desc->deleteFlag = true; |
0e4b9976 | 231 | |
1acd70f9 | 232 | delete m_desc; |
2b5f62a0 | 233 | wxLogTrace( wxT("timer"), wxT(" ...done destroying timer %p..."), this); |
1acd70f9 VS |
234 | } |
235 | ||
236 | bool wxTimer::IsRunning() const | |
237 | { | |
238 | return m_desc->running; | |
239 | } | |
240 | ||
241 | bool wxTimer::Start(int millisecs, bool oneShot) | |
242 | { | |
ca65c044 | 243 | wxLogTrace( wxT("timer"), wxT("started timer %p: %i ms, oneshot=%i"), |
88f2a771 VS |
244 | this, millisecs, oneShot); |
245 | ||
1acd70f9 | 246 | if ( !wxTimerBase::Start(millisecs, oneShot) ) |
ca65c044 WS |
247 | return false; |
248 | ||
0e4b9976 | 249 | gs_scheduler->QueueTimer(m_desc); |
ca65c044 | 250 | return true; |
1acd70f9 VS |
251 | } |
252 | ||
253 | void wxTimer::Stop() | |
254 | { | |
255 | if ( !m_desc->running ) return; | |
ca65c044 | 256 | |
0e4b9976 | 257 | gs_scheduler->RemoveTimer(m_desc); |
1acd70f9 VS |
258 | } |
259 | ||
260 | /*static*/ void wxTimer::NotifyTimers() | |
261 | { | |
0e4b9976 VS |
262 | if ( gs_scheduler ) |
263 | gs_scheduler->NotifyTimers(); | |
1acd70f9 VS |
264 | } |
265 | ||
0e4b9976 VS |
266 | |
267 | ||
268 | // A module to deallocate memory properly: | |
269 | class wxTimerModule: public wxModule | |
270 | { | |
271 | DECLARE_DYNAMIC_CLASS(wxTimerModule) | |
272 | public: | |
273 | wxTimerModule() {} | |
ca65c044 | 274 | bool OnInit() { return true; } |
0e4b9976 VS |
275 | void OnExit() { delete gs_scheduler; gs_scheduler = NULL; } |
276 | }; | |
277 | ||
278 | IMPLEMENT_DYNAMIC_CLASS(wxTimerModule, wxModule) | |
279 | ||
280 | ||
1acd70f9 | 281 | #endif //wxUSE_TIMER |