]> git.saurik.com Git - wxWidgets.git/blame - src/common/timercmn.cpp
made the #error message less self-contradictory
[wxWidgets.git] / src / common / timercmn.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
0470b1e6 2// Name: common/timercmn.cpp
c801d85f 3// Purpose: Common timer implementation
5ebdc86a
GRG
4// Author:
5// Original version by Julian Smart
6// Vadim Zeitlin got rid of all ifdefs (11.12.99)
7// Sylvain Bougnoux added wxStopWatch class
8// Guillermo Rodriguez <guille@iies.es> rewrote from scratch (Dic/99)
9// Modified by:
c801d85f
KB
10// Created: 04/01/98
11// RCS-ID: $Id$
12// Copyright: (c) Julian Smart and Markus Holzem
b704229e 13// (c) 1999 Guillermo Rodriguez <guille@iies.es>
ed791986 14// Licence: wxWindows license
c801d85f
KB
15/////////////////////////////////////////////////////////////////////////////
16
0470b1e6
VZ
17// ============================================================================
18// declarations
19// ============================================================================
20
21// ----------------------------------------------------------------------------
91ff98b7 22// wxWin headers
0470b1e6
VZ
23// ----------------------------------------------------------------------------
24
c801d85f 25#ifdef __GNUG__
0470b1e6 26 #pragma implementation "timerbase.h"
c801d85f
KB
27#endif
28
29// For compilers that support precompilation, includes "wx.h".
30#include "wx/wxprec.h"
31
32#ifdef __BORLANDC__
0470b1e6 33 #pragma hdrstop
c801d85f
KB
34#endif
35
36#ifndef WX_PRECOMP
0470b1e6
VZ
37 #include "wx/intl.h"
38 #include "wx/log.h"
2b5f62a0 39 #include "wx/thread.h"
c801d85f
KB
40#endif
41
42#include "wx/timer.h"
b8f04990 43#include "wx/longlong.h"
c801d85f 44
91ff98b7
GRG
45// ----------------------------------------------------------------------------
46// System headers
47// ----------------------------------------------------------------------------
48
b8f04990
GRG
49#if defined(__WIN32__)
50 #include <windows.h>
0470b1e6
VZ
51#endif
52
ba14d986 53#if defined(__WIN32__) && !defined(HAVE_FTIME) && !defined(__MWERKS__)
91ff98b7 54 #define HAVE_FTIME
91ff98b7
GRG
55#endif
56
47af9124
GRG
57#if defined(__VISAGECPP__) && !defined(HAVE_FTIME)
58 #define HAVE_FTIME
07d7f20b
DW
59# if __IBMCPP__ >= 400
60 # define ftime(x) _ftime(x)
61# endif
47af9124
GRG
62#endif
63
de85a884
VZ
64#if defined(__MWERKS__) && defined(__WXMSW__)
65# undef HAVE_FTIME
66# undef HAVE_GETTIMEOFDAY
67#endif
68
b8f04990
GRG
69#include <time.h>
70#ifndef __WXMAC__
71 #include <sys/types.h> // for time_t
07cf98cb
VZ
72#endif
73
0470b1e6
VZ
74#if defined(HAVE_GETTIMEOFDAY)
75 #include <sys/time.h>
76 #include <unistd.h>
0470b1e6
VZ
77#elif defined(HAVE_FTIME)
78 #include <sys/timeb.h>
c801d85f
KB
79#endif
80
a4c4cf10
SC
81#ifdef __WXMAC__
82 #include <Timer.h>
83 #include <DriverServices.h>
84#endif
ed791986
VZ
85// ----------------------------------------------------------------------------
86// wxWin macros
87// ----------------------------------------------------------------------------
88
1e6feb95 89#if wxUSE_GUI && wxUSE_TIMER
52a07708
VZ
90 IMPLEMENT_DYNAMIC_CLASS(wxTimerEvent, wxEvent)
91#endif // wxUSE_GUI
ed791986 92
0470b1e6
VZ
93// ----------------------------------------------------------------------------
94// macros
95// ----------------------------------------------------------------------------
ce3ed50d 96
0470b1e6
VZ
97// on some really old systems gettimeofday() doesn't have the second argument,
98// define wxGetTimeOfDay() to hide this difference
99#ifdef HAVE_GETTIMEOFDAY
100 #ifdef WX_GETTIMEOFDAY_NO_TZ
101 struct timezone;
102 #define wxGetTimeOfDay(tv, tz) gettimeofday(tv)
103 #else
104 #define wxGetTimeOfDay(tv, tz) gettimeofday((tv), (tz))
105 #endif
106#endif // HAVE_GETTIMEOFDAY
c801d85f 107
0470b1e6
VZ
108// ============================================================================
109// implementation
110// ============================================================================
c801d85f 111
ed791986
VZ
112// ----------------------------------------------------------------------------
113// wxTimerBase
114// ----------------------------------------------------------------------------
115
1e6feb95 116#if wxUSE_GUI && wxUSE_TIMER
91ff98b7 117
799ea011
GD
118wxTimerBase::~wxTimerBase()
119{
120 // this destructor is required for Darwin
121}
122
ed791986
VZ
123void wxTimerBase::Notify()
124{
125 // the base class version generates an event if it has owner - which it
126 // should because otherwise nobody can process timer events
127 wxCHECK_RET( m_owner, _T("wxTimer::Notify() should be overridden.") );
128
129 wxTimerEvent event(m_idTimer, m_milli);
130 (void)m_owner->ProcessEvent(event);
131}
b8f04990 132
99646f7e
VZ
133bool wxTimerBase::Start(int milliseconds, bool oneShot)
134{
2b5f62a0
VZ
135 // under MSW timers only work when they're started from the main thread so
136 // let the caller know about it
137#if wxUSE_THREADS
138 wxASSERT_MSG( wxThread::IsMain(),
139 _T("timer can only be started from the main thread") );
140#endif // wxUSE_THREADS
141
99646f7e
VZ
142 if ( IsRunning() )
143 {
144 // not stopping the already running timer might work for some
145 // platforms (no problems under MSW) but leads to mysterious crashes
146 // on the others (GTK), so to be on the safe side do it here
147 Stop();
148 }
149
150 if ( milliseconds != -1 )
151 {
152 m_milli = milliseconds;
153 }
154
155 m_oneShot = oneShot;
156
157 return TRUE;
158}
159
52a07708
VZ
160#endif // wxUSE_GUI
161
0470b1e6
VZ
162// ----------------------------------------------------------------------------
163// wxStopWatch
164// ----------------------------------------------------------------------------
c801d85f 165
1e6feb95
VZ
166#if wxUSE_LONGLONG
167
0470b1e6
VZ
168void wxStopWatch::Start(long t)
169{
b8f04990 170 m_t0 = wxGetLocalTimeMillis() - t;
0470b1e6
VZ
171 m_pause = 0;
172}
173
92da8bde 174long wxStopWatch::GetElapsedTime() const
0470b1e6 175{
677eff07 176 return (wxGetLocalTimeMillis() - m_t0).GetLo();
b8f04990
GRG
177}
178
8242fb3b 179long wxStopWatch::Time() const
b8f04990 180{
677eff07 181 return m_pauseCount ? m_pause : GetElapsedTime();
0470b1e6
VZ
182}
183
1e6feb95
VZ
184#endif // wxUSE_LONGLONG
185
0470b1e6
VZ
186// ----------------------------------------------------------------------------
187// old timer functions superceded by wxStopWatch
188// ----------------------------------------------------------------------------
c801d85f 189
1e6feb95
VZ
190#if wxUSE_LONGLONG
191
cd0b1709 192static wxLongLong wxStartTime = 0l;
c801d85f 193
0470b1e6
VZ
194// starts the global timer
195void wxStartTimer()
c801d85f 196{
b8f04990 197 wxStartTime = wxGetLocalTimeMillis();
c801d85f
KB
198}
199
200// Returns elapsed time in milliseconds
201long wxGetElapsedTime(bool resetTimer)
f0599ea9 202{
b8f04990
GRG
203 wxLongLong oldTime = wxStartTime;
204 wxLongLong newTime = wxGetLocalTimeMillis();
f0599ea9 205
0470b1e6
VZ
206 if ( resetTimer )
207 wxStartTime = newTime;
208
b8f04990 209 return (newTime - oldTime).GetLo();
f0599ea9
SB
210}
211
1e6feb95 212#endif // wxUSE_LONGLONG
f0599ea9 213
0470b1e6
VZ
214// ----------------------------------------------------------------------------
215// the functions to get the current time and timezone info
216// ----------------------------------------------------------------------------
217
b8f04990
GRG
218// Get local time as seconds since 00:00:00, Jan 1st 1970
219long wxGetLocalTime()
c801d85f 220{
b8f04990
GRG
221 struct tm tm;
222 time_t t0, t1;
223
224 // This cannot be made static because mktime can overwrite it.
225 //
226 memset(&tm, 0, sizeof(tm));
227 tm.tm_year = 70;
228 tm.tm_mon = 0;
229 tm.tm_mday = 5; // not Jan 1st 1970 due to mktime 'feature'
230 tm.tm_hour = 0;
231 tm.tm_min = 0;
232 tm.tm_sec = 0;
233 tm.tm_isdst = -1; // let mktime guess
234
235 // Note that mktime assumes that the struct tm contains local time.
236 //
237 t1 = time(&t1); // now
238 t0 = mktime(&tm); // origin
239
240 // Return the difference in seconds.
241 //
242 if (( t0 != (time_t)-1 ) && ( t1 != (time_t)-1 ))
243 return (long)difftime(t1, t0) + (60 * 60 * 24 * 4);
244
245 wxLogSysError(_("Failed to get the local system time"));
246 return -1;
247}
b76b015e 248
b8f04990
GRG
249// Get UTC time as seconds since 00:00:00, Jan 1st 1970
250long wxGetUTCTime()
251{
33ac7e6f 252 struct tm tm;
1e6feb95 253 struct tm *ptm;
b8f04990
GRG
254 time_t t0, t1;
255
256 // This cannot be made static because mktime can overwrite it
257 //
258 memset(&tm, 0, sizeof(tm));
259 tm.tm_year = 70;
260 tm.tm_mon = 0;
261 tm.tm_mday = 5; // not Jan 1st 1970 due to mktime 'feature'
262 tm.tm_hour = 0;
263 tm.tm_min = 0;
264 tm.tm_sec = 0;
265 tm.tm_isdst = -1; // let mktime guess
266
267 // Note that mktime assumes that the struct tm contains local time.
268 //
269 t1 = time(&t1); // now
270 t0 = mktime(&tm); // origin in localtime
271
272 if (( t0 != (time_t)-1 ) && ( t1 != (time_t)-1 ))
0470b1e6 273 {
b8f04990
GRG
274 // To get t0 as GMT we convert to a struct tm with gmtime,
275 // and then back again.
276 //
277 ptm = gmtime(&t0);
0470b1e6 278
b8f04990 279 if (ptm)
0470b1e6 280 {
b8f04990
GRG
281 memcpy(&tm, ptm, sizeof(tm));
282 t0 = mktime(&tm);
283
284 if (t0 != (time_t)-1 )
285 return (long)difftime(t1, t0) + (60 * 60 * 24 * 4);
2c8e4738
VZ
286 wxLogSysError(_("mktime() failed"));
287 }
288 else
289 {
290 wxLogSysError(_("gmtime() failed"));
0470b1e6
VZ
291 }
292 }
2c8e4738
VZ
293
294 wxLogError(_("Failed to get the UTC system time."));
295
b8f04990
GRG
296 return -1;
297}
298
1e6feb95 299#if wxUSE_LONGLONG
b8f04990
GRG
300
301// Get local time as milliseconds since 00:00:00, Jan 1st 1970
302wxLongLong wxGetLocalTimeMillis()
303{
0158f584
SB
304 wxLongLong val = 1000l;
305
9e3cb9ee
JS
306 // If possible, use a function which avoids conversions from
307 // broken-up time structures to milliseconds
658c5400 308
ba14d986
VZ
309#if defined(__WXMSW__) && defined(__MWERKS__)
310 // This should probably be the way all WXMSW compilers should do it
311 // Go direct to the OS for time
312
313 SYSTEMTIME thenst = { 1970, 1, 4, 1, 0, 0, 0, 0 }; // 00:00:00 Jan 1st 1970
314 FILETIME thenft;
315 SystemTimeToFileTime( &thenst, &thenft );
316 wxLongLong then( thenft.dwHighDateTime, thenft.dwLowDateTime ); // time in 100 nanoseconds
317
318 SYSTEMTIME nowst;
319 GetLocalTime( &nowst );
320 FILETIME nowft;
321 SystemTimeToFileTime( &nowst, &nowft );
322 wxLongLong now( nowft.dwHighDateTime, nowft.dwLowDateTime ); // time in 100 nanoseconds
323
324 return ( now - then ) / 10000.0; // time from 00:00:00 Jan 1st 1970 to now in milliseconds
325
326#elif defined(HAVE_GETTIMEOFDAY)
0158f584
SB
327 struct timeval tp;
328 if ( wxGetTimeOfDay(&tp, (struct timezone *)NULL) != -1 )
329 {
330 val *= tp.tv_sec;
331 return (val + (tp.tv_usec / 1000));
332 }
91ff98b7
GRG
333 else
334 {
335 wxLogError(_("wxGetTimeOfDay failed."));
336 return 0;
337 }
658c5400
GRG
338#elif defined(HAVE_FTIME)
339 struct timeb tp;
2c8e4738 340
91ff98b7
GRG
341 // ftime() is void and not int in some mingw32 headers, so don't
342 // test the return code (well, it shouldn't fail anyhow...)
2c8e4738
VZ
343 (void)ftime(&tp);
344 val *= tp.time;
345 return (val + tp.millitm);
a4c4cf10
SC
346#elif defined(__WXMAC__)
347
a4c4cf10
SC
348 UInt64 gMilliAtStart = 0 ;
349 Nanoseconds upTime = AbsoluteToNanoseconds( UpTime() ) ;
350 if ( gMilliAtStart == 0 )
351 {
352 time_t start = time(NULL) ;
353 gMilliAtStart = ((UInt64) start) * 1000L ;
354 gMilliAtStart -= upTime.lo / 1000 ;
355 gMilliAtStart -= ( ( (UInt64) upTime.hi ) << 32 ) / 1000 ;
356 }
357 UInt64 millival = gMilliAtStart ;
358 millival += upTime.lo / 1000 ;
359 millival += ( ( (UInt64) upTime.hi ) << 32 ) / 1000 ;
79654e25 360 val = millival ;
3340066a 361 return val ;
f6bcfd97 362#else // no gettimeofday() nor ftime()
b8f04990
GRG
363 // We use wxGetLocalTime() to get the seconds since
364 // 00:00:00 Jan 1st 1970 and then whatever is available
365 // to get millisecond resolution.
658c5400 366 //
91ff98b7
GRG
367 // NOTE that this might lead to a problem if the clocks
368 // use different sources, so this approach should be
369 // avoided where possible.
658c5400 370
cd0b1709 371 val *= wxGetLocalTime();
b8f04990 372
47af9124
GRG
373// GRG: This will go soon as all WIN32 seem to have ftime
374#if defined (__WIN32__)
f6bcfd97
BP
375 // If your platform/compiler needs to use two different functions
376 // to get ms resolution, please do NOT just shut off these warnings,
377 // drop me a line instead at <guille@iies.es>
378 #warning "Possible clock skew bug in wxGetLocalTimeMillis()!"
379
91ff98b7
GRG
380 SYSTEMTIME st;
381 ::GetLocalTime(&st);
382 val += st.wMilliseconds;
f6bcfd97
BP
383#else // !Win32
384 // If your platform/compiler does not support ms resolution please
385 // do NOT just shut off these warnings, drop me a line instead at
386 // <guille@iies.es>
387
19193a2c 388 #if defined(__VISUALC__) || defined (__WATCOMC__)
f6bcfd97
BP
389 #pragma message("wxStopWatch will be up to second resolution!")
390 #elif defined(__BORLANDC__)
391 #pragma message "wxStopWatch will be up to second resolution!"
ec7cd4c4 392 #else
f6bcfd97
BP
393 #warning "wxStopWatch will be up to second resolution!"
394 #endif // compiler
c801d85f 395#endif
c801d85f 396
b8f04990 397 return val;
91ff98b7 398
f6bcfd97 399#endif // time functions
c801d85f 400}
1e6feb95
VZ
401
402#endif // wxUSE_LONGLONG
403