1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/datetime.cpp
3 // Purpose: implementation of time/date related classes
4 // (for formatting&parsing see datetimefmt.cpp)
5 // Author: Vadim Zeitlin
9 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // parts of code taken from sndcal library by Scott E. Lee:
12 // Copyright 1993-1995, Scott E. Lee, all rights reserved.
13 // Permission granted to use, copy, modify, distribute and sell
14 // so long as the above copyright and this permission statement
15 // are retained in all copies.
17 // Licence: wxWindows licence
18 ///////////////////////////////////////////////////////////////////////////////
21 * Implementation notes:
23 * 1. the time is stored as a 64bit integer containing the signed number of
24 * milliseconds since Jan 1. 1970 (the Unix Epoch) - so it is always
27 * 2. the range is thus something about 580 million years, but due to current
28 * algorithms limitations, only dates from Nov 24, 4714BC are handled
30 * 3. standard ANSI C functions are used to do time calculations whenever
31 * possible, i.e. when the date is in the range Jan 1, 1970 to 2038
33 * 4. otherwise, the calculations are done by converting the date to/from JDN
34 * first (the range limitation mentioned above comes from here: the
35 * algorithm used by Scott E. Lee's code only works for positive JDNs, more
38 * 5. the object constructed for the given DD-MM-YYYY HH:MM:SS corresponds to
39 * this moment in local time and may be converted to the object
40 * corresponding to the same date/time in another time zone by using
43 * 6. the conversions to the current (or any other) timezone are done when the
44 * internal time representation is converted to the broken-down one in
48 // ============================================================================
50 // ============================================================================
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 // For compilers that support precompilation, includes "wx.h".
57 #include "wx/wxprec.h"
63 #if !defined(wxUSE_DATETIME) || wxUSE_DATETIME
67 #include "wx/msw/wrapwin.h"
69 #include "wx/string.h"
72 #include "wx/stopwatch.h" // for wxGetLocalTimeMillis()
73 #include "wx/module.h"
77 #include "wx/thread.h"
78 #include "wx/tokenzr.h"
89 #include "wx/datetime.h"
91 const long wxDateTime::TIME_T_FACTOR
= 1000l;
93 #if wxUSE_EXTENDED_RTTI
95 template<> void wxStringReadValue(const wxString
&s
, wxDateTime
&data
)
97 data
.ParseFormat(s
,"%Y-%m-%d %H:%M:%S", NULL
);
100 template<> void wxStringWriteValue(wxString
&s
, const wxDateTime
&data
)
102 s
= data
.Format("%Y-%m-%d %H:%M:%S");
105 wxCUSTOM_TYPE_INFO(wxDateTime
, wxToStringConverter
<wxDateTime
> , wxFromStringConverter
<wxDateTime
>)
107 #endif // wxUSE_EXTENDED_RTTI
110 // ----------------------------------------------------------------------------
111 // conditional compilation
112 // ----------------------------------------------------------------------------
114 #if defined(HAVE_STRPTIME) && defined(__GLIBC__) && \
115 ((__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0))
116 // glibc 2.0.7 strptime() is broken - the following snippet causes it to
117 // crash (instead of just failing):
119 // strncpy(buf, "Tue Dec 21 20:25:40 1999", 128);
120 // strptime(buf, "%x", &tm);
124 #endif // broken strptime()
126 #if defined(HAVE_STRPTIME) && defined(__DARWIN__) && defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS
127 // configure detects strptime as linkable because it's in the OS X
128 // System library but MSL headers don't declare it.
130 // char *strptime(const char *, const char *, struct tm *);
131 // However, we DON'T want to just provide it here because we would
132 // crash and/or overwrite data when strptime from OS X tries
133 // to fill in MW's struct tm which is two fields shorter (no TZ stuff)
134 // So for now let's just say we don't have strptime
138 #if defined(__MWERKS__) && wxUSE_UNICODE
142 #if !defined(WX_TIMEZONE) && !defined(WX_GMTOFF_IN_TM)
143 #if defined(__WXPALMOS__)
144 #define WX_GMTOFF_IN_TM
145 #elif defined(__BORLANDC__) || defined(__MINGW32__) || defined(__VISAGECPP__)
146 #define WX_TIMEZONE _timezone
147 #elif defined(__MWERKS__)
148 long wxmw_timezone
= 28800;
149 #define WX_TIMEZONE wxmw_timezone
150 #elif defined(__DJGPP__) || defined(__WINE__)
151 #include <sys/timeb.h>
153 static long wxGetTimeZone()
155 static long timezone
= MAXLONG
; // invalid timezone
156 if (timezone
== MAXLONG
)
160 timezone
= tb
.timezone
;
164 #define WX_TIMEZONE wxGetTimeZone()
165 #elif defined(__DARWIN__)
166 #define WX_GMTOFF_IN_TM
167 #elif defined(__WXWINCE__) && defined(__VISUALC8__)
168 // _timezone is not present in dynamic run-time library
170 // Solution (1): use the function equivalent of _timezone
171 static long wxGetTimeZone()
173 static long s_Timezone
= MAXLONG
; // invalid timezone
174 if (s_Timezone
== MAXLONG
)
178 s_Timezone
= (long) t
;
182 #define WX_TIMEZONE wxGetTimeZone()
184 // Solution (2): using GetTimeZoneInformation
185 static long wxGetTimeZone()
187 static long timezone
= MAXLONG
; // invalid timezone
188 if (timezone
== MAXLONG
)
190 TIME_ZONE_INFORMATION tzi
;
191 ::GetTimeZoneInformation(&tzi
);
196 #define WX_TIMEZONE wxGetTimeZone()
198 // Old method using _timezone: this symbol doesn't exist in the dynamic run-time library (i.e. using /MD)
199 #define WX_TIMEZONE _timezone
201 #else // unknown platform - try timezone
202 #define WX_TIMEZONE timezone
204 #endif // !WX_TIMEZONE && !WX_GMTOFF_IN_TM
206 // everyone has strftime except Win CE unless VC8 is used
207 #if !defined(__WXWINCE__) || defined(__VISUALC8__)
208 #define HAVE_STRFTIME
211 // NB: VC8 safe time functions could/should be used for wxMSW as well probably
212 #if defined(__WXWINCE__) && defined(__VISUALC8__)
214 struct tm
*wxLocaltime_r(const time_t *t
, struct tm
* tm
)
217 return _localtime64_s(tm
, &t64
) == 0 ? tm
: NULL
;
220 struct tm
*wxGmtime_r(const time_t* t
, struct tm
* tm
)
223 return _gmtime64_s(tm
, &t64
) == 0 ? tm
: NULL
;
226 #else // !wxWinCE with VC8
228 #if (!defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)) && wxUSE_THREADS && !defined(__WINDOWS__)
229 static wxMutex timeLock
;
232 #ifndef HAVE_LOCALTIME_R
233 struct tm
*wxLocaltime_r(const time_t* ticks
, struct tm
* temp
)
235 #if wxUSE_THREADS && !defined(__WINDOWS__)
236 // No need to waste time with a mutex on windows since it's using
237 // thread local storage for localtime anyway.
238 wxMutexLocker
locker(timeLock
);
241 // Borland CRT crashes when passed 0 ticks for some reason, see SF bug 1704438
247 const tm
* const t
= localtime(ticks
);
251 memcpy(temp
, t
, sizeof(struct tm
));
254 #endif // !HAVE_LOCALTIME_R
256 #ifndef HAVE_GMTIME_R
257 struct tm
*wxGmtime_r(const time_t* ticks
, struct tm
* temp
)
259 #if wxUSE_THREADS && !defined(__WINDOWS__)
260 // No need to waste time with a mutex on windows since it's
261 // using thread local storage for gmtime anyway.
262 wxMutexLocker
locker(timeLock
);
270 const tm
* const t
= gmtime(ticks
);
274 memcpy(temp
, gmtime(ticks
), sizeof(struct tm
));
277 #endif // !HAVE_GMTIME_R
279 #endif // wxWinCE with VC8/other platforms
281 // ----------------------------------------------------------------------------
283 // ----------------------------------------------------------------------------
285 // debugging helper: just a convenient replacement of wxCHECK()
286 #define wxDATETIME_CHECK(expr, msg) \
287 wxCHECK2_MSG(expr, *this = wxInvalidDateTime; return *this, msg)
289 // ----------------------------------------------------------------------------
291 // ----------------------------------------------------------------------------
293 class wxDateTimeHolidaysModule
: public wxModule
296 virtual bool OnInit()
298 wxDateTimeHolidayAuthority::AddAuthority(new wxDateTimeWorkDays
);
303 virtual void OnExit()
305 wxDateTimeHolidayAuthority::ClearAllAuthorities();
306 wxDateTimeHolidayAuthority::ms_authorities
.clear();
310 DECLARE_DYNAMIC_CLASS(wxDateTimeHolidaysModule
)
313 IMPLEMENT_DYNAMIC_CLASS(wxDateTimeHolidaysModule
, wxModule
)
315 // ----------------------------------------------------------------------------
317 // ----------------------------------------------------------------------------
320 static const int MONTHS_IN_YEAR
= 12;
322 static const int SEC_PER_MIN
= 60;
324 static const int MIN_PER_HOUR
= 60;
326 static const int HOURS_PER_DAY
= 24;
328 static const long SECONDS_PER_DAY
= 86400l;
330 static const int DAYS_PER_WEEK
= 7;
332 static const long MILLISECONDS_PER_DAY
= 86400000l;
334 // this is the integral part of JDN of the midnight of Jan 1, 1970
335 // (i.e. JDN(Jan 1, 1970) = 2440587.5)
336 static const long EPOCH_JDN
= 2440587l;
338 // used only in asserts
340 // the date of JDN -0.5 (as we don't work with fractional parts, this is the
341 // reference date for us) is Nov 24, 4714BC
342 static const int JDN_0_YEAR
= -4713;
343 static const int JDN_0_MONTH
= wxDateTime::Nov
;
344 static const int JDN_0_DAY
= 24;
345 #endif // __WXDEBUG__
347 // the constants used for JDN calculations
348 static const long JDN_OFFSET
= 32046l;
349 static const long DAYS_PER_5_MONTHS
= 153l;
350 static const long DAYS_PER_4_YEARS
= 1461l;
351 static const long DAYS_PER_400_YEARS
= 146097l;
353 // this array contains the cumulated number of days in all previous months for
354 // normal and leap years
355 static const wxDateTime::wxDateTime_t gs_cumulatedDays
[2][MONTHS_IN_YEAR
] =
357 { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 },
358 { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335 }
361 // ----------------------------------------------------------------------------
363 // ----------------------------------------------------------------------------
365 const char *wxDefaultDateTimeFormat
= "%c";
366 const char *wxDefaultTimeSpanFormat
= "%H:%M:%S";
368 // in the fine tradition of ANSI C we use our equivalent of (time_t)-1 to
369 // indicate an invalid wxDateTime object
370 const wxDateTime wxDefaultDateTime
;
372 wxDateTime::Country
wxDateTime::ms_country
= wxDateTime::Country_Unknown
;
374 // ----------------------------------------------------------------------------
376 // ----------------------------------------------------------------------------
378 // debugger helper: shows what the date really is
380 extern const char *wxDumpDate(const wxDateTime
* dt
)
382 static char buf
[128];
384 wxString
fmt(dt
->Format("%Y-%m-%d (%a) %H:%M:%S"));
386 (fmt
+ " (" + dt
->GetValue().ToString() + " ticks)").ToAscii(),
393 // get the number of days in the given month of the given year
394 // NOTE: not static because required by datetimefmt.cpp, too
396 wxDateTime::wxDateTime_t
GetNumOfDaysInMonth(int year
, wxDateTime::Month month
)
398 // the number of days in month in Julian/Gregorian calendar: the first line
399 // is for normal years, the second one is for the leap ones
400 static wxDateTime::wxDateTime_t daysInMonth
[2][MONTHS_IN_YEAR
] =
402 { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
403 { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
406 return daysInMonth
[wxDateTime::IsLeapYear(year
)][month
];
409 // returns the time zone in the C sense, i.e. the difference UTC - local
411 static int GetTimeZone()
413 // set to true when the timezone is set
414 static bool s_timezoneSet
= false;
415 static long gmtoffset
= LONG_MAX
; // invalid timezone
417 // ensure that the timezone variable is set by calling wxLocaltime_r
418 if ( !s_timezoneSet
)
420 // just call wxLocaltime_r() instead of figuring out whether this
421 // system supports tzset(), _tzset() or something else
425 wxLocaltime_r(&t
, &tm
);
426 s_timezoneSet
= true;
428 #ifdef WX_GMTOFF_IN_TM
429 // note that GMT offset is the opposite of time zone and so to return
430 // consistent results in both WX_GMTOFF_IN_TM and !WX_GMTOFF_IN_TM
431 // cases we have to negate it
432 gmtoffset
= -tm
.tm_gmtoff
;
433 #else // !WX_GMTOFF_IN_TM
434 gmtoffset
= WX_TIMEZONE
;
435 #endif // WX_GMTOFF_IN_TM/!WX_GMTOFF_IN_TM
438 return (int)gmtoffset
;
441 // return the integral part of the JDN for the midnight of the given date (to
442 // get the real JDN you need to add 0.5, this is, in fact, JDN of the
443 // noon of the previous day)
444 static long GetTruncatedJDN(wxDateTime::wxDateTime_t day
,
445 wxDateTime::Month mon
,
448 // CREDIT: code below is by Scott E. Lee (but bugs are mine)
450 // check the date validity
452 (year
> JDN_0_YEAR
) ||
453 ((year
== JDN_0_YEAR
) && (mon
> JDN_0_MONTH
)) ||
454 ((year
== JDN_0_YEAR
) && (mon
== JDN_0_MONTH
) && (day
>= JDN_0_DAY
)),
455 _T("date out of range - can't convert to JDN")
458 // make the year positive to avoid problems with negative numbers division
461 // months are counted from March here
463 if ( mon
>= wxDateTime::Mar
)
473 // now we can simply add all the contributions together
474 return ((year
/ 100) * DAYS_PER_400_YEARS
) / 4
475 + ((year
% 100) * DAYS_PER_4_YEARS
) / 4
476 + (month
* DAYS_PER_5_MONTHS
+ 2) / 5
483 // this function is a wrapper around strftime(3) adding error checking
484 static wxString
CallStrftime(const wxString
& format
, const tm
* tm
)
487 // Create temp wxString here to work around mingw/cygwin bug 1046059
488 // http://sourceforge.net/tracker/?func=detail&atid=102435&aid=1046059&group_id=2435
491 if ( !wxStrftime(buf
, WXSIZEOF(buf
), format
, tm
) )
493 // if the format is valid, buffer must be too small?
494 wxFAIL_MSG(_T("strftime() failed"));
503 #endif // HAVE_STRFTIME
507 #if wxUSE_UNIX && !defined(HAVE_STRPTIME_DECL)
508 // configure detected that we had strptime() but not its declaration,
509 // provide it ourselves
510 extern "C" char *strptime(const char *, const char *, struct tm
*);
513 // Unicode-friendly strptime() wrapper
514 static const wxStringCharType
*
515 CallStrptime(const wxStringCharType
*input
, const char *fmt
, tm
*tm
)
517 // the problem here is that strptime() returns pointer into the string we
518 // passed to it while we're really interested in the pointer into the
519 // original, Unicode, string so we try to transform the pointer back
520 #if wxUSE_UNICODE_WCHAR
521 wxCharBuffer
inputMB(wxConvertWX2MB(input
));
523 const char * const inputMB
= input
;
524 #endif // Unicode/Ascii
526 const char *result
= strptime(inputMB
, fmt
, tm
);
530 #if wxUSE_UNICODE_WCHAR
531 // FIXME: this is wrong in presence of surrogates &c
532 return input
+ (result
- inputMB
.data());
535 #endif // Unicode/Ascii
538 #endif // HAVE_STRPTIME
540 // if year and/or month have invalid values, replace them with the current ones
541 static void ReplaceDefaultYearMonthWithCurrent(int *year
,
542 wxDateTime::Month
*month
)
544 struct tm
*tmNow
= NULL
;
547 if ( *year
== wxDateTime::Inv_Year
)
549 tmNow
= wxDateTime::GetTmNow(&tmstruct
);
551 *year
= 1900 + tmNow
->tm_year
;
554 if ( *month
== wxDateTime::Inv_Month
)
557 tmNow
= wxDateTime::GetTmNow(&tmstruct
);
559 *month
= (wxDateTime::Month
)tmNow
->tm_mon
;
563 // fll the struct tm with default values
564 static void InitTm(struct tm
& tm
)
566 // struct tm may have etxra fields (undocumented and with unportable
567 // names) which, nevertheless, must be set to 0
568 memset(&tm
, 0, sizeof(struct tm
));
570 tm
.tm_mday
= 1; // mday 0 is invalid
571 tm
.tm_year
= 76; // any valid year
572 tm
.tm_isdst
= -1; // auto determine
575 // ============================================================================
576 // implementation of wxDateTime
577 // ============================================================================
579 // ----------------------------------------------------------------------------
581 // ----------------------------------------------------------------------------
585 year
= (wxDateTime_t
)wxDateTime::Inv_Year
;
586 mon
= wxDateTime::Inv_Month
;
588 hour
= min
= sec
= msec
= 0;
589 wday
= wxDateTime::Inv_WeekDay
;
592 wxDateTime::Tm::Tm(const struct tm
& tm
, const TimeZone
& tz
)
596 sec
= (wxDateTime::wxDateTime_t
)tm
.tm_sec
;
597 min
= (wxDateTime::wxDateTime_t
)tm
.tm_min
;
598 hour
= (wxDateTime::wxDateTime_t
)tm
.tm_hour
;
599 mday
= (wxDateTime::wxDateTime_t
)tm
.tm_mday
;
600 mon
= (wxDateTime::Month
)tm
.tm_mon
;
601 year
= 1900 + tm
.tm_year
;
602 wday
= (wxDateTime::wxDateTime_t
)tm
.tm_wday
;
603 yday
= (wxDateTime::wxDateTime_t
)tm
.tm_yday
;
606 bool wxDateTime::Tm::IsValid() const
608 // we allow for the leap seconds, although we don't use them (yet)
609 return (year
!= wxDateTime::Inv_Year
) && (mon
!= wxDateTime::Inv_Month
) &&
610 (mday
<= GetNumOfDaysInMonth(year
, mon
)) &&
611 (hour
< 24) && (min
< 60) && (sec
< 62) && (msec
< 1000);
614 void wxDateTime::Tm::ComputeWeekDay()
616 // compute the week day from day/month/year: we use the dumbest algorithm
617 // possible: just compute our JDN and then use the (simple to derive)
618 // formula: weekday = (JDN + 1.5) % 7
619 wday
= (wxDateTime::wxDateTime_t
)((GetTruncatedJDN(mday
, mon
, year
) + 2) % 7);
622 void wxDateTime::Tm::AddMonths(int monDiff
)
624 // normalize the months field
625 while ( monDiff
< -mon
)
629 monDiff
+= MONTHS_IN_YEAR
;
632 while ( monDiff
+ mon
>= MONTHS_IN_YEAR
)
636 monDiff
-= MONTHS_IN_YEAR
;
639 mon
= (wxDateTime::Month
)(mon
+ monDiff
);
641 wxASSERT_MSG( mon
>= 0 && mon
< MONTHS_IN_YEAR
, _T("logic error") );
643 // NB: we don't check here that the resulting date is valid, this function
644 // is private and the caller must check it if needed
647 void wxDateTime::Tm::AddDays(int dayDiff
)
649 // normalize the days field
650 while ( dayDiff
+ mday
< 1 )
654 dayDiff
+= GetNumOfDaysInMonth(year
, mon
);
657 mday
= (wxDateTime::wxDateTime_t
)( mday
+ dayDiff
);
658 while ( mday
> GetNumOfDaysInMonth(year
, mon
) )
660 mday
-= GetNumOfDaysInMonth(year
, mon
);
665 wxASSERT_MSG( mday
> 0 && mday
<= GetNumOfDaysInMonth(year
, mon
),
669 // ----------------------------------------------------------------------------
671 // ----------------------------------------------------------------------------
673 wxDateTime::TimeZone::TimeZone(wxDateTime::TZ tz
)
677 case wxDateTime::Local
:
678 // get the offset from C RTL: it returns the difference GMT-local
679 // while we want to have the offset _from_ GMT, hence the '-'
680 m_offset
= -GetTimeZone();
683 case wxDateTime::GMT_12
:
684 case wxDateTime::GMT_11
:
685 case wxDateTime::GMT_10
:
686 case wxDateTime::GMT_9
:
687 case wxDateTime::GMT_8
:
688 case wxDateTime::GMT_7
:
689 case wxDateTime::GMT_6
:
690 case wxDateTime::GMT_5
:
691 case wxDateTime::GMT_4
:
692 case wxDateTime::GMT_3
:
693 case wxDateTime::GMT_2
:
694 case wxDateTime::GMT_1
:
695 m_offset
= -3600*(wxDateTime::GMT0
- tz
);
698 case wxDateTime::GMT0
:
699 case wxDateTime::GMT1
:
700 case wxDateTime::GMT2
:
701 case wxDateTime::GMT3
:
702 case wxDateTime::GMT4
:
703 case wxDateTime::GMT5
:
704 case wxDateTime::GMT6
:
705 case wxDateTime::GMT7
:
706 case wxDateTime::GMT8
:
707 case wxDateTime::GMT9
:
708 case wxDateTime::GMT10
:
709 case wxDateTime::GMT11
:
710 case wxDateTime::GMT12
:
711 case wxDateTime::GMT13
:
712 m_offset
= 3600*(tz
- wxDateTime::GMT0
);
715 case wxDateTime::A_CST
:
716 // Central Standard Time in use in Australia = UTC + 9.5
717 m_offset
= 60l*(9*MIN_PER_HOUR
+ MIN_PER_HOUR
/2);
721 wxFAIL_MSG( _T("unknown time zone") );
725 // ----------------------------------------------------------------------------
727 // ----------------------------------------------------------------------------
730 bool wxDateTime::IsLeapYear(int year
, wxDateTime::Calendar cal
)
732 if ( year
== Inv_Year
)
733 year
= GetCurrentYear();
735 if ( cal
== Gregorian
)
737 // in Gregorian calendar leap years are those divisible by 4 except
738 // those divisible by 100 unless they're also divisible by 400
739 // (in some countries, like Russia and Greece, additional corrections
740 // exist, but they won't manifest themselves until 2700)
741 return (year
% 4 == 0) && ((year
% 100 != 0) || (year
% 400 == 0));
743 else if ( cal
== Julian
)
745 // in Julian calendar the rule is simpler
746 return year
% 4 == 0;
750 wxFAIL_MSG(_T("unknown calendar"));
757 int wxDateTime::GetCentury(int year
)
759 return year
> 0 ? year
/ 100 : year
/ 100 - 1;
763 int wxDateTime::ConvertYearToBC(int year
)
766 return year
> 0 ? year
: year
- 1;
770 int wxDateTime::GetCurrentYear(wxDateTime::Calendar cal
)
775 return Now().GetYear();
778 wxFAIL_MSG(_T("TODO"));
782 wxFAIL_MSG(_T("unsupported calendar"));
790 wxDateTime::Month
wxDateTime::GetCurrentMonth(wxDateTime::Calendar cal
)
795 return Now().GetMonth();
798 wxFAIL_MSG(_T("TODO"));
802 wxFAIL_MSG(_T("unsupported calendar"));
810 wxDateTime::wxDateTime_t
wxDateTime::GetNumberOfDays(int year
, Calendar cal
)
812 if ( year
== Inv_Year
)
814 // take the current year if none given
815 year
= GetCurrentYear();
822 return IsLeapYear(year
) ? 366 : 365;
825 wxFAIL_MSG(_T("unsupported calendar"));
833 wxDateTime::wxDateTime_t
wxDateTime::GetNumberOfDays(wxDateTime::Month month
,
835 wxDateTime::Calendar cal
)
837 wxCHECK_MSG( month
< MONTHS_IN_YEAR
, 0, _T("invalid month") );
839 if ( cal
== Gregorian
|| cal
== Julian
)
841 if ( year
== Inv_Year
)
843 // take the current year if none given
844 year
= GetCurrentYear();
847 return GetNumOfDaysInMonth(year
, month
);
851 wxFAIL_MSG(_T("unsupported calendar"));
858 wxString
wxDateTime::GetMonthName(wxDateTime::Month month
,
859 wxDateTime::NameFlags flags
)
861 wxCHECK_MSG( month
!= Inv_Month
, wxEmptyString
, _T("invalid month") );
863 // notice that we must set all the fields to avoid confusing libc (GNU one
864 // gets confused to a crash if we don't do this)
869 return CallStrftime(flags
== Name_Abbr
? _T("%b") : _T("%B"), &tm
);
870 #else // !HAVE_STRFTIME
875 ret
= (flags
== Name_Abbr
? wxT("Jan"): wxT("January"));
878 ret
= (flags
== Name_Abbr
? wxT("Feb"): wxT("Febuary"));
881 ret
= (flags
== Name_Abbr
? wxT("Mar"): wxT("March"));
884 ret
= (flags
== Name_Abbr
? wxT("Apr"): wxT("April"));
887 ret
= (flags
== Name_Abbr
? wxT("May"): wxT("May"));
890 ret
= (flags
== Name_Abbr
? wxT("Jun"): wxT("June"));
893 ret
= (flags
== Name_Abbr
? wxT("Jul"): wxT("July"));
896 ret
= (flags
== Name_Abbr
? wxT("Aug"): wxT("August"));
899 ret
= (flags
== Name_Abbr
? wxT("Sep"): wxT("September"));
902 ret
= (flags
== Name_Abbr
? wxT("Oct"): wxT("October"));
905 ret
= (flags
== Name_Abbr
? wxT("Nov"): wxT("November"));
908 ret
= (flags
== Name_Abbr
? wxT("Dec"): wxT("December"));
912 #endif // HAVE_STRFTIME/!HAVE_STRFTIME
916 wxString
wxDateTime::GetWeekDayName(wxDateTime::WeekDay wday
,
917 wxDateTime::NameFlags flags
)
919 wxCHECK_MSG( wday
!= Inv_WeekDay
, wxEmptyString
, _T("invalid weekday") );
921 // take some arbitrary Sunday (but notice that the day should be such that
922 // after adding wday to it below we still have a valid date, e.g. don't
930 // and offset it by the number of days needed to get the correct wday
933 // call mktime() to normalize it...
936 // ... and call strftime()
937 return CallStrftime(flags
== Name_Abbr
? _T("%a") : _T("%A"), &tm
);
938 #else // !HAVE_STRFTIME
943 ret
= (flags
== Name_Abbr
? wxT("Sun") : wxT("Sunday"));
946 ret
= (flags
== Name_Abbr
? wxT("Mon") : wxT("Monday"));
949 ret
= (flags
== Name_Abbr
? wxT("Tue") : wxT("Tuesday"));
952 ret
= (flags
== Name_Abbr
? wxT("Wed") : wxT("Wednesday"));
955 ret
= (flags
== Name_Abbr
? wxT("Thu") : wxT("Thursday"));
958 ret
= (flags
== Name_Abbr
? wxT("Fri") : wxT("Friday"));
961 ret
= (flags
== Name_Abbr
? wxT("Sat") : wxT("Saturday"));
965 #endif // HAVE_STRFTIME/!HAVE_STRFTIME
969 void wxDateTime::GetAmPmStrings(wxString
*am
, wxString
*pm
)
974 // @Note: Do not call 'CallStrftime' here! CallStrftime checks the return code
975 // and causes an assertion failed if the buffer is to small (which is good) - OR -
976 // if strftime does not return anything because the format string is invalid - OR -
977 // if there are no 'am' / 'pm' tokens defined for the current locale (which is not good).
978 // wxDateTime::ParseTime will try several different formats to parse the time.
979 // As a result, GetAmPmStrings might get called, even if the current locale
980 // does not define any 'am' / 'pm' tokens. In this case, wxStrftime would
981 // assert, even though it is a perfectly legal use.
984 if (wxStrftime(buffer
, sizeof(buffer
)/sizeof(wxChar
), _T("%p"), &tm
) > 0)
985 *am
= wxString(buffer
);
992 if (wxStrftime(buffer
, sizeof(buffer
)/sizeof(wxChar
), _T("%p"), &tm
) > 0)
993 *pm
= wxString(buffer
);
1000 // ----------------------------------------------------------------------------
1001 // Country stuff: date calculations depend on the country (DST, work days,
1002 // ...), so we need to know which rules to follow.
1003 // ----------------------------------------------------------------------------
1006 wxDateTime::Country
wxDateTime::GetCountry()
1008 // TODO use LOCALE_ICOUNTRY setting under Win32
1010 if ( ms_country
== Country_Unknown
)
1012 // try to guess from the time zone name
1013 time_t t
= time(NULL
);
1015 struct tm
*tm
= wxLocaltime_r(&t
, &tmstruct
);
1017 wxString tz
= CallStrftime(_T("%Z"), tm
);
1018 if ( tz
== _T("WET") || tz
== _T("WEST") )
1022 else if ( tz
== _T("CET") || tz
== _T("CEST") )
1024 ms_country
= Country_EEC
;
1026 else if ( tz
== _T("MSK") || tz
== _T("MSD") )
1028 ms_country
= Russia
;
1030 else if ( tz
== _T("AST") || tz
== _T("ADT") ||
1031 tz
== _T("EST") || tz
== _T("EDT") ||
1032 tz
== _T("CST") || tz
== _T("CDT") ||
1033 tz
== _T("MST") || tz
== _T("MDT") ||
1034 tz
== _T("PST") || tz
== _T("PDT") )
1040 // well, choose a default one
1044 #else // __WXWINCE__
1046 #endif // !__WXWINCE__/__WXWINCE__
1052 void wxDateTime::SetCountry(wxDateTime::Country country
)
1054 ms_country
= country
;
1058 bool wxDateTime::IsWestEuropeanCountry(Country country
)
1060 if ( country
== Country_Default
)
1062 country
= GetCountry();
1065 return (Country_WesternEurope_Start
<= country
) &&
1066 (country
<= Country_WesternEurope_End
);
1069 // ----------------------------------------------------------------------------
1070 // DST calculations: we use 3 different rules for the West European countries,
1071 // USA and for the rest of the world. This is undoubtedly false for many
1072 // countries, but I lack the necessary info (and the time to gather it),
1073 // please add the other rules here!
1074 // ----------------------------------------------------------------------------
1077 bool wxDateTime::IsDSTApplicable(int year
, Country country
)
1079 if ( year
== Inv_Year
)
1081 // take the current year if none given
1082 year
= GetCurrentYear();
1085 if ( country
== Country_Default
)
1087 country
= GetCountry();
1094 // DST was first observed in the US and UK during WWI, reused
1095 // during WWII and used again since 1966
1096 return year
>= 1966 ||
1097 (year
>= 1942 && year
<= 1945) ||
1098 (year
== 1918 || year
== 1919);
1101 // assume that it started after WWII
1107 wxDateTime
wxDateTime::GetBeginDST(int year
, Country country
)
1109 if ( year
== Inv_Year
)
1111 // take the current year if none given
1112 year
= GetCurrentYear();
1115 if ( country
== Country_Default
)
1117 country
= GetCountry();
1120 if ( !IsDSTApplicable(year
, country
) )
1122 return wxInvalidDateTime
;
1127 if ( IsWestEuropeanCountry(country
) || (country
== Russia
) )
1129 // DST begins at 1 a.m. GMT on the last Sunday of March
1130 if ( !dt
.SetToLastWeekDay(Sun
, Mar
, year
) )
1133 wxFAIL_MSG( _T("no last Sunday in March?") );
1136 dt
+= wxTimeSpan::Hours(1);
1138 else switch ( country
)
1145 // don't know for sure - assume it was in effect all year
1150 dt
.Set(1, Jan
, year
);
1154 // DST was installed Feb 2, 1942 by the Congress
1155 dt
.Set(2, Feb
, year
);
1158 // Oil embargo changed the DST period in the US
1160 dt
.Set(6, Jan
, 1974);
1164 dt
.Set(23, Feb
, 1975);
1168 // before 1986, DST begun on the last Sunday of April, but
1169 // in 1986 Reagan changed it to begin at 2 a.m. of the
1170 // first Sunday in April
1173 if ( !dt
.SetToLastWeekDay(Sun
, Apr
, year
) )
1176 wxFAIL_MSG( _T("no first Sunday in April?") );
1179 else if ( year
> 2006 )
1180 // Energy Policy Act of 2005, Pub. L. no. 109-58, 119 Stat 594 (2005).
1181 // Starting in 2007, daylight time begins in the United States on the
1182 // second Sunday in March and ends on the first Sunday in November
1184 if ( !dt
.SetToWeekDay(Sun
, 2, Mar
, year
) )
1187 wxFAIL_MSG( _T("no second Sunday in March?") );
1192 if ( !dt
.SetToWeekDay(Sun
, 1, Apr
, year
) )
1195 wxFAIL_MSG( _T("no first Sunday in April?") );
1199 dt
+= wxTimeSpan::Hours(2);
1201 // TODO what about timezone??
1207 // assume Mar 30 as the start of the DST for the rest of the world
1208 // - totally bogus, of course
1209 dt
.Set(30, Mar
, year
);
1216 wxDateTime
wxDateTime::GetEndDST(int year
, Country country
)
1218 if ( year
== Inv_Year
)
1220 // take the current year if none given
1221 year
= GetCurrentYear();
1224 if ( country
== Country_Default
)
1226 country
= GetCountry();
1229 if ( !IsDSTApplicable(year
, country
) )
1231 return wxInvalidDateTime
;
1236 if ( IsWestEuropeanCountry(country
) || (country
== Russia
) )
1238 // DST ends at 1 a.m. GMT on the last Sunday of October
1239 if ( !dt
.SetToLastWeekDay(Sun
, Oct
, year
) )
1241 // weirder and weirder...
1242 wxFAIL_MSG( _T("no last Sunday in October?") );
1245 dt
+= wxTimeSpan::Hours(1);
1247 else switch ( country
)
1254 // don't know for sure - assume it was in effect all year
1258 dt
.Set(31, Dec
, year
);
1262 // the time was reset after the end of the WWII
1263 dt
.Set(30, Sep
, year
);
1266 default: // default for switch (year)
1268 // Energy Policy Act of 2005, Pub. L. no. 109-58, 119 Stat 594 (2005).
1269 // Starting in 2007, daylight time begins in the United States on the
1270 // second Sunday in March and ends on the first Sunday in November
1272 if ( !dt
.SetToWeekDay(Sun
, 1, Nov
, year
) )
1275 wxFAIL_MSG( _T("no first Sunday in November?") );
1280 // DST ends at 2 a.m. on the last Sunday of October
1282 if ( !dt
.SetToLastWeekDay(Sun
, Oct
, year
) )
1284 // weirder and weirder...
1285 wxFAIL_MSG( _T("no last Sunday in October?") );
1289 dt
+= wxTimeSpan::Hours(2);
1291 // TODO: what about timezone??
1295 default: // default for switch (country)
1296 // assume October 26th as the end of the DST - totally bogus too
1297 dt
.Set(26, Oct
, year
);
1303 // ----------------------------------------------------------------------------
1304 // constructors and assignment operators
1305 // ----------------------------------------------------------------------------
1307 // return the current time with ms precision
1308 /* static */ wxDateTime
wxDateTime::UNow()
1310 return wxDateTime(wxGetLocalTimeMillis());
1313 // the values in the tm structure contain the local time
1314 wxDateTime
& wxDateTime::Set(const struct tm
& tm
)
1317 time_t timet
= mktime(&tm2
);
1319 if ( timet
== (time_t)-1 )
1321 // mktime() rather unintuitively fails for Jan 1, 1970 if the hour is
1322 // less than timezone - try to make it work for this case
1323 if ( tm2
.tm_year
== 70 && tm2
.tm_mon
== 0 && tm2
.tm_mday
== 1 )
1325 return Set((time_t)(
1327 tm2
.tm_hour
* MIN_PER_HOUR
* SEC_PER_MIN
+
1328 tm2
.tm_min
* SEC_PER_MIN
+
1332 wxFAIL_MSG( _T("mktime() failed") );
1334 *this = wxInvalidDateTime
;
1344 wxDateTime
& wxDateTime::Set(wxDateTime_t hour
,
1345 wxDateTime_t minute
,
1346 wxDateTime_t second
,
1347 wxDateTime_t millisec
)
1349 // we allow seconds to be 61 to account for the leap seconds, even if we
1350 // don't use them really
1351 wxDATETIME_CHECK( hour
< 24 &&
1355 _T("Invalid time in wxDateTime::Set()") );
1357 // get the current date from system
1359 struct tm
*tm
= GetTmNow(&tmstruct
);
1361 wxDATETIME_CHECK( tm
, _T("wxLocaltime_r() failed") );
1363 // make a copy so it isn't clobbered by the call to mktime() below
1368 tm1
.tm_min
= minute
;
1369 tm1
.tm_sec
= second
;
1371 // and the DST in case it changes on this date
1374 if ( tm2
.tm_isdst
!= tm1
.tm_isdst
)
1375 tm1
.tm_isdst
= tm2
.tm_isdst
;
1379 // and finally adjust milliseconds
1380 return SetMillisecond(millisec
);
1383 wxDateTime
& wxDateTime::Set(wxDateTime_t day
,
1387 wxDateTime_t minute
,
1388 wxDateTime_t second
,
1389 wxDateTime_t millisec
)
1391 wxDATETIME_CHECK( hour
< 24 &&
1395 _T("Invalid time in wxDateTime::Set()") );
1397 ReplaceDefaultYearMonthWithCurrent(&year
, &month
);
1399 wxDATETIME_CHECK( (0 < day
) && (day
<= GetNumberOfDays(month
, year
)),
1400 _T("Invalid date in wxDateTime::Set()") );
1402 // the range of time_t type (inclusive)
1403 static const int yearMinInRange
= 1970;
1404 static const int yearMaxInRange
= 2037;
1406 // test only the year instead of testing for the exact end of the Unix
1407 // time_t range - it doesn't bring anything to do more precise checks
1408 if ( year
>= yearMinInRange
&& year
<= yearMaxInRange
)
1410 // use the standard library version if the date is in range - this is
1411 // probably more efficient than our code
1413 tm
.tm_year
= year
- 1900;
1419 tm
.tm_isdst
= -1; // mktime() will guess it
1423 // and finally adjust milliseconds
1425 SetMillisecond(millisec
);
1431 // do time calculations ourselves: we want to calculate the number of
1432 // milliseconds between the given date and the epoch
1434 // get the JDN for the midnight of this day
1435 m_time
= GetTruncatedJDN(day
, month
, year
);
1436 m_time
-= EPOCH_JDN
;
1437 m_time
*= SECONDS_PER_DAY
* TIME_T_FACTOR
;
1439 // JDN corresponds to GMT, we take localtime
1440 Add(wxTimeSpan(hour
, minute
, second
+ GetTimeZone(), millisec
));
1446 wxDateTime
& wxDateTime::Set(double jdn
)
1448 // so that m_time will be 0 for the midnight of Jan 1, 1970 which is jdn
1450 jdn
-= EPOCH_JDN
+ 0.5;
1452 m_time
.Assign(jdn
*MILLISECONDS_PER_DAY
);
1454 // JDNs always are in UTC, so we don't need any adjustments for time zone
1459 wxDateTime
& wxDateTime::ResetTime()
1463 if ( tm
.hour
|| tm
.min
|| tm
.sec
|| tm
.msec
)
1476 wxDateTime
wxDateTime::GetDateOnly() const
1483 return wxDateTime(tm
);
1486 // ----------------------------------------------------------------------------
1487 // DOS Date and Time Format functions
1488 // ----------------------------------------------------------------------------
1489 // the dos date and time value is an unsigned 32 bit value in the format:
1490 // YYYYYYYMMMMDDDDDhhhhhmmmmmmsssss
1492 // Y = year offset from 1980 (0-127)
1494 // D = day of month (1-31)
1496 // m = minute (0-59)
1497 // s = bisecond (0-29) each bisecond indicates two seconds
1498 // ----------------------------------------------------------------------------
1500 wxDateTime
& wxDateTime::SetFromDOS(unsigned long ddt
)
1505 long year
= ddt
& 0xFE000000;
1510 long month
= ddt
& 0x1E00000;
1515 long day
= ddt
& 0x1F0000;
1519 long hour
= ddt
& 0xF800;
1523 long minute
= ddt
& 0x7E0;
1527 long second
= ddt
& 0x1F;
1528 tm
.tm_sec
= second
* 2;
1530 return Set(mktime(&tm
));
1533 unsigned long wxDateTime::GetAsDOS() const
1536 time_t ticks
= GetTicks();
1538 struct tm
*tm
= wxLocaltime_r(&ticks
, &tmstruct
);
1539 wxCHECK_MSG( tm
, ULONG_MAX
, _T("time can't be represented in DOS format") );
1541 long year
= tm
->tm_year
;
1545 long month
= tm
->tm_mon
;
1549 long day
= tm
->tm_mday
;
1552 long hour
= tm
->tm_hour
;
1555 long minute
= tm
->tm_min
;
1558 long second
= tm
->tm_sec
;
1561 ddt
= year
| month
| day
| hour
| minute
| second
;
1565 // ----------------------------------------------------------------------------
1566 // time_t <-> broken down time conversions
1567 // ----------------------------------------------------------------------------
1569 wxDateTime::Tm
wxDateTime::GetTm(const TimeZone
& tz
) const
1571 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1573 time_t time
= GetTicks();
1574 if ( time
!= (time_t)-1 )
1576 // use C RTL functions
1579 if ( tz
.GetOffset() == -GetTimeZone() )
1581 // we are working with local time
1582 tm
= wxLocaltime_r(&time
, &tmstruct
);
1584 // should never happen
1585 wxCHECK_MSG( tm
, Tm(), _T("wxLocaltime_r() failed") );
1589 time
+= (time_t)tz
.GetOffset();
1590 #if defined(__VMS__) || defined(__WATCOMC__) // time is unsigned so avoid warning
1591 int time2
= (int) time
;
1597 tm
= wxGmtime_r(&time
, &tmstruct
);
1599 // should never happen
1600 wxCHECK_MSG( tm
, Tm(), _T("wxGmtime_r() failed") );
1604 tm
= (struct tm
*)NULL
;
1610 // adjust the milliseconds
1612 long timeOnly
= (m_time
% MILLISECONDS_PER_DAY
).ToLong();
1613 tm2
.msec
= (wxDateTime_t
)(timeOnly
% 1000);
1616 //else: use generic code below
1619 // remember the time and do the calculations with the date only - this
1620 // eliminates rounding errors of the floating point arithmetics
1622 wxLongLong timeMidnight
= m_time
+ tz
.GetOffset() * 1000;
1624 long timeOnly
= (timeMidnight
% MILLISECONDS_PER_DAY
).ToLong();
1626 // we want to always have positive time and timeMidnight to be really
1627 // the midnight before it
1630 timeOnly
= MILLISECONDS_PER_DAY
+ timeOnly
;
1633 timeMidnight
-= timeOnly
;
1635 // calculate the Gregorian date from JDN for the midnight of our date:
1636 // this will yield day, month (in 1..12 range) and year
1638 // actually, this is the JDN for the noon of the previous day
1639 long jdn
= (timeMidnight
/ MILLISECONDS_PER_DAY
).ToLong() + EPOCH_JDN
;
1641 // CREDIT: code below is by Scott E. Lee (but bugs are mine)
1643 wxASSERT_MSG( jdn
> -2, _T("JDN out of range") );
1645 // calculate the century
1646 long temp
= (jdn
+ JDN_OFFSET
) * 4 - 1;
1647 long century
= temp
/ DAYS_PER_400_YEARS
;
1649 // then the year and day of year (1 <= dayOfYear <= 366)
1650 temp
= ((temp
% DAYS_PER_400_YEARS
) / 4) * 4 + 3;
1651 long year
= (century
* 100) + (temp
/ DAYS_PER_4_YEARS
);
1652 long dayOfYear
= (temp
% DAYS_PER_4_YEARS
) / 4 + 1;
1654 // and finally the month and day of the month
1655 temp
= dayOfYear
* 5 - 3;
1656 long month
= temp
/ DAYS_PER_5_MONTHS
;
1657 long day
= (temp
% DAYS_PER_5_MONTHS
) / 5 + 1;
1659 // month is counted from March - convert to normal
1670 // year is offset by 4800
1673 // check that the algorithm gave us something reasonable
1674 wxASSERT_MSG( (0 < month
) && (month
<= 12), _T("invalid month") );
1675 wxASSERT_MSG( (1 <= day
) && (day
< 32), _T("invalid day") );
1677 // construct Tm from these values
1679 tm
.year
= (int)year
;
1680 tm
.mon
= (Month
)(month
- 1); // algorithm yields 1 for January, not 0
1681 tm
.mday
= (wxDateTime_t
)day
;
1682 tm
.msec
= (wxDateTime_t
)(timeOnly
% 1000);
1683 timeOnly
-= tm
.msec
;
1684 timeOnly
/= 1000; // now we have time in seconds
1686 tm
.sec
= (wxDateTime_t
)(timeOnly
% SEC_PER_MIN
);
1688 timeOnly
/= SEC_PER_MIN
; // now we have time in minutes
1690 tm
.min
= (wxDateTime_t
)(timeOnly
% MIN_PER_HOUR
);
1693 tm
.hour
= (wxDateTime_t
)(timeOnly
/ MIN_PER_HOUR
);
1698 wxDateTime
& wxDateTime::SetYear(int year
)
1700 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1709 wxDateTime
& wxDateTime::SetMonth(Month month
)
1711 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1720 wxDateTime
& wxDateTime::SetDay(wxDateTime_t mday
)
1722 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1731 wxDateTime
& wxDateTime::SetHour(wxDateTime_t hour
)
1733 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1742 wxDateTime
& wxDateTime::SetMinute(wxDateTime_t min
)
1744 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1753 wxDateTime
& wxDateTime::SetSecond(wxDateTime_t sec
)
1755 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1764 wxDateTime
& wxDateTime::SetMillisecond(wxDateTime_t millisecond
)
1766 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1768 // we don't need to use GetTm() for this one
1769 m_time
-= m_time
% 1000l;
1770 m_time
+= millisecond
;
1775 // ----------------------------------------------------------------------------
1776 // wxDateTime arithmetics
1777 // ----------------------------------------------------------------------------
1779 wxDateTime
& wxDateTime::Add(const wxDateSpan
& diff
)
1783 tm
.year
+= diff
.GetYears();
1784 tm
.AddMonths(diff
.GetMonths());
1786 // check that the resulting date is valid
1787 if ( tm
.mday
> GetNumOfDaysInMonth(tm
.year
, tm
.mon
) )
1789 // We suppose that when adding one month to Jan 31 we want to get Feb
1790 // 28 (or 29), i.e. adding a month to the last day of the month should
1791 // give the last day of the next month which is quite logical.
1793 // Unfortunately, there is no logic way to understand what should
1794 // Jan 30 + 1 month be - Feb 28 too or Feb 27 (assuming non leap year)?
1795 // We make it Feb 28 (last day too), but it is highly questionable.
1796 tm
.mday
= GetNumOfDaysInMonth(tm
.year
, tm
.mon
);
1799 tm
.AddDays(diff
.GetTotalDays());
1803 wxASSERT_MSG( IsSameTime(tm
),
1804 _T("Add(wxDateSpan) shouldn't modify time") );
1809 // ----------------------------------------------------------------------------
1810 // Weekday and monthday stuff
1811 // ----------------------------------------------------------------------------
1813 // convert Sun, Mon, ..., Sat into 6, 0, ..., 5
1814 static inline int ConvertWeekDayToMondayBase(int wd
)
1816 return wd
== wxDateTime::Sun
? 6 : wd
- 1;
1821 wxDateTime::SetToWeekOfYear(int year
, wxDateTime_t numWeek
, WeekDay wd
)
1823 wxASSERT_MSG( numWeek
> 0,
1824 _T("invalid week number: weeks are counted from 1") );
1826 // Jan 4 always lies in the 1st week of the year
1827 wxDateTime
dt(4, Jan
, year
);
1828 dt
.SetToWeekDayInSameWeek(wd
);
1829 dt
+= wxDateSpan::Weeks(numWeek
- 1);
1834 #if WXWIN_COMPATIBILITY_2_6
1835 // use a separate function to avoid warnings about using deprecated
1836 // SetToTheWeek in GetWeek below
1838 SetToTheWeek(int year
,
1839 wxDateTime::wxDateTime_t numWeek
,
1840 wxDateTime::WeekDay weekday
,
1841 wxDateTime::WeekFlags flags
)
1843 // Jan 4 always lies in the 1st week of the year
1844 wxDateTime
dt(4, wxDateTime::Jan
, year
);
1845 dt
.SetToWeekDayInSameWeek(weekday
, flags
);
1846 dt
+= wxDateSpan::Weeks(numWeek
- 1);
1851 bool wxDateTime::SetToTheWeek(wxDateTime_t numWeek
,
1855 int year
= GetYear();
1856 *this = ::SetToTheWeek(year
, numWeek
, weekday
, flags
);
1857 if ( GetYear() != year
)
1859 // oops... numWeek was too big
1866 wxDateTime
wxDateTime::GetWeek(wxDateTime_t numWeek
,
1868 WeekFlags flags
) const
1870 return ::SetToTheWeek(GetYear(), numWeek
, weekday
, flags
);
1872 #endif // WXWIN_COMPATIBILITY_2_6
1874 wxDateTime
& wxDateTime::SetToLastMonthDay(Month month
,
1877 // take the current month/year if none specified
1878 if ( year
== Inv_Year
)
1880 if ( month
== Inv_Month
)
1883 return Set(GetNumOfDaysInMonth(year
, month
), month
, year
);
1886 wxDateTime
& wxDateTime::SetToWeekDayInSameWeek(WeekDay weekday
, WeekFlags flags
)
1888 wxDATETIME_CHECK( weekday
!= Inv_WeekDay
, _T("invalid weekday") );
1890 int wdayDst
= weekday
,
1891 wdayThis
= GetWeekDay();
1892 if ( wdayDst
== wdayThis
)
1898 if ( flags
== Default_First
)
1900 flags
= GetCountry() == USA
? Sunday_First
: Monday_First
;
1903 // the logic below based on comparing weekday and wdayThis works if Sun (0)
1904 // is the first day in the week, but breaks down for Monday_First case so
1905 // we adjust the week days in this case
1906 if ( flags
== Monday_First
)
1908 if ( wdayThis
== Sun
)
1910 if ( wdayDst
== Sun
)
1913 //else: Sunday_First, nothing to do
1915 // go forward or back in time to the day we want
1916 if ( wdayDst
< wdayThis
)
1918 return Subtract(wxDateSpan::Days(wdayThis
- wdayDst
));
1920 else // weekday > wdayThis
1922 return Add(wxDateSpan::Days(wdayDst
- wdayThis
));
1926 wxDateTime
& wxDateTime::SetToNextWeekDay(WeekDay weekday
)
1928 wxDATETIME_CHECK( weekday
!= Inv_WeekDay
, _T("invalid weekday") );
1931 WeekDay wdayThis
= GetWeekDay();
1932 if ( weekday
== wdayThis
)
1937 else if ( weekday
< wdayThis
)
1939 // need to advance a week
1940 diff
= 7 - (wdayThis
- weekday
);
1942 else // weekday > wdayThis
1944 diff
= weekday
- wdayThis
;
1947 return Add(wxDateSpan::Days(diff
));
1950 wxDateTime
& wxDateTime::SetToPrevWeekDay(WeekDay weekday
)
1952 wxDATETIME_CHECK( weekday
!= Inv_WeekDay
, _T("invalid weekday") );
1955 WeekDay wdayThis
= GetWeekDay();
1956 if ( weekday
== wdayThis
)
1961 else if ( weekday
> wdayThis
)
1963 // need to go to previous week
1964 diff
= 7 - (weekday
- wdayThis
);
1966 else // weekday < wdayThis
1968 diff
= wdayThis
- weekday
;
1971 return Subtract(wxDateSpan::Days(diff
));
1974 bool wxDateTime::SetToWeekDay(WeekDay weekday
,
1979 wxCHECK_MSG( weekday
!= Inv_WeekDay
, false, _T("invalid weekday") );
1981 // we don't check explicitly that -5 <= n <= 5 because we will return false
1982 // anyhow in such case - but may be should still give an assert for it?
1984 // take the current month/year if none specified
1985 ReplaceDefaultYearMonthWithCurrent(&year
, &month
);
1989 // TODO this probably could be optimised somehow...
1993 // get the first day of the month
1994 dt
.Set(1, month
, year
);
1997 WeekDay wdayFirst
= dt
.GetWeekDay();
1999 // go to the first weekday of the month
2000 int diff
= weekday
- wdayFirst
;
2004 // add advance n-1 weeks more
2007 dt
+= wxDateSpan::Days(diff
);
2009 else // count from the end of the month
2011 // get the last day of the month
2012 dt
.SetToLastMonthDay(month
, year
);
2015 WeekDay wdayLast
= dt
.GetWeekDay();
2017 // go to the last weekday of the month
2018 int diff
= wdayLast
- weekday
;
2022 // and rewind n-1 weeks from there
2025 dt
-= wxDateSpan::Days(diff
);
2028 // check that it is still in the same month
2029 if ( dt
.GetMonth() == month
)
2037 // no such day in this month
2043 wxDateTime::wxDateTime_t
GetDayOfYearFromTm(const wxDateTime::Tm
& tm
)
2045 return (wxDateTime::wxDateTime_t
)(gs_cumulatedDays
[wxDateTime::IsLeapYear(tm
.year
)][tm
.mon
] + tm
.mday
);
2048 wxDateTime::wxDateTime_t
wxDateTime::GetDayOfYear(const TimeZone
& tz
) const
2050 return GetDayOfYearFromTm(GetTm(tz
));
2053 wxDateTime::wxDateTime_t
2054 wxDateTime::GetWeekOfYear(wxDateTime::WeekFlags flags
, const TimeZone
& tz
) const
2056 if ( flags
== Default_First
)
2058 flags
= GetCountry() == USA
? Sunday_First
: Monday_First
;
2062 wxDateTime_t nDayInYear
= GetDayOfYearFromTm(tm
);
2064 int wdTarget
= GetWeekDay(tz
);
2065 int wdYearStart
= wxDateTime(1, Jan
, GetYear()).GetWeekDay();
2067 if ( flags
== Sunday_First
)
2069 // FIXME: First week is not calculated correctly.
2070 week
= (nDayInYear
- wdTarget
+ 7) / 7;
2071 if ( wdYearStart
== Wed
|| wdYearStart
== Thu
)
2074 else // week starts with monday
2076 // adjust the weekdays to non-US style.
2077 wdYearStart
= ConvertWeekDayToMondayBase(wdYearStart
);
2078 wdTarget
= ConvertWeekDayToMondayBase(wdTarget
);
2080 // quoting from http://www.cl.cam.ac.uk/~mgk25/iso-time.html:
2082 // Week 01 of a year is per definition the first week that has the
2083 // Thursday in this year, which is equivalent to the week that
2084 // contains the fourth day of January. In other words, the first
2085 // week of a new year is the week that has the majority of its
2086 // days in the new year. Week 01 might also contain days from the
2087 // previous year and the week before week 01 of a year is the last
2088 // week (52 or 53) of the previous year even if it contains days
2089 // from the new year. A week starts with Monday (day 1) and ends
2090 // with Sunday (day 7).
2093 // if Jan 1 is Thursday or less, it is in the first week of this year
2094 if ( wdYearStart
< 4 )
2096 // count the number of entire weeks between Jan 1 and this date
2097 week
= (nDayInYear
+ wdYearStart
+ 6 - wdTarget
)/7;
2099 // be careful to check for overflow in the next year
2100 if ( week
== 53 && tm
.mday
- wdTarget
> 28 )
2103 else // Jan 1 is in the last week of the previous year
2105 // check if we happen to be at the last week of previous year:
2106 if ( tm
.mon
== Jan
&& tm
.mday
< 8 - wdYearStart
)
2107 week
= wxDateTime(31, Dec
, GetYear()-1).GetWeekOfYear();
2109 week
= (nDayInYear
+ wdYearStart
- 1 - wdTarget
)/7;
2113 return (wxDateTime::wxDateTime_t
)week
;
2116 wxDateTime::wxDateTime_t
wxDateTime::GetWeekOfMonth(wxDateTime::WeekFlags flags
,
2117 const TimeZone
& tz
) const
2120 wxDateTime dtMonthStart
= wxDateTime(1, tm
.mon
, tm
.year
);
2121 int nWeek
= GetWeekOfYear(flags
) - dtMonthStart
.GetWeekOfYear(flags
) + 1;
2124 // this may happen for January when Jan, 1 is the last week of the
2126 nWeek
+= IsLeapYear(tm
.year
- 1) ? 53 : 52;
2129 return (wxDateTime::wxDateTime_t
)nWeek
;
2132 wxDateTime
& wxDateTime::SetToYearDay(wxDateTime::wxDateTime_t yday
)
2134 int year
= GetYear();
2135 wxDATETIME_CHECK( (0 < yday
) && (yday
<= GetNumberOfDays(year
)),
2136 _T("invalid year day") );
2138 bool isLeap
= IsLeapYear(year
);
2139 for ( Month mon
= Jan
; mon
< Inv_Month
; wxNextMonth(mon
) )
2141 // for Dec, we can't compare with gs_cumulatedDays[mon + 1], but we
2142 // don't need it neither - because of the CHECK above we know that
2143 // yday lies in December then
2144 if ( (mon
== Dec
) || (yday
<= gs_cumulatedDays
[isLeap
][mon
+ 1]) )
2146 Set((wxDateTime::wxDateTime_t
)(yday
- gs_cumulatedDays
[isLeap
][mon
]), mon
, year
);
2155 // ----------------------------------------------------------------------------
2156 // Julian day number conversion and related stuff
2157 // ----------------------------------------------------------------------------
2159 double wxDateTime::GetJulianDayNumber() const
2161 return m_time
.ToDouble() / MILLISECONDS_PER_DAY
+ EPOCH_JDN
+ 0.5;
2164 double wxDateTime::GetRataDie() const
2166 // March 1 of the year 0 is Rata Die day -306 and JDN 1721119.5
2167 return GetJulianDayNumber() - 1721119.5 - 306;
2170 // ----------------------------------------------------------------------------
2171 // timezone and DST stuff
2172 // ----------------------------------------------------------------------------
2174 int wxDateTime::IsDST(wxDateTime::Country country
) const
2176 wxCHECK_MSG( country
== Country_Default
, -1,
2177 _T("country support not implemented") );
2179 // use the C RTL for the dates in the standard range
2180 time_t timet
= GetTicks();
2181 if ( timet
!= (time_t)-1 )
2184 tm
*tm
= wxLocaltime_r(&timet
, &tmstruct
);
2186 wxCHECK_MSG( tm
, -1, _T("wxLocaltime_r() failed") );
2188 return tm
->tm_isdst
;
2192 int year
= GetYear();
2194 if ( !IsDSTApplicable(year
, country
) )
2196 // no DST time in this year in this country
2200 return IsBetween(GetBeginDST(year
, country
), GetEndDST(year
, country
));
2204 wxDateTime
& wxDateTime::MakeTimezone(const TimeZone
& tz
, bool noDST
)
2206 long secDiff
= GetTimeZone() + tz
.GetOffset();
2208 // we need to know whether DST is or not in effect for this date unless
2209 // the test disabled by the caller
2210 if ( !noDST
&& (IsDST() == 1) )
2212 // FIXME we assume that the DST is always shifted by 1 hour
2216 return Add(wxTimeSpan::Seconds(secDiff
));
2219 wxDateTime
& wxDateTime::MakeFromTimezone(const TimeZone
& tz
, bool noDST
)
2221 long secDiff
= GetTimeZone() + tz
.GetOffset();
2223 // we need to know whether DST is or not in effect for this date unless
2224 // the test disabled by the caller
2225 if ( !noDST
&& (IsDST() == 1) )
2227 // FIXME we assume that the DST is always shifted by 1 hour
2231 return Subtract(wxTimeSpan::Seconds(secDiff
));
2234 // ============================================================================
2235 // wxDateTimeHolidayAuthority and related classes
2236 // ============================================================================
2238 #include "wx/arrimpl.cpp"
2240 WX_DEFINE_OBJARRAY(wxDateTimeArray
)
2242 static int wxCMPFUNC_CONV
2243 wxDateTimeCompareFunc(wxDateTime
**first
, wxDateTime
**second
)
2245 wxDateTime dt1
= **first
,
2248 return dt1
== dt2
? 0 : dt1
< dt2
? -1 : +1;
2251 // ----------------------------------------------------------------------------
2252 // wxDateTimeHolidayAuthority
2253 // ----------------------------------------------------------------------------
2255 wxHolidayAuthoritiesArray
wxDateTimeHolidayAuthority::ms_authorities
;
2258 bool wxDateTimeHolidayAuthority::IsHoliday(const wxDateTime
& dt
)
2260 size_t count
= ms_authorities
.size();
2261 for ( size_t n
= 0; n
< count
; n
++ )
2263 if ( ms_authorities
[n
]->DoIsHoliday(dt
) )
2274 wxDateTimeHolidayAuthority::GetHolidaysInRange(const wxDateTime
& dtStart
,
2275 const wxDateTime
& dtEnd
,
2276 wxDateTimeArray
& holidays
)
2278 wxDateTimeArray hol
;
2282 const size_t countAuth
= ms_authorities
.size();
2283 for ( size_t nAuth
= 0; nAuth
< countAuth
; nAuth
++ )
2285 ms_authorities
[nAuth
]->DoGetHolidaysInRange(dtStart
, dtEnd
, hol
);
2287 WX_APPEND_ARRAY(holidays
, hol
);
2290 holidays
.Sort(wxDateTimeCompareFunc
);
2292 return holidays
.size();
2296 void wxDateTimeHolidayAuthority::ClearAllAuthorities()
2298 WX_CLEAR_ARRAY(ms_authorities
);
2302 void wxDateTimeHolidayAuthority::AddAuthority(wxDateTimeHolidayAuthority
*auth
)
2304 ms_authorities
.push_back(auth
);
2307 wxDateTimeHolidayAuthority::~wxDateTimeHolidayAuthority()
2309 // required here for Darwin
2312 // ----------------------------------------------------------------------------
2313 // wxDateTimeWorkDays
2314 // ----------------------------------------------------------------------------
2316 bool wxDateTimeWorkDays::DoIsHoliday(const wxDateTime
& dt
) const
2318 wxDateTime::WeekDay wd
= dt
.GetWeekDay();
2320 return (wd
== wxDateTime::Sun
) || (wd
== wxDateTime::Sat
);
2323 size_t wxDateTimeWorkDays::DoGetHolidaysInRange(const wxDateTime
& dtStart
,
2324 const wxDateTime
& dtEnd
,
2325 wxDateTimeArray
& holidays
) const
2327 if ( dtStart
> dtEnd
)
2329 wxFAIL_MSG( _T("invalid date range in GetHolidaysInRange") );
2336 // instead of checking all days, start with the first Sat after dtStart and
2337 // end with the last Sun before dtEnd
2338 wxDateTime dtSatFirst
= dtStart
.GetNextWeekDay(wxDateTime::Sat
),
2339 dtSatLast
= dtEnd
.GetPrevWeekDay(wxDateTime::Sat
),
2340 dtSunFirst
= dtStart
.GetNextWeekDay(wxDateTime::Sun
),
2341 dtSunLast
= dtEnd
.GetPrevWeekDay(wxDateTime::Sun
),
2344 for ( dt
= dtSatFirst
; dt
<= dtSatLast
; dt
+= wxDateSpan::Week() )
2349 for ( dt
= dtSunFirst
; dt
<= dtSunLast
; dt
+= wxDateSpan::Week() )
2354 return holidays
.GetCount();
2357 // ============================================================================
2358 // other helper functions
2359 // ============================================================================
2361 // ----------------------------------------------------------------------------
2362 // iteration helpers: can be used to write a for loop over enum variable like
2364 // for ( m = wxDateTime::Jan; m < wxDateTime::Inv_Month; wxNextMonth(m) )
2365 // ----------------------------------------------------------------------------
2367 WXDLLIMPEXP_BASE
void wxNextMonth(wxDateTime::Month
& m
)
2369 wxASSERT_MSG( m
< wxDateTime::Inv_Month
, _T("invalid month") );
2371 // no wrapping or the for loop above would never end!
2372 m
= (wxDateTime::Month
)(m
+ 1);
2375 WXDLLIMPEXP_BASE
void wxPrevMonth(wxDateTime::Month
& m
)
2377 wxASSERT_MSG( m
< wxDateTime::Inv_Month
, _T("invalid month") );
2379 m
= m
== wxDateTime::Jan
? wxDateTime::Inv_Month
2380 : (wxDateTime::Month
)(m
- 1);
2383 WXDLLIMPEXP_BASE
void wxNextWDay(wxDateTime::WeekDay
& wd
)
2385 wxASSERT_MSG( wd
< wxDateTime::Inv_WeekDay
, _T("invalid week day") );
2387 // no wrapping or the for loop above would never end!
2388 wd
= (wxDateTime::WeekDay
)(wd
+ 1);
2391 WXDLLIMPEXP_BASE
void wxPrevWDay(wxDateTime::WeekDay
& wd
)
2393 wxASSERT_MSG( wd
< wxDateTime::Inv_WeekDay
, _T("invalid week day") );
2395 wd
= wd
== wxDateTime::Sun
? wxDateTime::Inv_WeekDay
2396 : (wxDateTime::WeekDay
)(wd
- 1);
2401 wxDateTime
& wxDateTime::SetFromMSWSysTime(const SYSTEMTIME
& st
)
2404 static_cast<wxDateTime::Month
>(wxDateTime::Jan
+ st
.wMonth
- 1),
2409 void wxDateTime::GetAsMSWSysTime(SYSTEMTIME
* st
) const
2411 const wxDateTime::Tm
tm(GetTm());
2413 st
->wYear
= (WXWORD
)tm
.year
;
2414 st
->wMonth
= (WXWORD
)(tm
.mon
- wxDateTime::Jan
+ 1);
2421 st
->wMilliseconds
= 0;
2425 #endif // wxUSE_DATETIME