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