]> git.saurik.com Git - wxWidgets.git/blob - src/common/datetime.cpp
wxBase compilation fixes
[wxWidgets.git] / src / common / datetime.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/datetime.h
3 // Purpose: implementation of time/date related classes
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 11.05.99
7 // RCS-ID: $Id$
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // parts of code taken from sndcal library by Scott E. Lee:
10 //
11 // Copyright 1993-1995, Scott E. Lee, all rights reserved.
12 // Permission granted to use, copy, modify, distribute and sell
13 // so long as the above copyright and this permission statement
14 // are retained in all copies.
15 //
16 // Licence: wxWindows license
17 ///////////////////////////////////////////////////////////////////////////////
18
19 /*
20 * Implementation notes:
21 *
22 * 1. the time is stored as a 64bit integer containing the signed number of
23 * milliseconds since Jan 1. 1970 (the Unix Epoch) - so it is always
24 * expressed in GMT.
25 *
26 * 2. the range is thus something about 580 million years, but due to current
27 * algorithms limitations, only dates from Nov 24, 4714BC are handled
28 *
29 * 3. standard ANSI C functions are used to do time calculations whenever
30 * possible, i.e. when the date is in the range Jan 1, 1970 to 2038
31 *
32 * 4. otherwise, the calculations are done by converting the date to/from JDN
33 * first (the range limitation mentioned above comes from here: the
34 * algorithm used by Scott E. Lee's code only works for positive JDNs, more
35 * or less)
36 *
37 * 5. the object constructed for the given DD-MM-YYYY HH:MM:SS corresponds to
38 * this moment in local time and may be converted to the object
39 * corresponding to the same date/time in another time zone by using
40 * ToTimezone()
41 *
42 * 6. the conversions to the current (or any other) timezone are done when the
43 * internal time representation is converted to the broken-down one in
44 * wxDateTime::Tm.
45 */
46
47 // ============================================================================
48 // declarations
49 // ============================================================================
50
51 // ----------------------------------------------------------------------------
52 // headers
53 // ----------------------------------------------------------------------------
54
55 #ifdef __GNUG__
56 #pragma implementation "datetime.h"
57 #endif
58
59 // For compilers that support precompilation, includes "wx.h".
60 #include "wx/wxprec.h"
61
62 #ifdef __BORLANDC__
63 #pragma hdrstop
64 #endif
65
66 #ifndef WX_PRECOMP
67 #include "wx/string.h"
68 #include "wx/intl.h"
69 #include "wx/log.h"
70 #endif // WX_PRECOMP
71
72 #include "wx/thread.h"
73 #include "wx/tokenzr.h"
74 #include "wx/module.h"
75
76 #define wxDEFINE_TIME_CONSTANTS // before including datetime.h
77
78 #include <ctype.h>
79
80 #include "wx/datetime.h"
81
82 // ----------------------------------------------------------------------------
83 // conditional compilation
84 // ----------------------------------------------------------------------------
85
86 #if defined(HAVE_STRPTIME) && defined(__LINUX__)
87 // glibc 2.0.7 strptime() is broken - the following snippet causes it to
88 // crash (instead of just failing):
89 //
90 // strncpy(buf, "Tue Dec 21 20:25:40 1999", 128);
91 // strptime(buf, "%x", &tm);
92 //
93 // so don't use it
94 #undef HAVE_STRPTIME
95 #endif // broken strptime()
96
97 #ifndef WX_TIMEZONE
98 #if defined(__BORLANDC__) || defined(__MINGW32__) || defined(__VISAGECPP__)
99 #define WX_TIMEZONE _timezone
100 #elif defined(__MWERKS__)
101 long wxmw_timezone = 28800;
102 #define WX_TIMEZONE wxmw_timezone ;
103 #else // unknown platform - try timezone
104 #define WX_TIMEZONE timezone
105 #endif
106 #endif // !WX_TIMEZONE
107
108 // ----------------------------------------------------------------------------
109 // private classes
110 // ----------------------------------------------------------------------------
111
112 class wxDateTimeHolidaysModule : public wxModule
113 {
114 public:
115 virtual bool OnInit()
116 {
117 wxDateTimeHolidayAuthority::AddAuthority(new wxDateTimeWorkDays);
118
119 return TRUE;
120 }
121
122 virtual void OnExit()
123 {
124 wxDateTimeHolidayAuthority::ClearAllAuthorities();
125 }
126
127 private:
128 DECLARE_DYNAMIC_CLASS(wxDateTimeHolidaysModule)
129 };
130
131 IMPLEMENT_DYNAMIC_CLASS(wxDateTimeHolidaysModule, wxModule)
132
133 // ----------------------------------------------------------------------------
134 // constants
135 // ----------------------------------------------------------------------------
136
137 // some trivial ones
138 static const int MONTHS_IN_YEAR = 12;
139
140 static const int SECONDS_IN_MINUTE = 60;
141
142 static const long SECONDS_PER_DAY = 86400l;
143
144 static const long MILLISECONDS_PER_DAY = 86400000l;
145
146 // this is the integral part of JDN of the midnight of Jan 1, 1970
147 // (i.e. JDN(Jan 1, 1970) = 2440587.5)
148 static const long EPOCH_JDN = 2440587l;
149
150 // the date of JDN -0.5 (as we don't work with fractional parts, this is the
151 // reference date for us) is Nov 24, 4714BC
152 static const int JDN_0_YEAR = -4713;
153 static const int JDN_0_MONTH = wxDateTime::Nov;
154 static const int JDN_0_DAY = 24;
155
156 // the constants used for JDN calculations
157 static const long JDN_OFFSET = 32046l;
158 static const long DAYS_PER_5_MONTHS = 153l;
159 static const long DAYS_PER_4_YEARS = 1461l;
160 static const long DAYS_PER_400_YEARS = 146097l;
161
162 // this array contains the cumulated number of days in all previous months for
163 // normal and leap years
164 static const wxDateTime::wxDateTime_t gs_cumulatedDays[2][MONTHS_IN_YEAR] =
165 {
166 { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 },
167 { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335 }
168 };
169
170 // ----------------------------------------------------------------------------
171 // global data
172 // ----------------------------------------------------------------------------
173
174 static wxDateTime gs_dtDefault;
175
176 wxDateTime& wxDefaultDateTime = gs_dtDefault;
177
178 wxDateTime::Country wxDateTime::ms_country = wxDateTime::Country_Unknown;
179
180 // ----------------------------------------------------------------------------
181 // private globals
182 // ----------------------------------------------------------------------------
183
184 // a critical section is needed to protect GetTimeZone() static
185 // variable in MT case
186 #if wxUSE_THREADS
187 static wxCriticalSection gs_critsectTimezone;
188 #endif // wxUSE_THREADS
189
190 // ----------------------------------------------------------------------------
191 // private functions
192 // ----------------------------------------------------------------------------
193
194 // debugger helper: shows what the date really is
195 #ifdef __WXDEBUG__
196 extern const wxChar *wxDumpDate(const wxDateTime* dt)
197 {
198 static wxChar buf[128];
199
200 wxStrcpy(buf, dt->Format(_T("%Y-%m-%d (%a) %H:%M:%S")));
201
202 return buf;
203 }
204 #endif // Debug
205
206 // get the number of days in the given month of the given year
207 static inline
208 wxDateTime::wxDateTime_t GetNumOfDaysInMonth(int year, wxDateTime::Month month)
209 {
210 // the number of days in month in Julian/Gregorian calendar: the first line
211 // is for normal years, the second one is for the leap ones
212 static wxDateTime::wxDateTime_t daysInMonth[2][MONTHS_IN_YEAR] =
213 {
214 { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
215 { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
216 };
217
218 return daysInMonth[wxDateTime::IsLeapYear(year)][month];
219 }
220
221 // ensure that the timezone variable is set by calling localtime
222 static int GetTimeZone()
223 {
224 // set to TRUE when the timezone is set
225 static bool s_timezoneSet = FALSE;
226
227 wxCRIT_SECT_LOCKER(lock, gs_critsectTimezone);
228
229 if ( !s_timezoneSet )
230 {
231 // just call localtime() instead of figuring out whether this system
232 // supports tzset(), _tzset() or something else
233 time_t t;
234 (void)localtime(&t);
235
236 s_timezoneSet = TRUE;
237 }
238
239 return (int)WX_TIMEZONE;
240 }
241
242 // return the integral part of the JDN for the midnight of the given date (to
243 // get the real JDN you need to add 0.5, this is, in fact, JDN of the
244 // noon of the previous day)
245 static long GetTruncatedJDN(wxDateTime::wxDateTime_t day,
246 wxDateTime::Month mon,
247 int year)
248 {
249 // CREDIT: code below is by Scott E. Lee (but bugs are mine)
250
251 // check the date validity
252 wxASSERT_MSG(
253 (year > JDN_0_YEAR) ||
254 ((year == JDN_0_YEAR) && (mon > JDN_0_MONTH)) ||
255 ((year == JDN_0_YEAR) && (mon == JDN_0_MONTH) && (day >= JDN_0_DAY)),
256 _T("date out of range - can't convert to JDN")
257 );
258
259 // make the year positive to avoid problems with negative numbers division
260 year += 4800;
261
262 // months are counted from March here
263 int month;
264 if ( mon >= wxDateTime::Mar )
265 {
266 month = mon - 2;
267 }
268 else
269 {
270 month = mon + 10;
271 year--;
272 }
273
274 // now we can simply add all the contributions together
275 return ((year / 100) * DAYS_PER_400_YEARS) / 4
276 + ((year % 100) * DAYS_PER_4_YEARS) / 4
277 + (month * DAYS_PER_5_MONTHS + 2) / 5
278 + day
279 - JDN_OFFSET;
280 }
281
282 // this function is a wrapper around strftime(3)
283 static wxString CallStrftime(const wxChar *format, const tm* tm)
284 {
285 wxChar buf[4096];
286 if ( !wxStrftime(buf, WXSIZEOF(buf), format, tm) )
287 {
288 // buffer is too small?
289 wxFAIL_MSG(_T("strftime() failed"));
290 }
291
292 return wxString(buf);
293 }
294
295 // if year and/or month have invalid values, replace them with the current ones
296 static void ReplaceDefaultYearMonthWithCurrent(int *year,
297 wxDateTime::Month *month)
298 {
299 struct tm *tmNow = NULL;
300
301 if ( *year == wxDateTime::Inv_Year )
302 {
303 tmNow = wxDateTime::GetTmNow();
304
305 *year = 1900 + tmNow->tm_year;
306 }
307
308 if ( *month == wxDateTime::Inv_Month )
309 {
310 if ( !tmNow )
311 tmNow = wxDateTime::GetTmNow();
312
313 *month = (wxDateTime::Month)tmNow->tm_mon;
314 }
315 }
316
317 // fll the struct tm with default values
318 static void InitTm(struct tm& tm)
319 {
320 // struct tm may have etxra fields (undocumented and with unportable
321 // names) which, nevertheless, must be set to 0
322 memset(&tm, 0, sizeof(struct tm));
323
324 tm.tm_mday = 1; // mday 0 is invalid
325 tm.tm_year = 76; // any valid year
326 tm.tm_isdst = -1; // auto determine
327 }
328
329 // parsing helpers
330 // ---------------
331
332 // return the month if the string is a month name or Inv_Month otherwise
333 static wxDateTime::Month GetMonthFromName(const wxString& name, int flags)
334 {
335 wxDateTime::Month mon;
336 for ( mon = wxDateTime::Jan; mon < wxDateTime::Inv_Month; wxNextMonth(mon) )
337 {
338 // case-insensitive comparison either one of or with both abbreviated
339 // and not versions
340 if ( flags & wxDateTime::Name_Full )
341 {
342 if ( name.CmpNoCase(wxDateTime::
343 GetMonthName(mon, wxDateTime::Name_Full)) == 0 )
344 {
345 break;
346 }
347 }
348
349 if ( flags & wxDateTime::Name_Abbr )
350 {
351 if ( name.CmpNoCase(wxDateTime::
352 GetMonthName(mon, wxDateTime::Name_Abbr)) == 0 )
353 {
354 break;
355 }
356 }
357 }
358
359 return mon;
360 }
361
362 // return the weekday if the string is a weekday name or Inv_WeekDay otherwise
363 static wxDateTime::WeekDay GetWeekDayFromName(const wxString& name, int flags)
364 {
365 wxDateTime::WeekDay wd;
366 for ( wd = wxDateTime::Sun; wd < wxDateTime::Inv_WeekDay; wxNextWDay(wd) )
367 {
368 // case-insensitive comparison either one of or with both abbreviated
369 // and not versions
370 if ( flags & wxDateTime::Name_Full )
371 {
372 if ( name.CmpNoCase(wxDateTime::
373 GetWeekDayName(wd, wxDateTime::Name_Full)) == 0 )
374 {
375 break;
376 }
377 }
378
379 if ( flags & wxDateTime::Name_Abbr )
380 {
381 if ( name.CmpNoCase(wxDateTime::
382 GetWeekDayName(wd, wxDateTime::Name_Abbr)) == 0 )
383 {
384 break;
385 }
386 }
387 }
388
389 return wd;
390 }
391
392 // scans all digits and returns the resulting number
393 static bool GetNumericToken(const wxChar*& p, unsigned long *number)
394 {
395 wxString s;
396 while ( wxIsdigit(*p) )
397 {
398 s += *p++;
399 }
400
401 return !!s && s.ToULong(number);
402 }
403
404 // scans all alphabetic characters and returns the resulting string
405 static wxString GetAlphaToken(const wxChar*& p)
406 {
407 wxString s;
408 while ( wxIsalpha(*p) )
409 {
410 s += *p++;
411 }
412
413 return s;
414 }
415
416 // ============================================================================
417 // implementation of wxDateTime
418 // ============================================================================
419
420 // ----------------------------------------------------------------------------
421 // struct Tm
422 // ----------------------------------------------------------------------------
423
424 wxDateTime::Tm::Tm()
425 {
426 year = (wxDateTime_t)wxDateTime::Inv_Year;
427 mon = wxDateTime::Inv_Month;
428 mday = 0;
429 hour = min = sec = msec = 0;
430 wday = wxDateTime::Inv_WeekDay;
431 }
432
433 wxDateTime::Tm::Tm(const struct tm& tm, const TimeZone& tz)
434 : m_tz(tz)
435 {
436 msec = 0;
437 sec = tm.tm_sec;
438 min = tm.tm_min;
439 hour = tm.tm_hour;
440 mday = tm.tm_mday;
441 mon = (wxDateTime::Month)tm.tm_mon;
442 year = 1900 + tm.tm_year;
443 wday = tm.tm_wday;
444 yday = tm.tm_yday;
445 }
446
447 bool wxDateTime::Tm::IsValid() const
448 {
449 // we allow for the leap seconds, although we don't use them (yet)
450 return (year != wxDateTime::Inv_Year) && (mon != wxDateTime::Inv_Month) &&
451 (mday <= GetNumOfDaysInMonth(year, mon)) &&
452 (hour < 24) && (min < 60) && (sec < 62) && (msec < 1000);
453 }
454
455 void wxDateTime::Tm::ComputeWeekDay()
456 {
457 // compute the week day from day/month/year: we use the dumbest algorithm
458 // possible: just compute our JDN and then use the (simple to derive)
459 // formula: weekday = (JDN + 1.5) % 7
460 wday = (wxDateTime::WeekDay)(GetTruncatedJDN(mday, mon, year) + 2) % 7;
461 }
462
463 void wxDateTime::Tm::AddMonths(int monDiff)
464 {
465 // normalize the months field
466 while ( monDiff < -mon )
467 {
468 year--;
469
470 monDiff += MONTHS_IN_YEAR;
471 }
472
473 while ( monDiff + mon >= MONTHS_IN_YEAR )
474 {
475 year++;
476
477 monDiff -= MONTHS_IN_YEAR;
478 }
479
480 mon = (wxDateTime::Month)(mon + monDiff);
481
482 wxASSERT_MSG( mon >= 0 && mon < MONTHS_IN_YEAR, _T("logic error") );
483
484 // NB: we don't check here that the resulting date is valid, this function
485 // is private and the caller must check it if needed
486 }
487
488 void wxDateTime::Tm::AddDays(int dayDiff)
489 {
490 // normalize the days field
491 while ( dayDiff + mday < 1 )
492 {
493 AddMonths(-1);
494
495 dayDiff += GetNumOfDaysInMonth(year, mon);
496 }
497
498 mday += dayDiff;
499 while ( mday > GetNumOfDaysInMonth(year, mon) )
500 {
501 mday -= GetNumOfDaysInMonth(year, mon);
502
503 AddMonths(1);
504 }
505
506 wxASSERT_MSG( mday > 0 && mday <= GetNumOfDaysInMonth(year, mon),
507 _T("logic error") );
508 }
509
510 // ----------------------------------------------------------------------------
511 // class TimeZone
512 // ----------------------------------------------------------------------------
513
514 wxDateTime::TimeZone::TimeZone(wxDateTime::TZ tz)
515 {
516 switch ( tz )
517 {
518 case wxDateTime::Local:
519 // get the offset from C RTL: it returns the difference GMT-local
520 // while we want to have the offset _from_ GMT, hence the '-'
521 m_offset = -GetTimeZone();
522 break;
523
524 case wxDateTime::GMT_12:
525 case wxDateTime::GMT_11:
526 case wxDateTime::GMT_10:
527 case wxDateTime::GMT_9:
528 case wxDateTime::GMT_8:
529 case wxDateTime::GMT_7:
530 case wxDateTime::GMT_6:
531 case wxDateTime::GMT_5:
532 case wxDateTime::GMT_4:
533 case wxDateTime::GMT_3:
534 case wxDateTime::GMT_2:
535 case wxDateTime::GMT_1:
536 m_offset = -3600*(wxDateTime::GMT0 - tz);
537 break;
538
539 case wxDateTime::GMT0:
540 case wxDateTime::GMT1:
541 case wxDateTime::GMT2:
542 case wxDateTime::GMT3:
543 case wxDateTime::GMT4:
544 case wxDateTime::GMT5:
545 case wxDateTime::GMT6:
546 case wxDateTime::GMT7:
547 case wxDateTime::GMT8:
548 case wxDateTime::GMT9:
549 case wxDateTime::GMT10:
550 case wxDateTime::GMT11:
551 case wxDateTime::GMT12:
552 m_offset = 3600*(tz - wxDateTime::GMT0);
553 break;
554
555 case wxDateTime::A_CST:
556 // Central Standard Time in use in Australia = UTC + 9.5
557 m_offset = 60l*(9*60 + 30);
558 break;
559
560 default:
561 wxFAIL_MSG( _T("unknown time zone") );
562 }
563 }
564
565 // ----------------------------------------------------------------------------
566 // static functions
567 // ----------------------------------------------------------------------------
568
569 /* static */
570 bool wxDateTime::IsLeapYear(int year, wxDateTime::Calendar cal)
571 {
572 if ( year == Inv_Year )
573 year = GetCurrentYear();
574
575 if ( cal == Gregorian )
576 {
577 // in Gregorian calendar leap years are those divisible by 4 except
578 // those divisible by 100 unless they're also divisible by 400
579 // (in some countries, like Russia and Greece, additional corrections
580 // exist, but they won't manifest themselves until 2700)
581 return (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0));
582 }
583 else if ( cal == Julian )
584 {
585 // in Julian calendar the rule is simpler
586 return year % 4 == 0;
587 }
588 else
589 {
590 wxFAIL_MSG(_T("unknown calendar"));
591
592 return FALSE;
593 }
594 }
595
596 /* static */
597 int wxDateTime::GetCentury(int year)
598 {
599 return year > 0 ? year / 100 : year / 100 - 1;
600 }
601
602 /* static */
603 int wxDateTime::ConvertYearToBC(int year)
604 {
605 // year 0 is BC 1
606 return year > 0 ? year : year - 1;
607 }
608
609 /* static */
610 int wxDateTime::GetCurrentYear(wxDateTime::Calendar cal)
611 {
612 switch ( cal )
613 {
614 case Gregorian:
615 return Now().GetYear();
616
617 case Julian:
618 wxFAIL_MSG(_T("TODO"));
619 break;
620
621 default:
622 wxFAIL_MSG(_T("unsupported calendar"));
623 break;
624 }
625
626 return Inv_Year;
627 }
628
629 /* static */
630 wxDateTime::Month wxDateTime::GetCurrentMonth(wxDateTime::Calendar cal)
631 {
632 switch ( cal )
633 {
634 case Gregorian:
635 return Now().GetMonth();
636
637 case Julian:
638 wxFAIL_MSG(_T("TODO"));
639 break;
640
641 default:
642 wxFAIL_MSG(_T("unsupported calendar"));
643 break;
644 }
645
646 return Inv_Month;
647 }
648
649 /* static */
650 wxDateTime::wxDateTime_t wxDateTime::GetNumberOfDays(int year, Calendar cal)
651 {
652 if ( year == Inv_Year )
653 {
654 // take the current year if none given
655 year = GetCurrentYear();
656 }
657
658 switch ( cal )
659 {
660 case Gregorian:
661 case Julian:
662 return IsLeapYear(year) ? 366 : 365;
663
664 default:
665 wxFAIL_MSG(_T("unsupported calendar"));
666 break;
667 }
668
669 return 0;
670 }
671
672 /* static */
673 wxDateTime::wxDateTime_t wxDateTime::GetNumberOfDays(wxDateTime::Month month,
674 int year,
675 wxDateTime::Calendar cal)
676 {
677 wxCHECK_MSG( month < MONTHS_IN_YEAR, 0, _T("invalid month") );
678
679 if ( cal == Gregorian || cal == Julian )
680 {
681 if ( year == Inv_Year )
682 {
683 // take the current year if none given
684 year = GetCurrentYear();
685 }
686
687 return GetNumOfDaysInMonth(year, month);
688 }
689 else
690 {
691 wxFAIL_MSG(_T("unsupported calendar"));
692
693 return 0;
694 }
695 }
696
697 /* static */
698 wxString wxDateTime::GetMonthName(wxDateTime::Month month,
699 wxDateTime::NameFlags flags)
700 {
701 wxCHECK_MSG( month != Inv_Month, _T(""), _T("invalid month") );
702
703 // notice that we must set all the fields to avoid confusing libc (GNU one
704 // gets confused to a crash if we don't do this)
705 tm tm;
706 InitTm(tm);
707 tm.tm_mon = month;
708
709 return CallStrftime(flags == Name_Abbr ? _T("%b") : _T("%B"), &tm);
710 }
711
712 /* static */
713 wxString wxDateTime::GetWeekDayName(wxDateTime::WeekDay wday,
714 wxDateTime::NameFlags flags)
715 {
716 wxCHECK_MSG( wday != Inv_WeekDay, _T(""), _T("invalid weekday") );
717
718 // take some arbitrary Sunday
719 tm tm;
720 InitTm(tm);
721 tm.tm_mday = 28;
722 tm.tm_mon = Nov;
723 tm.tm_year = 99;
724
725 // and offset it by the number of days needed to get the correct wday
726 tm.tm_mday += wday;
727
728 // call mktime() to normalize it...
729 (void)mktime(&tm);
730
731 // ... and call strftime()
732 return CallStrftime(flags == Name_Abbr ? _T("%a") : _T("%A"), &tm);
733 }
734
735 /* static */
736 void wxDateTime::GetAmPmStrings(wxString *am, wxString *pm)
737 {
738 tm tm;
739 InitTm(tm);
740 if ( am )
741 {
742 *am = CallStrftime(_T("%p"), &tm);
743 }
744 if ( pm )
745 {
746 tm.tm_hour = 13;
747 *pm = CallStrftime(_T("%p"), &tm);
748 }
749 }
750
751 // ----------------------------------------------------------------------------
752 // Country stuff: date calculations depend on the country (DST, work days,
753 // ...), so we need to know which rules to follow.
754 // ----------------------------------------------------------------------------
755
756 /* static */
757 wxDateTime::Country wxDateTime::GetCountry()
758 {
759 // TODO use LOCALE_ICOUNTRY setting under Win32
760
761 if ( ms_country == Country_Unknown )
762 {
763 // try to guess from the time zone name
764 time_t t = time(NULL);
765 struct tm *tm = localtime(&t);
766
767 wxString tz = CallStrftime(_T("%Z"), tm);
768 if ( tz == _T("WET") || tz == _T("WEST") )
769 {
770 ms_country = UK;
771 }
772 else if ( tz == _T("CET") || tz == _T("CEST") )
773 {
774 ms_country = Country_EEC;
775 }
776 else if ( tz == _T("MSK") || tz == _T("MSD") )
777 {
778 ms_country = Russia;
779 }
780 else if ( tz == _T("AST") || tz == _T("ADT") ||
781 tz == _T("EST") || tz == _T("EDT") ||
782 tz == _T("CST") || tz == _T("CDT") ||
783 tz == _T("MST") || tz == _T("MDT") ||
784 tz == _T("PST") || tz == _T("PDT") )
785 {
786 ms_country = USA;
787 }
788 else
789 {
790 // well, choose a default one
791 ms_country = USA;
792 }
793 }
794
795 return ms_country;
796 }
797
798 /* static */
799 void wxDateTime::SetCountry(wxDateTime::Country country)
800 {
801 ms_country = country;
802 }
803
804 /* static */
805 bool wxDateTime::IsWestEuropeanCountry(Country country)
806 {
807 if ( country == Country_Default )
808 {
809 country = GetCountry();
810 }
811
812 return (Country_WesternEurope_Start <= country) &&
813 (country <= Country_WesternEurope_End);
814 }
815
816 // ----------------------------------------------------------------------------
817 // DST calculations: we use 3 different rules for the West European countries,
818 // USA and for the rest of the world. This is undoubtedly false for many
819 // countries, but I lack the necessary info (and the time to gather it),
820 // please add the other rules here!
821 // ----------------------------------------------------------------------------
822
823 /* static */
824 bool wxDateTime::IsDSTApplicable(int year, Country country)
825 {
826 if ( year == Inv_Year )
827 {
828 // take the current year if none given
829 year = GetCurrentYear();
830 }
831
832 if ( country == Country_Default )
833 {
834 country = GetCountry();
835 }
836
837 switch ( country )
838 {
839 case USA:
840 case UK:
841 // DST was first observed in the US and UK during WWI, reused
842 // during WWII and used again since 1966
843 return year >= 1966 ||
844 (year >= 1942 && year <= 1945) ||
845 (year == 1918 || year == 1919);
846
847 default:
848 // assume that it started after WWII
849 return year > 1950;
850 }
851 }
852
853 /* static */
854 wxDateTime wxDateTime::GetBeginDST(int year, Country country)
855 {
856 if ( year == Inv_Year )
857 {
858 // take the current year if none given
859 year = GetCurrentYear();
860 }
861
862 if ( country == Country_Default )
863 {
864 country = GetCountry();
865 }
866
867 if ( !IsDSTApplicable(year, country) )
868 {
869 return wxInvalidDateTime;
870 }
871
872 wxDateTime dt;
873
874 if ( IsWestEuropeanCountry(country) || (country == Russia) )
875 {
876 // DST begins at 1 a.m. GMT on the last Sunday of March
877 if ( !dt.SetToLastWeekDay(Sun, Mar, year) )
878 {
879 // weird...
880 wxFAIL_MSG( _T("no last Sunday in March?") );
881 }
882
883 dt += wxTimeSpan::Hours(1);
884
885 // disable DST tests because it could result in an infinite recursion!
886 dt.MakeGMT(TRUE);
887 }
888 else switch ( country )
889 {
890 case USA:
891 switch ( year )
892 {
893 case 1918:
894 case 1919:
895 // don't know for sure - assume it was in effect all year
896
897 case 1943:
898 case 1944:
899 case 1945:
900 dt.Set(1, Jan, year);
901 break;
902
903 case 1942:
904 // DST was installed Feb 2, 1942 by the Congress
905 dt.Set(2, Feb, year);
906 break;
907
908 // Oil embargo changed the DST period in the US
909 case 1974:
910 dt.Set(6, Jan, 1974);
911 break;
912
913 case 1975:
914 dt.Set(23, Feb, 1975);
915 break;
916
917 default:
918 // before 1986, DST begun on the last Sunday of April, but
919 // in 1986 Reagan changed it to begin at 2 a.m. of the
920 // first Sunday in April
921 if ( year < 1986 )
922 {
923 if ( !dt.SetToLastWeekDay(Sun, Apr, year) )
924 {
925 // weird...
926 wxFAIL_MSG( _T("no first Sunday in April?") );
927 }
928 }
929 else
930 {
931 if ( !dt.SetToWeekDay(Sun, 1, Apr, year) )
932 {
933 // weird...
934 wxFAIL_MSG( _T("no first Sunday in April?") );
935 }
936 }
937
938 dt += wxTimeSpan::Hours(2);
939
940 // TODO what about timezone??
941 }
942
943 break;
944
945 default:
946 // assume Mar 30 as the start of the DST for the rest of the world
947 // - totally bogus, of course
948 dt.Set(30, Mar, year);
949 }
950
951 return dt;
952 }
953
954 /* static */
955 wxDateTime wxDateTime::GetEndDST(int year, Country country)
956 {
957 if ( year == Inv_Year )
958 {
959 // take the current year if none given
960 year = GetCurrentYear();
961 }
962
963 if ( country == Country_Default )
964 {
965 country = GetCountry();
966 }
967
968 if ( !IsDSTApplicable(year, country) )
969 {
970 return wxInvalidDateTime;
971 }
972
973 wxDateTime dt;
974
975 if ( IsWestEuropeanCountry(country) || (country == Russia) )
976 {
977 // DST ends at 1 a.m. GMT on the last Sunday of October
978 if ( !dt.SetToLastWeekDay(Sun, Oct, year) )
979 {
980 // weirder and weirder...
981 wxFAIL_MSG( _T("no last Sunday in October?") );
982 }
983
984 dt += wxTimeSpan::Hours(1);
985
986 // disable DST tests because it could result in an infinite recursion!
987 dt.MakeGMT(TRUE);
988 }
989 else switch ( country )
990 {
991 case USA:
992 switch ( year )
993 {
994 case 1918:
995 case 1919:
996 // don't know for sure - assume it was in effect all year
997
998 case 1943:
999 case 1944:
1000 dt.Set(31, Dec, year);
1001 break;
1002
1003 case 1945:
1004 // the time was reset after the end of the WWII
1005 dt.Set(30, Sep, year);
1006 break;
1007
1008 default:
1009 // DST ends at 2 a.m. on the last Sunday of October
1010 if ( !dt.SetToLastWeekDay(Sun, Oct, year) )
1011 {
1012 // weirder and weirder...
1013 wxFAIL_MSG( _T("no last Sunday in October?") );
1014 }
1015
1016 dt += wxTimeSpan::Hours(2);
1017
1018 // TODO what about timezone??
1019 }
1020 break;
1021
1022 default:
1023 // assume October 26th as the end of the DST - totally bogus too
1024 dt.Set(26, Oct, year);
1025 }
1026
1027 return dt;
1028 }
1029
1030 // ----------------------------------------------------------------------------
1031 // constructors and assignment operators
1032 // ----------------------------------------------------------------------------
1033
1034 // the values in the tm structure contain the local time
1035 wxDateTime& wxDateTime::Set(const struct tm& tm)
1036 {
1037 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1038
1039 struct tm tm2(tm);
1040 time_t timet = mktime(&tm2);
1041
1042 if ( timet == (time_t)-1 )
1043 {
1044 // mktime() rather unintuitively fails for Jan 1, 1970 if the hour is
1045 // less than timezone - try to make it work for this case
1046 if ( tm2.tm_year == 70 && tm2.tm_mon == 0 && tm2.tm_mday == 1 )
1047 {
1048 // add timezone to make sure that date is in range
1049 tm2.tm_sec -= GetTimeZone();
1050
1051 timet = mktime(&tm2);
1052 if ( timet != (time_t)-1 )
1053 {
1054 timet += GetTimeZone();
1055
1056 return Set(timet);
1057 }
1058 }
1059
1060 wxFAIL_MSG( _T("mktime() failed") );
1061
1062 return wxInvalidDateTime;
1063 }
1064 else
1065 {
1066 return Set(timet);
1067 }
1068 }
1069
1070 wxDateTime& wxDateTime::Set(wxDateTime_t hour,
1071 wxDateTime_t minute,
1072 wxDateTime_t second,
1073 wxDateTime_t millisec)
1074 {
1075 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1076
1077 // we allow seconds to be 61 to account for the leap seconds, even if we
1078 // don't use them really
1079 wxCHECK_MSG( hour < 24 && second < 62 && minute < 60 && millisec < 1000,
1080 wxInvalidDateTime,
1081 _T("Invalid time in wxDateTime::Set()") );
1082
1083 // get the current date from system
1084 struct tm *tm = GetTmNow();
1085
1086 wxCHECK_MSG( tm, wxInvalidDateTime, _T("localtime() failed") );
1087
1088 // adjust the time
1089 tm->tm_hour = hour;
1090 tm->tm_min = minute;
1091 tm->tm_sec = second;
1092
1093 (void)Set(*tm);
1094
1095 // and finally adjust milliseconds
1096 return SetMillisecond(millisec);
1097 }
1098
1099 wxDateTime& wxDateTime::Set(wxDateTime_t day,
1100 Month month,
1101 int year,
1102 wxDateTime_t hour,
1103 wxDateTime_t minute,
1104 wxDateTime_t second,
1105 wxDateTime_t millisec)
1106 {
1107 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1108
1109 wxCHECK_MSG( hour < 24 && second < 62 && minute < 60 && millisec < 1000,
1110 wxInvalidDateTime,
1111 _T("Invalid time in wxDateTime::Set()") );
1112
1113 ReplaceDefaultYearMonthWithCurrent(&year, &month);
1114
1115 wxCHECK_MSG( (0 < day) && (day <= GetNumberOfDays(month, year)),
1116 wxInvalidDateTime,
1117 _T("Invalid date in wxDateTime::Set()") );
1118
1119 // the range of time_t type (inclusive)
1120 static const int yearMinInRange = 1970;
1121 static const int yearMaxInRange = 2037;
1122
1123 // test only the year instead of testing for the exact end of the Unix
1124 // time_t range - it doesn't bring anything to do more precise checks
1125 if ( year >= yearMinInRange && year <= yearMaxInRange )
1126 {
1127 // use the standard library version if the date is in range - this is
1128 // probably more efficient than our code
1129 struct tm tm;
1130 tm.tm_year = year - 1900;
1131 tm.tm_mon = month;
1132 tm.tm_mday = day;
1133 tm.tm_hour = hour;
1134 tm.tm_min = minute;
1135 tm.tm_sec = second;
1136 tm.tm_isdst = -1; // mktime() will guess it
1137
1138 (void)Set(tm);
1139
1140 // and finally adjust milliseconds
1141 return SetMillisecond(millisec);
1142 }
1143 else
1144 {
1145 // do time calculations ourselves: we want to calculate the number of
1146 // milliseconds between the given date and the epoch
1147
1148 // get the JDN for the midnight of this day
1149 m_time = GetTruncatedJDN(day, month, year);
1150 m_time -= EPOCH_JDN;
1151 m_time *= SECONDS_PER_DAY * TIME_T_FACTOR;
1152
1153 // JDN corresponds to GMT, we take localtime
1154 Add(wxTimeSpan(hour, minute, second + GetTimeZone(), millisec));
1155 }
1156
1157 return *this;
1158 }
1159
1160 wxDateTime& wxDateTime::Set(double jdn)
1161 {
1162 // so that m_time will be 0 for the midnight of Jan 1, 1970 which is jdn
1163 // EPOCH_JDN + 0.5
1164 jdn -= EPOCH_JDN + 0.5;
1165
1166 jdn *= MILLISECONDS_PER_DAY;
1167
1168 m_time.Assign(jdn);
1169
1170 return *this;
1171 }
1172
1173 wxDateTime& wxDateTime::ResetTime()
1174 {
1175 Tm tm = GetTm();
1176
1177 if ( tm.hour || tm.min || tm.sec || tm.msec )
1178 {
1179 tm.msec =
1180 tm.sec =
1181 tm.min =
1182 tm.hour = 0;
1183
1184 Set(tm);
1185 }
1186
1187 return *this;
1188 }
1189
1190 // ----------------------------------------------------------------------------
1191 // time_t <-> broken down time conversions
1192 // ----------------------------------------------------------------------------
1193
1194 wxDateTime::Tm wxDateTime::GetTm(const TimeZone& tz) const
1195 {
1196 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1197
1198 time_t time = GetTicks();
1199 if ( time != (time_t)-1 )
1200 {
1201 // use C RTL functions
1202 tm *tm;
1203 if ( tz.GetOffset() == -GetTimeZone() )
1204 {
1205 // we are working with local time
1206 tm = localtime(&time);
1207
1208 // should never happen
1209 wxCHECK_MSG( tm, Tm(), _T("gmtime() failed") );
1210 }
1211 else
1212 {
1213 time += (time_t)tz.GetOffset();
1214 #ifdef __VMS__ // time is unsigned so avoid warning
1215 int time2 = (int) time;
1216 if ( time2 >= 0 )
1217 #else
1218 if ( time >= 0 )
1219 #endif
1220 {
1221 tm = gmtime(&time);
1222
1223 // should never happen
1224 wxCHECK_MSG( tm, Tm(), _T("gmtime() failed") );
1225 }
1226 else
1227 {
1228 tm = (struct tm *)NULL;
1229 }
1230 }
1231
1232 if ( tm )
1233 {
1234 return Tm(*tm, tz);
1235 }
1236 //else: use generic code below
1237 }
1238
1239 // remember the time and do the calculations with the date only - this
1240 // eliminates rounding errors of the floating point arithmetics
1241
1242 wxLongLong timeMidnight = m_time + tz.GetOffset() * 1000;
1243
1244 long timeOnly = (timeMidnight % MILLISECONDS_PER_DAY).ToLong();
1245
1246 // we want to always have positive time and timeMidnight to be really
1247 // the midnight before it
1248 if ( timeOnly < 0 )
1249 {
1250 timeOnly = MILLISECONDS_PER_DAY + timeOnly;
1251 }
1252
1253 timeMidnight -= timeOnly;
1254
1255 // calculate the Gregorian date from JDN for the midnight of our date:
1256 // this will yield day, month (in 1..12 range) and year
1257
1258 // actually, this is the JDN for the noon of the previous day
1259 long jdn = (timeMidnight / MILLISECONDS_PER_DAY).ToLong() + EPOCH_JDN;
1260
1261 // CREDIT: code below is by Scott E. Lee (but bugs are mine)
1262
1263 wxASSERT_MSG( jdn > -2, _T("JDN out of range") );
1264
1265 // calculate the century
1266 long temp = (jdn + JDN_OFFSET) * 4 - 1;
1267 long century = temp / DAYS_PER_400_YEARS;
1268
1269 // then the year and day of year (1 <= dayOfYear <= 366)
1270 temp = ((temp % DAYS_PER_400_YEARS) / 4) * 4 + 3;
1271 long year = (century * 100) + (temp / DAYS_PER_4_YEARS);
1272 long dayOfYear = (temp % DAYS_PER_4_YEARS) / 4 + 1;
1273
1274 // and finally the month and day of the month
1275 temp = dayOfYear * 5 - 3;
1276 long month = temp / DAYS_PER_5_MONTHS;
1277 long day = (temp % DAYS_PER_5_MONTHS) / 5 + 1;
1278
1279 // month is counted from March - convert to normal
1280 if ( month < 10 )
1281 {
1282 month += 3;
1283 }
1284 else
1285 {
1286 year += 1;
1287 month -= 9;
1288 }
1289
1290 // year is offset by 4800
1291 year -= 4800;
1292
1293 // check that the algorithm gave us something reasonable
1294 wxASSERT_MSG( (0 < month) && (month <= 12), _T("invalid month") );
1295 wxASSERT_MSG( (1 <= day) && (day < 32), _T("invalid day") );
1296 wxASSERT_MSG( (INT_MIN <= year) && (year <= INT_MAX),
1297 _T("year range overflow") );
1298
1299 // construct Tm from these values
1300 Tm tm;
1301 tm.year = (int)year;
1302 tm.mon = (Month)(month - 1); // algorithm yields 1 for January, not 0
1303 tm.mday = (wxDateTime_t)day;
1304 tm.msec = (wxDateTime_t)(timeOnly % 1000);
1305 timeOnly -= tm.msec;
1306 timeOnly /= 1000; // now we have time in seconds
1307
1308 tm.sec = (wxDateTime_t)(timeOnly % 60);
1309 timeOnly -= tm.sec;
1310 timeOnly /= 60; // now we have time in minutes
1311
1312 tm.min = (wxDateTime_t)(timeOnly % 60);
1313 timeOnly -= tm.min;
1314
1315 tm.hour = (wxDateTime_t)(timeOnly / 60);
1316
1317 return tm;
1318 }
1319
1320 wxDateTime& wxDateTime::SetYear(int year)
1321 {
1322 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1323
1324 Tm tm(GetTm());
1325 tm.year = year;
1326 Set(tm);
1327
1328 return *this;
1329 }
1330
1331 wxDateTime& wxDateTime::SetMonth(Month month)
1332 {
1333 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1334
1335 Tm tm(GetTm());
1336 tm.mon = month;
1337 Set(tm);
1338
1339 return *this;
1340 }
1341
1342 wxDateTime& wxDateTime::SetDay(wxDateTime_t mday)
1343 {
1344 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1345
1346 Tm tm(GetTm());
1347 tm.mday = mday;
1348 Set(tm);
1349
1350 return *this;
1351 }
1352
1353 wxDateTime& wxDateTime::SetHour(wxDateTime_t hour)
1354 {
1355 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1356
1357 Tm tm(GetTm());
1358 tm.hour = hour;
1359 Set(tm);
1360
1361 return *this;
1362 }
1363
1364 wxDateTime& wxDateTime::SetMinute(wxDateTime_t min)
1365 {
1366 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1367
1368 Tm tm(GetTm());
1369 tm.min = min;
1370 Set(tm);
1371
1372 return *this;
1373 }
1374
1375 wxDateTime& wxDateTime::SetSecond(wxDateTime_t sec)
1376 {
1377 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1378
1379 Tm tm(GetTm());
1380 tm.sec = sec;
1381 Set(tm);
1382
1383 return *this;
1384 }
1385
1386 wxDateTime& wxDateTime::SetMillisecond(wxDateTime_t millisecond)
1387 {
1388 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime") );
1389
1390 // we don't need to use GetTm() for this one
1391 m_time -= m_time % 1000l;
1392 m_time += millisecond;
1393
1394 return *this;
1395 }
1396
1397 // ----------------------------------------------------------------------------
1398 // wxDateTime arithmetics
1399 // ----------------------------------------------------------------------------
1400
1401 wxDateTime& wxDateTime::Add(const wxDateSpan& diff)
1402 {
1403 Tm tm(GetTm());
1404
1405 tm.year += diff.GetYears();
1406 tm.AddMonths(diff.GetMonths());
1407
1408 // check that the resulting date is valid
1409 if ( tm.mday > GetNumOfDaysInMonth(tm.year, tm.mon) )
1410 {
1411 // We suppose that when adding one month to Jan 31 we want to get Feb
1412 // 28 (or 29), i.e. adding a month to the last day of the month should
1413 // give the last day of the next month which is quite logical.
1414 //
1415 // Unfortunately, there is no logic way to understand what should
1416 // Jan 30 + 1 month be - Feb 28 too or Feb 27 (assuming non leap year)?
1417 // We make it Feb 28 (last day too), but it is highly questionable.
1418 tm.mday = GetNumOfDaysInMonth(tm.year, tm.mon);
1419 }
1420
1421 tm.AddDays(diff.GetTotalDays());
1422
1423 Set(tm);
1424
1425 wxASSERT_MSG( IsSameTime(tm),
1426 _T("Add(wxDateSpan) shouldn't modify time") );
1427
1428 return *this;
1429 }
1430
1431 // ----------------------------------------------------------------------------
1432 // Weekday and monthday stuff
1433 // ----------------------------------------------------------------------------
1434
1435 bool wxDateTime::SetToTheWeek(wxDateTime_t numWeek, WeekDay weekday)
1436 {
1437 int year = GetYear();
1438
1439 // Jan 4 always lies in the 1st week of the year
1440 Set(4, Jan, year);
1441 SetToWeekDayInSameWeek(weekday) += wxDateSpan::Weeks(numWeek);
1442
1443 if ( GetYear() != year )
1444 {
1445 // oops... numWeek was too big
1446 return FALSE;
1447 }
1448
1449 return TRUE;
1450 }
1451
1452 wxDateTime& wxDateTime::SetToLastMonthDay(Month month,
1453 int year)
1454 {
1455 // take the current month/year if none specified
1456 if ( year == Inv_Year )
1457 year = GetYear();
1458 if ( month == Inv_Month )
1459 month = GetMonth();
1460
1461 return Set(GetNumOfDaysInMonth(year, month), month, year);
1462 }
1463
1464 wxDateTime& wxDateTime::SetToWeekDayInSameWeek(WeekDay weekday)
1465 {
1466 wxCHECK_MSG( weekday != Inv_WeekDay, wxInvalidDateTime, _T("invalid weekday") );
1467
1468 WeekDay wdayThis = GetWeekDay();
1469 if ( weekday == wdayThis )
1470 {
1471 // nothing to do
1472 return *this;
1473 }
1474 else if ( weekday < wdayThis )
1475 {
1476 return Substract(wxDateSpan::Days(wdayThis - weekday));
1477 }
1478 else // weekday > wdayThis
1479 {
1480 return Add(wxDateSpan::Days(weekday - wdayThis));
1481 }
1482 }
1483
1484 wxDateTime& wxDateTime::SetToNextWeekDay(WeekDay weekday)
1485 {
1486 wxCHECK_MSG( weekday != Inv_WeekDay, wxInvalidDateTime, _T("invalid weekday") );
1487
1488 int diff;
1489 WeekDay wdayThis = GetWeekDay();
1490 if ( weekday == wdayThis )
1491 {
1492 // nothing to do
1493 return *this;
1494 }
1495 else if ( weekday < wdayThis )
1496 {
1497 // need to advance a week
1498 diff = 7 - (wdayThis - weekday);
1499 }
1500 else // weekday > wdayThis
1501 {
1502 diff = weekday - wdayThis;
1503 }
1504
1505 return Add(wxDateSpan::Days(diff));
1506 }
1507
1508 wxDateTime& wxDateTime::SetToPrevWeekDay(WeekDay weekday)
1509 {
1510 wxCHECK_MSG( weekday != Inv_WeekDay, wxInvalidDateTime, _T("invalid weekday") );
1511
1512 int diff;
1513 WeekDay wdayThis = GetWeekDay();
1514 if ( weekday == wdayThis )
1515 {
1516 // nothing to do
1517 return *this;
1518 }
1519 else if ( weekday > wdayThis )
1520 {
1521 // need to go to previous week
1522 diff = 7 - (weekday - wdayThis);
1523 }
1524 else // weekday < wdayThis
1525 {
1526 diff = wdayThis - weekday;
1527 }
1528
1529 return Substract(wxDateSpan::Days(diff));
1530 }
1531
1532 bool wxDateTime::SetToWeekDay(WeekDay weekday,
1533 int n,
1534 Month month,
1535 int year)
1536 {
1537 wxCHECK_MSG( weekday != Inv_WeekDay, FALSE, _T("invalid weekday") );
1538
1539 // we don't check explicitly that -5 <= n <= 5 because we will return FALSE
1540 // anyhow in such case - but may be should still give an assert for it?
1541
1542 // take the current month/year if none specified
1543 ReplaceDefaultYearMonthWithCurrent(&year, &month);
1544
1545 wxDateTime dt;
1546
1547 // TODO this probably could be optimised somehow...
1548
1549 if ( n > 0 )
1550 {
1551 // get the first day of the month
1552 dt.Set(1, month, year);
1553
1554 // get its wday
1555 WeekDay wdayFirst = dt.GetWeekDay();
1556
1557 // go to the first weekday of the month
1558 int diff = weekday - wdayFirst;
1559 if ( diff < 0 )
1560 diff += 7;
1561
1562 // add advance n-1 weeks more
1563 diff += 7*(n - 1);
1564
1565 dt += wxDateSpan::Days(diff);
1566 }
1567 else // count from the end of the month
1568 {
1569 // get the last day of the month
1570 dt.SetToLastMonthDay(month, year);
1571
1572 // get its wday
1573 WeekDay wdayLast = dt.GetWeekDay();
1574
1575 // go to the last weekday of the month
1576 int diff = wdayLast - weekday;
1577 if ( diff < 0 )
1578 diff += 7;
1579
1580 // and rewind n-1 weeks from there
1581 diff += 7*(-n - 1);
1582
1583 dt -= wxDateSpan::Days(diff);
1584 }
1585
1586 // check that it is still in the same month
1587 if ( dt.GetMonth() == month )
1588 {
1589 *this = dt;
1590
1591 return TRUE;
1592 }
1593 else
1594 {
1595 // no such day in this month
1596 return FALSE;
1597 }
1598 }
1599
1600 wxDateTime::wxDateTime_t wxDateTime::GetDayOfYear(const TimeZone& tz) const
1601 {
1602 Tm tm(GetTm(tz));
1603
1604 return gs_cumulatedDays[IsLeapYear(tm.year)][tm.mon] + tm.mday;
1605 }
1606
1607 wxDateTime::wxDateTime_t wxDateTime::GetWeekOfYear(wxDateTime::WeekFlags flags,
1608 const TimeZone& tz) const
1609 {
1610 if ( flags == Default_First )
1611 {
1612 flags = GetCountry() == USA ? Sunday_First : Monday_First;
1613 }
1614
1615 wxDateTime_t nDayInYear = GetDayOfYear(tz);
1616 wxDateTime_t week;
1617
1618 WeekDay wd = GetWeekDay(tz);
1619 if ( flags == Sunday_First )
1620 {
1621 week = (nDayInYear - wd + 7) / 7;
1622 }
1623 else
1624 {
1625 // have to shift the week days values
1626 week = (nDayInYear - (wd - 1 + 7) % 7 + 7) / 7;
1627 }
1628
1629 // FIXME some more elegant way??
1630 WeekDay wdYearStart = wxDateTime(1, Jan, GetYear()).GetWeekDay();
1631 if ( wdYearStart == Wed || wdYearStart == Thu )
1632 {
1633 week++;
1634 }
1635
1636 return week;
1637 }
1638
1639 wxDateTime::wxDateTime_t wxDateTime::GetWeekOfMonth(wxDateTime::WeekFlags flags,
1640 const TimeZone& tz) const
1641 {
1642 Tm tm = GetTm(tz);
1643 wxDateTime dtMonthStart = wxDateTime(1, tm.mon, tm.year);
1644 int nWeek = GetWeekOfYear(flags) - dtMonthStart.GetWeekOfYear(flags) + 1;
1645 if ( nWeek < 0 )
1646 {
1647 // this may happen for January when Jan, 1 is the last week of the
1648 // previous year
1649 nWeek += IsLeapYear(tm.year - 1) ? 53 : 52;
1650 }
1651
1652 return (wxDateTime::wxDateTime_t)nWeek;
1653 }
1654
1655 wxDateTime& wxDateTime::SetToYearDay(wxDateTime::wxDateTime_t yday)
1656 {
1657 int year = GetYear();
1658 wxCHECK_MSG( (0 < yday) && (yday <= GetNumberOfDays(year)),
1659 wxInvalidDateTime, _T("invalid year day") );
1660
1661 bool isLeap = IsLeapYear(year);
1662 for ( Month mon = Jan; mon < Inv_Month; wxNextMonth(mon) )
1663 {
1664 // for Dec, we can't compare with gs_cumulatedDays[mon + 1], but we
1665 // don't need it neither - because of the CHECK above we know that
1666 // yday lies in December then
1667 if ( (mon == Dec) || (yday < gs_cumulatedDays[isLeap][mon + 1]) )
1668 {
1669 Set(yday - gs_cumulatedDays[isLeap][mon], mon, year);
1670
1671 break;
1672 }
1673 }
1674
1675 return *this;
1676 }
1677
1678 // ----------------------------------------------------------------------------
1679 // Julian day number conversion and related stuff
1680 // ----------------------------------------------------------------------------
1681
1682 double wxDateTime::GetJulianDayNumber() const
1683 {
1684 // JDN are always expressed for the GMT dates
1685 Tm tm(ToTimezone(GMT0).GetTm(GMT0));
1686
1687 double result = GetTruncatedJDN(tm.mday, tm.mon, tm.year);
1688
1689 // add the part GetTruncatedJDN() neglected
1690 result += 0.5;
1691
1692 // and now add the time: 86400 sec = 1 JDN
1693 return result + ((double)(60*(60*tm.hour + tm.min) + tm.sec)) / 86400;
1694 }
1695
1696 double wxDateTime::GetRataDie() const
1697 {
1698 // March 1 of the year 0 is Rata Die day -306 and JDN 1721119.5
1699 return GetJulianDayNumber() - 1721119.5 - 306;
1700 }
1701
1702 // ----------------------------------------------------------------------------
1703 // timezone and DST stuff
1704 // ----------------------------------------------------------------------------
1705
1706 int wxDateTime::IsDST(wxDateTime::Country country) const
1707 {
1708 wxCHECK_MSG( country == Country_Default, -1,
1709 _T("country support not implemented") );
1710
1711 // use the C RTL for the dates in the standard range
1712 time_t timet = GetTicks();
1713 if ( timet != (time_t)-1 )
1714 {
1715 tm *tm = localtime(&timet);
1716
1717 wxCHECK_MSG( tm, -1, _T("localtime() failed") );
1718
1719 return tm->tm_isdst;
1720 }
1721 else
1722 {
1723 int year = GetYear();
1724
1725 if ( !IsDSTApplicable(year, country) )
1726 {
1727 // no DST time in this year in this country
1728 return -1;
1729 }
1730
1731 return IsBetween(GetBeginDST(year, country), GetEndDST(year, country));
1732 }
1733 }
1734
1735 wxDateTime& wxDateTime::MakeTimezone(const TimeZone& tz, bool noDST)
1736 {
1737 long secDiff = GetTimeZone() + tz.GetOffset();
1738
1739 // we need to know whether DST is or not in effect for this date unless
1740 // the test disabled by the caller
1741 if ( !noDST && (IsDST() == 1) )
1742 {
1743 // FIXME we assume that the DST is always shifted by 1 hour
1744 secDiff -= 3600;
1745 }
1746
1747 return Substract(wxTimeSpan::Seconds(secDiff));
1748 }
1749
1750 // ----------------------------------------------------------------------------
1751 // wxDateTime to/from text representations
1752 // ----------------------------------------------------------------------------
1753
1754 wxString wxDateTime::Format(const wxChar *format, const TimeZone& tz) const
1755 {
1756 wxCHECK_MSG( format, _T(""), _T("NULL format in wxDateTime::Format") );
1757
1758 time_t time = GetTicks();
1759 if ( time != (time_t)-1 )
1760 {
1761 // use strftime()
1762 tm *tm;
1763 if ( tz.GetOffset() == -GetTimeZone() )
1764 {
1765 // we are working with local time
1766 tm = localtime(&time);
1767
1768 // should never happen
1769 wxCHECK_MSG( tm, wxEmptyString, _T("localtime() failed") );
1770 }
1771 else
1772 {
1773 time += (int)tz.GetOffset();
1774
1775 #ifdef __VMS__ // time is unsigned so avoid the warning
1776 int time2 = (int) time;
1777 if ( time2 >= 0 )
1778 #else
1779 if ( time >= 0 )
1780 #endif
1781 {
1782 tm = gmtime(&time);
1783
1784 // should never happen
1785 wxCHECK_MSG( tm, wxEmptyString, _T("gmtime() failed") );
1786 }
1787 else
1788 {
1789 tm = (struct tm *)NULL;
1790 }
1791 }
1792
1793 if ( tm )
1794 {
1795 return CallStrftime(format, tm);
1796 }
1797 //else: use generic code below
1798 }
1799
1800 // we only parse ANSI C format specifications here, no POSIX 2
1801 // complications, no GNU extensions
1802 Tm tm = GetTm(tz);
1803
1804 // used for calls to strftime() when we only deal with time
1805 struct tm tmTimeOnly;
1806 tmTimeOnly.tm_hour = tm.hour;
1807 tmTimeOnly.tm_min = tm.min;
1808 tmTimeOnly.tm_sec = tm.sec;
1809 tmTimeOnly.tm_wday = 0;
1810 tmTimeOnly.tm_yday = 0;
1811 tmTimeOnly.tm_mday = 1; // any date will do
1812 tmTimeOnly.tm_mon = 0;
1813 tmTimeOnly.tm_year = 76;
1814 tmTimeOnly.tm_isdst = 0; // no DST, we adjust for tz ourselves
1815
1816 wxString tmp, res, fmt;
1817 for ( const wxChar *p = format; *p; p++ )
1818 {
1819 if ( *p != _T('%') )
1820 {
1821 // copy as is
1822 res += *p;
1823
1824 continue;
1825 }
1826
1827 // set the default format
1828 switch ( *++p )
1829 {
1830 case _T('Y'): // year has 4 digits
1831 fmt = _T("%04d");
1832 break;
1833
1834 case _T('j'): // day of year has 3 digits
1835 fmt = _T("%03d");
1836 break;
1837
1838 default:
1839 // it's either another valid format specifier in which case
1840 // the format is "%02d" (for all the rest) or we have the
1841 // field width preceding the format in which case it will
1842 // override the default format anyhow
1843 fmt = _T("%02d");
1844 }
1845
1846 restart:
1847 // start of the format specification
1848 switch ( *p )
1849 {
1850 case _T('a'): // a weekday name
1851 case _T('A'):
1852 // second parameter should be TRUE for abbreviated names
1853 res += GetWeekDayName(tm.GetWeekDay(),
1854 *p == _T('a') ? Name_Abbr : Name_Full);
1855 break;
1856
1857 case _T('b'): // a month name
1858 case _T('B'):
1859 res += GetMonthName(tm.mon,
1860 *p == _T('b') ? Name_Abbr : Name_Full);
1861 break;
1862
1863 case _T('c'): // locale default date and time representation
1864 case _T('x'): // locale default date representation
1865 //
1866 // the problem: there is no way to know what do these format
1867 // specifications correspond to for the current locale.
1868 //
1869 // the solution: use a hack and still use strftime(): first
1870 // find the YEAR which is a year in the strftime() range (1970
1871 // - 2038) whose Jan 1 falls on the same week day as the Jan 1
1872 // of the real year. Then make a copy of the format and
1873 // replace all occurences of YEAR in it with some unique
1874 // string not appearing anywhere else in it, then use
1875 // strftime() to format the date in year YEAR and then replace
1876 // YEAR back by the real year and the unique replacement
1877 // string back with YEAR. Notice that "all occurences of YEAR"
1878 // means all occurences of 4 digit as well as 2 digit form!
1879 //
1880 // the bugs: we assume that neither of %c nor %x contains any
1881 // fields which may change between the YEAR and real year. For
1882 // example, the week number (%U, %W) and the day number (%j)
1883 // will change if one of these years is leap and the other one
1884 // is not!
1885 {
1886 // find the YEAR: normally, for any year X, Jan 1 or the
1887 // year X + 28 is the same weekday as Jan 1 of X (because
1888 // the weekday advances by 1 for each normal X and by 2
1889 // for each leap X, hence by 5 every 4 years or by 35
1890 // which is 0 mod 7 every 28 years) but this rule breaks
1891 // down if there are years between X and Y which are
1892 // divisible by 4 but not leap (i.e. divisible by 100 but
1893 // not 400), hence the correction.
1894
1895 int yearReal = GetYear(tz);
1896 int mod28 = yearReal % 28;
1897
1898 // be careful to not go too far - we risk to leave the
1899 // supported range
1900 int year;
1901 if ( mod28 < 10 )
1902 {
1903 year = 1988 + mod28; // 1988 == 0 (mod 28)
1904 }
1905 else
1906 {
1907 year = 1970 + mod28 - 10; // 1970 == 10 (mod 28)
1908 }
1909
1910 int nCentury = year / 100,
1911 nCenturyReal = yearReal / 100;
1912
1913 // need to adjust for the years divisble by 400 which are
1914 // not leap but are counted like leap ones if we just take
1915 // the number of centuries in between for nLostWeekDays
1916 int nLostWeekDays = (nCentury - nCenturyReal) -
1917 (nCentury / 4 - nCenturyReal / 4);
1918
1919 // we have to gain back the "lost" weekdays: note that the
1920 // effect of this loop is to not do anything to
1921 // nLostWeekDays (which we won't use any more), but to
1922 // (indirectly) set the year correctly
1923 while ( (nLostWeekDays % 7) != 0 )
1924 {
1925 nLostWeekDays += year++ % 4 ? 1 : 2;
1926 }
1927
1928 // at any rate, we couldn't go further than 1988 + 9 + 28!
1929 wxASSERT_MSG( year < 2030,
1930 _T("logic error in wxDateTime::Format") );
1931
1932 wxString strYear, strYear2;
1933 strYear.Printf(_T("%d"), year);
1934 strYear2.Printf(_T("%d"), year % 100);
1935
1936 // find two strings not occuring in format (this is surely
1937 // not optimal way of doing it... improvements welcome!)
1938 wxString fmt = format;
1939 wxString replacement = (wxChar)-1;
1940 while ( fmt.Find(replacement) != wxNOT_FOUND )
1941 {
1942 replacement << (wxChar)-1;
1943 }
1944
1945 wxString replacement2 = (wxChar)-2;
1946 while ( fmt.Find(replacement) != wxNOT_FOUND )
1947 {
1948 replacement << (wxChar)-2;
1949 }
1950
1951 // replace all occurences of year with it
1952 bool wasReplaced = fmt.Replace(strYear, replacement) > 0;
1953 if ( !wasReplaced )
1954 wasReplaced = fmt.Replace(strYear2, replacement2) > 0;
1955
1956 // use strftime() to format the same date but in supported
1957 // year
1958 //
1959 // NB: we assume that strftime() doesn't check for the
1960 // date validity and will happily format the date
1961 // corresponding to Feb 29 of a non leap year (which
1962 // may happen if yearReal was leap and year is not)
1963 struct tm tmAdjusted;
1964 InitTm(tmAdjusted);
1965 tmAdjusted.tm_hour = tm.hour;
1966 tmAdjusted.tm_min = tm.min;
1967 tmAdjusted.tm_sec = tm.sec;
1968 tmAdjusted.tm_wday = tm.GetWeekDay();
1969 tmAdjusted.tm_yday = GetDayOfYear();
1970 tmAdjusted.tm_mday = tm.mday;
1971 tmAdjusted.tm_mon = tm.mon;
1972 tmAdjusted.tm_year = year - 1900;
1973 tmAdjusted.tm_isdst = 0; // no DST, already adjusted
1974 wxString str = CallStrftime(*p == _T('c') ? _T("%c")
1975 : _T("%x"),
1976 &tmAdjusted);
1977
1978 // now replace the occurence of 1999 with the real year
1979 wxString strYearReal, strYearReal2;
1980 strYearReal.Printf(_T("%04d"), yearReal);
1981 strYearReal2.Printf(_T("%02d"), yearReal % 100);
1982 str.Replace(strYear, strYearReal);
1983 str.Replace(strYear2, strYearReal2);
1984
1985 // and replace back all occurences of replacement string
1986 if ( wasReplaced )
1987 {
1988 str.Replace(replacement2, strYear2);
1989 str.Replace(replacement, strYear);
1990 }
1991
1992 res += str;
1993 }
1994 break;
1995
1996 case _T('d'): // day of a month (01-31)
1997 res += wxString::Format(fmt, tm.mday);
1998 break;
1999
2000 case _T('H'): // hour in 24h format (00-23)
2001 res += wxString::Format(fmt, tm.hour);
2002 break;
2003
2004 case _T('I'): // hour in 12h format (01-12)
2005 {
2006 // 24h -> 12h, 0h -> 12h too
2007 int hour12 = tm.hour > 12 ? tm.hour - 12
2008 : tm.hour ? tm.hour : 12;
2009 res += wxString::Format(fmt, hour12);
2010 }
2011 break;
2012
2013 case _T('j'): // day of the year
2014 res += wxString::Format(fmt, GetDayOfYear(tz));
2015 break;
2016
2017 case _T('m'): // month as a number (01-12)
2018 res += wxString::Format(fmt, tm.mon + 1);
2019 break;
2020
2021 case _T('M'): // minute as a decimal number (00-59)
2022 res += wxString::Format(fmt, tm.min);
2023 break;
2024
2025 case _T('p'): // AM or PM string
2026 res += CallStrftime(_T("%p"), &tmTimeOnly);
2027 break;
2028
2029 case _T('S'): // second as a decimal number (00-61)
2030 res += wxString::Format(fmt, tm.sec);
2031 break;
2032
2033 case _T('U'): // week number in the year (Sunday 1st week day)
2034 res += wxString::Format(fmt, GetWeekOfYear(Sunday_First, tz));
2035 break;
2036
2037 case _T('W'): // week number in the year (Monday 1st week day)
2038 res += wxString::Format(fmt, GetWeekOfYear(Monday_First, tz));
2039 break;
2040
2041 case _T('w'): // weekday as a number (0-6), Sunday = 0
2042 res += wxString::Format(fmt, tm.GetWeekDay());
2043 break;
2044
2045 // case _T('x'): -- handled with "%c"
2046
2047 case _T('X'): // locale default time representation
2048 // just use strftime() to format the time for us
2049 res += CallStrftime(_T("%X"), &tmTimeOnly);
2050 break;
2051
2052 case _T('y'): // year without century (00-99)
2053 res += wxString::Format(fmt, tm.year % 100);
2054 break;
2055
2056 case _T('Y'): // year with century
2057 res += wxString::Format(fmt, tm.year);
2058 break;
2059
2060 case _T('Z'): // timezone name
2061 res += CallStrftime(_T("%Z"), &tmTimeOnly);
2062 break;
2063
2064 default:
2065 // is it the format width?
2066 fmt.Empty();
2067 while ( *p == _T('-') || *p == _T('+') ||
2068 *p == _T(' ') || wxIsdigit(*p) )
2069 {
2070 fmt += *p;
2071 }
2072
2073 if ( !fmt.IsEmpty() )
2074 {
2075 // we've only got the flags and width so far in fmt
2076 fmt.Prepend(_T('%'));
2077 fmt.Append(_T('d'));
2078
2079 goto restart;
2080 }
2081
2082 // no, it wasn't the width
2083 wxFAIL_MSG(_T("unknown format specificator"));
2084
2085 // fall through and just copy it nevertheless
2086
2087 case _T('%'): // a percent sign
2088 res += *p;
2089 break;
2090
2091 case 0: // the end of string
2092 wxFAIL_MSG(_T("missing format at the end of string"));
2093
2094 // just put the '%' which was the last char in format
2095 res += _T('%');
2096 break;
2097 }
2098 }
2099
2100 return res;
2101 }
2102
2103 // this function parses a string in (strict) RFC 822 format: see the section 5
2104 // of the RFC for the detailed description, but briefly it's something of the
2105 // form "Sat, 18 Dec 1999 00:48:30 +0100"
2106 //
2107 // this function is "strict" by design - it must reject anything except true
2108 // RFC822 time specs.
2109 //
2110 // TODO a great candidate for using reg exps
2111 const wxChar *wxDateTime::ParseRfc822Date(const wxChar* date)
2112 {
2113 wxCHECK_MSG( date, (wxChar *)NULL, _T("NULL pointer in wxDateTime::Parse") );
2114
2115 const wxChar *p = date;
2116 const wxChar *comma = wxStrchr(p, _T(','));
2117 if ( comma )
2118 {
2119 // the part before comma is the weekday
2120
2121 // skip it for now - we don't use but might check that it really
2122 // corresponds to the specfied date
2123 p = comma + 1;
2124
2125 if ( *p != _T(' ') )
2126 {
2127 wxLogDebug(_T("no space after weekday in RFC822 time spec"));
2128
2129 return (wxChar *)NULL;
2130 }
2131
2132 p++; // skip space
2133 }
2134
2135 // the following 1 or 2 digits are the day number
2136 if ( !wxIsdigit(*p) )
2137 {
2138 wxLogDebug(_T("day number expected in RFC822 time spec, none found"));
2139
2140 return (wxChar *)NULL;
2141 }
2142
2143 wxDateTime_t day = *p++ - _T('0');
2144 if ( wxIsdigit(*p) )
2145 {
2146 day *= 10;
2147 day += *p++ - _T('0');
2148 }
2149
2150 if ( *p++ != _T(' ') )
2151 {
2152 return (wxChar *)NULL;
2153 }
2154
2155 // the following 3 letters specify the month
2156 wxString monName(p, 3);
2157 Month mon;
2158 if ( monName == _T("Jan") )
2159 mon = Jan;
2160 else if ( monName == _T("Feb") )
2161 mon = Feb;
2162 else if ( monName == _T("Mar") )
2163 mon = Mar;
2164 else if ( monName == _T("Apr") )
2165 mon = Apr;
2166 else if ( monName == _T("May") )
2167 mon = May;
2168 else if ( monName == _T("Jun") )
2169 mon = Jun;
2170 else if ( monName == _T("Jul") )
2171 mon = Jul;
2172 else if ( monName == _T("Aug") )
2173 mon = Aug;
2174 else if ( monName == _T("Sep") )
2175 mon = Sep;
2176 else if ( monName == _T("Oct") )
2177 mon = Oct;
2178 else if ( monName == _T("Nov") )
2179 mon = Nov;
2180 else if ( monName == _T("Dec") )
2181 mon = Dec;
2182 else
2183 {
2184 wxLogDebug(_T("Invalid RFC 822 month name '%s'"), monName.c_str());
2185
2186 return (wxChar *)NULL;
2187 }
2188
2189 p += 3;
2190
2191 if ( *p++ != _T(' ') )
2192 {
2193 return (wxChar *)NULL;
2194 }
2195
2196 // next is the year
2197 if ( !wxIsdigit(*p) )
2198 {
2199 // no year?
2200 return (wxChar *)NULL;
2201 }
2202
2203 int year = *p++ - _T('0');
2204
2205 if ( !wxIsdigit(*p) )
2206 {
2207 // should have at least 2 digits in the year
2208 return (wxChar *)NULL;
2209 }
2210
2211 year *= 10;
2212 year += *p++ - _T('0');
2213
2214 // is it a 2 digit year (as per original RFC 822) or a 4 digit one?
2215 if ( wxIsdigit(*p) )
2216 {
2217 year *= 10;
2218 year += *p++ - _T('0');
2219
2220 if ( !wxIsdigit(*p) )
2221 {
2222 // no 3 digit years please
2223 return (wxChar *)NULL;
2224 }
2225
2226 year *= 10;
2227 year += *p++ - _T('0');
2228 }
2229
2230 if ( *p++ != _T(' ') )
2231 {
2232 return (wxChar *)NULL;
2233 }
2234
2235 // time is in the format hh:mm:ss and seconds are optional
2236 if ( !wxIsdigit(*p) )
2237 {
2238 return (wxChar *)NULL;
2239 }
2240
2241 wxDateTime_t hour = *p++ - _T('0');
2242
2243 if ( !wxIsdigit(*p) )
2244 {
2245 return (wxChar *)NULL;
2246 }
2247
2248 hour *= 10;
2249 hour += *p++ - _T('0');
2250
2251 if ( *p++ != _T(':') )
2252 {
2253 return (wxChar *)NULL;
2254 }
2255
2256 if ( !wxIsdigit(*p) )
2257 {
2258 return (wxChar *)NULL;
2259 }
2260
2261 wxDateTime_t min = *p++ - _T('0');
2262
2263 if ( !wxIsdigit(*p) )
2264 {
2265 return (wxChar *)NULL;
2266 }
2267
2268 min *= 10;
2269 min += *p++ - _T('0');
2270
2271 wxDateTime_t sec = 0;
2272 if ( *p++ == _T(':') )
2273 {
2274 if ( !wxIsdigit(*p) )
2275 {
2276 return (wxChar *)NULL;
2277 }
2278
2279 sec = *p++ - _T('0');
2280
2281 if ( !wxIsdigit(*p) )
2282 {
2283 return (wxChar *)NULL;
2284 }
2285
2286 sec *= 10;
2287 sec += *p++ - _T('0');
2288 }
2289
2290 if ( *p++ != _T(' ') )
2291 {
2292 return (wxChar *)NULL;
2293 }
2294
2295 // and now the interesting part: the timezone
2296 int offset;
2297 if ( *p == _T('-') || *p == _T('+') )
2298 {
2299 // the explicit offset given: it has the form of hhmm
2300 bool plus = *p++ == _T('+');
2301
2302 if ( !wxIsdigit(*p) || !wxIsdigit(*(p + 1)) )
2303 {
2304 return (wxChar *)NULL;
2305 }
2306
2307 // hours
2308 offset = 60*(10*(*p - _T('0')) + (*(p + 1) - _T('0')));
2309
2310 p += 2;
2311
2312 if ( !wxIsdigit(*p) || !wxIsdigit(*(p + 1)) )
2313 {
2314 return (wxChar *)NULL;
2315 }
2316
2317 // minutes
2318 offset += 10*(*p - _T('0')) + (*(p + 1) - _T('0'));
2319
2320 if ( !plus )
2321 {
2322 offset = -offset;
2323 }
2324
2325 p += 2;
2326 }
2327 else
2328 {
2329 // the symbolic timezone given: may be either military timezone or one
2330 // of standard abbreviations
2331 if ( !*(p + 1) )
2332 {
2333 // military: Z = UTC, J unused, A = -1, ..., Y = +12
2334 static const int offsets[26] =
2335 {
2336 //A B C D E F G H I J K L M
2337 -1, -2, -3, -4, -5, -6, -7, -8, -9, 0, -10, -11, -12,
2338 //N O P R Q S T U V W Z Y Z
2339 +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +11, +12, 0
2340 };
2341
2342 if ( *p < _T('A') || *p > _T('Z') || *p == _T('J') )
2343 {
2344 wxLogDebug(_T("Invalid militaty timezone '%c'"), *p);
2345
2346 return (wxChar *)NULL;
2347 }
2348
2349 offset = offsets[*p++ - _T('A')];
2350 }
2351 else
2352 {
2353 // abbreviation
2354 wxString tz = p;
2355 if ( tz == _T("UT") || tz == _T("UTC") || tz == _T("GMT") )
2356 offset = 0;
2357 else if ( tz == _T("AST") )
2358 offset = AST - GMT0;
2359 else if ( tz == _T("ADT") )
2360 offset = ADT - GMT0;
2361 else if ( tz == _T("EST") )
2362 offset = EST - GMT0;
2363 else if ( tz == _T("EDT") )
2364 offset = EDT - GMT0;
2365 else if ( tz == _T("CST") )
2366 offset = CST - GMT0;
2367 else if ( tz == _T("CDT") )
2368 offset = CDT - GMT0;
2369 else if ( tz == _T("MST") )
2370 offset = MST - GMT0;
2371 else if ( tz == _T("MDT") )
2372 offset = MDT - GMT0;
2373 else if ( tz == _T("PST") )
2374 offset = PST - GMT0;
2375 else if ( tz == _T("PDT") )
2376 offset = PDT - GMT0;
2377 else
2378 {
2379 wxLogDebug(_T("Unknown RFC 822 timezone '%s'"), p);
2380
2381 return (wxChar *)NULL;
2382 }
2383
2384 p += tz.length();
2385 }
2386
2387 // make it minutes
2388 offset *= 60;
2389 }
2390
2391 // the spec was correct
2392 Set(day, mon, year, hour, min, sec);
2393 MakeTimezone((wxDateTime_t)(60*offset));
2394
2395 return p;
2396 }
2397
2398 const wxChar *wxDateTime::ParseFormat(const wxChar *date,
2399 const wxChar *format,
2400 const wxDateTime& dateDef)
2401 {
2402 wxCHECK_MSG( date && format, (wxChar *)NULL,
2403 _T("NULL pointer in wxDateTime::ParseFormat()") );
2404
2405 wxString str;
2406 unsigned long num;
2407
2408 // what fields have we found?
2409 bool haveWDay = FALSE,
2410 haveYDay = FALSE,
2411 haveDay = FALSE,
2412 haveMon = FALSE,
2413 haveYear = FALSE,
2414 haveHour = FALSE,
2415 haveMin = FALSE,
2416 haveSec = FALSE;
2417
2418 bool hourIsIn12hFormat = FALSE, // or in 24h one?
2419 isPM = FALSE; // AM by default
2420
2421 // and the value of the items we have (init them to get rid of warnings)
2422 wxDateTime_t sec = 0,
2423 min = 0,
2424 hour = 0;
2425 WeekDay wday = Inv_WeekDay;
2426 wxDateTime_t yday = 0,
2427 mday = 0;
2428 wxDateTime::Month mon = Inv_Month;
2429 int year = 0;
2430
2431 const wxChar *input = date;
2432 for ( const wxChar *fmt = format; *fmt; fmt++ )
2433 {
2434 if ( *fmt != _T('%') )
2435 {
2436 if ( wxIsspace(*fmt) )
2437 {
2438 // a white space in the format string matches 0 or more white
2439 // spaces in the input
2440 while ( wxIsspace(*input) )
2441 {
2442 input++;
2443 }
2444 }
2445 else // !space
2446 {
2447 // any other character (not whitespace, not '%') must be
2448 // matched by itself in the input
2449 if ( *input++ != *fmt )
2450 {
2451 // no match
2452 return (wxChar *)NULL;
2453 }
2454 }
2455
2456 // done with this format char
2457 continue;
2458 }
2459
2460 // start of a format specification
2461 switch ( *++fmt )
2462 {
2463 case _T('a'): // a weekday name
2464 case _T('A'):
2465 {
2466 int flag = *fmt == _T('a') ? Name_Abbr : Name_Full;
2467 wday = GetWeekDayFromName(GetAlphaToken(input), flag);
2468 if ( wday == Inv_WeekDay )
2469 {
2470 // no match
2471 return (wxChar *)NULL;
2472 }
2473 }
2474 haveWDay = TRUE;
2475 break;
2476
2477 case _T('b'): // a month name
2478 case _T('B'):
2479 {
2480 int flag = *fmt == _T('b') ? Name_Abbr : Name_Full;
2481 mon = GetMonthFromName(GetAlphaToken(input), flag);
2482 if ( mon == Inv_Month )
2483 {
2484 // no match
2485 return (wxChar *)NULL;
2486 }
2487 }
2488 haveMon = TRUE;
2489 break;
2490
2491 case _T('c'): // locale default date and time representation
2492 {
2493 wxDateTime dt;
2494
2495 // this is the format which corresponds to ctime() output
2496 // and strptime("%c") should parse it, so try it first
2497 static const wxChar *fmtCtime = _T("%a %b %d %H:%M:%S %Y");
2498
2499 const wxChar *result = dt.ParseFormat(input, fmtCtime);
2500 if ( !result )
2501 {
2502 result = dt.ParseFormat(input, _T("%x %X"));
2503 }
2504
2505 if ( !result )
2506 {
2507 result = dt.ParseFormat(input, _T("%X %x"));
2508 }
2509
2510 if ( !result )
2511 {
2512 // we've tried everything and still no match
2513 return (wxChar *)NULL;
2514 }
2515
2516 Tm tm = dt.GetTm();
2517
2518 haveDay = haveMon = haveYear =
2519 haveHour = haveMin = haveSec = TRUE;
2520
2521 hour = tm.hour;
2522 min = tm.min;
2523 sec = tm.sec;
2524
2525 year = tm.year;
2526 mon = tm.mon;
2527 mday = tm.mday;
2528
2529 input = result;
2530 }
2531 break;
2532
2533 case _T('d'): // day of a month (01-31)
2534 if ( !GetNumericToken(input, &num) || (num > 31) )
2535 {
2536 // no match
2537 return (wxChar *)NULL;
2538 }
2539
2540 // we can't check whether the day range is correct yet, will
2541 // do it later - assume ok for now
2542 haveDay = TRUE;
2543 mday = (wxDateTime_t)num;
2544 break;
2545
2546 case _T('H'): // hour in 24h format (00-23)
2547 if ( !GetNumericToken(input, &num) || (num > 23) )
2548 {
2549 // no match
2550 return (wxChar *)NULL;
2551 }
2552
2553 haveHour = TRUE;
2554 hour = (wxDateTime_t)num;
2555 break;
2556
2557 case _T('I'): // hour in 12h format (01-12)
2558 if ( !GetNumericToken(input, &num) || !num || (num > 12) )
2559 {
2560 // no match
2561 return (wxChar *)NULL;
2562 }
2563
2564 haveHour = TRUE;
2565 hourIsIn12hFormat = TRUE;
2566 hour = (wxDateTime_t)(num % 12); // 12 should be 0
2567 break;
2568
2569 case _T('j'): // day of the year
2570 if ( !GetNumericToken(input, &num) || !num || (num > 366) )
2571 {
2572 // no match
2573 return (wxChar *)NULL;
2574 }
2575
2576 haveYDay = TRUE;
2577 yday = (wxDateTime_t)num;
2578 break;
2579
2580 case _T('m'): // month as a number (01-12)
2581 if ( !GetNumericToken(input, &num) || !num || (num > 12) )
2582 {
2583 // no match
2584 return (wxChar *)NULL;
2585 }
2586
2587 haveMon = TRUE;
2588 mon = (Month)(num - 1);
2589 break;
2590
2591 case _T('M'): // minute as a decimal number (00-59)
2592 if ( !GetNumericToken(input, &num) || (num > 59) )
2593 {
2594 // no match
2595 return (wxChar *)NULL;
2596 }
2597
2598 haveMin = TRUE;
2599 min = (wxDateTime_t)num;
2600 break;
2601
2602 case _T('p'): // AM or PM string
2603 {
2604 wxString am, pm, token = GetAlphaToken(input);
2605
2606 GetAmPmStrings(&am, &pm);
2607 if ( token.CmpNoCase(pm) == 0 )
2608 {
2609 isPM = TRUE;
2610 }
2611 else if ( token.CmpNoCase(am) != 0 )
2612 {
2613 // no match
2614 return (wxChar *)NULL;
2615 }
2616 }
2617 break;
2618
2619 case _T('r'): // time as %I:%M:%S %p
2620 {
2621 wxDateTime dt;
2622 input = dt.ParseFormat(input, _T("%I:%M:%S %p"));
2623 if ( !input )
2624 {
2625 // no match
2626 return (wxChar *)NULL;
2627 }
2628
2629 haveHour = haveMin = haveSec = TRUE;
2630
2631 Tm tm = dt.GetTm();
2632 hour = tm.hour;
2633 min = tm.min;
2634 sec = tm.sec;
2635 }
2636 break;
2637
2638 case _T('R'): // time as %H:%M
2639 {
2640 wxDateTime dt;
2641 input = dt.ParseFormat(input, _T("%H:%M"));
2642 if ( !input )
2643 {
2644 // no match
2645 return (wxChar *)NULL;
2646 }
2647
2648 haveHour = haveMin = TRUE;
2649
2650 Tm tm = dt.GetTm();
2651 hour = tm.hour;
2652 min = tm.min;
2653 }
2654
2655 case _T('S'): // second as a decimal number (00-61)
2656 if ( !GetNumericToken(input, &num) || (num > 61) )
2657 {
2658 // no match
2659 return (wxChar *)NULL;
2660 }
2661
2662 haveSec = TRUE;
2663 sec = (wxDateTime_t)num;
2664 break;
2665
2666 case _T('T'): // time as %H:%M:%S
2667 {
2668 wxDateTime dt;
2669 input = dt.ParseFormat(input, _T("%H:%M:%S"));
2670 if ( !input )
2671 {
2672 // no match
2673 return (wxChar *)NULL;
2674 }
2675
2676 haveHour = haveMin = haveSec = TRUE;
2677
2678 Tm tm = dt.GetTm();
2679 hour = tm.hour;
2680 min = tm.min;
2681 sec = tm.sec;
2682 }
2683 break;
2684
2685 case _T('w'): // weekday as a number (0-6), Sunday = 0
2686 if ( !GetNumericToken(input, &num) || (wday > 6) )
2687 {
2688 // no match
2689 return (wxChar *)NULL;
2690 }
2691
2692 haveWDay = TRUE;
2693 wday = (WeekDay)num;
2694 break;
2695
2696 case _T('x'): // locale default date representation
2697 #ifdef HAVE_STRPTIME
2698 // try using strptime() - it may fail even if the input is
2699 // correct but the date is out of range, so we will fall back
2700 // to our generic code anyhow (FIXME !Unicode friendly)
2701 {
2702 struct tm tm;
2703 const wxChar *result = strptime(input, "%x", &tm);
2704 if ( result )
2705 {
2706 input = result;
2707
2708 haveDay = haveMon = haveYear = TRUE;
2709
2710 year = 1900 + tm.tm_year;
2711 mon = (Month)tm.tm_mon;
2712 mday = tm.tm_mday;
2713
2714 break;
2715 }
2716 }
2717 #endif // HAVE_STRPTIME
2718
2719 // TODO query the LOCALE_IDATE setting under Win32
2720 {
2721 wxDateTime dt;
2722
2723 wxString fmtDate, fmtDateAlt;
2724 if ( IsWestEuropeanCountry(GetCountry()) ||
2725 GetCountry() == Russia )
2726 {
2727 fmtDate = _T("%d/%m/%y");
2728 fmtDateAlt = _T("%m/%d/%y");
2729 }
2730 else // assume USA
2731 {
2732 fmtDate = _T("%m/%d/%y");
2733 fmtDateAlt = _T("%d/%m/%y");
2734 }
2735
2736 const wxChar *result = dt.ParseFormat(input, fmtDate);
2737
2738 if ( !result )
2739 {
2740 // ok, be nice and try another one
2741 result = dt.ParseFormat(input, fmtDateAlt);
2742 }
2743
2744 if ( !result )
2745 {
2746 // bad luck
2747 return (wxChar *)NULL;
2748 }
2749
2750 Tm tm = dt.GetTm();
2751
2752 haveDay = haveMon = haveYear = TRUE;
2753
2754 year = tm.year;
2755 mon = tm.mon;
2756 mday = tm.mday;
2757
2758 input = result;
2759 }
2760
2761 break;
2762
2763 case _T('X'): // locale default time representation
2764 #ifdef HAVE_STRPTIME
2765 {
2766 // use strptime() to do it for us (FIXME !Unicode friendly)
2767 struct tm tm;
2768 input = strptime(input, "%X", &tm);
2769 if ( !input )
2770 {
2771 return (wxChar *)NULL;
2772 }
2773
2774 haveHour = haveMin = haveSec = TRUE;
2775
2776 hour = tm.tm_hour;
2777 min = tm.tm_min;
2778 sec = tm.tm_sec;
2779 }
2780 #else // !HAVE_STRPTIME
2781 // TODO under Win32 we can query the LOCALE_ITIME system
2782 // setting which says whether the default time format is
2783 // 24 or 12 hour
2784 {
2785 // try to parse what follows as "%H:%M:%S" and, if this
2786 // fails, as "%I:%M:%S %p" - this should catch the most
2787 // common cases
2788 wxDateTime dt;
2789
2790 const wxChar *result = dt.ParseFormat(input, _T("%T"));
2791 if ( !result )
2792 {
2793 result = dt.ParseFormat(input, _T("%r"));
2794 }
2795
2796 if ( !result )
2797 {
2798 // no match
2799 return (wxChar *)NULL;
2800 }
2801
2802 haveHour = haveMin = haveSec = TRUE;
2803
2804 Tm tm = dt.GetTm();
2805 hour = tm.hour;
2806 min = tm.min;
2807 sec = tm.sec;
2808
2809 input = result;
2810 }
2811 #endif // HAVE_STRPTIME/!HAVE_STRPTIME
2812 break;
2813
2814 case _T('y'): // year without century (00-99)
2815 if ( !GetNumericToken(input, &num) || (num > 99) )
2816 {
2817 // no match
2818 return (wxChar *)NULL;
2819 }
2820
2821 haveYear = TRUE;
2822 year = 1900 + (wxDateTime_t)num;
2823 break;
2824
2825 case _T('Y'): // year with century
2826 if ( !GetNumericToken(input, &num) )
2827 {
2828 // no match
2829 return (wxChar *)NULL;
2830 }
2831
2832 haveYear = TRUE;
2833 year = (wxDateTime_t)num;
2834 break;
2835
2836 case _T('Z'): // timezone name
2837 wxFAIL_MSG(_T("TODO"));
2838 break;
2839
2840 case _T('%'): // a percent sign
2841 if ( *input++ != _T('%') )
2842 {
2843 // no match
2844 return (wxChar *)NULL;
2845 }
2846 break;
2847
2848 case 0: // the end of string
2849 wxFAIL_MSG(_T("unexpected format end"));
2850
2851 // fall through
2852
2853 default: // not a known format spec
2854 return (wxChar *)NULL;
2855 }
2856 }
2857
2858 // format matched, try to construct a date from what we have now
2859 Tm tmDef;
2860 if ( dateDef.IsValid() )
2861 {
2862 // take this date as default
2863 tmDef = dateDef.GetTm();
2864 }
2865 else if ( m_time != 0 )
2866 {
2867 // if this date is valid, don't change it
2868 tmDef = GetTm();
2869 }
2870 else
2871 {
2872 // no default and this date is invalid - fall back to Today()
2873 tmDef = Today().GetTm();
2874 }
2875
2876 Tm tm = tmDef;
2877
2878 // set the date
2879 if ( haveYear )
2880 {
2881 tm.year = year;
2882 }
2883
2884 // TODO we don't check here that the values are consistent, if both year
2885 // day and month/day were found, we just ignore the year day and we
2886 // also always ignore the week day
2887 if ( haveMon && haveDay )
2888 {
2889 if ( mday > GetNumOfDaysInMonth(tm.year, mon) )
2890 {
2891 wxLogDebug(_T("bad month day in wxDateTime::ParseFormat"));
2892
2893 return (wxChar *)NULL;
2894 }
2895
2896 tm.mon = mon;
2897 tm.mday = mday;
2898 }
2899 else if ( haveYDay )
2900 {
2901 if ( yday > GetNumberOfDays(tm.year) )
2902 {
2903 wxLogDebug(_T("bad year day in wxDateTime::ParseFormat"));
2904
2905 return (wxChar *)NULL;
2906 }
2907
2908 Tm tm2 = wxDateTime(1, Jan, tm.year).SetToYearDay(yday).GetTm();
2909
2910 tm.mon = tm2.mon;
2911 tm.mday = tm2.mday;
2912 }
2913
2914 // deal with AM/PM
2915 if ( haveHour && hourIsIn12hFormat && isPM )
2916 {
2917 // translate to 24hour format
2918 hour += 12;
2919 }
2920 //else: either already in 24h format or no translation needed
2921
2922 // set the time
2923 if ( haveHour )
2924 {
2925 tm.hour = hour;
2926 }
2927
2928 if ( haveMin )
2929 {
2930 tm.min = min;
2931 }
2932
2933 if ( haveSec )
2934 {
2935 tm.sec = sec;
2936 }
2937
2938 Set(tm);
2939
2940 return input;
2941 }
2942
2943 const wxChar *wxDateTime::ParseDateTime(const wxChar *date)
2944 {
2945 wxCHECK_MSG( date, (wxChar *)NULL, _T("NULL pointer in wxDateTime::Parse") );
2946
2947 // there is a public domain version of getdate.y, but it only works for
2948 // English...
2949 wxFAIL_MSG(_T("TODO"));
2950
2951 return (wxChar *)NULL;
2952 }
2953
2954 const wxChar *wxDateTime::ParseDate(const wxChar *date)
2955 {
2956 // this is a simplified version of ParseDateTime() which understands only
2957 // "today" (for wxDate compatibility) and digits only otherwise (and not
2958 // all esoteric constructions ParseDateTime() knows about)
2959
2960 wxCHECK_MSG( date, (wxChar *)NULL, _T("NULL pointer in wxDateTime::Parse") );
2961
2962 const wxChar *p = date;
2963 while ( wxIsspace(*p) )
2964 p++;
2965
2966 // some special cases
2967 static struct
2968 {
2969 const wxChar *str;
2970 int dayDiffFromToday;
2971 } literalDates[] =
2972 {
2973 { wxTRANSLATE("today"), 0 },
2974 { wxTRANSLATE("yesterday"), -1 },
2975 { wxTRANSLATE("tomorrow"), 1 },
2976 };
2977
2978 for ( size_t n = 0; n < WXSIZEOF(literalDates); n++ )
2979 {
2980 wxString date = wxGetTranslation(literalDates[n].str);
2981 size_t len = date.length();
2982 if ( wxString(p, len).CmpNoCase(date) == 0 )
2983 {
2984 // nothing can follow this, so stop here
2985 p += len;
2986
2987 int dayDiffFromToday = literalDates[n].dayDiffFromToday;
2988 *this = Today();
2989 if ( dayDiffFromToday )
2990 {
2991 *this += wxDateSpan::Days(dayDiffFromToday);
2992 }
2993
2994 return p;
2995 }
2996 }
2997
2998 // what do we have?
2999 bool haveDay = FALSE, // the months day?
3000 haveWDay = FALSE, // the day of week?
3001 haveMon = FALSE, // the month?
3002 haveYear = FALSE; // the year?
3003
3004 // and the value of the items we have (init them to get rid of warnings)
3005 WeekDay wday = Inv_WeekDay;
3006 wxDateTime_t day = 0;
3007 wxDateTime::Month mon = Inv_Month;
3008 int year = 0;
3009
3010 // tokenize the string
3011 wxStringTokenizer tok(p, _T(",/-\t\n "));
3012 while ( tok.HasMoreTokens() )
3013 {
3014 wxString token = tok.GetNextToken();
3015
3016 // is it a number?
3017 unsigned long val;
3018 if ( token.ToULong(&val) )
3019 {
3020 // guess what this number is
3021
3022 bool isDay = FALSE,
3023 isMonth = FALSE,
3024 // only years are counted from 0
3025 isYear = (val == 0) || (val > 31);
3026 if ( !isYear )
3027 {
3028 // may be the month or month day or the year, assume the
3029 // month day by default and fallback to month if the range
3030 // allow it or to the year if our assumption doesn't work
3031 if ( haveDay )
3032 {
3033 // we already have the day, so may only be a month or year
3034 if ( val > 12 )
3035 {
3036 isYear = TRUE;
3037 }
3038 else
3039 {
3040 isMonth = TRUE;
3041 }
3042 }
3043 else // it may be day
3044 {
3045 isDay = TRUE;
3046
3047 // check the range
3048 if ( haveMon )
3049 {
3050 if ( val > GetNumOfDaysInMonth(haveYear ? year
3051 : Inv_Year,
3052 mon) )
3053 {
3054 // oops, it can't be a day finally
3055 isDay = FALSE;
3056
3057 if ( val > 12 )
3058 {
3059 isYear = TRUE;
3060 }
3061 else
3062 {
3063 isMonth = TRUE;
3064 }
3065 }
3066 }
3067 }
3068 }
3069
3070 // remember that we have this and stop the scan if it's the second
3071 // time we find this, except for the day logic (see there)
3072 if ( isYear )
3073 {
3074 if ( haveYear )
3075 {
3076 break;
3077 }
3078
3079 haveYear = TRUE;
3080
3081 // no roll over - 99 means 99, not 1999 for us
3082 year = (wxDateTime_t)val;
3083 }
3084 else if ( isMonth )
3085 {
3086 if ( haveMon )
3087 {
3088 break;
3089 }
3090
3091 haveMon = TRUE;
3092
3093 mon = (wxDateTime::Month)val;
3094 }
3095 else
3096 {
3097 wxASSERT_MSG( isDay, _T("logic error") );
3098
3099 if ( haveDay )
3100 {
3101 // may be were mistaken when we found it for the first
3102 // time? may be it was a month or year instead?
3103 //
3104 // this ability to "backtrack" allows us to correctly parse
3105 // both things like 01/13 and 13/01 - but, of course, we
3106 // still can't resolve the ambiguity in 01/02 (it will be
3107 // Feb 1 for us, not Jan 2 as americans might expect!)
3108 if ( (day <= 12) && !haveMon )
3109 {
3110 // exchange day and month
3111 mon = (wxDateTime::Month)day;
3112
3113 haveMon = TRUE;
3114 }
3115 else if ( !haveYear )
3116 {
3117 // exchange day and year
3118 year = day;
3119
3120 haveYear = TRUE;
3121 }
3122 }
3123
3124 haveDay = TRUE;
3125
3126 day = (wxDateTime_t)val;
3127 }
3128 }
3129 else // not a number
3130 {
3131 mon = GetMonthFromName(token, Name_Full | Name_Abbr);
3132 if ( mon != Inv_Month )
3133 {
3134 // it's a month
3135 if ( haveMon )
3136 {
3137 break;
3138 }
3139
3140 haveMon = TRUE;
3141 }
3142 else
3143 {
3144 wday = GetWeekDayFromName(token, Name_Full | Name_Abbr);
3145 if ( wday != Inv_WeekDay )
3146 {
3147 // a week day
3148 if ( haveWDay )
3149 {
3150 break;
3151 }
3152
3153 haveWDay = TRUE;
3154 }
3155 else
3156 {
3157 // try the ordinals
3158 static const wxChar *ordinals[] =
3159 {
3160 wxTRANSLATE("first"),
3161 wxTRANSLATE("second"),
3162 wxTRANSLATE("third"),
3163 wxTRANSLATE("fourth"),
3164 wxTRANSLATE("fifth"),
3165 wxTRANSLATE("sixth"),
3166 wxTRANSLATE("seventh"),
3167 wxTRANSLATE("eighth"),
3168 wxTRANSLATE("ninth"),
3169 wxTRANSLATE("tenth"),
3170 wxTRANSLATE("eleventh"),
3171 wxTRANSLATE("twelfth"),
3172 wxTRANSLATE("thirteenth"),
3173 wxTRANSLATE("fourteenth"),
3174 wxTRANSLATE("fifteenth"),
3175 wxTRANSLATE("sixteenth"),
3176 wxTRANSLATE("seventeenth"),
3177 wxTRANSLATE("eighteenth"),
3178 wxTRANSLATE("nineteenth"),
3179 wxTRANSLATE("twentieth"),
3180 // that's enough - otherwise we'd have problems with
3181 // composite (or not) ordinals otherwise
3182 };
3183
3184 size_t n;
3185 for ( n = 0; n < WXSIZEOF(ordinals); n++ )
3186 {
3187 if ( token.CmpNoCase(ordinals[n]) == 0 )
3188 {
3189 break;
3190 }
3191 }
3192
3193 if ( n == WXSIZEOF(ordinals) )
3194 {
3195 // stop here - something unknown
3196 break;
3197 }
3198
3199 // it's a day
3200 if ( haveDay )
3201 {
3202 // don't try anything here (as in case of numeric day
3203 // above) - the symbolic day spec should always
3204 // precede the month/year
3205 break;
3206 }
3207
3208 haveDay = TRUE;
3209
3210 day = n + 1;
3211 }
3212 }
3213 }
3214 }
3215
3216 // either no more tokens or the scan was stopped by something we couldn't
3217 // parse - in any case, see if we can construct a date from what we have
3218 if ( !haveDay && !haveWDay )
3219 {
3220 wxLogDebug(_T("no day, no weekday hence no date."));
3221
3222 return (wxChar *)NULL;
3223 }
3224
3225 if ( haveWDay && (haveMon || haveYear || haveDay) &&
3226 !(haveMon && haveMon && haveYear) )
3227 {
3228 // without adjectives (which we don't support here) the week day only
3229 // makes sense completely separately or with the full date
3230 // specification (what would "Wed 1999" mean?)
3231 return (wxChar *)NULL;
3232 }
3233
3234 if ( !haveMon )
3235 {
3236 mon = GetCurrentMonth();
3237 }
3238
3239 if ( !haveYear )
3240 {
3241 year = GetCurrentYear();
3242 }
3243
3244 if ( haveDay )
3245 {
3246 Set(day, mon, year);
3247
3248 if ( haveWDay )
3249 {
3250 // check that it is really the same
3251 if ( GetWeekDay() != wday )
3252 {
3253 // inconsistency detected
3254 return (wxChar *)NULL;
3255 }
3256 }
3257 }
3258 else // haveWDay
3259 {
3260 *this = Today();
3261
3262 SetToWeekDayInSameWeek(wday);
3263 }
3264
3265 // return the pointer to the next char
3266 return p + wxStrlen(p) - wxStrlen(tok.GetString());
3267 }
3268
3269 const wxChar *wxDateTime::ParseTime(const wxChar *time)
3270 {
3271 wxCHECK_MSG( time, (wxChar *)NULL, _T("NULL pointer in wxDateTime::Parse") );
3272
3273 // first try some extra things
3274 static const struct
3275 {
3276 const wxChar *name;
3277 wxDateTime_t hour;
3278 } stdTimes[] =
3279 {
3280 { wxTRANSLATE("noon"), 12 },
3281 { wxTRANSLATE("midnight"), 00 },
3282 // anything else?
3283 };
3284
3285 for ( size_t n = 0; n < WXSIZEOF(stdTimes); n++ )
3286 {
3287 wxString timeString = wxGetTranslation(stdTimes[n].name);
3288 size_t len = timeString.length();
3289 if ( timeString.CmpNoCase(wxString(time, len)) == 0 )
3290 {
3291 Set(stdTimes[n].hour, 0, 0);
3292
3293 return time + len;
3294 }
3295 }
3296
3297 // try all time formats we may think about starting with the standard one
3298 const wxChar *result = ParseFormat(time, _T("%X"));
3299 if ( !result )
3300 {
3301 // normally, it's the same, but why not try it?
3302 result = ParseFormat(time, _T("%H:%M:%S"));
3303 }
3304
3305 if ( !result )
3306 {
3307 // 12hour with AM/PM?
3308 result = ParseFormat(time, _T("%I:%M:%S %p"));
3309 }
3310
3311 if ( !result )
3312 {
3313 // without seconds?
3314 result = ParseFormat(time, _T("%H:%M"));
3315 }
3316
3317 if ( !result )
3318 {
3319 // 12hour with AM/PM but without seconds?
3320 result = ParseFormat(time, _T("%I:%M %p"));
3321 }
3322
3323 if ( !result )
3324 {
3325 // just the hour?
3326 result = ParseFormat(time, _T("%H"));
3327 }
3328
3329 if ( !result )
3330 {
3331 // just the hour and AM/PM?
3332 result = ParseFormat(time, _T("%I %p"));
3333 }
3334
3335 // TODO: parse timezones
3336
3337 return result;
3338 }
3339
3340 // ----------------------------------------------------------------------------
3341 // Workdays and holidays support
3342 // ----------------------------------------------------------------------------
3343
3344 bool wxDateTime::IsWorkDay(Country WXUNUSED(country)) const
3345 {
3346 return !wxDateTimeHolidayAuthority::IsHoliday(*this);
3347 }
3348
3349 // ============================================================================
3350 // wxTimeSpan
3351 // ============================================================================
3352
3353 // not all strftime(3) format specifiers make sense here because, for example,
3354 // a time span doesn't have a year nor a timezone
3355 //
3356 // Here are the ones which are supported (all of them are supported by strftime
3357 // as well):
3358 // %H hour in 24 hour format
3359 // %M minute (00 - 59)
3360 // %S second (00 - 59)
3361 // %% percent sign
3362 //
3363 // Also, for MFC CTimeSpan compatibility, we support
3364 // %D number of days
3365 //
3366 // And, to be better than MFC :-), we also have
3367 // %E number of wEeks
3368 // %l milliseconds (000 - 999)
3369 wxString wxTimeSpan::Format(const wxChar *format) const
3370 {
3371 wxCHECK_MSG( format, _T(""), _T("NULL format in wxTimeSpan::Format") );
3372
3373 wxString str;
3374 str.Alloc(wxStrlen(format));
3375
3376 for ( const wxChar *pch = format; pch; pch++ )
3377 {
3378 wxChar ch = *pch;
3379
3380 if ( ch == '%' )
3381 {
3382 wxString tmp;
3383
3384 ch = *pch++;
3385 switch ( ch )
3386 {
3387 default:
3388 wxFAIL_MSG( _T("invalid format character") );
3389 // fall through
3390
3391 case '%':
3392 // will get to str << ch below
3393 break;
3394
3395 case 'D':
3396 tmp.Printf(_T("%d"), GetDays());
3397 break;
3398
3399 case 'E':
3400 tmp.Printf(_T("%d"), GetWeeks());
3401 break;
3402
3403 case 'H':
3404 tmp.Printf(_T("%02d"), GetHours());
3405 break;
3406
3407 case 'l':
3408 tmp.Printf(_T("%03ld"), GetMilliseconds().ToLong());
3409 break;
3410
3411 case 'M':
3412 tmp.Printf(_T("%02d"), GetMinutes());
3413 break;
3414
3415 case 'S':
3416 tmp.Printf(_T("%02ld"), GetSeconds().ToLong());
3417 break;
3418 }
3419
3420 if ( !!tmp )
3421 {
3422 str += tmp;
3423
3424 // skip str += ch below
3425 continue;
3426 }
3427 }
3428
3429 str += ch;
3430 }
3431
3432 return str;
3433 }
3434
3435 // ============================================================================
3436 // wxDateTimeHolidayAuthority and related classes
3437 // ============================================================================
3438
3439 #include "wx/arrimpl.cpp"
3440
3441 WX_DEFINE_OBJARRAY(wxDateTimeArray)
3442
3443 static int wxCMPFUNC_CONV
3444 wxDateTimeCompareFunc(wxDateTime **first, wxDateTime **second)
3445 {
3446 wxDateTime dt1 = **first,
3447 dt2 = **second;
3448
3449 return dt1 == dt2 ? 0 : dt1 < dt2 ? -1 : +1;
3450 }
3451
3452 // ----------------------------------------------------------------------------
3453 // wxDateTimeHolidayAuthority
3454 // ----------------------------------------------------------------------------
3455
3456 wxHolidayAuthoritiesArray wxDateTimeHolidayAuthority::ms_authorities;
3457
3458 /* static */
3459 bool wxDateTimeHolidayAuthority::IsHoliday(const wxDateTime& dt)
3460 {
3461 size_t count = ms_authorities.GetCount();
3462 for ( size_t n = 0; n < count; n++ )
3463 {
3464 if ( ms_authorities[n]->DoIsHoliday(dt) )
3465 {
3466 return TRUE;
3467 }
3468 }
3469
3470 return FALSE;
3471 }
3472
3473 /* static */
3474 size_t
3475 wxDateTimeHolidayAuthority::GetHolidaysInRange(const wxDateTime& dtStart,
3476 const wxDateTime& dtEnd,
3477 wxDateTimeArray& holidays)
3478 {
3479 wxDateTimeArray hol;
3480
3481 holidays.Empty();
3482
3483 size_t count = ms_authorities.GetCount();
3484 for ( size_t nAuth = 0; nAuth < count; nAuth++ )
3485 {
3486 ms_authorities[nAuth]->DoGetHolidaysInRange(dtStart, dtEnd, hol);
3487
3488 WX_APPEND_ARRAY(holidays, hol);
3489 }
3490
3491 holidays.Sort(wxDateTimeCompareFunc);
3492
3493 return holidays.GetCount();
3494 }
3495
3496 /* static */
3497 void wxDateTimeHolidayAuthority::ClearAllAuthorities()
3498 {
3499 WX_CLEAR_ARRAY(ms_authorities);
3500 }
3501
3502 /* static */
3503 void wxDateTimeHolidayAuthority::AddAuthority(wxDateTimeHolidayAuthority *auth)
3504 {
3505 ms_authorities.Add(auth);
3506 }
3507
3508 // ----------------------------------------------------------------------------
3509 // wxDateTimeWorkDays
3510 // ----------------------------------------------------------------------------
3511
3512 bool wxDateTimeWorkDays::DoIsHoliday(const wxDateTime& dt) const
3513 {
3514 wxDateTime::WeekDay wd = dt.GetWeekDay();
3515
3516 return (wd == wxDateTime::Sun) || (wd == wxDateTime::Sat);
3517 }
3518
3519 size_t wxDateTimeWorkDays::DoGetHolidaysInRange(const wxDateTime& dtStart,
3520 const wxDateTime& dtEnd,
3521 wxDateTimeArray& holidays) const
3522 {
3523 if ( dtStart > dtEnd )
3524 {
3525 wxFAIL_MSG( _T("invalid date range in GetHolidaysInRange") );
3526
3527 return 0u;
3528 }
3529
3530 holidays.Empty();
3531
3532 // instead of checking all days, start with the first Sat after dtStart and
3533 // end with the last Sun before dtEnd
3534 wxDateTime dtSatFirst = dtStart.GetNextWeekDay(wxDateTime::Sat),
3535 dtSatLast = dtEnd.GetPrevWeekDay(wxDateTime::Sat),
3536 dtSunFirst = dtStart.GetNextWeekDay(wxDateTime::Sun),
3537 dtSunLast = dtEnd.GetPrevWeekDay(wxDateTime::Sun),
3538 dt;
3539
3540 for ( dt = dtSatFirst; dt <= dtSatLast; dt += wxDateSpan::Week() )
3541 {
3542 holidays.Add(dt);
3543 }
3544
3545 for ( dt = dtSunFirst; dt <= dtSunLast; dt += wxDateSpan::Week() )
3546 {
3547 holidays.Add(dt);
3548 }
3549
3550 return holidays.GetCount();
3551 }