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 // ----------------------------------------------------------------------------
93 // ----------------------------------------------------------------------------
95 #if wxUSE_EXTENDED_RTTI
97 template<> void wxStringReadValue(const wxString
&s
, wxDateTime
&data
)
99 data
.ParseFormat(s
,"%Y-%m-%d %H:%M:%S", NULL
);
102 template<> void wxStringWriteValue(wxString
&s
, const wxDateTime
&data
)
104 s
= data
.Format("%Y-%m-%d %H:%M:%S");
107 wxCUSTOM_TYPE_INFO(wxDateTime
, wxToStringConverter
<wxDateTime
> , wxFromStringConverter
<wxDateTime
>)
109 #endif // wxUSE_EXTENDED_RTTI
112 // ----------------------------------------------------------------------------
113 // conditional compilation
114 // ----------------------------------------------------------------------------
116 #if defined(__MWERKS__) && wxUSE_UNICODE
120 #if defined(__DJGPP__) || defined(__WINE__)
121 #include <sys/timeb.h>
125 #ifndef WX_GMTOFF_IN_TM
126 // Define it for some systems which don't (always) use configure but are
127 // known to have tm_gmtoff field.
128 #if defined(__WXPALMOS__) || defined(__DARWIN__)
129 #define WX_GMTOFF_IN_TM
133 // NB: VC8 safe time functions could/should be used for wxMSW as well probably
134 #if defined(__WXWINCE__) && defined(__VISUALC8__)
136 struct tm
*wxLocaltime_r(const time_t *t
, struct tm
* tm
)
139 return _localtime64_s(tm
, &t64
) == 0 ? tm
: NULL
;
142 struct tm
*wxGmtime_r(const time_t* t
, struct tm
* tm
)
145 return _gmtime64_s(tm
, &t64
) == 0 ? tm
: NULL
;
148 #else // !wxWinCE with VC8
150 #if (!defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)) && wxUSE_THREADS && !defined(__WINDOWS__)
151 static wxMutex timeLock
;
154 #ifndef HAVE_LOCALTIME_R
155 struct tm
*wxLocaltime_r(const time_t* ticks
, struct tm
* temp
)
157 #if wxUSE_THREADS && !defined(__WINDOWS__)
158 // No need to waste time with a mutex on windows since it's using
159 // thread local storage for localtime anyway.
160 wxMutexLocker
locker(timeLock
);
163 // Borland CRT crashes when passed 0 ticks for some reason, see SF bug 1704438
169 const tm
* const t
= localtime(ticks
);
173 memcpy(temp
, t
, sizeof(struct tm
));
176 #endif // !HAVE_LOCALTIME_R
178 #ifndef HAVE_GMTIME_R
179 struct tm
*wxGmtime_r(const time_t* ticks
, struct tm
* temp
)
181 #if wxUSE_THREADS && !defined(__WINDOWS__)
182 // No need to waste time with a mutex on windows since it's
183 // using thread local storage for gmtime anyway.
184 wxMutexLocker
locker(timeLock
);
192 const tm
* const t
= gmtime(ticks
);
196 memcpy(temp
, gmtime(ticks
), sizeof(struct tm
));
199 #endif // !HAVE_GMTIME_R
201 #endif // wxWinCE with VC8/other platforms
203 // ----------------------------------------------------------------------------
205 // ----------------------------------------------------------------------------
207 // debugging helper: just a convenient replacement of wxCHECK()
208 #define wxDATETIME_CHECK(expr, msg) \
209 wxCHECK2_MSG(expr, *this = wxInvalidDateTime; return *this, msg)
211 // ----------------------------------------------------------------------------
213 // ----------------------------------------------------------------------------
215 class wxDateTimeHolidaysModule
: public wxModule
218 virtual bool OnInit()
220 wxDateTimeHolidayAuthority::AddAuthority(new wxDateTimeWorkDays
);
225 virtual void OnExit()
227 wxDateTimeHolidayAuthority::ClearAllAuthorities();
228 wxDateTimeHolidayAuthority::ms_authorities
.clear();
232 DECLARE_DYNAMIC_CLASS(wxDateTimeHolidaysModule
)
235 IMPLEMENT_DYNAMIC_CLASS(wxDateTimeHolidaysModule
, wxModule
)
237 // ----------------------------------------------------------------------------
239 // ----------------------------------------------------------------------------
242 static const int MONTHS_IN_YEAR
= 12;
244 static const int SEC_PER_MIN
= 60;
246 static const int MIN_PER_HOUR
= 60;
248 static const long SECONDS_PER_DAY
= 86400l;
250 static const int DAYS_PER_WEEK
= 7;
252 static const long MILLISECONDS_PER_DAY
= 86400000l;
254 // this is the integral part of JDN of the midnight of Jan 1, 1970
255 // (i.e. JDN(Jan 1, 1970) = 2440587.5)
256 static const long EPOCH_JDN
= 2440587l;
258 // these values are only used in asserts so don't define them if asserts are
259 // disabled to avoid warnings about unused static variables
261 // the date of JDN -0.5 (as we don't work with fractional parts, this is the
262 // reference date for us) is Nov 24, 4714BC
263 static const int JDN_0_YEAR
= -4713;
264 static const int JDN_0_MONTH
= wxDateTime::Nov
;
265 static const int JDN_0_DAY
= 24;
266 #endif // wxDEBUG_LEVEL
268 // the constants used for JDN calculations
269 static const long JDN_OFFSET
= 32046l;
270 static const long DAYS_PER_5_MONTHS
= 153l;
271 static const long DAYS_PER_4_YEARS
= 1461l;
272 static const long DAYS_PER_400_YEARS
= 146097l;
274 // this array contains the cumulated number of days in all previous months for
275 // normal and leap years
276 static const wxDateTime::wxDateTime_t gs_cumulatedDays
[2][MONTHS_IN_YEAR
] =
278 { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 },
279 { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335 }
282 const long wxDateTime::TIME_T_FACTOR
= 1000l;
284 // ----------------------------------------------------------------------------
286 // ----------------------------------------------------------------------------
288 const char wxDefaultDateTimeFormat
[] = "%c";
289 const char wxDefaultTimeSpanFormat
[] = "%H:%M:%S";
291 // in the fine tradition of ANSI C we use our equivalent of (time_t)-1 to
292 // indicate an invalid wxDateTime object
293 const wxDateTime wxDefaultDateTime
;
295 wxDateTime::Country
wxDateTime::ms_country
= wxDateTime::Country_Unknown
;
297 // ----------------------------------------------------------------------------
299 // ----------------------------------------------------------------------------
301 // debugger helper: this function can be called from a debugger to show what
302 // the date really is
303 extern const char *wxDumpDate(const wxDateTime
* dt
)
305 static char buf
[128];
307 wxString
fmt(dt
->Format("%Y-%m-%d (%a) %H:%M:%S"));
309 (fmt
+ " (" + dt
->GetValue().ToString() + " ticks)").ToAscii(),
315 // get the number of days in the given month of the given year
317 wxDateTime::wxDateTime_t
GetNumOfDaysInMonth(int year
, wxDateTime::Month month
)
319 // the number of days in month in Julian/Gregorian calendar: the first line
320 // is for normal years, the second one is for the leap ones
321 static const wxDateTime::wxDateTime_t daysInMonth
[2][MONTHS_IN_YEAR
] =
323 { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
324 { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
327 return daysInMonth
[wxDateTime::IsLeapYear(year
)][month
];
330 // returns the time zone in the C sense, i.e. the difference UTC - local
332 // NOTE: not static because used by datetimefmt.cpp
335 #ifdef WX_GMTOFF_IN_TM
336 // set to true when the timezone is set
337 static bool s_timezoneSet
= false;
338 static long gmtoffset
= LONG_MAX
; // invalid timezone
340 // ensure that the timezone variable is set by calling wxLocaltime_r
341 if ( !s_timezoneSet
)
343 // just call wxLocaltime_r() instead of figuring out whether this
344 // system supports tzset(), _tzset() or something else
348 wxLocaltime_r(&t
, &tm
);
349 s_timezoneSet
= true;
351 // note that GMT offset is the opposite of time zone and so to return
352 // consistent results in both WX_GMTOFF_IN_TM and !WX_GMTOFF_IN_TM
353 // cases we have to negate it
354 gmtoffset
= -tm
.tm_gmtoff
;
356 return (int)gmtoffset
;
357 #elif defined(__DJGPP__) || defined(__WINE__)
360 return tb
.timezone
*60;
361 #elif defined(__VISUALC__)
362 // We must initialize the time zone information before using it (this will
363 // be done only once internally).
366 // Starting with VC++ 8 timezone variable is deprecated and is not even
367 // available in some standard library version so use the new function for
368 // accessing it instead.
369 #if wxCHECK_VISUALC_VERSION(8)
376 #elif defined(WX_TIMEZONE) // If WX_TIMEZONE was defined by configure, use it.
378 #elif defined(__BORLANDC__) || defined(__MINGW32__) || defined(__VISAGECPP__)
380 #elif defined(__MWERKS__)
382 #else // unknown platform -- assume it has timezone
384 #endif // WX_GMTOFF_IN_TM/!WX_GMTOFF_IN_TM
387 // return the integral part of the JDN for the midnight of the given date (to
388 // get the real JDN you need to add 0.5, this is, in fact, JDN of the
389 // noon of the previous day)
390 static long GetTruncatedJDN(wxDateTime::wxDateTime_t day
,
391 wxDateTime::Month mon
,
394 // CREDIT: code below is by Scott E. Lee (but bugs are mine)
396 // check the date validity
398 (year
> JDN_0_YEAR
) ||
399 ((year
== JDN_0_YEAR
) && (mon
> JDN_0_MONTH
)) ||
400 ((year
== JDN_0_YEAR
) && (mon
== JDN_0_MONTH
) && (day
>= JDN_0_DAY
)),
401 wxT("date out of range - can't convert to JDN")
404 // make the year positive to avoid problems with negative numbers division
407 // months are counted from March here
409 if ( mon
>= wxDateTime::Mar
)
419 // now we can simply add all the contributions together
420 return ((year
/ 100) * DAYS_PER_400_YEARS
) / 4
421 + ((year
% 100) * DAYS_PER_4_YEARS
) / 4
422 + (month
* DAYS_PER_5_MONTHS
+ 2) / 5
427 #ifdef wxHAS_STRFTIME
429 // this function is a wrapper around strftime(3) adding error checking
430 // NOTE: not static because used by datetimefmt.cpp
431 wxString
CallStrftime(const wxString
& format
, const tm
* tm
)
434 // Create temp wxString here to work around mingw/cygwin bug 1046059
435 // http://sourceforge.net/tracker/?func=detail&atid=102435&aid=1046059&group_id=2435
438 if ( !wxStrftime(buf
, WXSIZEOF(buf
), format
, tm
) )
440 // if the format is valid, buffer must be too small?
441 wxFAIL_MSG(wxT("strftime() failed"));
450 #endif // wxHAS_STRFTIME
452 // if year and/or month have invalid values, replace them with the current ones
453 static void ReplaceDefaultYearMonthWithCurrent(int *year
,
454 wxDateTime::Month
*month
)
456 struct tm
*tmNow
= NULL
;
459 if ( *year
== wxDateTime::Inv_Year
)
461 tmNow
= wxDateTime::GetTmNow(&tmstruct
);
463 *year
= 1900 + tmNow
->tm_year
;
466 if ( *month
== wxDateTime::Inv_Month
)
469 tmNow
= wxDateTime::GetTmNow(&tmstruct
);
471 *month
= (wxDateTime::Month
)tmNow
->tm_mon
;
475 // fill the struct tm with default values
476 // NOTE: not static because used by datetimefmt.cpp
477 void InitTm(struct tm
& tm
)
479 // struct tm may have etxra fields (undocumented and with unportable
480 // names) which, nevertheless, must be set to 0
481 memset(&tm
, 0, sizeof(struct tm
));
483 tm
.tm_mday
= 1; // mday 0 is invalid
484 tm
.tm_year
= 76; // any valid year
485 tm
.tm_isdst
= -1; // auto determine
488 // ============================================================================
489 // implementation of wxDateTime
490 // ============================================================================
492 // ----------------------------------------------------------------------------
494 // ----------------------------------------------------------------------------
498 year
= (wxDateTime_t
)wxDateTime::Inv_Year
;
499 mon
= wxDateTime::Inv_Month
;
506 wday
= wxDateTime::Inv_WeekDay
;
509 wxDateTime::Tm::Tm(const struct tm
& tm
, const TimeZone
& tz
)
513 sec
= (wxDateTime::wxDateTime_t
)tm
.tm_sec
;
514 min
= (wxDateTime::wxDateTime_t
)tm
.tm_min
;
515 hour
= (wxDateTime::wxDateTime_t
)tm
.tm_hour
;
516 mday
= (wxDateTime::wxDateTime_t
)tm
.tm_mday
;
517 mon
= (wxDateTime::Month
)tm
.tm_mon
;
518 year
= 1900 + tm
.tm_year
;
519 wday
= (wxDateTime::wxDateTime_t
)tm
.tm_wday
;
520 yday
= (wxDateTime::wxDateTime_t
)tm
.tm_yday
;
523 bool wxDateTime::Tm::IsValid() const
525 if ( mon
== wxDateTime::Inv_Month
)
528 // We need to check this here to avoid crashing in GetNumOfDaysInMonth() if
529 // somebody passed us "(wxDateTime::Month)1000".
530 wxCHECK_MSG( mon
>= wxDateTime::Jan
&& mon
< wxDateTime::Inv_Month
, false,
531 wxS("Invalid month value") );
533 // we allow for the leap seconds, although we don't use them (yet)
534 return (year
!= wxDateTime::Inv_Year
) && (mon
!= wxDateTime::Inv_Month
) &&
535 (mday
> 0 && mday
<= GetNumOfDaysInMonth(year
, mon
)) &&
536 (hour
< 24) && (min
< 60) && (sec
< 62) && (msec
< 1000);
539 void wxDateTime::Tm::ComputeWeekDay()
541 // compute the week day from day/month/year: we use the dumbest algorithm
542 // possible: just compute our JDN and then use the (simple to derive)
543 // formula: weekday = (JDN + 1.5) % 7
544 wday
= (wxDateTime::wxDateTime_t
)((GetTruncatedJDN(mday
, mon
, year
) + 2) % 7);
547 void wxDateTime::Tm::AddMonths(int monDiff
)
549 // normalize the months field
550 while ( monDiff
< -mon
)
554 monDiff
+= MONTHS_IN_YEAR
;
557 while ( monDiff
+ mon
>= MONTHS_IN_YEAR
)
561 monDiff
-= MONTHS_IN_YEAR
;
564 mon
= (wxDateTime::Month
)(mon
+ monDiff
);
566 wxASSERT_MSG( mon
>= 0 && mon
< MONTHS_IN_YEAR
, wxT("logic error") );
568 // NB: we don't check here that the resulting date is valid, this function
569 // is private and the caller must check it if needed
572 void wxDateTime::Tm::AddDays(int dayDiff
)
574 // normalize the days field
575 while ( dayDiff
+ mday
< 1 )
579 dayDiff
+= GetNumOfDaysInMonth(year
, mon
);
582 mday
= (wxDateTime::wxDateTime_t
)( mday
+ dayDiff
);
583 while ( mday
> GetNumOfDaysInMonth(year
, mon
) )
585 mday
-= GetNumOfDaysInMonth(year
, mon
);
590 wxASSERT_MSG( mday
> 0 && mday
<= GetNumOfDaysInMonth(year
, mon
),
591 wxT("logic error") );
594 // ----------------------------------------------------------------------------
596 // ----------------------------------------------------------------------------
598 wxDateTime::TimeZone::TimeZone(wxDateTime::TZ tz
)
602 case wxDateTime::Local
:
603 // get the offset from C RTL: it returns the difference GMT-local
604 // while we want to have the offset _from_ GMT, hence the '-'
605 m_offset
= -GetTimeZone();
608 case wxDateTime::GMT_12
:
609 case wxDateTime::GMT_11
:
610 case wxDateTime::GMT_10
:
611 case wxDateTime::GMT_9
:
612 case wxDateTime::GMT_8
:
613 case wxDateTime::GMT_7
:
614 case wxDateTime::GMT_6
:
615 case wxDateTime::GMT_5
:
616 case wxDateTime::GMT_4
:
617 case wxDateTime::GMT_3
:
618 case wxDateTime::GMT_2
:
619 case wxDateTime::GMT_1
:
620 m_offset
= -3600*(wxDateTime::GMT0
- tz
);
623 case wxDateTime::GMT0
:
624 case wxDateTime::GMT1
:
625 case wxDateTime::GMT2
:
626 case wxDateTime::GMT3
:
627 case wxDateTime::GMT4
:
628 case wxDateTime::GMT5
:
629 case wxDateTime::GMT6
:
630 case wxDateTime::GMT7
:
631 case wxDateTime::GMT8
:
632 case wxDateTime::GMT9
:
633 case wxDateTime::GMT10
:
634 case wxDateTime::GMT11
:
635 case wxDateTime::GMT12
:
636 case wxDateTime::GMT13
:
637 m_offset
= 3600*(tz
- wxDateTime::GMT0
);
640 case wxDateTime::A_CST
:
641 // Central Standard Time in use in Australia = UTC + 9.5
642 m_offset
= 60l*(9*MIN_PER_HOUR
+ MIN_PER_HOUR
/2);
646 wxFAIL_MSG( wxT("unknown time zone") );
650 // ----------------------------------------------------------------------------
652 // ----------------------------------------------------------------------------
655 struct tm
*wxDateTime::GetTmNow(struct tm
*tmstruct
)
657 time_t t
= GetTimeNow();
658 return wxLocaltime_r(&t
, tmstruct
);
662 bool wxDateTime::IsLeapYear(int year
, wxDateTime::Calendar cal
)
664 if ( year
== Inv_Year
)
665 year
= GetCurrentYear();
667 if ( cal
== Gregorian
)
669 // in Gregorian calendar leap years are those divisible by 4 except
670 // those divisible by 100 unless they're also divisible by 400
671 // (in some countries, like Russia and Greece, additional corrections
672 // exist, but they won't manifest themselves until 2700)
673 return (year
% 4 == 0) && ((year
% 100 != 0) || (year
% 400 == 0));
675 else if ( cal
== Julian
)
677 // in Julian calendar the rule is simpler
678 return year
% 4 == 0;
682 wxFAIL_MSG(wxT("unknown calendar"));
689 int wxDateTime::GetCentury(int year
)
691 return year
> 0 ? year
/ 100 : year
/ 100 - 1;
695 int wxDateTime::ConvertYearToBC(int year
)
698 return year
> 0 ? year
: year
- 1;
702 int wxDateTime::GetCurrentYear(wxDateTime::Calendar cal
)
707 return Now().GetYear();
710 wxFAIL_MSG(wxT("TODO"));
714 wxFAIL_MSG(wxT("unsupported calendar"));
722 wxDateTime::Month
wxDateTime::GetCurrentMonth(wxDateTime::Calendar cal
)
727 return Now().GetMonth();
730 wxFAIL_MSG(wxT("TODO"));
734 wxFAIL_MSG(wxT("unsupported calendar"));
742 wxDateTime::wxDateTime_t
wxDateTime::GetNumberOfDays(int year
, Calendar cal
)
744 if ( year
== Inv_Year
)
746 // take the current year if none given
747 year
= GetCurrentYear();
754 return IsLeapYear(year
) ? 366 : 365;
757 wxFAIL_MSG(wxT("unsupported calendar"));
765 wxDateTime::wxDateTime_t
wxDateTime::GetNumberOfDays(wxDateTime::Month month
,
767 wxDateTime::Calendar cal
)
769 wxCHECK_MSG( month
< MONTHS_IN_YEAR
, 0, wxT("invalid month") );
771 if ( cal
== Gregorian
|| cal
== Julian
)
773 if ( year
== Inv_Year
)
775 // take the current year if none given
776 year
= GetCurrentYear();
779 return GetNumOfDaysInMonth(year
, month
);
783 wxFAIL_MSG(wxT("unsupported calendar"));
792 // helper function used by GetEnglish/WeekDayName(): returns 0 if flags is
793 // Name_Full and 1 if it is Name_Abbr or -1 if the flags is incorrect (and
794 // asserts in this case)
796 // the return value of this function is used as an index into 2D array
797 // containing full names in its first row and abbreviated ones in the 2nd one
798 int NameArrayIndexFromFlag(wxDateTime::NameFlags flags
)
802 case wxDateTime::Name_Full
:
805 case wxDateTime::Name_Abbr
:
809 wxFAIL_MSG( "unknown wxDateTime::NameFlags value" );
815 } // anonymous namespace
818 wxString
wxDateTime::GetEnglishMonthName(Month month
, NameFlags flags
)
820 wxCHECK_MSG( month
!= Inv_Month
, wxEmptyString
, "invalid month" );
822 static const char *const monthNames
[2][MONTHS_IN_YEAR
] =
824 { "January", "February", "March", "April", "May", "June",
825 "July", "August", "September", "October", "November", "December" },
826 { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
827 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }
830 const int idx
= NameArrayIndexFromFlag(flags
);
834 return monthNames
[idx
][month
];
838 wxString
wxDateTime::GetMonthName(wxDateTime::Month month
,
839 wxDateTime::NameFlags flags
)
841 #ifdef wxHAS_STRFTIME
842 wxCHECK_MSG( month
!= Inv_Month
, wxEmptyString
, wxT("invalid month") );
844 // notice that we must set all the fields to avoid confusing libc (GNU one
845 // gets confused to a crash if we don't do this)
850 return CallStrftime(flags
== Name_Abbr
? wxT("%b") : wxT("%B"), &tm
);
851 #else // !wxHAS_STRFTIME
852 return GetEnglishMonthName(month
, flags
);
853 #endif // wxHAS_STRFTIME/!wxHAS_STRFTIME
857 wxString
wxDateTime::GetEnglishWeekDayName(WeekDay wday
, NameFlags flags
)
859 wxCHECK_MSG( wday
!= Inv_WeekDay
, wxEmptyString
, wxT("invalid weekday") );
861 static const char *const weekdayNames
[2][DAYS_PER_WEEK
] =
863 { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday",
865 { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" },
868 const int idx
= NameArrayIndexFromFlag(flags
);
872 return weekdayNames
[idx
][wday
];
876 wxString
wxDateTime::GetWeekDayName(wxDateTime::WeekDay wday
,
877 wxDateTime::NameFlags flags
)
879 #ifdef wxHAS_STRFTIME
880 wxCHECK_MSG( wday
!= Inv_WeekDay
, wxEmptyString
, wxT("invalid weekday") );
882 // take some arbitrary Sunday (but notice that the day should be such that
883 // after adding wday to it below we still have a valid date, e.g. don't
891 // and offset it by the number of days needed to get the correct wday
894 // call mktime() to normalize it...
897 // ... and call strftime()
898 return CallStrftime(flags
== Name_Abbr
? wxT("%a") : wxT("%A"), &tm
);
899 #else // !wxHAS_STRFTIME
900 return GetEnglishWeekDayName(wday
, flags
);
901 #endif // wxHAS_STRFTIME/!wxHAS_STRFTIME
905 void wxDateTime::GetAmPmStrings(wxString
*am
, wxString
*pm
)
910 // @Note: Do not call 'CallStrftime' here! CallStrftime checks the return code
911 // and causes an assertion failed if the buffer is to small (which is good) - OR -
912 // if strftime does not return anything because the format string is invalid - OR -
913 // if there are no 'am' / 'pm' tokens defined for the current locale (which is not good).
914 // wxDateTime::ParseTime will try several different formats to parse the time.
915 // As a result, GetAmPmStrings might get called, even if the current locale
916 // does not define any 'am' / 'pm' tokens. In this case, wxStrftime would
917 // assert, even though it is a perfectly legal use.
920 if (wxStrftime(buffer
, WXSIZEOF(buffer
), wxT("%p"), &tm
) > 0)
921 *am
= wxString(buffer
);
928 if (wxStrftime(buffer
, WXSIZEOF(buffer
), wxT("%p"), &tm
) > 0)
929 *pm
= wxString(buffer
);
936 // ----------------------------------------------------------------------------
937 // Country stuff: date calculations depend on the country (DST, work days,
938 // ...), so we need to know which rules to follow.
939 // ----------------------------------------------------------------------------
942 wxDateTime::Country
wxDateTime::GetCountry()
944 // TODO use LOCALE_ICOUNTRY setting under Win32
946 if ( ms_country
== Country_Unknown
)
948 // try to guess from the time zone name
949 time_t t
= time(NULL
);
951 struct tm
*tm
= wxLocaltime_r(&t
, &tmstruct
);
953 wxString tz
= CallStrftime(wxT("%Z"), tm
);
954 if ( tz
== wxT("WET") || tz
== wxT("WEST") )
958 else if ( tz
== wxT("CET") || tz
== wxT("CEST") )
960 ms_country
= Country_EEC
;
962 else if ( tz
== wxT("MSK") || tz
== wxT("MSD") )
966 else if ( tz
== wxT("AST") || tz
== wxT("ADT") ||
967 tz
== wxT("EST") || tz
== wxT("EDT") ||
968 tz
== wxT("CST") || tz
== wxT("CDT") ||
969 tz
== wxT("MST") || tz
== wxT("MDT") ||
970 tz
== wxT("PST") || tz
== wxT("PDT") )
976 // well, choose a default one
982 #endif // !__WXWINCE__/__WXWINCE__
988 void wxDateTime::SetCountry(wxDateTime::Country country
)
990 ms_country
= country
;
994 bool wxDateTime::IsWestEuropeanCountry(Country country
)
996 if ( country
== Country_Default
)
998 country
= GetCountry();
1001 return (Country_WesternEurope_Start
<= country
) &&
1002 (country
<= Country_WesternEurope_End
);
1005 // ----------------------------------------------------------------------------
1006 // DST calculations: we use 3 different rules for the West European countries,
1007 // USA and for the rest of the world. This is undoubtedly false for many
1008 // countries, but I lack the necessary info (and the time to gather it),
1009 // please add the other rules here!
1010 // ----------------------------------------------------------------------------
1013 bool wxDateTime::IsDSTApplicable(int year
, Country country
)
1015 if ( year
== Inv_Year
)
1017 // take the current year if none given
1018 year
= GetCurrentYear();
1021 if ( country
== Country_Default
)
1023 country
= GetCountry();
1030 // DST was first observed in the US and UK during WWI, reused
1031 // during WWII and used again since 1966
1032 return year
>= 1966 ||
1033 (year
>= 1942 && year
<= 1945) ||
1034 (year
== 1918 || year
== 1919);
1037 // assume that it started after WWII
1043 wxDateTime
wxDateTime::GetBeginDST(int year
, Country country
)
1045 if ( year
== Inv_Year
)
1047 // take the current year if none given
1048 year
= GetCurrentYear();
1051 if ( country
== Country_Default
)
1053 country
= GetCountry();
1056 if ( !IsDSTApplicable(year
, country
) )
1058 return wxInvalidDateTime
;
1063 if ( IsWestEuropeanCountry(country
) || (country
== Russia
) )
1065 // DST begins at 1 a.m. GMT on the last Sunday of March
1066 if ( !dt
.SetToLastWeekDay(Sun
, Mar
, year
) )
1069 wxFAIL_MSG( wxT("no last Sunday in March?") );
1072 dt
+= wxTimeSpan::Hours(1);
1074 else switch ( country
)
1081 // don't know for sure - assume it was in effect all year
1086 dt
.Set(1, Jan
, year
);
1090 // DST was installed Feb 2, 1942 by the Congress
1091 dt
.Set(2, Feb
, year
);
1094 // Oil embargo changed the DST period in the US
1096 dt
.Set(6, Jan
, 1974);
1100 dt
.Set(23, Feb
, 1975);
1104 // before 1986, DST begun on the last Sunday of April, but
1105 // in 1986 Reagan changed it to begin at 2 a.m. of the
1106 // first Sunday in April
1109 if ( !dt
.SetToLastWeekDay(Sun
, Apr
, year
) )
1112 wxFAIL_MSG( wxT("no first Sunday in April?") );
1115 else if ( year
> 2006 )
1116 // Energy Policy Act of 2005, Pub. L. no. 109-58, 119 Stat 594 (2005).
1117 // Starting in 2007, daylight time begins in the United States on the
1118 // second Sunday in March and ends on the first Sunday in November
1120 if ( !dt
.SetToWeekDay(Sun
, 2, Mar
, year
) )
1123 wxFAIL_MSG( wxT("no second Sunday in March?") );
1128 if ( !dt
.SetToWeekDay(Sun
, 1, Apr
, year
) )
1131 wxFAIL_MSG( wxT("no first Sunday in April?") );
1135 dt
+= wxTimeSpan::Hours(2);
1137 // TODO what about timezone??
1143 // assume Mar 30 as the start of the DST for the rest of the world
1144 // - totally bogus, of course
1145 dt
.Set(30, Mar
, year
);
1152 wxDateTime
wxDateTime::GetEndDST(int year
, Country country
)
1154 if ( year
== Inv_Year
)
1156 // take the current year if none given
1157 year
= GetCurrentYear();
1160 if ( country
== Country_Default
)
1162 country
= GetCountry();
1165 if ( !IsDSTApplicable(year
, country
) )
1167 return wxInvalidDateTime
;
1172 if ( IsWestEuropeanCountry(country
) || (country
== Russia
) )
1174 // DST ends at 1 a.m. GMT on the last Sunday of October
1175 if ( !dt
.SetToLastWeekDay(Sun
, Oct
, year
) )
1177 // weirder and weirder...
1178 wxFAIL_MSG( wxT("no last Sunday in October?") );
1181 dt
+= wxTimeSpan::Hours(1);
1183 else switch ( country
)
1190 // don't know for sure - assume it was in effect all year
1194 dt
.Set(31, Dec
, year
);
1198 // the time was reset after the end of the WWII
1199 dt
.Set(30, Sep
, year
);
1202 default: // default for switch (year)
1204 // Energy Policy Act of 2005, Pub. L. no. 109-58, 119 Stat 594 (2005).
1205 // Starting in 2007, daylight time begins in the United States on the
1206 // second Sunday in March and ends on the first Sunday in November
1208 if ( !dt
.SetToWeekDay(Sun
, 1, Nov
, year
) )
1211 wxFAIL_MSG( wxT("no first Sunday in November?") );
1216 // DST ends at 2 a.m. on the last Sunday of October
1218 if ( !dt
.SetToLastWeekDay(Sun
, Oct
, year
) )
1220 // weirder and weirder...
1221 wxFAIL_MSG( wxT("no last Sunday in October?") );
1225 dt
+= wxTimeSpan::Hours(2);
1227 // TODO: what about timezone??
1231 default: // default for switch (country)
1232 // assume October 26th as the end of the DST - totally bogus too
1233 dt
.Set(26, Oct
, year
);
1239 // ----------------------------------------------------------------------------
1240 // constructors and assignment operators
1241 // ----------------------------------------------------------------------------
1243 // return the current time with ms precision
1244 /* static */ wxDateTime
wxDateTime::UNow()
1246 return wxDateTime(wxGetLocalTimeMillis());
1249 // the values in the tm structure contain the local time
1250 wxDateTime
& wxDateTime::Set(const struct tm
& tm
)
1253 time_t timet
= mktime(&tm2
);
1255 if ( timet
== (time_t)-1 )
1257 // mktime() rather unintuitively fails for Jan 1, 1970 if the hour is
1258 // less than timezone - try to make it work for this case
1259 if ( tm2
.tm_year
== 70 && tm2
.tm_mon
== 0 && tm2
.tm_mday
== 1 )
1261 return Set((time_t)(
1263 tm2
.tm_hour
* MIN_PER_HOUR
* SEC_PER_MIN
+
1264 tm2
.tm_min
* SEC_PER_MIN
+
1268 wxFAIL_MSG( wxT("mktime() failed") );
1270 *this = wxInvalidDateTime
;
1280 wxDateTime
& wxDateTime::Set(wxDateTime_t hour
,
1281 wxDateTime_t minute
,
1282 wxDateTime_t second
,
1283 wxDateTime_t millisec
)
1285 // we allow seconds to be 61 to account for the leap seconds, even if we
1286 // don't use them really
1287 wxDATETIME_CHECK( hour
< 24 &&
1291 wxT("Invalid time in wxDateTime::Set()") );
1293 // get the current date from system
1295 struct tm
*tm
= GetTmNow(&tmstruct
);
1297 wxDATETIME_CHECK( tm
, wxT("wxLocaltime_r() failed") );
1299 // make a copy so it isn't clobbered by the call to mktime() below
1304 tm1
.tm_min
= minute
;
1305 tm1
.tm_sec
= second
;
1307 // and the DST in case it changes on this date
1310 if ( tm2
.tm_isdst
!= tm1
.tm_isdst
)
1311 tm1
.tm_isdst
= tm2
.tm_isdst
;
1315 // and finally adjust milliseconds
1316 return SetMillisecond(millisec
);
1319 wxDateTime
& wxDateTime::Set(wxDateTime_t day
,
1323 wxDateTime_t minute
,
1324 wxDateTime_t second
,
1325 wxDateTime_t millisec
)
1327 wxDATETIME_CHECK( hour
< 24 &&
1331 wxT("Invalid time in wxDateTime::Set()") );
1333 ReplaceDefaultYearMonthWithCurrent(&year
, &month
);
1335 wxDATETIME_CHECK( (0 < day
) && (day
<= GetNumberOfDays(month
, year
)),
1336 wxT("Invalid date in wxDateTime::Set()") );
1338 // the range of time_t type (inclusive)
1339 static const int yearMinInRange
= 1970;
1340 static const int yearMaxInRange
= 2037;
1342 // test only the year instead of testing for the exact end of the Unix
1343 // time_t range - it doesn't bring anything to do more precise checks
1344 if ( year
>= yearMinInRange
&& year
<= yearMaxInRange
)
1346 // use the standard library version if the date is in range - this is
1347 // probably more efficient than our code
1349 tm
.tm_year
= year
- 1900;
1355 tm
.tm_isdst
= -1; // mktime() will guess it
1359 // and finally adjust milliseconds
1361 SetMillisecond(millisec
);
1367 // do time calculations ourselves: we want to calculate the number of
1368 // milliseconds between the given date and the epoch
1370 // get the JDN for the midnight of this day
1371 m_time
= GetTruncatedJDN(day
, month
, year
);
1372 m_time
-= EPOCH_JDN
;
1373 m_time
*= SECONDS_PER_DAY
* TIME_T_FACTOR
;
1375 // JDN corresponds to GMT, we take localtime
1376 Add(wxTimeSpan(hour
, minute
, second
+ GetTimeZone(), millisec
));
1382 wxDateTime
& wxDateTime::Set(double jdn
)
1384 // so that m_time will be 0 for the midnight of Jan 1, 1970 which is jdn
1386 jdn
-= EPOCH_JDN
+ 0.5;
1388 m_time
.Assign(jdn
*MILLISECONDS_PER_DAY
);
1390 // JDNs always are in UTC, so we don't need any adjustments for time zone
1395 wxDateTime
& wxDateTime::ResetTime()
1399 if ( tm
.hour
|| tm
.min
|| tm
.sec
|| tm
.msec
)
1412 wxDateTime
wxDateTime::GetDateOnly() const
1419 return wxDateTime(tm
);
1422 // ----------------------------------------------------------------------------
1423 // DOS Date and Time Format functions
1424 // ----------------------------------------------------------------------------
1425 // the dos date and time value is an unsigned 32 bit value in the format:
1426 // YYYYYYYMMMMDDDDDhhhhhmmmmmmsssss
1428 // Y = year offset from 1980 (0-127)
1430 // D = day of month (1-31)
1432 // m = minute (0-59)
1433 // s = bisecond (0-29) each bisecond indicates two seconds
1434 // ----------------------------------------------------------------------------
1436 wxDateTime
& wxDateTime::SetFromDOS(unsigned long ddt
)
1441 long year
= ddt
& 0xFE000000;
1446 long month
= ddt
& 0x1E00000;
1451 long day
= ddt
& 0x1F0000;
1455 long hour
= ddt
& 0xF800;
1459 long minute
= ddt
& 0x7E0;
1463 long second
= ddt
& 0x1F;
1464 tm
.tm_sec
= second
* 2;
1466 return Set(mktime(&tm
));
1469 unsigned long wxDateTime::GetAsDOS() const
1472 time_t ticks
= GetTicks();
1474 struct tm
*tm
= wxLocaltime_r(&ticks
, &tmstruct
);
1475 wxCHECK_MSG( tm
, ULONG_MAX
, wxT("time can't be represented in DOS format") );
1477 long year
= tm
->tm_year
;
1481 long month
= tm
->tm_mon
;
1485 long day
= tm
->tm_mday
;
1488 long hour
= tm
->tm_hour
;
1491 long minute
= tm
->tm_min
;
1494 long second
= tm
->tm_sec
;
1497 ddt
= year
| month
| day
| hour
| minute
| second
;
1501 // ----------------------------------------------------------------------------
1502 // time_t <-> broken down time conversions
1503 // ----------------------------------------------------------------------------
1505 wxDateTime::Tm
wxDateTime::GetTm(const TimeZone
& tz
) const
1507 wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime") );
1509 time_t time
= GetTicks();
1510 if ( time
!= (time_t)-1 )
1512 // use C RTL functions
1515 if ( tz
.GetOffset() == -GetTimeZone() )
1517 // we are working with local time
1518 tm
= wxLocaltime_r(&time
, &tmstruct
);
1520 // should never happen
1521 wxCHECK_MSG( tm
, Tm(), wxT("wxLocaltime_r() failed") );
1525 time
+= (time_t)tz
.GetOffset();
1526 #if defined(__VMS__) || defined(__WATCOMC__) // time is unsigned so avoid warning
1527 int time2
= (int) time
;
1533 tm
= wxGmtime_r(&time
, &tmstruct
);
1535 // should never happen
1536 wxCHECK_MSG( tm
, Tm(), wxT("wxGmtime_r() failed") );
1540 tm
= (struct tm
*)NULL
;
1546 // adjust the milliseconds
1548 long timeOnly
= (m_time
% MILLISECONDS_PER_DAY
).ToLong();
1549 tm2
.msec
= (wxDateTime_t
)(timeOnly
% 1000);
1552 //else: use generic code below
1555 // remember the time and do the calculations with the date only - this
1556 // eliminates rounding errors of the floating point arithmetics
1558 wxLongLong timeMidnight
= m_time
+ tz
.GetOffset() * 1000;
1560 long timeOnly
= (timeMidnight
% MILLISECONDS_PER_DAY
).ToLong();
1562 // we want to always have positive time and timeMidnight to be really
1563 // the midnight before it
1566 timeOnly
= MILLISECONDS_PER_DAY
+ timeOnly
;
1569 timeMidnight
-= timeOnly
;
1571 // calculate the Gregorian date from JDN for the midnight of our date:
1572 // this will yield day, month (in 1..12 range) and year
1574 // actually, this is the JDN for the noon of the previous day
1575 long jdn
= (timeMidnight
/ MILLISECONDS_PER_DAY
).ToLong() + EPOCH_JDN
;
1577 // CREDIT: code below is by Scott E. Lee (but bugs are mine)
1579 wxASSERT_MSG( jdn
> -2, wxT("JDN out of range") );
1581 // calculate the century
1582 long temp
= (jdn
+ JDN_OFFSET
) * 4 - 1;
1583 long century
= temp
/ DAYS_PER_400_YEARS
;
1585 // then the year and day of year (1 <= dayOfYear <= 366)
1586 temp
= ((temp
% DAYS_PER_400_YEARS
) / 4) * 4 + 3;
1587 long year
= (century
* 100) + (temp
/ DAYS_PER_4_YEARS
);
1588 long dayOfYear
= (temp
% DAYS_PER_4_YEARS
) / 4 + 1;
1590 // and finally the month and day of the month
1591 temp
= dayOfYear
* 5 - 3;
1592 long month
= temp
/ DAYS_PER_5_MONTHS
;
1593 long day
= (temp
% DAYS_PER_5_MONTHS
) / 5 + 1;
1595 // month is counted from March - convert to normal
1606 // year is offset by 4800
1609 // check that the algorithm gave us something reasonable
1610 wxASSERT_MSG( (0 < month
) && (month
<= 12), wxT("invalid month") );
1611 wxASSERT_MSG( (1 <= day
) && (day
< 32), wxT("invalid day") );
1613 // construct Tm from these values
1615 tm
.year
= (int)year
;
1616 tm
.yday
= (wxDateTime_t
)(dayOfYear
- 1); // use C convention for day number
1617 tm
.mon
= (Month
)(month
- 1); // algorithm yields 1 for January, not 0
1618 tm
.mday
= (wxDateTime_t
)day
;
1619 tm
.msec
= (wxDateTime_t
)(timeOnly
% 1000);
1620 timeOnly
-= tm
.msec
;
1621 timeOnly
/= 1000; // now we have time in seconds
1623 tm
.sec
= (wxDateTime_t
)(timeOnly
% SEC_PER_MIN
);
1625 timeOnly
/= SEC_PER_MIN
; // now we have time in minutes
1627 tm
.min
= (wxDateTime_t
)(timeOnly
% MIN_PER_HOUR
);
1630 tm
.hour
= (wxDateTime_t
)(timeOnly
/ MIN_PER_HOUR
);
1635 wxDateTime
& wxDateTime::SetYear(int year
)
1637 wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime") );
1646 wxDateTime
& wxDateTime::SetMonth(Month month
)
1648 wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime") );
1657 wxDateTime
& wxDateTime::SetDay(wxDateTime_t mday
)
1659 wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime") );
1668 wxDateTime
& wxDateTime::SetHour(wxDateTime_t hour
)
1670 wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime") );
1679 wxDateTime
& wxDateTime::SetMinute(wxDateTime_t min
)
1681 wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime") );
1690 wxDateTime
& wxDateTime::SetSecond(wxDateTime_t sec
)
1692 wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime") );
1701 wxDateTime
& wxDateTime::SetMillisecond(wxDateTime_t millisecond
)
1703 wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime") );
1705 // we don't need to use GetTm() for this one
1706 m_time
-= m_time
% 1000l;
1707 m_time
+= millisecond
;
1712 // ----------------------------------------------------------------------------
1713 // wxDateTime arithmetics
1714 // ----------------------------------------------------------------------------
1716 wxDateTime
& wxDateTime::Add(const wxDateSpan
& diff
)
1720 tm
.year
+= diff
.GetYears();
1721 tm
.AddMonths(diff
.GetMonths());
1723 // check that the resulting date is valid
1724 if ( tm
.mday
> GetNumOfDaysInMonth(tm
.year
, tm
.mon
) )
1726 // We suppose that when adding one month to Jan 31 we want to get Feb
1727 // 28 (or 29), i.e. adding a month to the last day of the month should
1728 // give the last day of the next month which is quite logical.
1730 // Unfortunately, there is no logic way to understand what should
1731 // Jan 30 + 1 month be - Feb 28 too or Feb 27 (assuming non leap year)?
1732 // We make it Feb 28 (last day too), but it is highly questionable.
1733 tm
.mday
= GetNumOfDaysInMonth(tm
.year
, tm
.mon
);
1736 tm
.AddDays(diff
.GetTotalDays());
1740 wxASSERT_MSG( IsSameTime(tm
),
1741 wxT("Add(wxDateSpan) shouldn't modify time") );
1746 // ----------------------------------------------------------------------------
1747 // Weekday and monthday stuff
1748 // ----------------------------------------------------------------------------
1750 // convert Sun, Mon, ..., Sat into 6, 0, ..., 5
1751 static inline int ConvertWeekDayToMondayBase(int wd
)
1753 return wd
== wxDateTime::Sun
? 6 : wd
- 1;
1758 wxDateTime::SetToWeekOfYear(int year
, wxDateTime_t numWeek
, WeekDay wd
)
1760 wxASSERT_MSG( numWeek
> 0,
1761 wxT("invalid week number: weeks are counted from 1") );
1763 // Jan 4 always lies in the 1st week of the year
1764 wxDateTime
dt(4, Jan
, year
);
1765 dt
.SetToWeekDayInSameWeek(wd
);
1766 dt
+= wxDateSpan::Weeks(numWeek
- 1);
1771 #if WXWIN_COMPATIBILITY_2_6
1772 // use a separate function to avoid warnings about using deprecated
1773 // SetToTheWeek in GetWeek below
1775 SetToTheWeek(int year
,
1776 wxDateTime::wxDateTime_t numWeek
,
1777 wxDateTime::WeekDay weekday
,
1778 wxDateTime::WeekFlags flags
)
1780 // Jan 4 always lies in the 1st week of the year
1781 wxDateTime
dt(4, wxDateTime::Jan
, year
);
1782 dt
.SetToWeekDayInSameWeek(weekday
, flags
);
1783 dt
+= wxDateSpan::Weeks(numWeek
- 1);
1788 bool wxDateTime::SetToTheWeek(wxDateTime_t numWeek
,
1792 int year
= GetYear();
1793 *this = ::SetToTheWeek(year
, numWeek
, weekday
, flags
);
1794 if ( GetYear() != year
)
1796 // oops... numWeek was too big
1803 wxDateTime
wxDateTime::GetWeek(wxDateTime_t numWeek
,
1805 WeekFlags flags
) const
1807 return ::SetToTheWeek(GetYear(), numWeek
, weekday
, flags
);
1809 #endif // WXWIN_COMPATIBILITY_2_6
1811 wxDateTime
& wxDateTime::SetToLastMonthDay(Month month
,
1814 // take the current month/year if none specified
1815 if ( year
== Inv_Year
)
1817 if ( month
== Inv_Month
)
1820 return Set(GetNumOfDaysInMonth(year
, month
), month
, year
);
1823 wxDateTime
& wxDateTime::SetToWeekDayInSameWeek(WeekDay weekday
, WeekFlags flags
)
1825 wxDATETIME_CHECK( weekday
!= Inv_WeekDay
, wxT("invalid weekday") );
1827 int wdayDst
= weekday
,
1828 wdayThis
= GetWeekDay();
1829 if ( wdayDst
== wdayThis
)
1835 if ( flags
== Default_First
)
1837 flags
= GetCountry() == USA
? Sunday_First
: Monday_First
;
1840 // the logic below based on comparing weekday and wdayThis works if Sun (0)
1841 // is the first day in the week, but breaks down for Monday_First case so
1842 // we adjust the week days in this case
1843 if ( flags
== Monday_First
)
1845 if ( wdayThis
== Sun
)
1847 if ( wdayDst
== Sun
)
1850 //else: Sunday_First, nothing to do
1852 // go forward or back in time to the day we want
1853 if ( wdayDst
< wdayThis
)
1855 return Subtract(wxDateSpan::Days(wdayThis
- wdayDst
));
1857 else // weekday > wdayThis
1859 return Add(wxDateSpan::Days(wdayDst
- wdayThis
));
1863 wxDateTime
& wxDateTime::SetToNextWeekDay(WeekDay weekday
)
1865 wxDATETIME_CHECK( weekday
!= Inv_WeekDay
, wxT("invalid weekday") );
1868 WeekDay wdayThis
= GetWeekDay();
1869 if ( weekday
== wdayThis
)
1874 else if ( weekday
< wdayThis
)
1876 // need to advance a week
1877 diff
= 7 - (wdayThis
- weekday
);
1879 else // weekday > wdayThis
1881 diff
= weekday
- wdayThis
;
1884 return Add(wxDateSpan::Days(diff
));
1887 wxDateTime
& wxDateTime::SetToPrevWeekDay(WeekDay weekday
)
1889 wxDATETIME_CHECK( weekday
!= Inv_WeekDay
, wxT("invalid weekday") );
1892 WeekDay wdayThis
= GetWeekDay();
1893 if ( weekday
== wdayThis
)
1898 else if ( weekday
> wdayThis
)
1900 // need to go to previous week
1901 diff
= 7 - (weekday
- wdayThis
);
1903 else // weekday < wdayThis
1905 diff
= wdayThis
- weekday
;
1908 return Subtract(wxDateSpan::Days(diff
));
1911 bool wxDateTime::SetToWeekDay(WeekDay weekday
,
1916 wxCHECK_MSG( weekday
!= Inv_WeekDay
, false, wxT("invalid weekday") );
1918 // we don't check explicitly that -5 <= n <= 5 because we will return false
1919 // anyhow in such case - but may be should still give an assert for it?
1921 // take the current month/year if none specified
1922 ReplaceDefaultYearMonthWithCurrent(&year
, &month
);
1926 // TODO this probably could be optimised somehow...
1930 // get the first day of the month
1931 dt
.Set(1, month
, year
);
1934 WeekDay wdayFirst
= dt
.GetWeekDay();
1936 // go to the first weekday of the month
1937 int diff
= weekday
- wdayFirst
;
1941 // add advance n-1 weeks more
1944 dt
+= wxDateSpan::Days(diff
);
1946 else // count from the end of the month
1948 // get the last day of the month
1949 dt
.SetToLastMonthDay(month
, year
);
1952 WeekDay wdayLast
= dt
.GetWeekDay();
1954 // go to the last weekday of the month
1955 int diff
= wdayLast
- weekday
;
1959 // and rewind n-1 weeks from there
1962 dt
-= wxDateSpan::Days(diff
);
1965 // check that it is still in the same month
1966 if ( dt
.GetMonth() == month
)
1974 // no such day in this month
1980 wxDateTime::wxDateTime_t
GetDayOfYearFromTm(const wxDateTime::Tm
& tm
)
1982 return (wxDateTime::wxDateTime_t
)(gs_cumulatedDays
[wxDateTime::IsLeapYear(tm
.year
)][tm
.mon
] + tm
.mday
);
1985 wxDateTime::wxDateTime_t
wxDateTime::GetDayOfYear(const TimeZone
& tz
) const
1987 return GetDayOfYearFromTm(GetTm(tz
));
1990 wxDateTime::wxDateTime_t
1991 wxDateTime::GetWeekOfYear(wxDateTime::WeekFlags flags
, const TimeZone
& tz
) const
1993 if ( flags
== Default_First
)
1995 flags
= GetCountry() == USA
? Sunday_First
: Monday_First
;
1999 wxDateTime_t nDayInYear
= GetDayOfYearFromTm(tm
);
2001 int wdTarget
= GetWeekDay(tz
);
2002 int wdYearStart
= wxDateTime(1, Jan
, GetYear()).GetWeekDay();
2004 if ( flags
== Sunday_First
)
2006 // FIXME: First week is not calculated correctly.
2007 week
= (nDayInYear
- wdTarget
+ 7) / 7;
2008 if ( wdYearStart
== Wed
|| wdYearStart
== Thu
)
2011 else // week starts with monday
2013 // adjust the weekdays to non-US style.
2014 wdYearStart
= ConvertWeekDayToMondayBase(wdYearStart
);
2015 wdTarget
= ConvertWeekDayToMondayBase(wdTarget
);
2017 // quoting from http://www.cl.cam.ac.uk/~mgk25/iso-time.html:
2019 // Week 01 of a year is per definition the first week that has the
2020 // Thursday in this year, which is equivalent to the week that
2021 // contains the fourth day of January. In other words, the first
2022 // week of a new year is the week that has the majority of its
2023 // days in the new year. Week 01 might also contain days from the
2024 // previous year and the week before week 01 of a year is the last
2025 // week (52 or 53) of the previous year even if it contains days
2026 // from the new year. A week starts with Monday (day 1) and ends
2027 // with Sunday (day 7).
2030 // if Jan 1 is Thursday or less, it is in the first week of this year
2031 if ( wdYearStart
< 4 )
2033 // count the number of entire weeks between Jan 1 and this date
2034 week
= (nDayInYear
+ wdYearStart
+ 6 - wdTarget
)/7;
2036 // be careful to check for overflow in the next year
2037 if ( week
== 53 && tm
.mday
- wdTarget
> 28 )
2040 else // Jan 1 is in the last week of the previous year
2042 // check if we happen to be at the last week of previous year:
2043 if ( tm
.mon
== Jan
&& tm
.mday
< 8 - wdYearStart
)
2044 week
= wxDateTime(31, Dec
, GetYear()-1).GetWeekOfYear();
2046 week
= (nDayInYear
+ wdYearStart
- 1 - wdTarget
)/7;
2050 return (wxDateTime::wxDateTime_t
)week
;
2053 wxDateTime::wxDateTime_t
wxDateTime::GetWeekOfMonth(wxDateTime::WeekFlags flags
,
2054 const TimeZone
& tz
) const
2057 const wxDateTime dateFirst
= wxDateTime(1, tm
.mon
, tm
.year
);
2058 const wxDateTime::WeekDay wdFirst
= dateFirst
.GetWeekDay();
2060 if ( flags
== Default_First
)
2062 flags
= GetCountry() == USA
? Sunday_First
: Monday_First
;
2065 // compute offset of dateFirst from the beginning of the week
2067 if ( flags
== Sunday_First
)
2068 firstOffset
= wdFirst
- Sun
;
2070 firstOffset
= wdFirst
== Sun
? DAYS_PER_WEEK
- 1 : wdFirst
- Mon
;
2072 return (wxDateTime::wxDateTime_t
)((tm
.mday
- 1 + firstOffset
)/7 + 1);
2075 wxDateTime
& wxDateTime::SetToYearDay(wxDateTime::wxDateTime_t yday
)
2077 int year
= GetYear();
2078 wxDATETIME_CHECK( (0 < yday
) && (yday
<= GetNumberOfDays(year
)),
2079 wxT("invalid year day") );
2081 bool isLeap
= IsLeapYear(year
);
2082 for ( Month mon
= Jan
; mon
< Inv_Month
; wxNextMonth(mon
) )
2084 // for Dec, we can't compare with gs_cumulatedDays[mon + 1], but we
2085 // don't need it neither - because of the CHECK above we know that
2086 // yday lies in December then
2087 if ( (mon
== Dec
) || (yday
<= gs_cumulatedDays
[isLeap
][mon
+ 1]) )
2089 Set((wxDateTime::wxDateTime_t
)(yday
- gs_cumulatedDays
[isLeap
][mon
]), mon
, year
);
2098 // ----------------------------------------------------------------------------
2099 // Julian day number conversion and related stuff
2100 // ----------------------------------------------------------------------------
2102 double wxDateTime::GetJulianDayNumber() const
2104 return m_time
.ToDouble() / MILLISECONDS_PER_DAY
+ EPOCH_JDN
+ 0.5;
2107 double wxDateTime::GetRataDie() const
2109 // March 1 of the year 0 is Rata Die day -306 and JDN 1721119.5
2110 return GetJulianDayNumber() - 1721119.5 - 306;
2113 // ----------------------------------------------------------------------------
2114 // timezone and DST stuff
2115 // ----------------------------------------------------------------------------
2117 int wxDateTime::IsDST(wxDateTime::Country country
) const
2119 wxCHECK_MSG( country
== Country_Default
, -1,
2120 wxT("country support not implemented") );
2122 // use the C RTL for the dates in the standard range
2123 time_t timet
= GetTicks();
2124 if ( timet
!= (time_t)-1 )
2127 tm
*tm
= wxLocaltime_r(&timet
, &tmstruct
);
2129 wxCHECK_MSG( tm
, -1, wxT("wxLocaltime_r() failed") );
2131 return tm
->tm_isdst
;
2135 int year
= GetYear();
2137 if ( !IsDSTApplicable(year
, country
) )
2139 // no DST time in this year in this country
2143 return IsBetween(GetBeginDST(year
, country
), GetEndDST(year
, country
));
2147 wxDateTime
& wxDateTime::MakeTimezone(const TimeZone
& tz
, bool noDST
)
2149 long secDiff
= GetTimeZone() + tz
.GetOffset();
2151 // we need to know whether DST is or not in effect for this date unless
2152 // the test disabled by the caller
2153 if ( !noDST
&& (IsDST() == 1) )
2155 // FIXME we assume that the DST is always shifted by 1 hour
2159 return Add(wxTimeSpan::Seconds(secDiff
));
2162 wxDateTime
& wxDateTime::MakeFromTimezone(const TimeZone
& tz
, bool noDST
)
2164 long secDiff
= GetTimeZone() + tz
.GetOffset();
2166 // we need to know whether DST is or not in effect for this date unless
2167 // the test disabled by the caller
2168 if ( !noDST
&& (IsDST() == 1) )
2170 // FIXME we assume that the DST is always shifted by 1 hour
2174 return Subtract(wxTimeSpan::Seconds(secDiff
));
2177 // ============================================================================
2178 // wxDateTimeHolidayAuthority and related classes
2179 // ============================================================================
2181 #include "wx/arrimpl.cpp"
2183 WX_DEFINE_OBJARRAY(wxDateTimeArray
)
2185 static int wxCMPFUNC_CONV
2186 wxDateTimeCompareFunc(wxDateTime
**first
, wxDateTime
**second
)
2188 wxDateTime dt1
= **first
,
2191 return dt1
== dt2
? 0 : dt1
< dt2
? -1 : +1;
2194 // ----------------------------------------------------------------------------
2195 // wxDateTimeHolidayAuthority
2196 // ----------------------------------------------------------------------------
2198 wxHolidayAuthoritiesArray
wxDateTimeHolidayAuthority::ms_authorities
;
2201 bool wxDateTimeHolidayAuthority::IsHoliday(const wxDateTime
& dt
)
2203 size_t count
= ms_authorities
.size();
2204 for ( size_t n
= 0; n
< count
; n
++ )
2206 if ( ms_authorities
[n
]->DoIsHoliday(dt
) )
2217 wxDateTimeHolidayAuthority::GetHolidaysInRange(const wxDateTime
& dtStart
,
2218 const wxDateTime
& dtEnd
,
2219 wxDateTimeArray
& holidays
)
2221 wxDateTimeArray hol
;
2225 const size_t countAuth
= ms_authorities
.size();
2226 for ( size_t nAuth
= 0; nAuth
< countAuth
; nAuth
++ )
2228 ms_authorities
[nAuth
]->DoGetHolidaysInRange(dtStart
, dtEnd
, hol
);
2230 WX_APPEND_ARRAY(holidays
, hol
);
2233 holidays
.Sort(wxDateTimeCompareFunc
);
2235 return holidays
.size();
2239 void wxDateTimeHolidayAuthority::ClearAllAuthorities()
2241 WX_CLEAR_ARRAY(ms_authorities
);
2245 void wxDateTimeHolidayAuthority::AddAuthority(wxDateTimeHolidayAuthority
*auth
)
2247 ms_authorities
.push_back(auth
);
2250 wxDateTimeHolidayAuthority::~wxDateTimeHolidayAuthority()
2252 // required here for Darwin
2255 // ----------------------------------------------------------------------------
2256 // wxDateTimeWorkDays
2257 // ----------------------------------------------------------------------------
2259 bool wxDateTimeWorkDays::DoIsHoliday(const wxDateTime
& dt
) const
2261 wxDateTime::WeekDay wd
= dt
.GetWeekDay();
2263 return (wd
== wxDateTime::Sun
) || (wd
== wxDateTime::Sat
);
2266 size_t wxDateTimeWorkDays::DoGetHolidaysInRange(const wxDateTime
& dtStart
,
2267 const wxDateTime
& dtEnd
,
2268 wxDateTimeArray
& holidays
) const
2270 if ( dtStart
> dtEnd
)
2272 wxFAIL_MSG( wxT("invalid date range in GetHolidaysInRange") );
2279 // instead of checking all days, start with the first Sat after dtStart and
2280 // end with the last Sun before dtEnd
2281 wxDateTime dtSatFirst
= dtStart
.GetNextWeekDay(wxDateTime::Sat
),
2282 dtSatLast
= dtEnd
.GetPrevWeekDay(wxDateTime::Sat
),
2283 dtSunFirst
= dtStart
.GetNextWeekDay(wxDateTime::Sun
),
2284 dtSunLast
= dtEnd
.GetPrevWeekDay(wxDateTime::Sun
),
2287 for ( dt
= dtSatFirst
; dt
<= dtSatLast
; dt
+= wxDateSpan::Week() )
2292 for ( dt
= dtSunFirst
; dt
<= dtSunLast
; dt
+= wxDateSpan::Week() )
2297 return holidays
.GetCount();
2300 // ============================================================================
2301 // other helper functions
2302 // ============================================================================
2304 // ----------------------------------------------------------------------------
2305 // iteration helpers: can be used to write a for loop over enum variable like
2307 // for ( m = wxDateTime::Jan; m < wxDateTime::Inv_Month; wxNextMonth(m) )
2308 // ----------------------------------------------------------------------------
2310 WXDLLIMPEXP_BASE
void wxNextMonth(wxDateTime::Month
& m
)
2312 wxASSERT_MSG( m
< wxDateTime::Inv_Month
, wxT("invalid month") );
2314 // no wrapping or the for loop above would never end!
2315 m
= (wxDateTime::Month
)(m
+ 1);
2318 WXDLLIMPEXP_BASE
void wxPrevMonth(wxDateTime::Month
& m
)
2320 wxASSERT_MSG( m
< wxDateTime::Inv_Month
, wxT("invalid month") );
2322 m
= m
== wxDateTime::Jan
? wxDateTime::Inv_Month
2323 : (wxDateTime::Month
)(m
- 1);
2326 WXDLLIMPEXP_BASE
void wxNextWDay(wxDateTime::WeekDay
& wd
)
2328 wxASSERT_MSG( wd
< wxDateTime::Inv_WeekDay
, wxT("invalid week day") );
2330 // no wrapping or the for loop above would never end!
2331 wd
= (wxDateTime::WeekDay
)(wd
+ 1);
2334 WXDLLIMPEXP_BASE
void wxPrevWDay(wxDateTime::WeekDay
& wd
)
2336 wxASSERT_MSG( wd
< wxDateTime::Inv_WeekDay
, wxT("invalid week day") );
2338 wd
= wd
== wxDateTime::Sun
? wxDateTime::Inv_WeekDay
2339 : (wxDateTime::WeekDay
)(wd
- 1);
2344 wxDateTime
& wxDateTime::SetFromMSWSysTime(const SYSTEMTIME
& st
)
2347 static_cast<wxDateTime::Month
>(wxDateTime::Jan
+ st
.wMonth
- 1),
2349 st
.wHour
, st
.wMinute
, st
.wSecond
, st
.wMilliseconds
);
2352 wxDateTime
& wxDateTime::SetFromMSWSysDate(const SYSTEMTIME
& st
)
2355 static_cast<wxDateTime::Month
>(wxDateTime::Jan
+ st
.wMonth
- 1),
2360 void wxDateTime::GetAsMSWSysTime(SYSTEMTIME
* st
) const
2362 const wxDateTime::Tm
tm(GetTm());
2364 st
->wYear
= (WXWORD
)tm
.year
;
2365 st
->wMonth
= (WXWORD
)(tm
.mon
- wxDateTime::Jan
+ 1);
2369 st
->wHour
= tm
.hour
;
2370 st
->wMinute
= tm
.min
;
2371 st
->wSecond
= tm
.sec
;
2372 st
->wMilliseconds
= tm
.msec
;
2375 void wxDateTime::GetAsMSWSysDate(SYSTEMTIME
* st
) const
2377 const wxDateTime::Tm
tm(GetTm());
2379 st
->wYear
= (WXWORD
)tm
.year
;
2380 st
->wMonth
= (WXWORD
)(tm
.mon
- wxDateTime::Jan
+ 1);
2387 st
->wMilliseconds
= 0;
2392 #endif // wxUSE_DATETIME