1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/datetime.inl
3 // Purpose: definition of inline functions of wxDateTime and related
4 // classes declared in datetime.h
5 // Author: Vadim Zeitlin
6 // Remarks: having the inline functions here allows us to minimize the
7 // dependencies (and hence the rebuild time) in debug builds.
11 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
12 // Licence: wxWindows license
13 /////////////////////////////////////////////////////////////////////////////
15 #ifndef INCLUDED_FROM_WX_DATETIME_H
16 #error "This file is only included by wx/datetime.h, don't include it manually!"
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
23 #define MILLISECONDS_PER_DAY 86400000l
25 // some broken compilers (HP-UX CC) refuse to compile the "normal" version, but
26 // using a temp variable always might prevent other compilers from optimising
27 // it away - hence use of this ugly macro
29 #define MODIFY_AND_RETURN(op) return wxDateTime(*this).op
31 #define MODIFY_AND_RETURN(op) wxDateTime dt(*this); dt.op; return dt
34 // ----------------------------------------------------------------------------
35 // wxDateTime construction
36 // ----------------------------------------------------------------------------
38 // only define this once, when included from datetime.cpp
39 #ifdef wxDEFINE_TIME_CONSTANTS
40 const long wxDateTime::TIME_T_FACTOR = 1000l;
41 #endif // wxDEFINE_TIME_CONSTANTS
43 inline bool wxDateTime::IsInStdRange() const
45 return m_time >= 0l && (m_time / TIME_T_FACTOR) < LONG_MAX;
49 inline wxDateTime wxDateTime::Now()
51 return wxDateTime(*GetTmNow());
55 inline wxDateTime wxDateTime::Today()
57 struct tm *tm = GetTmNow();
62 return wxDateTime(*tm);
65 #if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
66 inline wxDateTime& wxDateTime::Set(time_t timet)
68 // assign first to avoid long multiplication overflow!
69 m_time = timet - WX_TIME_BASE_OFFSET ;
70 m_time *= TIME_T_FACTOR;
76 inline wxDateTime& wxDateTime::SetToCurrent()
82 #if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
83 inline wxDateTime::wxDateTime(time_t timet)
89 inline wxDateTime::wxDateTime(const struct tm& tm)
94 inline wxDateTime::wxDateTime(const Tm& tm)
99 inline wxDateTime::wxDateTime(double jdn)
104 inline wxDateTime& wxDateTime::Set(const Tm& tm)
106 wxASSERT_MSG( tm.IsValid(), _T("invalid broken down date/time") );
108 return Set(tm.mday, (Month)tm.mon, tm.year, tm.hour, tm.min, tm.sec);
111 inline wxDateTime::wxDateTime(wxDateTime_t hour,
114 wxDateTime_t millisec)
116 Set(hour, minute, second, millisec);
119 inline wxDateTime::wxDateTime(wxDateTime_t day,
125 wxDateTime_t millisec)
127 Set(day, month, year, hour, minute, second, millisec);
130 // ----------------------------------------------------------------------------
131 // wxDateTime accessors
132 // ----------------------------------------------------------------------------
134 inline wxLongLong wxDateTime::GetValue() const
136 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
141 inline time_t wxDateTime::GetTicks() const
143 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
144 if ( !IsInStdRange() )
149 return (time_t)((m_time / (long)TIME_T_FACTOR).GetLo())+WX_TIME_BASE_OFFSET ;
152 inline bool wxDateTime::SetToLastWeekDay(WeekDay weekday,
156 return SetToWeekDay(weekday, -1, month, year);
159 inline wxDateTime wxDateTime::GetWeekDayInSameWeek(WeekDay weekday) const
161 MODIFY_AND_RETURN( SetToWeekDayInSameWeek(weekday) );
164 inline wxDateTime wxDateTime::GetNextWeekDay(WeekDay weekday) const
166 MODIFY_AND_RETURN( SetToNextWeekDay(weekday) );
169 inline wxDateTime wxDateTime::GetPrevWeekDay(WeekDay weekday) const
171 MODIFY_AND_RETURN( SetToPrevWeekDay(weekday) );
174 inline wxDateTime wxDateTime::GetWeekDay(WeekDay weekday,
179 wxDateTime dt(*this);
181 return dt.SetToWeekDay(weekday, n, month, year) ? dt : wxInvalidDateTime;
184 inline wxDateTime wxDateTime::GetLastWeekDay(WeekDay weekday,
188 wxDateTime dt(*this);
190 return dt.SetToLastWeekDay(weekday, month, year) ? dt : wxInvalidDateTime;
193 inline wxDateTime wxDateTime::GetWeek(wxDateTime_t numWeek,
194 WeekDay weekday) const
196 wxDateTime dt(*this);
198 return dt.SetToTheWeek(numWeek, weekday) ? dt : wxInvalidDateTime;
201 inline wxDateTime wxDateTime::GetLastMonthDay(Month month, int year) const
203 MODIFY_AND_RETURN( SetToLastMonthDay(month, year) );
206 inline wxDateTime wxDateTime::GetYearDay(wxDateTime_t yday) const
208 MODIFY_AND_RETURN( SetToYearDay(yday) );
211 // ----------------------------------------------------------------------------
212 // wxDateTime comparison
213 // ----------------------------------------------------------------------------
215 inline bool wxDateTime::IsEqualTo(const wxDateTime& datetime) const
217 wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
219 return m_time == datetime.m_time;
222 inline bool wxDateTime::IsEarlierThan(const wxDateTime& datetime) const
224 wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
226 return m_time < datetime.m_time;
229 inline bool wxDateTime::IsLaterThan(const wxDateTime& datetime) const
231 wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
233 return m_time > datetime.m_time;
236 inline bool wxDateTime::IsStrictlyBetween(const wxDateTime& t1,
237 const wxDateTime& t2) const
239 // no need for assert, will be checked by the functions we call
240 return IsLaterThan(t1) && IsEarlierThan(t2);
243 inline bool wxDateTime::IsBetween(const wxDateTime& t1,
244 const wxDateTime& t2) const
246 // no need for assert, will be checked by the functions we call
247 return IsEqualTo(t1) || IsEqualTo(t2) || IsStrictlyBetween(t1, t2);
250 inline bool wxDateTime::IsSameDate(const wxDateTime& dt) const
255 return tm1.year == tm2.year &&
256 tm1.mon == tm2.mon &&
257 tm1.mday == tm2.mday;
260 inline bool wxDateTime::IsSameTime(const wxDateTime& dt) const
262 // notice that we can't do something like this:
264 // m_time % MILLISECONDS_PER_DAY == dt.m_time % MILLISECONDS_PER_DAY
266 // because we have also to deal with (possibly) different DST settings!
270 return tm1.hour == tm2.hour &&
271 tm1.min == tm2.min &&
272 tm1.sec == tm2.sec &&
273 tm1.msec == tm2.msec;
276 inline bool wxDateTime::IsEqualUpTo(const wxDateTime& dt,
277 const wxTimeSpan& ts) const
279 return IsBetween(dt.Subtract(ts), dt.Add(ts));
282 // ----------------------------------------------------------------------------
283 // wxDateTime arithmetics
284 // ----------------------------------------------------------------------------
286 inline wxDateTime wxDateTime::Add(const wxTimeSpan& diff) const
288 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
290 return wxDateTime(m_time + diff.GetValue());
293 inline wxDateTime& wxDateTime::Add(const wxTimeSpan& diff)
295 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
297 m_time += diff.GetValue();
302 inline wxDateTime& wxDateTime::operator+=(const wxTimeSpan& diff)
307 inline wxDateTime wxDateTime::Subtract(const wxTimeSpan& diff) const
309 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
311 return wxDateTime(m_time - diff.GetValue());
314 inline wxDateTime& wxDateTime::Subtract(const wxTimeSpan& diff)
316 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
318 m_time -= diff.GetValue();
323 inline wxDateTime& wxDateTime::operator-=(const wxTimeSpan& diff)
325 return Subtract(diff);
328 inline wxTimeSpan wxDateTime::Subtract(const wxDateTime& datetime) const
330 wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
332 return wxTimeSpan(GetValue() - datetime.GetValue());
335 inline wxDateTime wxDateTime::Add(const wxDateSpan& diff) const
337 return wxDateTime(*this).Add(diff);
340 inline wxDateTime& wxDateTime::Subtract(const wxDateSpan& diff)
342 return Add(diff.Negate());
345 inline wxDateTime wxDateTime::Subtract(const wxDateSpan& diff) const
347 return wxDateTime(*this).Subtract(diff);
350 inline wxDateTime& wxDateTime::operator-=(const wxDateSpan& diff)
352 return Subtract(diff);
355 inline wxDateTime& wxDateTime::operator+=(const wxDateSpan& diff)
360 // ----------------------------------------------------------------------------
361 // wxDateTime and timezones
362 // ----------------------------------------------------------------------------
364 inline wxDateTime wxDateTime::ToTimezone(const wxDateTime::TimeZone& tz,
367 MODIFY_AND_RETURN( MakeTimezone(tz, noDST) );
370 // ----------------------------------------------------------------------------
371 // wxTimeSpan construction
372 // ----------------------------------------------------------------------------
374 inline wxTimeSpan::wxTimeSpan(long hours,
379 // assign first to avoid precision loss
386 m_diff += milliseconds;
389 // ----------------------------------------------------------------------------
390 // wxTimeSpan accessors
391 // ----------------------------------------------------------------------------
393 inline wxLongLong wxTimeSpan::GetSeconds() const
395 return m_diff / 1000l;
398 inline int wxTimeSpan::GetMinutes() const
400 return (GetSeconds() / 60l).GetLo();
403 inline int wxTimeSpan::GetHours() const
405 return GetMinutes() / 60;
408 inline int wxTimeSpan::GetDays() const
410 return GetHours() / 24;
413 inline int wxTimeSpan::GetWeeks() const
415 return GetDays() / 7;
418 // ----------------------------------------------------------------------------
419 // wxTimeSpan arithmetics
420 // ----------------------------------------------------------------------------
422 inline wxTimeSpan wxTimeSpan::Add(const wxTimeSpan& diff) const
424 return wxTimeSpan(m_diff + diff.GetValue());
427 inline wxTimeSpan& wxTimeSpan::Add(const wxTimeSpan& diff)
429 m_diff += diff.GetValue();
434 inline wxTimeSpan wxTimeSpan::Subtract(const wxTimeSpan& diff) const
436 return wxTimeSpan(m_diff - diff.GetValue());
439 inline wxTimeSpan& wxTimeSpan::Subtract(const wxTimeSpan& diff)
441 m_diff -= diff.GetValue();
446 inline wxTimeSpan& wxTimeSpan::Multiply(int n)
453 inline wxTimeSpan wxTimeSpan::Multiply(int n) const
455 return wxTimeSpan(m_diff * (long)n);
458 inline wxTimeSpan wxTimeSpan::Abs() const
460 return wxTimeSpan(GetValue().Abs());
463 inline bool wxTimeSpan::IsEqualTo(const wxTimeSpan& ts) const
465 return GetValue() == ts.GetValue();
468 inline bool wxTimeSpan::IsLongerThan(const wxTimeSpan& ts) const
470 return GetValue().Abs() > ts.GetValue().Abs();
473 // ----------------------------------------------------------------------------
475 // ----------------------------------------------------------------------------
477 inline wxDateSpan& wxDateSpan::operator+=(const wxDateSpan& other)
479 m_years += other.m_years;
480 m_months += other.m_months;
481 m_weeks += other.m_weeks;
482 m_days += other.m_days;
487 inline wxDateSpan& wxDateSpan::Add(const wxDateSpan& other)
489 return *this += other;
492 inline wxDateSpan wxDateSpan::Add(const wxDateSpan& other) const
494 wxDateSpan ds(*this);
499 inline wxDateSpan& wxDateSpan::Multiply(int factor)
509 inline wxDateSpan wxDateSpan::Multiply(int factor) const
511 wxDateSpan ds(*this);
516 inline wxDateSpan wxDateSpan::Negate() const
518 return wxDateSpan(-m_years, -m_months, -m_weeks, -m_days);
521 inline wxDateSpan& wxDateSpan::Neg()
524 m_months = -m_months;
531 inline wxDateSpan& wxDateSpan::operator-=(const wxDateSpan& other)
533 return *this += other.Negate();
536 inline wxDateSpan& wxDateSpan::Subtract(const wxDateSpan& other)
538 return *this -= other;
541 inline wxDateSpan wxDateSpan::Subtract(const wxDateSpan& other) const
543 wxDateSpan ds(*this);
548 #undef MILLISECONDS_PER_DAY
550 #undef MODIFY_AND_RETURN