use WXSIZEOF(x) instead of sizeof(x)/sizeof(x[0]) (closes #10701)
[wxWidgets.git] / src / common / datetime.cpp
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
6 // Modified by:
7 // Created: 11.05.99
8 // RCS-ID: $Id$
9 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // parts of code taken from sndcal library by Scott E. Lee:
11 //
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.
16 //
17 // Licence: wxWindows licence
18 ///////////////////////////////////////////////////////////////////////////////
19
20 /*
21 * Implementation notes:
22 *
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
25 * expressed in GMT.
26 *
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
29 *
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
32 *
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
36 * or less)
37 *
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
41 * ToTimezone()
42 *
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
45 * wxDateTime::Tm.
46 */
47
48 // ============================================================================
49 // declarations
50 // ============================================================================
51
52 // ----------------------------------------------------------------------------
53 // headers
54 // ----------------------------------------------------------------------------
55
56 // For compilers that support precompilation, includes "wx.h".
57 #include "wx/wxprec.h"
58
59 #ifdef __BORLANDC__
60 #pragma hdrstop
61 #endif
62
63 #if !defined(wxUSE_DATETIME) || wxUSE_DATETIME
64
65 #ifndef WX_PRECOMP
66 #ifdef __WXMSW__
67 #include "wx/msw/wrapwin.h"
68 #endif
69 #include "wx/string.h"
70 #include "wx/log.h"
71 #include "wx/intl.h"
72 #include "wx/stopwatch.h" // for wxGetLocalTimeMillis()
73 #include "wx/module.h"
74 #include "wx/crt.h"
75 #endif // WX_PRECOMP
76
77 #include "wx/thread.h"
78 #include "wx/tokenzr.h"
79
80 #include <ctype.h>
81
82 #ifdef __WINDOWS__
83 #include <winnls.h>
84 #ifndef __WXWINCE__
85 #include <locale.h>
86 #endif
87 #endif
88
89 #include "wx/datetime.h"
90
91 // ----------------------------------------------------------------------------
92 // wxXTI
93 // ----------------------------------------------------------------------------
94
95 #if wxUSE_EXTENDED_RTTI
96
97 template<> void wxStringReadValue(const wxString &s , wxDateTime &data )
98 {
99 data.ParseFormat(s,"%Y-%m-%d %H:%M:%S", NULL);
100 }
101
102 template<> void wxStringWriteValue(wxString &s , const wxDateTime &data )
103 {
104 s = data.Format("%Y-%m-%d %H:%M:%S");
105 }
106
107 wxCUSTOM_TYPE_INFO(wxDateTime, wxToStringConverter<wxDateTime> , wxFromStringConverter<wxDateTime>)
108
109 #endif // wxUSE_EXTENDED_RTTI
110
111
112 // ----------------------------------------------------------------------------
113 // conditional compilation
114 // ----------------------------------------------------------------------------
115
116 #if defined(__MWERKS__) && wxUSE_UNICODE
117 #include <wtime.h>
118 #endif
119
120 #if !defined(WX_TIMEZONE) && !defined(WX_GMTOFF_IN_TM)
121 #if defined(__WXPALMOS__)
122 #define WX_GMTOFF_IN_TM
123 #elif defined(__BORLANDC__) || defined(__MINGW32__) || defined(__VISAGECPP__)
124 #define WX_TIMEZONE _timezone
125 #elif defined(__MWERKS__)
126 long wxmw_timezone = 28800;
127 #define WX_TIMEZONE wxmw_timezone
128 #elif defined(__DJGPP__) || defined(__WINE__)
129 #include <sys/timeb.h>
130 #include <values.h>
131 static long wxGetTimeZone()
132 {
133 static long timezone = MAXLONG; // invalid timezone
134 if (timezone == MAXLONG)
135 {
136 struct timeb tb;
137 ftime(&tb);
138 timezone = tb.timezone;
139 }
140 return timezone;
141 }
142 #define WX_TIMEZONE wxGetTimeZone()
143 #elif defined(__DARWIN__)
144 #define WX_GMTOFF_IN_TM
145 #elif defined(__WXWINCE__) && defined(__VISUALC8__)
146 // _timezone is not present in dynamic run-time library
147 #if 0
148 // Solution (1): use the function equivalent of _timezone
149 static long wxGetTimeZone()
150 {
151 static long s_Timezone = MAXLONG; // invalid timezone
152 if (s_Timezone == MAXLONG)
153 {
154 int t;
155 _get_timezone(& t);
156 s_Timezone = (long) t;
157 }
158 return s_Timezone;
159 }
160 #define WX_TIMEZONE wxGetTimeZone()
161 #elif 1
162 // Solution (2): using GetTimeZoneInformation
163 static long wxGetTimeZone()
164 {
165 static long timezone = MAXLONG; // invalid timezone
166 if (timezone == MAXLONG)
167 {
168 TIME_ZONE_INFORMATION tzi;
169 ::GetTimeZoneInformation(&tzi);
170 timezone = tzi.Bias;
171 }
172 return timezone;
173 }
174 #define WX_TIMEZONE wxGetTimeZone()
175 #else
176 // Old method using _timezone: this symbol doesn't exist in the dynamic run-time library (i.e. using /MD)
177 #define WX_TIMEZONE _timezone
178 #endif
179 #else // unknown platform - try timezone
180 #define WX_TIMEZONE timezone
181 #endif
182 #endif // !WX_TIMEZONE && !WX_GMTOFF_IN_TM
183
184 // NB: VC8 safe time functions could/should be used for wxMSW as well probably
185 #if defined(__WXWINCE__) && defined(__VISUALC8__)
186
187 struct tm *wxLocaltime_r(const time_t *t, struct tm* tm)
188 {
189 __time64_t t64 = *t;
190 return _localtime64_s(tm, &t64) == 0 ? tm : NULL;
191 }
192
193 struct tm *wxGmtime_r(const time_t* t, struct tm* tm)
194 {
195 __time64_t t64 = *t;
196 return _gmtime64_s(tm, &t64) == 0 ? tm : NULL;
197 }
198
199 #else // !wxWinCE with VC8
200
201 #if (!defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)) && wxUSE_THREADS && !defined(__WINDOWS__)
202 static wxMutex timeLock;
203 #endif
204
205 #ifndef HAVE_LOCALTIME_R
206 struct tm *wxLocaltime_r(const time_t* ticks, struct tm* temp)
207 {
208 #if wxUSE_THREADS && !defined(__WINDOWS__)
209 // No need to waste time with a mutex on windows since it's using
210 // thread local storage for localtime anyway.
211 wxMutexLocker locker(timeLock);
212 #endif
213
214 // Borland CRT crashes when passed 0 ticks for some reason, see SF bug 1704438
215 #ifdef __BORLANDC__
216 if ( !*ticks )
217 return NULL;
218 #endif
219
220 const tm * const t = localtime(ticks);
221 if ( !t )
222 return NULL;
223
224 memcpy(temp, t, sizeof(struct tm));
225 return temp;
226 }
227 #endif // !HAVE_LOCALTIME_R
228
229 #ifndef HAVE_GMTIME_R
230 struct tm *wxGmtime_r(const time_t* ticks, struct tm* temp)
231 {
232 #if wxUSE_THREADS && !defined(__WINDOWS__)
233 // No need to waste time with a mutex on windows since it's
234 // using thread local storage for gmtime anyway.
235 wxMutexLocker locker(timeLock);
236 #endif
237
238 #ifdef __BORLANDC__
239 if ( !*ticks )
240 return NULL;
241 #endif
242
243 const tm * const t = gmtime(ticks);
244 if ( !t )
245 return NULL;
246
247 memcpy(temp, gmtime(ticks), sizeof(struct tm));
248 return temp;
249 }
250 #endif // !HAVE_GMTIME_R
251
252 #endif // wxWinCE with VC8/other platforms
253
254 // ----------------------------------------------------------------------------
255 // macros
256 // ----------------------------------------------------------------------------
257
258 // debugging helper: just a convenient replacement of wxCHECK()
259 #define wxDATETIME_CHECK(expr, msg) \
260 wxCHECK2_MSG(expr, *this = wxInvalidDateTime; return *this, msg)
261
262 // ----------------------------------------------------------------------------
263 // private classes
264 // ----------------------------------------------------------------------------
265
266 class wxDateTimeHolidaysModule : public wxModule
267 {
268 public:
269 virtual bool OnInit()
270 {
271 wxDateTimeHolidayAuthority::AddAuthority(new wxDateTimeWorkDays);
272
273 return true;
274 }
275
276 virtual void OnExit()
277 {
278 wxDateTimeHolidayAuthority::ClearAllAuthorities();
279 wxDateTimeHolidayAuthority::ms_authorities.clear();
280 }
281
282 private:
283 DECLARE_DYNAMIC_CLASS(wxDateTimeHolidaysModule)
284 };
285
286 IMPLEMENT_DYNAMIC_CLASS(wxDateTimeHolidaysModule, wxModule)
287
288 // ----------------------------------------------------------------------------
289 // constants
290 // ----------------------------------------------------------------------------
291
292 // some trivial ones
293 static const int MONTHS_IN_YEAR = 12;
294
295 static const int SEC_PER_MIN = 60;
296
297 static const int MIN_PER_HOUR = 60;
298
299 static const int HOURS_PER_DAY = 24;
300
301 static const long SECONDS_PER_DAY = 86400l;
302
303 static const int DAYS_PER_WEEK = 7;
304
305 static const long MILLISECONDS_PER_DAY = 86400000l;
306
307 // this is the integral part of JDN of the midnight of Jan 1, 1970
308 // (i.e. JDN(Jan 1, 1970) = 2440587.5)
309 static const long EPOCH_JDN = 2440587l;
310
311 // these values are only used in asserts so don't define them if asserts are
312 // disabled to avoid warnings about unused static variables
313 #if wxDEBUG_LEVEL
314 // the date of JDN -0.5 (as we don't work with fractional parts, this is the
315 // reference date for us) is Nov 24, 4714BC
316 static const int JDN_0_YEAR = -4713;
317 static const int JDN_0_MONTH = wxDateTime::Nov;
318 static const int JDN_0_DAY = 24;
319 #endif // wxDEBUG_LEVEL
320
321 // the constants used for JDN calculations
322 static const long JDN_OFFSET = 32046l;
323 static const long DAYS_PER_5_MONTHS = 153l;
324 static const long DAYS_PER_4_YEARS = 1461l;
325 static const long DAYS_PER_400_YEARS = 146097l;
326
327 // this array contains the cumulated number of days in all previous months for
328 // normal and leap years
329 static const wxDateTime::wxDateTime_t gs_cumulatedDays[2][MONTHS_IN_YEAR] =
330 {
331 { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 },
332 { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335 }
333 };
334
335 const long wxDateTime::TIME_T_FACTOR = 1000l;
336
337 // ----------------------------------------------------------------------------
338 // global data
339 // ----------------------------------------------------------------------------
340
341 const char *wxDefaultDateTimeFormat = "%c";
342 const char *wxDefaultTimeSpanFormat = "%H:%M:%S";
343
344 // in the fine tradition of ANSI C we use our equivalent of (time_t)-1 to
345 // indicate an invalid wxDateTime object
346 const wxDateTime wxDefaultDateTime;
347
348 wxDateTime::Country wxDateTime::ms_country = wxDateTime::Country_Unknown;
349
350 // ----------------------------------------------------------------------------
351 // private functions
352 // ----------------------------------------------------------------------------
353
354 // debugger helper: this function can be called from a debugger to show what
355 // the date really is
356 extern const char *wxDumpDate(const wxDateTime* dt)
357 {
358 static char buf[128];
359
360 wxString fmt(dt->Format("%Y-%m-%d (%a) %H:%M:%S"));
361 wxStrlcpy(buf,
362 (fmt + " (" + dt->GetValue().ToString() + " ticks)").ToAscii(),
363 WXSIZEOF(buf));
364
365 return buf;
366 }
367
368 // get the number of days in the given month of the given year
369 static inline
370 wxDateTime::wxDateTime_t GetNumOfDaysInMonth(int year, wxDateTime::Month month)
371 {
372 // the number of days in month in Julian/Gregorian calendar: the first line
373 // is for normal years, the second one is for the leap ones
374 static wxDateTime::wxDateTime_t daysInMonth[2][MONTHS_IN_YEAR] =
375 {
376 { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
377 { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
378 };
379
380 return daysInMonth[wxDateTime::IsLeapYear(year)][month];
381 }
382
383 // returns the time zone in the C sense, i.e. the difference UTC - local
384 // (in seconds)
385 // NOTE: not static because used by datetimefmt.cpp
386 int GetTimeZone()
387 {
388 // set to true when the timezone is set
389 static bool s_timezoneSet = false;
390 static long gmtoffset = LONG_MAX; // invalid timezone
391
392 // ensure that the timezone variable is set by calling wxLocaltime_r
393 if ( !s_timezoneSet )
394 {
395 // just call wxLocaltime_r() instead of figuring out whether this
396 // system supports tzset(), _tzset() or something else
397 time_t t = 0;
398 struct tm tm;
399
400 wxLocaltime_r(&t, &tm);
401 s_timezoneSet = true;
402
403 #ifdef WX_GMTOFF_IN_TM
404 // note that GMT offset is the opposite of time zone and so to return
405 // consistent results in both WX_GMTOFF_IN_TM and !WX_GMTOFF_IN_TM
406 // cases we have to negate it
407 gmtoffset = -tm.tm_gmtoff;
408 #else // !WX_GMTOFF_IN_TM
409 gmtoffset = WX_TIMEZONE;
410 #endif // WX_GMTOFF_IN_TM/!WX_GMTOFF_IN_TM
411 }
412
413 return (int)gmtoffset;
414 }
415
416 // return the integral part of the JDN for the midnight of the given date (to
417 // get the real JDN you need to add 0.5, this is, in fact, JDN of the
418 // noon of the previous day)
419 static long GetTruncatedJDN(wxDateTime::wxDateTime_t day,
420 wxDateTime::Month mon,
421 int year)
422 {
423 // CREDIT: code below is by Scott E. Lee (but bugs are mine)
424
425 // check the date validity
426 wxASSERT_MSG(
427 (year > JDN_0_YEAR) ||
428 ((year == JDN_0_YEAR) && (mon > JDN_0_MONTH)) ||
429 ((year == JDN_0_YEAR) && (mon == JDN_0_MONTH) && (day >= JDN_0_DAY)),
430 _T("date out of range - can't convert to JDN")
431 );
432
433 // make the year positive to avoid problems with negative numbers division
434 year += 4800;
435
436 // months are counted from March here
437 int month;
438 if ( mon >= wxDateTime::Mar )
439 {
440 month = mon - 2;
441 }
442 else
443 {
444 month = mon + 10;
445 year--;
446 }
447
448 // now we can simply add all the contributions together
449 return ((year / 100) * DAYS_PER_400_YEARS) / 4
450 + ((year % 100) * DAYS_PER_4_YEARS) / 4
451 + (month * DAYS_PER_5_MONTHS + 2) / 5
452 + day
453 - JDN_OFFSET;
454 }
455
456 #ifdef wxHAS_STRFTIME
457
458 // this function is a wrapper around strftime(3) adding error checking
459 // NOTE: not static because used by datetimefmt.cpp
460 wxString CallStrftime(const wxString& format, const tm* tm)
461 {
462 wxChar buf[4096];
463 // Create temp wxString here to work around mingw/cygwin bug 1046059
464 // http://sourceforge.net/tracker/?func=detail&atid=102435&aid=1046059&group_id=2435
465 wxString s;
466
467 if ( !wxStrftime(buf, WXSIZEOF(buf), format, tm) )
468 {
469 // if the format is valid, buffer must be too small?
470 wxFAIL_MSG(_T("strftime() failed"));
471
472 buf[0] = '\0';
473 }
474
475 s = buf;
476 return s;
477 }
478
479 #endif // wxHAS_STRFTIME
480
481 // if year and/or month have invalid values, replace them with the current ones
482 static void ReplaceDefaultYearMonthWithCurrent(int *year,
483 wxDateTime::Month *month)
484 {
485 struct tm *tmNow = NULL;
486 struct tm tmstruct;
487
488 if ( *year == wxDateTime::Inv_Year )
489 {
490 tmNow = wxDateTime::GetTmNow(&tmstruct);
491
492 *year = 1900 + tmNow->tm_year;
493 }
494
495 if ( *month == wxDateTime::Inv_Month )
496 {
497 if ( !tmNow )
498 tmNow = wxDateTime::GetTmNow(&tmstruct);
499
500 *month = (wxDateTime::Month)tmNow->tm_mon;
501 }
502 }
503
504 // fill the struct tm with default values
505 // NOTE: not static because used by datetimefmt.cpp
506 void InitTm(struct tm& tm)
507 {
508 // struct tm may have etxra fields (undocumented and with unportable
509 // names) which, nevertheless, must be set to 0
510 memset(&tm, 0, sizeof(struct tm));
511
512 tm.tm_mday = 1; // mday 0 is invalid
513 tm.tm_year = 76; // any valid year
514 tm.tm_isdst = -1; // auto determine
515 }
516
517 // ============================================================================
518 // implementation of wxDateTime
519 // ============================================================================
520
521 // ----------------------------------------------------------------------------
522 // struct Tm
523 // ----------------------------------------------------------------------------
524
525 wxDateTime::Tm::Tm()
526 {
527 year = (wxDateTime_t)wxDateTime::Inv_Year;
528 mon = wxDateTime::Inv_Month;
529 mday = 0;
530 hour = min = sec = msec = 0;
531 wday = wxDateTime::Inv_WeekDay;
532 }
533
534 wxDateTime::Tm::Tm(const struct tm& tm, const TimeZone& tz)
535 : m_tz(tz)
536 {
537 msec = 0;
538 sec = (wxDateTime::wxDateTime_t)tm.tm_sec;
539 min = (wxDateTime::wxDateTime_t)tm.tm_min;
540 hour = (wxDateTime::wxDateTime_t)tm.tm_hour;
541 mday = (wxDateTime::wxDateTime_t)tm.tm_mday;
542 mon = (wxDateTime::Month)tm.tm_mon;
543 year = 1900 + tm.tm_year;
544 wday = (wxDateTime::wxDateTime_t)tm.tm_wday;
545 yday = (wxDateTime::wxDateTime_t)tm.tm_yday;
546 }
547
548 bool wxDateTime::Tm::IsValid() const
549 {
550 // we allow for the leap seconds, although we don't use them (yet)
551 return (year != wxDateTime::Inv_Year) && (mon != wxDateTime::Inv_Month) &&
552 (mday <= GetNumOfDaysInMonth(year, mon)) &&
553 (hour < 24) && (min < 60) && (sec < 62) && (msec < 1000);
554 }
555
556 void wxDateTime::Tm::ComputeWeekDay()
557 {
558 // compute the week day from day/month/year: we use the dumbest algorithm
559 // possible: just compute our JDN and then use the (simple to derive)
560 // formula: weekday = (JDN + 1.5) % 7
561 wday = (wxDateTime::wxDateTime_t)((GetTruncatedJDN(mday, mon, year) + 2) % 7);
562 }
563
564 void wxDateTime::Tm::AddMonths(int monDiff)
565 {
566 // normalize the months field
567 while ( monDiff < -mon )
568 {
569 year--;
570
571 monDiff += MONTHS_IN_YEAR;
572 }
573
574 while ( monDiff + mon >= MONTHS_IN_YEAR )
575 {
576 year++;
577
578 monDiff -= MONTHS_IN_YEAR;
579 }
580
581 mon = (wxDateTime::Month)(mon + monDiff);
582
583 wxASSERT_MSG( mon >= 0 && mon < MONTHS_IN_YEAR, _T("logic error") );
584
585 // NB: we don't check here that the resulting date is valid, this function
586 // is private and the caller must check it if needed
587 }
588
589 void wxDateTime::Tm::AddDays(int dayDiff)
590 {
591 // normalize the days field
592 while ( dayDiff + mday < 1 )
593 {
594 AddMonths(-1);
595
596 dayDiff += GetNumOfDaysInMonth(year, mon);
597 }
598
599 mday = (wxDateTime::wxDateTime_t)( mday + dayDiff );
600 while ( mday > GetNumOfDaysInMonth(year, mon) )
601 {
602 mday -= GetNumOfDaysInMonth(year, mon);
603
604 AddMonths(1);
605 }
606
607 wxASSERT_MSG( mday > 0 && mday <= GetNumOfDaysInMonth(year, mon),
608 _T("logic error") );
609 }
610
611 // ----------------------------------------------------------------------------
612 // class TimeZone
613 // ----------------------------------------------------------------------------
614
615 wxDateTime::TimeZone::TimeZone(wxDateTime::TZ tz)
616 {
617 switch ( tz )
618 {
619 case wxDateTime::Local:
620 // get the offset from C RTL: it returns the difference GMT-local
621 // while we want to have the offset _from_ GMT, hence the '-'
622 m_offset = -GetTimeZone();
623 break;
624
625 case wxDateTime::GMT_12:
626 case wxDateTime::GMT_11:
627 case wxDateTime::GMT_10:
628 case wxDateTime::GMT_9:
629 case wxDateTime::GMT_8:
630 case wxDateTime::GMT_7:
631 case wxDateTime::GMT_6:
632 case wxDateTime::GMT_5:
633 case wxDateTime::GMT_4:
634 case wxDateTime::GMT_3:
635 case wxDateTime::GMT_2:
636 case wxDateTime::GMT_1:
637 m_offset = -3600*(wxDateTime::GMT0 - tz);
638 break;
639
640 case wxDateTime::GMT0:
641 case wxDateTime::GMT1:
642 case wxDateTime::GMT2:
643 case wxDateTime::GMT3:
644 case wxDateTime::GMT4:
645 case wxDateTime::GMT5:
646 case wxDateTime::GMT6:
647 case wxDateTime::GMT7:
648 case wxDateTime::GMT8:
649 case wxDateTime::GMT9:
650 case wxDateTime::GMT10:
651 case wxDateTime::GMT11:
652 case wxDateTime::GMT12:
653 case wxDateTime::GMT13:
654 m_offset = 3600*(tz - wxDateTime::GMT0);
655 break;
656
657 case wxDateTime::A_CST:
658 // Central Standard Time in use in Australia = UTC + 9.5
659 m_offset = 60l*(9*MIN_PER_HOUR + MIN_PER_HOUR/2);
660 break;
661
662 default:
663 wxFAIL_MSG( _T("unknown time zone") );
664 }
665 }
666
667 // ----------------------------------------------------------------------------
668 // static functions
669 // ----------------------------------------------------------------------------
670
671 /* static */
672 struct tm *wxDateTime::GetTmNow(struct tm *tmstruct)
673 {
674 time_t t = GetTimeNow();
675 return wxLocaltime_r(&t, tmstruct);
676 }
677
678 /* static */
679 bool wxDateTime::IsLeapYear(int year, wxDateTime::Calendar cal)
680 {
681 if ( year == Inv_Year )
682 year = GetCurrentYear();
683
684 if ( cal == Gregorian )
685 {
686 // in Gregorian calendar leap years are those divisible by 4 except
687 // those divisible by 100 unless they're also divisible by 400
688 // (in some countries, like Russia and Greece, additional corrections
689 // exist, but they won't manifest themselves until 2700)
690 return (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0));
691 }
692 else if ( cal == Julian )
693 {
694 // in Julian calendar the rule is simpler
695 return year % 4 == 0;
696 }
697 else
698 {
699 wxFAIL_MSG(_T("unknown calendar"));
700
701 return false;
702 }
703 }
704
705 /* static */
706 int wxDateTime::GetCentury(int year)
707 {
708 return year > 0 ? year / 100 : year / 100 - 1;
709 }
710
711 /* static */
712 int wxDateTime::ConvertYearToBC(int year)
713 {
714 // year 0 is BC 1
715 return year > 0 ? year : year - 1;
716 }
717
718 /* static */
719 int wxDateTime::GetCurrentYear(wxDateTime::Calendar cal)
720 {
721 switch ( cal )
722 {
723 case Gregorian:
724 return Now().GetYear();
725
726 case Julian:
727 wxFAIL_MSG(_T("TODO"));
728 break;
729
730 default:
731 wxFAIL_MSG(_T("unsupported calendar"));
732 break;
733 }
734
735 return Inv_Year;
736 }
737
738 /* static */
739 wxDateTime::Month wxDateTime::GetCurrentMonth(wxDateTime::Calendar cal)
740 {
741 switch ( cal )
742 {
743 case Gregorian:
744 return Now().GetMonth();
745
746 case Julian:
747 wxFAIL_MSG(_T("TODO"));
748 break;
749
750 default:
751 wxFAIL_MSG(_T("unsupported calendar"));
752 break;
753 }
754
755 return Inv_Month;
756 }
757
758 /* static */
759 wxDateTime::wxDateTime_t wxDateTime::GetNumberOfDays(int year, Calendar cal)
760 {
761 if ( year == Inv_Year )
762 {
763 // take the current year if none given
764 year = GetCurrentYear();
765 }
766
767 switch ( cal )
768 {
769 case Gregorian:
770 case Julian:
771 return IsLeapYear(year) ? 366 : 365;
772
773 default:
774 wxFAIL_MSG(_T("unsupported calendar"));
775 break;
776 }
777
778 return 0;
779 }
780
781 /* static */
782 wxDateTime::wxDateTime_t wxDateTime::GetNumberOfDays(wxDateTime::Month month,
783 int year,
784 wxDateTime::Calendar cal)
785 {
786 wxCHECK_MSG( month < MONTHS_IN_YEAR, 0, _T("invalid month") );
787
788 if ( cal == Gregorian || cal == Julian )
789 {
790 if ( year == Inv_Year )
791 {
792 // take the current year if none given
793 year = GetCurrentYear();
794 }
795
796 return GetNumOfDaysInMonth(year, month);
797 }
798 else
799 {
800 wxFAIL_MSG(_T("unsupported calendar"));
801
802 return 0;
803 }
804 }
805
806 namespace
807 {
808
809 // helper function used by GetEnglish/WeekDayName(): returns 0 if flags is
810 // Name_Full and 1 if it is Name_Abbr or -1 if the flags is incorrect (and
811 // asserts in this case)
812 //
813 // the return value of this function is used as an index into 2D array
814 // containing full names in its first row and abbreviated ones in the 2nd one
815 int NameArrayIndexFromFlag(wxDateTime::NameFlags flags)
816 {
817 switch ( flags )
818 {
819 case wxDateTime::Name_Full:
820 return 0;
821
822 case wxDateTime::Name_Abbr:
823 return 1;
824
825 default:
826 wxFAIL_MSG( "unknown wxDateTime::NameFlags value" );
827 }
828
829 return -1;
830 }
831
832 } // anonymous namespace
833
834 /* static */
835 wxString wxDateTime::GetEnglishMonthName(Month month, NameFlags flags)
836 {
837 wxCHECK_MSG( month != Inv_Month, wxEmptyString, "invalid month" );
838
839 static const char *monthNames[2][MONTHS_IN_YEAR] =
840 {
841 { "January", "February", "March", "April", "May", "June",
842 "July", "August", "September", "October", "November", "December" },
843 { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
844 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }
845 };
846
847 const int idx = NameArrayIndexFromFlag(flags);
848 if ( idx == -1 )
849 return wxString();
850
851 return monthNames[idx][month];
852 }
853
854 /* static */
855 wxString wxDateTime::GetMonthName(wxDateTime::Month month,
856 wxDateTime::NameFlags flags)
857 {
858 #ifdef wxHAS_STRFTIME
859 wxCHECK_MSG( month != Inv_Month, wxEmptyString, _T("invalid month") );
860
861 // notice that we must set all the fields to avoid confusing libc (GNU one
862 // gets confused to a crash if we don't do this)
863 tm tm;
864 InitTm(tm);
865 tm.tm_mon = month;
866
867 return CallStrftime(flags == Name_Abbr ? _T("%b") : _T("%B"), &tm);
868 #else // !wxHAS_STRFTIME
869 return GetEnglishMonthName(month, flags);
870 #endif // wxHAS_STRFTIME/!wxHAS_STRFTIME
871 }
872
873 /* static */
874 wxString wxDateTime::GetEnglishWeekDayName(WeekDay wday, NameFlags flags)
875 {
876 wxCHECK_MSG( wday != Inv_WeekDay, wxEmptyString, _T("invalid weekday") );
877
878 static const char *weekdayNames[2][DAYS_PER_400_YEARS] =
879 {
880 { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday",
881 "Saturday" },
882 { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" },
883 };
884
885 const int idx = NameArrayIndexFromFlag(flags);
886 if ( idx == -1 )
887 return wxString();
888
889 return weekdayNames[idx][wday];
890 }
891
892 /* static */
893 wxString wxDateTime::GetWeekDayName(wxDateTime::WeekDay wday,
894 wxDateTime::NameFlags flags)
895 {
896 #ifdef wxHAS_STRFTIME
897 wxCHECK_MSG( wday != Inv_WeekDay, wxEmptyString, _T("invalid weekday") );
898
899 // take some arbitrary Sunday (but notice that the day should be such that
900 // after adding wday to it below we still have a valid date, e.g. don't
901 // take 28 here!)
902 tm tm;
903 InitTm(tm);
904 tm.tm_mday = 21;
905 tm.tm_mon = Nov;
906 tm.tm_year = 99;
907
908 // and offset it by the number of days needed to get the correct wday
909 tm.tm_mday += wday;
910
911 // call mktime() to normalize it...
912 (void)mktime(&tm);
913
914 // ... and call strftime()
915 return CallStrftime(flags == Name_Abbr ? _T("%a") : _T("%A"), &tm);
916 #else // !wxHAS_STRFTIME
917 return GetEnglishWeekDayName(wday, flags);
918 #endif // wxHAS_STRFTIME/!wxHAS_STRFTIME
919 }
920
921 /* static */
922 void wxDateTime::GetAmPmStrings(wxString *am, wxString *pm)
923 {
924 tm tm;
925 InitTm(tm);
926 wxChar buffer[64];
927 // @Note: Do not call 'CallStrftime' here! CallStrftime checks the return code
928 // and causes an assertion failed if the buffer is to small (which is good) - OR -
929 // if strftime does not return anything because the format string is invalid - OR -
930 // if there are no 'am' / 'pm' tokens defined for the current locale (which is not good).
931 // wxDateTime::ParseTime will try several different formats to parse the time.
932 // As a result, GetAmPmStrings might get called, even if the current locale
933 // does not define any 'am' / 'pm' tokens. In this case, wxStrftime would
934 // assert, even though it is a perfectly legal use.
935 if ( am )
936 {
937 if (wxStrftime(buffer, WXSIZEOF(buffer), _T("%p"), &tm) > 0)
938 *am = wxString(buffer);
939 else
940 *am = wxString();
941 }
942 if ( pm )
943 {
944 tm.tm_hour = 13;
945 if (wxStrftime(buffer, WXSIZEOF(buffer), _T("%p"), &tm) > 0)
946 *pm = wxString(buffer);
947 else
948 *pm = wxString();
949 }
950 }
951
952
953 // ----------------------------------------------------------------------------
954 // Country stuff: date calculations depend on the country (DST, work days,
955 // ...), so we need to know which rules to follow.
956 // ----------------------------------------------------------------------------
957
958 /* static */
959 wxDateTime::Country wxDateTime::GetCountry()
960 {
961 // TODO use LOCALE_ICOUNTRY setting under Win32
962 #ifndef __WXWINCE__
963 if ( ms_country == Country_Unknown )
964 {
965 // try to guess from the time zone name
966 time_t t = time(NULL);
967 struct tm tmstruct;
968 struct tm *tm = wxLocaltime_r(&t, &tmstruct);
969
970 wxString tz = CallStrftime(_T("%Z"), tm);
971 if ( tz == _T("WET") || tz == _T("WEST") )
972 {
973 ms_country = UK;
974 }
975 else if ( tz == _T("CET") || tz == _T("CEST") )
976 {
977 ms_country = Country_EEC;
978 }
979 else if ( tz == _T("MSK") || tz == _T("MSD") )
980 {
981 ms_country = Russia;
982 }
983 else if ( tz == _T("AST") || tz == _T("ADT") ||
984 tz == _T("EST") || tz == _T("EDT") ||
985 tz == _T("CST") || tz == _T("CDT") ||
986 tz == _T("MST") || tz == _T("MDT") ||
987 tz == _T("PST") || tz == _T("PDT") )
988 {
989 ms_country = USA;
990 }
991 else
992 {
993 // well, choose a default one
994 ms_country = USA;
995 }
996 }
997 #else // __WXWINCE__
998 ms_country = USA;
999 #endif // !__WXWINCE__/__WXWINCE__
1000
1001 return ms_country;
1002 }
1003
1004 /* static */
1005 void wxDateTime::SetCountry(wxDateTime::Country country)
1006 {
1007 ms_country = country;
1008 }
1009
1010 /* static */
1011 bool wxDateTime::IsWestEuropeanCountry(Country country)
1012 {
1013 if ( country == Country_Default )
1014 {
1015 country = GetCountry();
1016 }
1017
1018 return (Country_WesternEurope_Start <= country) &&
1019 (country <= Country_WesternEurope_End);
1020 }
1021
1022 // ----------------------------------------------------------------------------
1023 // DST calculations: we use 3 different rules for the West European countries,
1024 // USA and for the rest of the world. This is undoubtedly false for many
1025 // countries, but I lack the necessary info (and the time to gather it),
1026 // please add the other rules here!
1027 // ----------------------------------------------------------------------------
1028
1029 /* static */
1030 bool wxDateTime::IsDSTApplicable(int year, Country country)
1031 {
1032 if ( year == Inv_Year )
1033 {
1034 // take the current year if none given
1035 year = GetCurrentYear();
1036 }
1037
1038 if ( country == Country_Default )
1039 {
1040 country = GetCountry();
1041 }
1042
1043 switch ( country )
1044 {
1045 case USA:
1046 case UK:
1047 // DST was first observed in the US and UK during WWI, reused
1048 // during WWII and used again since 1966
1049 return year >= 1966 ||
1050 (year >= 1942 && year <= 1945) ||
1051 (year == 1918 || year == 1919);
1052
1053 default:
1054 // assume that it started after WWII
1055 return year > 1950;
1056 }
1057 }
1058
1059 /* static */
1060 wxDateTime wxDateTime::GetBeginDST(int year, Country country)
1061 {
1062 if ( year == Inv_Year )
1063 {
1064 // take the current year if none given
1065 year = GetCurrentYear();
1066 }
1067
1068 if ( country == Country_Default )
1069 {
1070 country = GetCountry();
1071 }
1072
1073 if ( !IsDSTApplicable(year, country) )
1074 {
1075 return wxInvalidDateTime;
1076 }
1077
1078 wxDateTime dt;
1079
1080 if ( IsWestEuropeanCountry(country) || (country == Russia) )
1081 {
1082 // DST begins at 1 a.m. GMT on the last Sunday of March
1083 if ( !dt.SetToLastWeekDay(Sun, Mar, year) )
1084 {
1085 // weird...
1086 wxFAIL_MSG( _T("no last Sunday in March?") );
1087 }
1088
1089 dt += wxTimeSpan::Hours(1);
1090 }
1091 else switch ( country )
1092 {
1093 case USA:
1094 switch ( year )
1095 {
1096 case 1918:
1097 case 1919:
1098 // don't know for sure - assume it was in effect all year
1099
1100 case 1943:
1101 case 1944:
1102 case 1945:
1103 dt.Set(1, Jan, year);
1104 break;
1105
1106 case 1942:
1107 // DST was installed Feb 2, 1942 by the Congress
1108 dt.Set(2, Feb, year);
1109 break;
1110
1111 // Oil embargo changed the DST period in the US
1112 case 1974:
1113 dt.Set(6, Jan, 1974);
1114 break;
1115
1116 case 1975:
1117 dt.Set(23, Feb, 1975);
1118 break;
1119
1120 default:
1121 // before 1986, DST begun on the last Sunday of April, but
1122 // in 1986 Reagan changed it to begin at 2 a.m. of the
1123 // first Sunday in April
1124 if ( year < 1986 )
1125 {
1126 if ( !dt.SetToLastWeekDay(Sun, Apr, year) )
1127 {
1128 // weird...
1129 wxFAIL_MSG( _T("no first Sunday in April?") );
1130 }
1131 }
1132 else if ( year > 2006 )
1133 // Energy Policy Act of 2005, Pub. L. no. 109-58, 119 Stat 594 (2005).
1134 // Starting in 2007, daylight time begins in the United States on the
1135 // second Sunday in March and ends on the first Sunday in November
1136 {
1137 if ( !dt.SetToWeekDay(Sun, 2, Mar, year) )
1138 {
1139 // weird...
1140 wxFAIL_MSG( _T("no second Sunday in March?") );
1141 }
1142 }
1143 else
1144 {
1145 if ( !dt.SetToWeekDay(Sun, 1, Apr, year) )
1146 {
1147 // weird...
1148 wxFAIL_MSG( _T("no first Sunday in April?") );
1149 }
1150 }
1151
1152 dt += wxTimeSpan::Hours(2);
1153
1154 // TODO what about timezone??
1155 }
1156
1157 break;
1158
1159 default:
1160 // assume Mar 30 as the start of the DST for the rest of the world
1161 // - totally bogus, of course
1162 dt.Set(30, Mar, year);
1163 }
1164
1165 return dt;
1166 }
1167
1168 /* static */
1169 wxDateTime wxDateTime::GetEndDST(int year, Country country)
1170 {
1171 if ( year == Inv_Year )
1172 {
1173 // take the current year if none given
1174 year = GetCurrentYear();
1175 }
1176
1177 if ( country == Country_Default )
1178 {
1179 country = GetCountry();
1180 }
1181
1182 if ( !IsDSTApplicable(year, country) )
1183 {
1184 return wxInvalidDateTime;
1185 }
1186
1187 wxDateTime dt;
1188
1189 if ( IsWestEuropeanCountry(country) || (country == Russia) )
1190 {
1191 // DST ends at 1 a.m. GMT on the last Sunday of October
1192 if ( !dt.SetToLastWeekDay(Sun, Oct, year) )
1193 {
1194 // weirder and weirder...
1195 wxFAIL_MSG( _T("no last Sunday in October?") );
1196 }
1197
1198 dt += wxTimeSpan::Hours(1);
1199 }
1200 else switch ( country )
1201 {
1202 case USA:
1203 switch ( year )
1204 {
1205 case 1918:
1206 case 1919:
1207 // don't know for sure - assume it was in effect all year
1208
1209 case 1943:
1210 case 1944:
1211 dt.Set(31, Dec, year);
1212 break;
1213
1214 case 1945:
1215 // the time was reset after the end of the WWII
1216 dt.Set(30, Sep, year);
1217 break;
1218
1219 default: // default for switch (year)
1220 if ( year > 2006 )
1221 // Energy Policy Act of 2005, Pub. L. no. 109-58, 119 Stat 594 (2005).
1222 // Starting in 2007, daylight time begins in the United States on the
1223 // second Sunday in March and ends on the first Sunday in November
1224 {
1225 if ( !dt.SetToWeekDay(Sun, 1, Nov, year) )
1226 {
1227 // weird...
1228 wxFAIL_MSG( _T("no first Sunday in November?") );
1229 }
1230 }
1231 else
1232 // pre-2007
1233 // DST ends at 2 a.m. on the last Sunday of October
1234 {
1235 if ( !dt.SetToLastWeekDay(Sun, Oct, year) )
1236 {
1237 // weirder and weirder...
1238 wxFAIL_MSG( _T("no last Sunday in October?") );
1239 }
1240 }
1241
1242 dt += wxTimeSpan::Hours(2);
1243
1244 // TODO: what about timezone??
1245 }
1246 break;
1247
1248 default: // default for switch (country)
1249 // assume October 26th as the end of the DST - totally bogus too
1250 dt.Set(26, Oct, year);
1251 }
1252
1253 return dt;
1254 }
1255
1256 // ----------------------------------------------------------------------------
1257 // constructors and assignment operators
1258 // ----------------------------------------------------------------------------
1259
1260 // return the current time with ms precision
1261 /* static */ wxDateTime wxDateTime::UNow()
1262 {
1263 return wxDateTime(wxGetLocalTimeMillis());
1264 }
1265
1266 // the values in the tm structure contain the local time
1267 wxDateTime& wxDateTime::Set(const struct tm& tm)
1268 {
1269 struct tm tm2(tm);
1270 time_t timet = mktime(&tm2);
1271
1272 if ( timet == (time_t)-1 )
1273 {
1274 // mktime() rather unintuitively fails for Jan 1, 1970 if the hour is
1275 // less than timezone - try to make it work for this case
1276 if ( tm2.tm_year == 70 && tm2.tm_mon == 0 && tm2.tm_mday == 1 )
1277 {
1278 return Set((time_t)(
1279 GetTimeZone() +
1280 tm2.tm_hour * MIN_PER_HOUR * SEC_PER_MIN +
1281 tm2.tm_min * SEC_PER_MIN +
1282 tm2.tm_sec));
1283 }
1284
1285 wxFAIL_MSG( _T("mktime() failed") );
1286
1287 *this = wxInvalidDateTime;
1288
1289 return *this;
1290 }
1291 else
1292 {
1293 return Set(timet);
1294 }
1295 }
1296
1297 wxDateTime& wxDateTime::Set(wxDateTime_t hour,
1298 wxDateTime_t minute,
1299 wxDateTime_t second,
1300 wxDateTime_t millisec)
1301 {
1302 // we allow seconds to be 61 to account for the leap seconds, even if we
1303 // don't use them really
1304 wxDATETIME_CHECK( hour < 24 &&
1305 second < 62 &&
1306 minute < 60 &&
1307 millisec < 1000,
1308 _T("Invalid time in wxDateTime::Set()") );
1309
1310 // get the current date from system
1311 struct tm tmstruct;
1312 struct tm *tm = GetTmNow(&tmstruct);
1313
1314 wxDATETIME_CHECK( tm, _T("wxLocaltime_r() failed") );
1315
1316 // make a copy so it isn't clobbered by the call to mktime() below
1317 struct tm tm1(*tm);
1318
1319 // adjust the time
1320 tm1.tm_hour = hour;
1321 tm1.tm_min = minute;
1322 tm1.tm_sec = second;
1323
1324 // and the DST in case it changes on this date
1325 struct tm tm2(tm1);
1326 mktime(&tm2);
1327 if ( tm2.tm_isdst != tm1.tm_isdst )
1328 tm1.tm_isdst = tm2.tm_isdst;
1329
1330 (void)Set(tm1);
1331
1332 // and finally adjust milliseconds
1333 return SetMillisecond(millisec);
1334 }
1335
1336 wxDateTime& wxDateTime::Set(wxDateTime_t day,
1337 Month month,
1338 int year,
1339 wxDateTime_t hour,
1340 wxDateTime_t minute,
1341 wxDateTime_t second,
1342 wxDateTime_t millisec)
1343 {
1344 wxDATETIME_CHECK( hour < 24 &&
1345 second < 62 &&
1346 minute < 60 &&
1347 millisec < 1000,
1348 _T("Invalid time in wxDateTime::Set()") );
1349
1350 ReplaceDefaultYearMonthWithCurrent(&year, &month);
1351
1352 wxDATETIME_CHECK( (0 < day) && (day <= GetNumberOfDays(month, year)),
1353 _T("Invalid date in wxDateTime::Set()") );
1354
1355 // the range of time_t type (inclusive)
1356 static const int yearMinInRange = 1970;
1357 static const int yearMaxInRange = 2037;
1358
1359 // test only the year instead of testing for the exact end of the Unix
1360 // time_t range - it doesn't bring anything to do more precise checks
1361 if ( year >= yearMinInRange && year <= yearMaxInRange )
1362 {
1363 // use the standard library version if the date is in range - this is
1364 // probably more efficient than our code
1365 struct tm tm;
1366 tm.tm_year = year - 1900;
1367 tm.tm_mon = month;
1368 tm.tm_mday = day;
1369 tm.tm_hour = hour;
1370 tm.tm_min = minute;
1371 tm.tm_sec = second;
1372 tm.tm_isdst = -1; // mktime() will guess it
1373
1374 (void)Set(tm);
1375
1376 // and finally adjust milliseconds
1377 if (IsValid())
1378 SetMillisecond(millisec);
1379
1380 return *this;
1381 }
1382 else
1383 {
1384 // do time calculations ourselves: we want to calculate the number of
1385 // milliseconds between the given date and the epoch
1386
1387 // get the JDN for the midnight of this day
1388 m_time = GetTruncatedJDN(day, month, year);
1389 m_time -= EPOCH_JDN;
1390 m_time *= SECONDS_PER_DAY * TIME_T_FACTOR;
1391
1392 // JDN corresponds to GMT, we take localtime
1393 Add(wxTimeSpan(hour, minute, second + GetTimeZone(), millisec));
1394 }
1395
1396 return *this;
1397 }
1398
1399 wxDateTime& wxDateTime::Set(double jdn)
1400 {
1401 // so that m_time will be 0 for the midnight of Jan 1, 1970 which is jdn
1402 // EPOCH_JDN + 0.5
1403 jdn -= EPOCH_JDN + 0.5;
1404
1405 m_time.Assign(jdn*MILLISECONDS_PER_DAY);
1406
1407 // JDNs always are in UTC, so we don't need any adjustments for time zone
1408
1409 return *this;
1410 }
1411
1412 wxDateTime& wxDateTime::ResetTime()
1413 {
1414 Tm tm = GetTm();
1415
1416 if ( tm.hour || tm.min || tm.sec || tm.msec )
1417 {
1418 tm.msec =
1419 tm.sec =
1420 tm.min =
1421 tm.hour = 0;
1422
1423 Set(tm);
1424 }
1425
1426 return *this;
1427 }
1428
1429 wxDateTime wxDateTime::GetDateOnly() const
1430 {
1431 Tm tm = GetTm();
1432 tm.msec =
1433 tm.sec =
1434 tm.min =
1435 tm.hour = 0;
1436 return wxDateTime(tm);
1437 }
1438
1439 // ----------------------------------------------------------------------------
1440 // DOS Date and Time Format functions
1441 // ----------------------------------------------------------------------------
1442 // the dos date and time value is an unsigned 32 bit value in the format:
1443 // YYYYYYYMMMMDDDDDhhhhhmmmmmmsssss
1444 //
1445 // Y = year offset from 1980 (0-127)
1446 // M = month (1-12)
1447 // D = day of month (1-31)
1448 // h = hour (0-23)
1449 // m = minute (0-59)
1450 // s = bisecond (0-29) each bisecond indicates two seconds
1451 // ----------------------------------------------------------------------------
1452
1453 wxDateTime& wxDateTime::SetFromDOS(unsigned long ddt)
1454 {
1455 struct tm tm;
1456 InitTm(tm);
1457
1458 long year = ddt & 0xFE000000;
1459 year >>= 25;
1460 year += 80;
1461 tm.tm_year = year;
1462
1463 long month = ddt & 0x1E00000;
1464 month >>= 21;
1465 month -= 1;
1466 tm.tm_mon = month;
1467
1468 long day = ddt & 0x1F0000;
1469 day >>= 16;
1470 tm.tm_mday = day;
1471
1472 long hour = ddt & 0xF800;
1473 hour >>= 11;
1474 tm.tm_hour = hour;
1475
1476 long minute = ddt & 0x7E0;
1477 minute >>= 5;
1478 tm.tm_min = minute;
1479
1480 long second = ddt & 0x1F;
1481 tm.tm_sec = second * 2;
1482
1483 return Set(mktime(&tm));
1484 }
1485
1486 unsigned long wxDateTime::GetAsDOS() const
1487 {
1488 unsigned long ddt;
1489 time_t ticks = GetTicks();
1490 struct tm tmstruct;
1491 struct tm *tm = wxLocaltime_r(&ticks, &tmstruct);
1492 wxCHECK_MSG( tm, ULONG_MAX, _T("time can't be represented in DOS format") );
1493
1494 long year = tm->tm_year;
1495 year -= 80;
1496 year <<= 25;
1497
1498 long month = tm->tm_mon;
1499 month += 1;
1500 month <<= 21;
1501
1502 long day = tm->tm_mday;
1503 day <<= 16;
1504
1505 long hour = tm->tm_hour;
1506 hour <<= 11;
1507
1508 long minute = tm->tm_min;
1509 minute <<= 5;
1510
1511 long second = tm->tm_sec;
1512 second /= 2;
1513
1514 ddt = year | month | day | hour | minute | second;
1515 return ddt;
1516 }
1517
1518 // ----------------------------------------------------------------------------
1519 // time_t <-> broken down time conversions
1520 // ----------------------------------------------------------------------------
1521
1522 wxDateTime::Tm wxDateTime::GetTm(const TimeZone& tz) const
1523 {
1524 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1525
1526 time_t time = GetTicks();
1527 if ( time != (time_t)-1 )
1528 {
1529 // use C RTL functions
1530 struct tm tmstruct;
1531 tm *tm;
1532 if ( tz.GetOffset() == -GetTimeZone() )
1533 {
1534 // we are working with local time
1535 tm = wxLocaltime_r(&time, &tmstruct);
1536
1537 // should never happen
1538 wxCHECK_MSG( tm, Tm(), _T("wxLocaltime_r() failed") );
1539 }
1540 else
1541 {
1542 time += (time_t)tz.GetOffset();
1543 #if defined(__VMS__) || defined(__WATCOMC__) // time is unsigned so avoid warning
1544 int time2 = (int) time;
1545 if ( time2 >= 0 )
1546 #else
1547 if ( time >= 0 )
1548 #endif
1549 {
1550 tm = wxGmtime_r(&time, &tmstruct);
1551
1552 // should never happen
1553 wxCHECK_MSG( tm, Tm(), _T("wxGmtime_r() failed") );
1554 }
1555 else
1556 {
1557 tm = (struct tm *)NULL;
1558 }
1559 }
1560
1561 if ( tm )
1562 {
1563 // adjust the milliseconds
1564 Tm tm2(*tm, tz);
1565 long timeOnly = (m_time % MILLISECONDS_PER_DAY).ToLong();
1566 tm2.msec = (wxDateTime_t)(timeOnly % 1000);
1567 return tm2;
1568 }
1569 //else: use generic code below
1570 }
1571
1572 // remember the time and do the calculations with the date only - this
1573 // eliminates rounding errors of the floating point arithmetics
1574
1575 wxLongLong timeMidnight = m_time + tz.GetOffset() * 1000;
1576
1577 long timeOnly = (timeMidnight % MILLISECONDS_PER_DAY).ToLong();
1578
1579 // we want to always have positive time and timeMidnight to be really
1580 // the midnight before it
1581 if ( timeOnly < 0 )
1582 {
1583 timeOnly = MILLISECONDS_PER_DAY + timeOnly;
1584 }
1585
1586 timeMidnight -= timeOnly;
1587
1588 // calculate the Gregorian date from JDN for the midnight of our date:
1589 // this will yield day, month (in 1..12 range) and year
1590
1591 // actually, this is the JDN for the noon of the previous day
1592 long jdn = (timeMidnight / MILLISECONDS_PER_DAY).ToLong() + EPOCH_JDN;
1593
1594 // CREDIT: code below is by Scott E. Lee (but bugs are mine)
1595
1596 wxASSERT_MSG( jdn > -2, _T("JDN out of range") );
1597
1598 // calculate the century
1599 long temp = (jdn + JDN_OFFSET) * 4 - 1;
1600 long century = temp / DAYS_PER_400_YEARS;
1601
1602 // then the year and day of year (1 <= dayOfYear <= 366)
1603 temp = ((temp % DAYS_PER_400_YEARS) / 4) * 4 + 3;
1604 long year = (century * 100) + (temp / DAYS_PER_4_YEARS);
1605 long dayOfYear = (temp % DAYS_PER_4_YEARS) / 4 + 1;
1606
1607 // and finally the month and day of the month
1608 temp = dayOfYear * 5 - 3;
1609 long month = temp / DAYS_PER_5_MONTHS;
1610 long day = (temp % DAYS_PER_5_MONTHS) / 5 + 1;
1611
1612 // month is counted from March - convert to normal
1613 if ( month < 10 )
1614 {
1615 month += 3;
1616 }
1617 else
1618 {
1619 year += 1;
1620 month -= 9;
1621 }
1622
1623 // year is offset by 4800
1624 year -= 4800;
1625
1626 // check that the algorithm gave us something reasonable
1627 wxASSERT_MSG( (0 < month) && (month <= 12), _T("invalid month") );
1628 wxASSERT_MSG( (1 <= day) && (day < 32), _T("invalid day") );
1629
1630 // construct Tm from these values
1631 Tm tm;
1632 tm.year = (int)year;
1633 tm.mon = (Month)(month - 1); // algorithm yields 1 for January, not 0
1634 tm.mday = (wxDateTime_t)day;
1635 tm.msec = (wxDateTime_t)(timeOnly % 1000);
1636 timeOnly -= tm.msec;
1637 timeOnly /= 1000; // now we have time in seconds
1638
1639 tm.sec = (wxDateTime_t)(timeOnly % SEC_PER_MIN);
1640 timeOnly -= tm.sec;
1641 timeOnly /= SEC_PER_MIN; // now we have time in minutes
1642
1643 tm.min = (wxDateTime_t)(timeOnly % MIN_PER_HOUR);
1644 timeOnly -= tm.min;
1645
1646 tm.hour = (wxDateTime_t)(timeOnly / MIN_PER_HOUR);
1647
1648 return tm;
1649 }
1650
1651 wxDateTime& wxDateTime::SetYear(int year)
1652 {
1653 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1654
1655 Tm tm(GetTm());
1656 tm.year = year;
1657 Set(tm);
1658
1659 return *this;
1660 }
1661
1662 wxDateTime& wxDateTime::SetMonth(Month month)
1663 {
1664 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1665
1666 Tm tm(GetTm());
1667 tm.mon = month;
1668 Set(tm);
1669
1670 return *this;
1671 }
1672
1673 wxDateTime& wxDateTime::SetDay(wxDateTime_t mday)
1674 {
1675 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1676
1677 Tm tm(GetTm());
1678 tm.mday = mday;
1679 Set(tm);
1680
1681 return *this;
1682 }
1683
1684 wxDateTime& wxDateTime::SetHour(wxDateTime_t hour)
1685 {
1686 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1687
1688 Tm tm(GetTm());
1689 tm.hour = hour;
1690 Set(tm);
1691
1692 return *this;
1693 }
1694
1695 wxDateTime& wxDateTime::SetMinute(wxDateTime_t min)
1696 {
1697 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1698
1699 Tm tm(GetTm());
1700 tm.min = min;
1701 Set(tm);
1702
1703 return *this;
1704 }
1705
1706 wxDateTime& wxDateTime::SetSecond(wxDateTime_t sec)
1707 {
1708 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1709
1710 Tm tm(GetTm());
1711 tm.sec = sec;
1712 Set(tm);
1713
1714 return *this;
1715 }
1716
1717 wxDateTime& wxDateTime::SetMillisecond(wxDateTime_t millisecond)
1718 {
1719 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1720
1721 // we don't need to use GetTm() for this one
1722 m_time -= m_time % 1000l;
1723 m_time += millisecond;
1724
1725 return *this;
1726 }
1727
1728 // ----------------------------------------------------------------------------
1729 // wxDateTime arithmetics
1730 // ----------------------------------------------------------------------------
1731
1732 wxDateTime& wxDateTime::Add(const wxDateSpan& diff)
1733 {
1734 Tm tm(GetTm());
1735
1736 tm.year += diff.GetYears();
1737 tm.AddMonths(diff.GetMonths());
1738
1739 // check that the resulting date is valid
1740 if ( tm.mday > GetNumOfDaysInMonth(tm.year, tm.mon) )
1741 {
1742 // We suppose that when adding one month to Jan 31 we want to get Feb
1743 // 28 (or 29), i.e. adding a month to the last day of the month should
1744 // give the last day of the next month which is quite logical.
1745 //
1746 // Unfortunately, there is no logic way to understand what should
1747 // Jan 30 + 1 month be - Feb 28 too or Feb 27 (assuming non leap year)?
1748 // We make it Feb 28 (last day too), but it is highly questionable.
1749 tm.mday = GetNumOfDaysInMonth(tm.year, tm.mon);
1750 }
1751
1752 tm.AddDays(diff.GetTotalDays());
1753
1754 Set(tm);
1755
1756 wxASSERT_MSG( IsSameTime(tm),
1757 _T("Add(wxDateSpan) shouldn't modify time") );
1758
1759 return *this;
1760 }
1761
1762 // ----------------------------------------------------------------------------
1763 // Weekday and monthday stuff
1764 // ----------------------------------------------------------------------------
1765
1766 // convert Sun, Mon, ..., Sat into 6, 0, ..., 5
1767 static inline int ConvertWeekDayToMondayBase(int wd)
1768 {
1769 return wd == wxDateTime::Sun ? 6 : wd - 1;
1770 }
1771
1772 /* static */
1773 wxDateTime
1774 wxDateTime::SetToWeekOfYear(int year, wxDateTime_t numWeek, WeekDay wd)
1775 {
1776 wxASSERT_MSG( numWeek > 0,
1777 _T("invalid week number: weeks are counted from 1") );
1778
1779 // Jan 4 always lies in the 1st week of the year
1780 wxDateTime dt(4, Jan, year);
1781 dt.SetToWeekDayInSameWeek(wd);
1782 dt += wxDateSpan::Weeks(numWeek - 1);
1783
1784 return dt;
1785 }
1786
1787 #if WXWIN_COMPATIBILITY_2_6
1788 // use a separate function to avoid warnings about using deprecated
1789 // SetToTheWeek in GetWeek below
1790 static wxDateTime
1791 SetToTheWeek(int year,
1792 wxDateTime::wxDateTime_t numWeek,
1793 wxDateTime::WeekDay weekday,
1794 wxDateTime::WeekFlags flags)
1795 {
1796 // Jan 4 always lies in the 1st week of the year
1797 wxDateTime dt(4, wxDateTime::Jan, year);
1798 dt.SetToWeekDayInSameWeek(weekday, flags);
1799 dt += wxDateSpan::Weeks(numWeek - 1);
1800
1801 return dt;
1802 }
1803
1804 bool wxDateTime::SetToTheWeek(wxDateTime_t numWeek,
1805 WeekDay weekday,
1806 WeekFlags flags)
1807 {
1808 int year = GetYear();
1809 *this = ::SetToTheWeek(year, numWeek, weekday, flags);
1810 if ( GetYear() != year )
1811 {
1812 // oops... numWeek was too big
1813 return false;
1814 }
1815
1816 return true;
1817 }
1818
1819 wxDateTime wxDateTime::GetWeek(wxDateTime_t numWeek,
1820 WeekDay weekday,
1821 WeekFlags flags) const
1822 {
1823 return ::SetToTheWeek(GetYear(), numWeek, weekday, flags);
1824 }
1825 #endif // WXWIN_COMPATIBILITY_2_6
1826
1827 wxDateTime& wxDateTime::SetToLastMonthDay(Month month,
1828 int year)
1829 {
1830 // take the current month/year if none specified
1831 if ( year == Inv_Year )
1832 year = GetYear();
1833 if ( month == Inv_Month )
1834 month = GetMonth();
1835
1836 return Set(GetNumOfDaysInMonth(year, month), month, year);
1837 }
1838
1839 wxDateTime& wxDateTime::SetToWeekDayInSameWeek(WeekDay weekday, WeekFlags flags)
1840 {
1841 wxDATETIME_CHECK( weekday != Inv_WeekDay, _T("invalid weekday") );
1842
1843 int wdayDst = weekday,
1844 wdayThis = GetWeekDay();
1845 if ( wdayDst == wdayThis )
1846 {
1847 // nothing to do
1848 return *this;
1849 }
1850
1851 if ( flags == Default_First )
1852 {
1853 flags = GetCountry() == USA ? Sunday_First : Monday_First;
1854 }
1855
1856 // the logic below based on comparing weekday and wdayThis works if Sun (0)
1857 // is the first day in the week, but breaks down for Monday_First case so
1858 // we adjust the week days in this case
1859 if ( flags == Monday_First )
1860 {
1861 if ( wdayThis == Sun )
1862 wdayThis += 7;
1863 if ( wdayDst == Sun )
1864 wdayDst += 7;
1865 }
1866 //else: Sunday_First, nothing to do
1867
1868 // go forward or back in time to the day we want
1869 if ( wdayDst < wdayThis )
1870 {
1871 return Subtract(wxDateSpan::Days(wdayThis - wdayDst));
1872 }
1873 else // weekday > wdayThis
1874 {
1875 return Add(wxDateSpan::Days(wdayDst - wdayThis));
1876 }
1877 }
1878
1879 wxDateTime& wxDateTime::SetToNextWeekDay(WeekDay weekday)
1880 {
1881 wxDATETIME_CHECK( weekday != Inv_WeekDay, _T("invalid weekday") );
1882
1883 int diff;
1884 WeekDay wdayThis = GetWeekDay();
1885 if ( weekday == wdayThis )
1886 {
1887 // nothing to do
1888 return *this;
1889 }
1890 else if ( weekday < wdayThis )
1891 {
1892 // need to advance a week
1893 diff = 7 - (wdayThis - weekday);
1894 }
1895 else // weekday > wdayThis
1896 {
1897 diff = weekday - wdayThis;
1898 }
1899
1900 return Add(wxDateSpan::Days(diff));
1901 }
1902
1903 wxDateTime& wxDateTime::SetToPrevWeekDay(WeekDay weekday)
1904 {
1905 wxDATETIME_CHECK( weekday != Inv_WeekDay, _T("invalid weekday") );
1906
1907 int diff;
1908 WeekDay wdayThis = GetWeekDay();
1909 if ( weekday == wdayThis )
1910 {
1911 // nothing to do
1912 return *this;
1913 }
1914 else if ( weekday > wdayThis )
1915 {
1916 // need to go to previous week
1917 diff = 7 - (weekday - wdayThis);
1918 }
1919 else // weekday < wdayThis
1920 {
1921 diff = wdayThis - weekday;
1922 }
1923
1924 return Subtract(wxDateSpan::Days(diff));
1925 }
1926
1927 bool wxDateTime::SetToWeekDay(WeekDay weekday,
1928 int n,
1929 Month month,
1930 int year)
1931 {
1932 wxCHECK_MSG( weekday != Inv_WeekDay, false, _T("invalid weekday") );
1933
1934 // we don't check explicitly that -5 <= n <= 5 because we will return false
1935 // anyhow in such case - but may be should still give an assert for it?
1936
1937 // take the current month/year if none specified
1938 ReplaceDefaultYearMonthWithCurrent(&year, &month);
1939
1940 wxDateTime dt;
1941
1942 // TODO this probably could be optimised somehow...
1943
1944 if ( n > 0 )
1945 {
1946 // get the first day of the month
1947 dt.Set(1, month, year);
1948
1949 // get its wday
1950 WeekDay wdayFirst = dt.GetWeekDay();
1951
1952 // go to the first weekday of the month
1953 int diff = weekday - wdayFirst;
1954 if ( diff < 0 )
1955 diff += 7;
1956
1957 // add advance n-1 weeks more
1958 diff += 7*(n - 1);
1959
1960 dt += wxDateSpan::Days(diff);
1961 }
1962 else // count from the end of the month
1963 {
1964 // get the last day of the month
1965 dt.SetToLastMonthDay(month, year);
1966
1967 // get its wday
1968 WeekDay wdayLast = dt.GetWeekDay();
1969
1970 // go to the last weekday of the month
1971 int diff = wdayLast - weekday;
1972 if ( diff < 0 )
1973 diff += 7;
1974
1975 // and rewind n-1 weeks from there
1976 diff += 7*(-n - 1);
1977
1978 dt -= wxDateSpan::Days(diff);
1979 }
1980
1981 // check that it is still in the same month
1982 if ( dt.GetMonth() == month )
1983 {
1984 *this = dt;
1985
1986 return true;
1987 }
1988 else
1989 {
1990 // no such day in this month
1991 return false;
1992 }
1993 }
1994
1995 static inline
1996 wxDateTime::wxDateTime_t GetDayOfYearFromTm(const wxDateTime::Tm& tm)
1997 {
1998 return (wxDateTime::wxDateTime_t)(gs_cumulatedDays[wxDateTime::IsLeapYear(tm.year)][tm.mon] + tm.mday);
1999 }
2000
2001 wxDateTime::wxDateTime_t wxDateTime::GetDayOfYear(const TimeZone& tz) const
2002 {
2003 return GetDayOfYearFromTm(GetTm(tz));
2004 }
2005
2006 wxDateTime::wxDateTime_t
2007 wxDateTime::GetWeekOfYear(wxDateTime::WeekFlags flags, const TimeZone& tz) const
2008 {
2009 if ( flags == Default_First )
2010 {
2011 flags = GetCountry() == USA ? Sunday_First : Monday_First;
2012 }
2013
2014 Tm tm(GetTm(tz));
2015 wxDateTime_t nDayInYear = GetDayOfYearFromTm(tm);
2016
2017 int wdTarget = GetWeekDay(tz);
2018 int wdYearStart = wxDateTime(1, Jan, GetYear()).GetWeekDay();
2019 int week;
2020 if ( flags == Sunday_First )
2021 {
2022 // FIXME: First week is not calculated correctly.
2023 week = (nDayInYear - wdTarget + 7) / 7;
2024 if ( wdYearStart == Wed || wdYearStart == Thu )
2025 week++;
2026 }
2027 else // week starts with monday
2028 {
2029 // adjust the weekdays to non-US style.
2030 wdYearStart = ConvertWeekDayToMondayBase(wdYearStart);
2031 wdTarget = ConvertWeekDayToMondayBase(wdTarget);
2032
2033 // quoting from http://www.cl.cam.ac.uk/~mgk25/iso-time.html:
2034 //
2035 // Week 01 of a year is per definition the first week that has the
2036 // Thursday in this year, which is equivalent to the week that
2037 // contains the fourth day of January. In other words, the first
2038 // week of a new year is the week that has the majority of its
2039 // days in the new year. Week 01 might also contain days from the
2040 // previous year and the week before week 01 of a year is the last
2041 // week (52 or 53) of the previous year even if it contains days
2042 // from the new year. A week starts with Monday (day 1) and ends
2043 // with Sunday (day 7).
2044 //
2045
2046 // if Jan 1 is Thursday or less, it is in the first week of this year
2047 if ( wdYearStart < 4 )
2048 {
2049 // count the number of entire weeks between Jan 1 and this date
2050 week = (nDayInYear + wdYearStart + 6 - wdTarget)/7;
2051
2052 // be careful to check for overflow in the next year
2053 if ( week == 53 && tm.mday - wdTarget > 28 )
2054 week = 1;
2055 }
2056 else // Jan 1 is in the last week of the previous year
2057 {
2058 // check if we happen to be at the last week of previous year:
2059 if ( tm.mon == Jan && tm.mday < 8 - wdYearStart )
2060 week = wxDateTime(31, Dec, GetYear()-1).GetWeekOfYear();
2061 else
2062 week = (nDayInYear + wdYearStart - 1 - wdTarget)/7;
2063 }
2064 }
2065
2066 return (wxDateTime::wxDateTime_t)week;
2067 }
2068
2069 wxDateTime::wxDateTime_t wxDateTime::GetWeekOfMonth(wxDateTime::WeekFlags flags,
2070 const TimeZone& tz) const
2071 {
2072 Tm tm = GetTm(tz);
2073 wxDateTime dtMonthStart = wxDateTime(1, tm.mon, tm.year);
2074 int nWeek = GetWeekOfYear(flags) - dtMonthStart.GetWeekOfYear(flags) + 1;
2075 if ( nWeek < 0 )
2076 {
2077 // this may happen for January when Jan, 1 is the last week of the
2078 // previous year
2079 nWeek += IsLeapYear(tm.year - 1) ? 53 : 52;
2080 }
2081
2082 return (wxDateTime::wxDateTime_t)nWeek;
2083 }
2084
2085 wxDateTime& wxDateTime::SetToYearDay(wxDateTime::wxDateTime_t yday)
2086 {
2087 int year = GetYear();
2088 wxDATETIME_CHECK( (0 < yday) && (yday <= GetNumberOfDays(year)),
2089 _T("invalid year day") );
2090
2091 bool isLeap = IsLeapYear(year);
2092 for ( Month mon = Jan; mon < Inv_Month; wxNextMonth(mon) )
2093 {
2094 // for Dec, we can't compare with gs_cumulatedDays[mon + 1], but we
2095 // don't need it neither - because of the CHECK above we know that
2096 // yday lies in December then
2097 if ( (mon == Dec) || (yday <= gs_cumulatedDays[isLeap][mon + 1]) )
2098 {
2099 Set((wxDateTime::wxDateTime_t)(yday - gs_cumulatedDays[isLeap][mon]), mon, year);
2100
2101 break;
2102 }
2103 }
2104
2105 return *this;
2106 }
2107
2108 // ----------------------------------------------------------------------------
2109 // Julian day number conversion and related stuff
2110 // ----------------------------------------------------------------------------
2111
2112 double wxDateTime::GetJulianDayNumber() const
2113 {
2114 return m_time.ToDouble() / MILLISECONDS_PER_DAY + EPOCH_JDN + 0.5;
2115 }
2116
2117 double wxDateTime::GetRataDie() const
2118 {
2119 // March 1 of the year 0 is Rata Die day -306 and JDN 1721119.5
2120 return GetJulianDayNumber() - 1721119.5 - 306;
2121 }
2122
2123 // ----------------------------------------------------------------------------
2124 // timezone and DST stuff
2125 // ----------------------------------------------------------------------------
2126
2127 int wxDateTime::IsDST(wxDateTime::Country country) const
2128 {
2129 wxCHECK_MSG( country == Country_Default, -1,
2130 _T("country support not implemented") );
2131
2132 // use the C RTL for the dates in the standard range
2133 time_t timet = GetTicks();
2134 if ( timet != (time_t)-1 )
2135 {
2136 struct tm tmstruct;
2137 tm *tm = wxLocaltime_r(&timet, &tmstruct);
2138
2139 wxCHECK_MSG( tm, -1, _T("wxLocaltime_r() failed") );
2140
2141 return tm->tm_isdst;
2142 }
2143 else
2144 {
2145 int year = GetYear();
2146
2147 if ( !IsDSTApplicable(year, country) )
2148 {
2149 // no DST time in this year in this country
2150 return -1;
2151 }
2152
2153 return IsBetween(GetBeginDST(year, country), GetEndDST(year, country));
2154 }
2155 }
2156
2157 wxDateTime& wxDateTime::MakeTimezone(const TimeZone& tz, bool noDST)
2158 {
2159 long secDiff = GetTimeZone() + tz.GetOffset();
2160
2161 // we need to know whether DST is or not in effect for this date unless
2162 // the test disabled by the caller
2163 if ( !noDST && (IsDST() == 1) )
2164 {
2165 // FIXME we assume that the DST is always shifted by 1 hour
2166 secDiff -= 3600;
2167 }
2168
2169 return Add(wxTimeSpan::Seconds(secDiff));
2170 }
2171
2172 wxDateTime& wxDateTime::MakeFromTimezone(const TimeZone& tz, bool noDST)
2173 {
2174 long secDiff = GetTimeZone() + tz.GetOffset();
2175
2176 // we need to know whether DST is or not in effect for this date unless
2177 // the test disabled by the caller
2178 if ( !noDST && (IsDST() == 1) )
2179 {
2180 // FIXME we assume that the DST is always shifted by 1 hour
2181 secDiff -= 3600;
2182 }
2183
2184 return Subtract(wxTimeSpan::Seconds(secDiff));
2185 }
2186
2187 // ============================================================================
2188 // wxDateTimeHolidayAuthority and related classes
2189 // ============================================================================
2190
2191 #include "wx/arrimpl.cpp"
2192
2193 WX_DEFINE_OBJARRAY(wxDateTimeArray)
2194
2195 static int wxCMPFUNC_CONV
2196 wxDateTimeCompareFunc(wxDateTime **first, wxDateTime **second)
2197 {
2198 wxDateTime dt1 = **first,
2199 dt2 = **second;
2200
2201 return dt1 == dt2 ? 0 : dt1 < dt2 ? -1 : +1;
2202 }
2203
2204 // ----------------------------------------------------------------------------
2205 // wxDateTimeHolidayAuthority
2206 // ----------------------------------------------------------------------------
2207
2208 wxHolidayAuthoritiesArray wxDateTimeHolidayAuthority::ms_authorities;
2209
2210 /* static */
2211 bool wxDateTimeHolidayAuthority::IsHoliday(const wxDateTime& dt)
2212 {
2213 size_t count = ms_authorities.size();
2214 for ( size_t n = 0; n < count; n++ )
2215 {
2216 if ( ms_authorities[n]->DoIsHoliday(dt) )
2217 {
2218 return true;
2219 }
2220 }
2221
2222 return false;
2223 }
2224
2225 /* static */
2226 size_t
2227 wxDateTimeHolidayAuthority::GetHolidaysInRange(const wxDateTime& dtStart,
2228 const wxDateTime& dtEnd,
2229 wxDateTimeArray& holidays)
2230 {
2231 wxDateTimeArray hol;
2232
2233 holidays.Clear();
2234
2235 const size_t countAuth = ms_authorities.size();
2236 for ( size_t nAuth = 0; nAuth < countAuth; nAuth++ )
2237 {
2238 ms_authorities[nAuth]->DoGetHolidaysInRange(dtStart, dtEnd, hol);
2239
2240 WX_APPEND_ARRAY(holidays, hol);
2241 }
2242
2243 holidays.Sort(wxDateTimeCompareFunc);
2244
2245 return holidays.size();
2246 }
2247
2248 /* static */
2249 void wxDateTimeHolidayAuthority::ClearAllAuthorities()
2250 {
2251 WX_CLEAR_ARRAY(ms_authorities);
2252 }
2253
2254 /* static */
2255 void wxDateTimeHolidayAuthority::AddAuthority(wxDateTimeHolidayAuthority *auth)
2256 {
2257 ms_authorities.push_back(auth);
2258 }
2259
2260 wxDateTimeHolidayAuthority::~wxDateTimeHolidayAuthority()
2261 {
2262 // required here for Darwin
2263 }
2264
2265 // ----------------------------------------------------------------------------
2266 // wxDateTimeWorkDays
2267 // ----------------------------------------------------------------------------
2268
2269 bool wxDateTimeWorkDays::DoIsHoliday(const wxDateTime& dt) const
2270 {
2271 wxDateTime::WeekDay wd = dt.GetWeekDay();
2272
2273 return (wd == wxDateTime::Sun) || (wd == wxDateTime::Sat);
2274 }
2275
2276 size_t wxDateTimeWorkDays::DoGetHolidaysInRange(const wxDateTime& dtStart,
2277 const wxDateTime& dtEnd,
2278 wxDateTimeArray& holidays) const
2279 {
2280 if ( dtStart > dtEnd )
2281 {
2282 wxFAIL_MSG( _T("invalid date range in GetHolidaysInRange") );
2283
2284 return 0u;
2285 }
2286
2287 holidays.Empty();
2288
2289 // instead of checking all days, start with the first Sat after dtStart and
2290 // end with the last Sun before dtEnd
2291 wxDateTime dtSatFirst = dtStart.GetNextWeekDay(wxDateTime::Sat),
2292 dtSatLast = dtEnd.GetPrevWeekDay(wxDateTime::Sat),
2293 dtSunFirst = dtStart.GetNextWeekDay(wxDateTime::Sun),
2294 dtSunLast = dtEnd.GetPrevWeekDay(wxDateTime::Sun),
2295 dt;
2296
2297 for ( dt = dtSatFirst; dt <= dtSatLast; dt += wxDateSpan::Week() )
2298 {
2299 holidays.Add(dt);
2300 }
2301
2302 for ( dt = dtSunFirst; dt <= dtSunLast; dt += wxDateSpan::Week() )
2303 {
2304 holidays.Add(dt);
2305 }
2306
2307 return holidays.GetCount();
2308 }
2309
2310 // ============================================================================
2311 // other helper functions
2312 // ============================================================================
2313
2314 // ----------------------------------------------------------------------------
2315 // iteration helpers: can be used to write a for loop over enum variable like
2316 // this:
2317 // for ( m = wxDateTime::Jan; m < wxDateTime::Inv_Month; wxNextMonth(m) )
2318 // ----------------------------------------------------------------------------
2319
2320 WXDLLIMPEXP_BASE void wxNextMonth(wxDateTime::Month& m)
2321 {
2322 wxASSERT_MSG( m < wxDateTime::Inv_Month, _T("invalid month") );
2323
2324 // no wrapping or the for loop above would never end!
2325 m = (wxDateTime::Month)(m + 1);
2326 }
2327
2328 WXDLLIMPEXP_BASE void wxPrevMonth(wxDateTime::Month& m)
2329 {
2330 wxASSERT_MSG( m < wxDateTime::Inv_Month, _T("invalid month") );
2331
2332 m = m == wxDateTime::Jan ? wxDateTime::Inv_Month
2333 : (wxDateTime::Month)(m - 1);
2334 }
2335
2336 WXDLLIMPEXP_BASE void wxNextWDay(wxDateTime::WeekDay& wd)
2337 {
2338 wxASSERT_MSG( wd < wxDateTime::Inv_WeekDay, _T("invalid week day") );
2339
2340 // no wrapping or the for loop above would never end!
2341 wd = (wxDateTime::WeekDay)(wd + 1);
2342 }
2343
2344 WXDLLIMPEXP_BASE void wxPrevWDay(wxDateTime::WeekDay& wd)
2345 {
2346 wxASSERT_MSG( wd < wxDateTime::Inv_WeekDay, _T("invalid week day") );
2347
2348 wd = wd == wxDateTime::Sun ? wxDateTime::Inv_WeekDay
2349 : (wxDateTime::WeekDay)(wd - 1);
2350 }
2351
2352 #ifdef __WXMSW__
2353
2354 wxDateTime& wxDateTime::SetFromMSWSysTime(const SYSTEMTIME& st)
2355 {
2356 return Set(st.wDay,
2357 static_cast<wxDateTime::Month>(wxDateTime::Jan + st.wMonth - 1),
2358 st.wYear,
2359 0, 0, 0);
2360 }
2361
2362 void wxDateTime::GetAsMSWSysTime(SYSTEMTIME* st) const
2363 {
2364 const wxDateTime::Tm tm(GetTm());
2365
2366 st->wYear = (WXWORD)tm.year;
2367 st->wMonth = (WXWORD)(tm.mon - wxDateTime::Jan + 1);
2368 st->wDay = tm.mday;
2369
2370 st->wDayOfWeek =
2371 st->wHour =
2372 st->wMinute =
2373 st->wSecond =
2374 st->wMilliseconds = 0;
2375 }
2376 #endif // __WXMSW__
2377
2378 #endif // wxUSE_DATETIME