1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/timercmn.cpp
3 // Purpose: Common timer implementation
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)
12 // Copyright: (c) Julian Smart and Markus Holzem
13 // (c) 1999 Guillermo Rodriguez <guille@iies.es>
14 // Licence: wxWindows license
15 /////////////////////////////////////////////////////////////////////////////
17 // ============================================================================
19 // ============================================================================
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
26 #pragma implementation "timerbase.h"
29 // For compilers that support precompilation, includes "wx.h".
30 #include "wx/wxprec.h"
42 #include "wx/longlong.h"
44 // ----------------------------------------------------------------------------
46 // ----------------------------------------------------------------------------
48 #if defined(__WIN32__)
52 #if defined(__WIN32__) && !defined(HAVE_FTIME)
56 #if defined(__VISAGECPP__) && !defined(HAVE_FTIME)
58 #define ftime(x) _ftime(x)
63 #include <sys/types.h> // for time_t
66 #if defined(HAVE_GETTIMEOFDAY)
69 #elif defined(HAVE_FTIME)
70 #include <sys/timeb.h>
73 // ----------------------------------------------------------------------------
75 // ----------------------------------------------------------------------------
78 IMPLEMENT_DYNAMIC_CLASS(wxTimerEvent
, wxEvent
)
81 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
85 // on some really old systems gettimeofday() doesn't have the second argument,
86 // define wxGetTimeOfDay() to hide this difference
87 #ifdef HAVE_GETTIMEOFDAY
88 #ifdef WX_GETTIMEOFDAY_NO_TZ
90 #define wxGetTimeOfDay(tv, tz) gettimeofday(tv)
92 #define wxGetTimeOfDay(tv, tz) gettimeofday((tv), (tz))
94 #endif // HAVE_GETTIMEOFDAY
96 // ============================================================================
98 // ============================================================================
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
106 void wxTimerBase::Notify()
108 // the base class version generates an event if it has owner - which it
109 // should because otherwise nobody can process timer events
110 wxCHECK_RET( m_owner
, _T("wxTimer::Notify() should be overridden.") );
112 wxTimerEvent
event(m_idTimer
, m_milli
);
113 (void)m_owner
->ProcessEvent(event
);
118 // ----------------------------------------------------------------------------
120 // ----------------------------------------------------------------------------
122 void wxStopWatch::Start(long t
)
124 m_t0
= wxGetLocalTimeMillis() - t
;
128 long wxStopWatch::GetElapsedTime() const
130 return (wxGetLocalTimeMillis() - m_t0
).GetLo();
133 long wxStopWatch::Time() const
135 return (m_pause
? m_pause
: GetElapsedTime());
138 // ----------------------------------------------------------------------------
139 // old timer functions superceded by wxStopWatch
140 // ----------------------------------------------------------------------------
142 static wxLongLong wxStartTime
= 0l;
144 // starts the global timer
147 wxStartTime
= wxGetLocalTimeMillis();
150 // Returns elapsed time in milliseconds
151 long wxGetElapsedTime(bool resetTimer
)
153 wxLongLong oldTime
= wxStartTime
;
154 wxLongLong newTime
= wxGetLocalTimeMillis();
157 wxStartTime
= newTime
;
159 return (newTime
- oldTime
).GetLo();
163 // ----------------------------------------------------------------------------
164 // the functions to get the current time and timezone info
165 // ----------------------------------------------------------------------------
167 // Get local time as seconds since 00:00:00, Jan 1st 1970
168 long wxGetLocalTime()
173 // This cannot be made static because mktime can overwrite it.
175 memset(&tm
, 0, sizeof(tm
));
178 tm
.tm_mday
= 5; // not Jan 1st 1970 due to mktime 'feature'
182 tm
.tm_isdst
= -1; // let mktime guess
184 // Note that mktime assumes that the struct tm contains local time.
186 t1
= time(&t1
); // now
187 t0
= mktime(&tm
); // origin
189 // Return the difference in seconds.
191 if (( t0
!= (time_t)-1 ) && ( t1
!= (time_t)-1 ))
192 return (long)difftime(t1
, t0
) + (60 * 60 * 24 * 4);
194 wxLogSysError(_("Failed to get the local system time"));
198 // Get UTC time as seconds since 00:00:00, Jan 1st 1970
204 // This cannot be made static because mktime can overwrite it
206 memset(&tm
, 0, sizeof(tm
));
209 tm
.tm_mday
= 5; // not Jan 1st 1970 due to mktime 'feature'
213 tm
.tm_isdst
= -1; // let mktime guess
215 // Note that mktime assumes that the struct tm contains local time.
217 t1
= time(&t1
); // now
218 t0
= mktime(&tm
); // origin in localtime
220 if (( t0
!= (time_t)-1 ) && ( t1
!= (time_t)-1 ))
222 // To get t0 as GMT we convert to a struct tm with gmtime,
223 // and then back again.
229 memcpy(&tm
, ptm
, sizeof(tm
));
232 if (t0
!= (time_t)-1 )
233 return (long)difftime(t1
, t0
) + (60 * 60 * 24 * 4);
234 wxLogSysError(_("mktime() failed"));
238 wxLogSysError(_("gmtime() failed"));
242 wxLogError(_("Failed to get the UTC system time."));
248 // Get local time as milliseconds since 00:00:00, Jan 1st 1970
249 wxLongLong
wxGetLocalTimeMillis()
251 wxLongLong val
= 1000l;
253 // If possible, use a functin which avoids conversions from
254 // broken-up time structures to milliseconds,
256 #if defined(HAVE_GETTIMEOFDAY)
258 if ( wxGetTimeOfDay(&tp
, (struct timezone
*)NULL
) != -1 )
261 return (val
+ (tp
.tv_usec
/ 1000));
265 wxLogError(_("wxGetTimeOfDay failed."));
268 #elif defined(HAVE_FTIME)
271 // ftime() is void and not int in some mingw32 headers, so don't
272 // test the return code (well, it shouldn't fail anyhow...)
275 return (val
+ tp
.millitm
);
276 #else // no gettimeofday() nor ftime()
277 // We use wxGetLocalTime() to get the seconds since
278 // 00:00:00 Jan 1st 1970 and then whatever is available
279 // to get millisecond resolution.
281 // NOTE that this might lead to a problem if the clocks
282 // use different sources, so this approach should be
283 // avoided where possible.
285 val
*= wxGetLocalTime();
287 // GRG: This will go soon as all WIN32 seem to have ftime
288 #if defined (__WIN32__)
289 // If your platform/compiler needs to use two different functions
290 // to get ms resolution, please do NOT just shut off these warnings,
291 // drop me a line instead at <guille@iies.es>
292 #warning "Possible clock skew bug in wxGetLocalTimeMillis()!"
296 val
+= st
.wMilliseconds
;
298 // If your platform/compiler does not support ms resolution please
299 // do NOT just shut off these warnings, drop me a line instead at
302 #if defined(__VISUALC__)
303 #pragma message("wxStopWatch will be up to second resolution!")
304 #elif defined(__BORLANDC__)
305 #pragma message "wxStopWatch will be up to second resolution!"
307 #warning "wxStopWatch will be up to second resolution!"
313 #endif // time functions