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