cleaned all trailing white space from source files.
[sdk] / ecere / src / sys / Time.ec
1 namespace sys;
2
3 #define set _set
4 #define Date _Date
5 #define uint _uint
6 #define Method _Method
7 #define FileName _FileName
8 #define Instance _Instance
9 #define Size _Size
10 #define File _File
11 #define byte _byte
12 #define int64 _int64
13 #define uint64 _uint64
14 #define Alignment _Alignment
15
16 #undef __BLOCKS__
17
18 #if defined(__WIN32__)
19 #define WIN32_LEAN_AND_MEAN
20 #define String String_
21 #include <windows.h>
22 #undef String
23 #include <mmsystem.h>
24 #elif defined(__unix__) || defined(__APPLE__)
25 #include <sys/time.h>
26 #include <sched.h>
27 #include <unistd.h>
28 #endif
29 #include <time.h>
30 #include <stdlib.h>
31
32 #undef set
33 #undef uint
34 #undef int64
35 #undef uint64
36 #undef byte
37 #undef Method
38 #undef Alignment
39 #undef FileName
40 #undef Instance
41 #undef File
42 #undef Size
43 #undef Date
44
45 import "instance"
46
47 define EPOCH_YEAR      = 1970;
48 define EPOCH_WEEKDAY   = thursday;
49 static define SECS_PER_HOUR   = 60 * 60;
50 static define SECS_PER_DAY    = SECS_PER_HOUR * 24;
51
52 #define DIV(a, b) ((a) / (b) - ((a) % (b) < 0))
53 #define LEAPS_THRU_END_OF(y) (DIV (y, 4) - DIV (y, 100) + DIV (y, 400))
54 #define ISLEAP(y) (!((y)%4) && (((y) % 100) || (!((y)% 400))))
55
56 const int daysInAYearBeforeMonth[2][13] =
57 {
58    // Normal years.
59    { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
60    // Leap years.
61    { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
62 };
63
64 int monthLengths[2][12] =
65 {
66         { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
67         { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
68 };
69
70 #if defined(__WIN32__)
71
72 #define LL2FILETIME( ll, pft )   (pft)->dwLowDateTime = (UINT)(ll); (pft)->dwHighDateTime = (UINT)((ll) >> 32);
73 #define FILETIME2LL( pft, ll)    ll = (((LONGLONG)((pft)->dwHighDateTime))<<32) + (pft)-> dwLowDateTime ;
74
75 static int TIME_DayLightCompareDate(const SYSTEMTIME *date, const SYSTEMTIME *compareDate)
76 {
77    int limit_day, dayinsecs;
78
79    if(date->wMonth < compareDate->wMonth) return -1;
80    if(date->wMonth > compareDate->wMonth) return 1;
81
82    if(compareDate->wDayOfWeek <= 6)
83    {
84       WORD First;
85       int weekofmonth = compareDate->wDay;
86       First = ( 6 + compareDate->wDayOfWeek - date->wDayOfWeek + date->wDay ) % 7 + 1;
87       limit_day = First + 7 * (weekofmonth - 1);
88       if(limit_day > monthLengths[date->wMonth==2 && ISLEAP(date->wYear)][date->wMonth - 1])
89          limit_day -= 7;
90    }
91    else
92    {
93       limit_day = compareDate->wDay;
94    }
95
96    limit_day = ((limit_day * 24  + compareDate->wHour) * 60 + compareDate->wMinute ) * 60;
97    dayinsecs = ((date->wDay * 24  + date->wHour) * 60 + date->wMinute ) * 60 + date->wSecond;
98    return dayinsecs < limit_day ? -1 : dayinsecs > limit_day ? 1 : 0;
99 }
100
101 static uint TIME_CompTimeZoneID(const TIME_ZONE_INFORMATION *pTZinfo, FILETIME *lpFileTime, bool islocal)
102 {
103    int ret;
104    bool beforeStandardDate, afterDaylightDate;
105    DWORD retval = TIME_ZONE_ID_INVALID;
106    LONGLONG llTime = 0;
107    SYSTEMTIME SysTime;
108    FILETIME ftTemp;
109
110    if (pTZinfo->DaylightDate.wMonth != 0)
111    {
112       if (pTZinfo->StandardDate.wMonth == 0 ||
113          pTZinfo->StandardDate.wDay<1 ||
114          pTZinfo->StandardDate.wDay>5 ||
115          pTZinfo->DaylightDate.wDay<1 ||
116          pTZinfo->DaylightDate.wDay>5)
117       {
118          SetLastError(ERROR_INVALID_PARAMETER);
119          return TIME_ZONE_ID_INVALID;
120       }
121
122       if (!islocal)
123       {
124          FILETIME2LL( lpFileTime, llTime );
125          llTime -= ( pTZinfo->Bias + pTZinfo->DaylightBias ) * (LONGLONG)600000000;
126          LL2FILETIME( llTime, &ftTemp)
127          lpFileTime = &ftTemp;
128       }
129
130       FileTimeToSystemTime(lpFileTime, &SysTime);
131
132       ret = TIME_DayLightCompareDate( &SysTime, &pTZinfo->StandardDate);
133       if (ret == -2)
134          return TIME_ZONE_ID_INVALID;
135
136       beforeStandardDate = ret < 0;
137
138       if (!islocal)
139       {
140          llTime -= ( pTZinfo->StandardBias - pTZinfo->DaylightBias ) * (LONGLONG)600000000;
141          LL2FILETIME( llTime, &ftTemp)
142          FileTimeToSystemTime(lpFileTime, &SysTime);
143       }
144
145       ret = TIME_DayLightCompareDate( &SysTime, &pTZinfo->DaylightDate);
146       if (ret == -2)
147        return TIME_ZONE_ID_INVALID;
148
149       afterDaylightDate = ret >= 0;
150
151       retval = TIME_ZONE_ID_STANDARD;
152       if( pTZinfo->DaylightDate.wMonth <  pTZinfo->StandardDate.wMonth )
153       {
154          if( beforeStandardDate && afterDaylightDate )
155              retval = TIME_ZONE_ID_DAYLIGHT;
156       }
157       else if( beforeStandardDate || afterDaylightDate )
158          retval = TIME_ZONE_ID_DAYLIGHT;
159    }
160    else
161       retval = TIME_ZONE_ID_UNKNOWN;
162    return retval;
163 }
164
165 static bool TIME_GetTimezoneBias(const TIME_ZONE_INFORMATION *pTZinfo, FILETIME *lpFileTime, bool islocal, LONG *pBias)
166 {
167    LONG bias = pTZinfo->Bias;
168    DWORD tzid = TIME_CompTimeZoneID( pTZinfo, lpFileTime, islocal);
169
170    if( tzid == TIME_ZONE_ID_INVALID)
171       return false;
172    if (tzid == TIME_ZONE_ID_DAYLIGHT)
173       bias += pTZinfo->DaylightBias;
174    else if (tzid == TIME_ZONE_ID_STANDARD)
175       bias += pTZinfo->StandardBias;
176    *pBias = bias;
177    return true;
178 }
179
180 static bool _TzSpecificLocalTimeToSystemTime(LPTIME_ZONE_INFORMATION lpTimeZoneInformation, LPSYSTEMTIME lpLocalTime, LPSYSTEMTIME lpUniversalTime)
181 {
182    FILETIME ft;
183    LONG lBias;
184    LONGLONG t;
185    TIME_ZONE_INFORMATION tzinfo;
186
187    if(lpTimeZoneInformation)
188    {
189       memcpy(&tzinfo, lpTimeZoneInformation, sizeof(TIME_ZONE_INFORMATION));
190    }
191    else
192    {
193       if (GetTimeZoneInformation(&tzinfo) == TIME_ZONE_ID_INVALID)
194          return false;
195    }
196
197    if (!SystemTimeToFileTime(lpLocalTime, &ft))
198       return false;
199    FILETIME2LL( &ft, t)
200    if (!TIME_GetTimezoneBias(&tzinfo, &ft, true, &lBias))
201       return false;
202
203    t += (LONGLONG)lBias * 600000000;
204    LL2FILETIME( t, &ft)
205    return (bool)FileTimeToSystemTime(&ft, lpUniversalTime);
206 }
207 #endif
208
209 import "System"
210
211 public class Time : double
212 {
213    char * OnGetString(char * tempString, void * fieldData, bool * needClass)
214    {
215       Time time = this;
216       int value;
217       char temp[256];
218       tempString[0] = 0;
219       value = (int)(time / (60 * 60 * 24));
220       if(value)
221       {
222
223          sprintf(temp, "%d:", value);
224          strcat(tempString, temp);
225          time -= value * 60 * 60 * 24;
226       }
227       value = (int)(time / (60 * 60));
228       if(value)
229       {
230          sprintf(temp, "%d:", value);
231          strcat(tempString, temp);
232          time -= value * 60 * 60;
233       }
234
235       value = (int)(time / 60);
236       sprintf(temp, "%d:", value);
237       strcat(tempString, temp);
238       time -= value * 60;
239
240       value = (int)(time);
241       sprintf(temp, "%02d", value);
242       strcat(tempString, temp);
243       time -= value;
244
245       /*if(time > 0.00001)
246       {
247          sprintf(temp, "%f" time);
248          strcat(tempString, temp+1);
249       }*/
250       return tempString;
251    }
252 }
253
254 public class Seconds : Time { public property Time {} };
255
256 #if !defined(__WIN32__)
257 static time_t MakeTimeT(SecSince1970 t)
258 {
259    struct tm tm;
260    time_t result;
261    DateTime dt = t;
262    tm.tm_year = dt.year - 1900;
263    tm.tm_mon = dt.month;
264    tm.tm_mday = dt.day;
265    tm.tm_hour = dt.hour;
266    tm.tm_min = dt.minute;
267    tm.tm_sec = dt.second;
268    tm.tm_yday = dt.dayInTheYear;
269    tm.tm_wday = dt.dayOfTheWeek;
270    result = mktime(&tm);
271    return result;
272 }
273
274 static time_t MakeTimeTfromDT(DateTime dt)
275 {
276    struct tm tm;
277    time_t result;
278    tm.tm_year = dt.year - 1900;
279    tm.tm_mon = dt.month;
280    tm.tm_mday = dt.day;
281    tm.tm_hour = dt.hour;
282    tm.tm_min = dt.minute;
283    tm.tm_sec = dt.second;
284    tm.tm_yday = dt.dayInTheYear;
285    tm.tm_wday = dt.dayOfTheWeek;
286    result = mktime(&tm);
287    return result;
288 }
289
290 #endif
291
292 public class SecSince1970 : int64
293 {
294    char * OnGetString(char * tempString, void * fieldData, bool * needClass)
295    {
296       // TOFIX:  passing argument 2 of '__ecereProp___ecereNameSpace__ecere__sys__DateTime_Set___ecereNameSpace__ecere__sys__SecSince1970' makes integer from pointer without a cast
297       DateTime t = this;
298       return t.OnGetString(tempString, fieldData, needClass);
299       // TOFIX:
300       // return ((DateTime)this).OnGetString(tempString, fieldData, needClass);
301    }
302
303    // Is this required?
304    int OnCompare(SecSince1970 data2)
305    {
306       int result = 0;
307       if(this && data2)
308       {
309          if(this > data2)
310             result = 1;
311          else if(this < data2)
312             result = -1;
313       }
314       return result;
315    }
316 public:
317    property SecSince1970 global
318    {
319       // TOFIX: 'return' with a value, in function returning void
320       set { return value.local; }
321       get
322       {
323       #if defined(__WIN32__)
324          SYSTEMTIME localTime, systemTime;
325          FILETIME fileTime, localFileTime;
326          DateTime input, global;
327
328          input = this;
329
330          localTime.wYear = (short)input.year;
331          localTime.wMonth = (short)input.month + 1;
332          localTime.wDay = (short)input.day;
333          localTime.wHour = (short)input.hour;
334          localTime.wMinute = (short)input.minute;
335          localTime.wSecond = (short)input.second;
336          localTime.wMilliseconds = 0;
337
338          /*
339          SystemTimeToFileTime(&localTime, &fileTime);
340          LocalFileTimeToFileTime(&fileTime, &localFileTime);
341          FileTimeToSystemTime(&localFileTime, &systemTime);
342          */
343
344          _TzSpecificLocalTimeToSystemTime(null, &localTime, &systemTime);
345
346          global.year = systemTime.wYear;
347          global.month = (Month)(systemTime.wMonth - 1);
348          global.day = systemTime.wDay;
349          global.hour = systemTime.wHour;
350          global.minute = systemTime.wMinute;
351          global.second = systemTime.wSecond;
352
353          return global;
354       #else
355          struct tm tm;
356          DateTime global;
357          time_t t = MakeTimeT(this);
358          // gmtime_r((time_t *)&this, &tm);
359          gmtime_r(&t, &tm);
360          global.year = tm.tm_year + 1900;
361          global.month = (Month)tm.tm_mon;
362          global.day = tm.tm_mday;
363          global.hour = tm.tm_hour;
364          global.minute = tm.tm_min;
365          global.second = tm.tm_sec;
366          global.dayInTheYear = tm.tm_yday;
367          global.dayOfTheWeek = (DayOfTheWeek)tm.tm_wday;
368          return global;
369       #endif
370       }
371    };
372    property SecSince1970 local
373    {
374       // TOFIX: warning: 'return' with a value, in function returning void
375       set { return value.global; }
376       get
377       {
378 #if defined(__WIN32__)
379          SYSTEMTIME systemTime, localTime;
380          DateTime utc, local;
381
382          utc = this;
383
384          systemTime.wYear = (short)utc.year;
385          systemTime.wMonth = (short)utc.month + 1;
386          systemTime.wDay = (short)utc.day;
387          systemTime.wHour = (short)utc.hour;
388          systemTime.wMinute = (short)utc.minute;
389          systemTime.wSecond = (short)utc.second;
390          systemTime.wMilliseconds = 0;
391
392          SystemTimeToTzSpecificLocalTime(null, &systemTime, &localTime);
393
394          local.year = localTime.wYear;
395          local.month = (Month)(localTime.wMonth - 1);
396          local.day = localTime.wDay;
397          local.hour = localTime.wHour;
398          local.minute = localTime.wMinute;
399          local.second = localTime.wSecond;
400          local.dayOfTheWeek = (DayOfTheWeek)localTime.wDayOfWeek;
401
402          local.FixDayOfYear();
403          return local;
404 #else
405          DateTime local;
406          struct tm tm;
407          time_t t = MakeTimeT(this);
408          //localtime_r((time_t *)&this, &tm);
409          localtime_r(&t, &tm);
410          local.year = tm.tm_year + 1900;
411          local.month = (Month)tm.tm_mon;
412          local.day = tm.tm_mday;
413          local.hour = tm.tm_hour;
414          local.minute = tm.tm_min;
415          local.second = tm.tm_sec;
416          local.dayInTheYear = tm.tm_yday;
417          local.dayOfTheWeek = (DayOfTheWeek)tm.tm_wday;
418          return local;
419 #endif
420       }
421    };
422 };
423
424 public class TimeStamp32 : uint32
425 {
426 public:
427    char * OnGetString(char * tempString, void * fieldData, bool * needClass)
428    {
429       DateTime t = (SecSince1970)(int)this;
430       return t.OnGetString(tempString, fieldData, needClass);
431       // TOFIX:
432       // return ((DateTime)this).OnGetString(tempString, fieldData, needClass);
433    }
434
435    // Is this required?
436    int OnCompare(TimeStamp32 data2)
437    {
438       int result = 0;
439       if(this && data2)
440       {
441          if(this > data2)
442             result = 1;
443          else if(this < data2)
444             result = -1;
445       }
446       return result;
447    }
448 };
449
450 public class TimeStamp : SecSince1970
451 {
452    public property SecSince1970 {};
453 };
454 public enum DayOfTheWeek { sunday, monday, tuesday, wednesday, thursday, friday, saturday };
455 public struct DateTime
456 {
457    int year;
458    Month month;
459    int day, hour, minute, second;
460    DayOfTheWeek dayOfTheWeek;
461    int dayInTheYear;
462
463    bool GetLocalTime()
464    {
465    #if defined(__WIN32__)
466       SYSTEMTIME systemTime;
467       ::GetLocalTime(&systemTime);
468
469       year = systemTime.wYear;
470       month = (Month)(systemTime.wMonth - 1);
471       day = systemTime.wDay;
472       hour = systemTime.wHour;
473       minute = systemTime.wMinute;
474       second = systemTime.wSecond;
475
476       FixDayOfYear();
477       {
478          Date date { year, month, day };
479          dayOfTheWeek = date.dayOfTheWeek;
480       }
481    #else
482       struct tm tm;
483       time_t currentTime = time(null);
484       localtime_r(&currentTime, &tm);
485
486       year = tm.tm_year + 1900;
487       month = (Month)tm.tm_mon;
488       day = tm.tm_mday;
489       hour = tm.tm_hour;
490       minute = tm.tm_min;
491       second = tm.tm_sec;
492       dayInTheYear = tm.tm_yday;
493       dayOfTheWeek = (DayOfTheWeek)tm.tm_wday;
494    #endif
495
496       return true;
497    }
498
499    bool FixDayOfYear()
500    {
501       dayInTheYear = daysInAYearBeforeMonth[ISLEAP(year)][month] + day - 1;
502       return true;
503    }
504
505    property DateTime global
506    {
507       set { this = value.local; }
508       get
509       {
510       #if defined(__WIN32__)
511          SYSTEMTIME localTime, systemTime;
512          FILETIME fileTime, localFileTime;
513
514          localTime.wYear = (short)year;
515          localTime.wMonth = (short)month + 1;
516          localTime.wDay = (short)day;
517          localTime.wHour = (short)hour;
518          localTime.wMinute = (short)minute;
519          localTime.wSecond = (short)second;
520          localTime.wMilliseconds = 0;
521
522          SystemTimeToFileTime(&localTime, &fileTime);
523          LocalFileTimeToFileTime(&fileTime, &localFileTime);
524          FileTimeToSystemTime(&localFileTime, &systemTime);
525
526          value.year = systemTime.wYear;
527          value.month = (Month)(systemTime.wMonth - 1);
528          value.day = systemTime.wDay;
529          value.hour = systemTime.wHour;
530          value.minute = systemTime.wMinute;
531          value.second = systemTime.wSecond;
532       #else
533          struct tm tm;
534          //time_t t = (time_t)(SecSince1970)this;
535          time_t t = MakeTimeTfromDT(this);
536          gmtime_r(&t, &tm);
537          value.year = tm.tm_year + 1900;
538          value.month = (Month)tm.tm_mon;
539          value.day = tm.tm_mday;
540          value.hour = tm.tm_hour;
541          value.minute = tm.tm_min;
542          value.second = tm.tm_sec;
543          value.dayInTheYear = tm.tm_yday;
544          value.dayOfTheWeek = (DayOfTheWeek)tm.tm_wday;
545       #endif
546       }
547    };
548    property DateTime local
549    {
550       set { this = value.global; }
551       get
552       {
553       #if defined(__WIN32__)
554          SYSTEMTIME systemTime, localTime;
555
556          systemTime.wYear = (short)year;
557          systemTime.wMonth = (short)month + 1;
558          systemTime.wDay = (short)day;
559          systemTime.wHour = (short)hour;
560          systemTime.wMinute = (short)minute;
561          systemTime.wSecond = (short)second;
562          systemTime.wMilliseconds = 0;
563
564          SystemTimeToTzSpecificLocalTime(null, &systemTime, &localTime);
565
566          value.year = localTime.wYear;
567          value.month = (Month)(localTime.wMonth - 1);
568          value.day = localTime.wDay;
569          value.hour = localTime.wHour;
570          value.minute = localTime.wMinute;
571          value.second = localTime.wSecond;
572          value.dayOfTheWeek = (DayOfTheWeek)localTime.wDayOfWeek;
573
574          value.FixDayOfYear();
575       #else
576          struct tm tm;
577          // time_t t = (time_t)(SecSince1970)this;
578          time_t t = MakeTimeTfromDT(this);
579          localtime_r(&t, &tm);
580          value.year = tm.tm_year + 1900;
581          value.month = (Month)tm.tm_mon;
582          value.day = tm.tm_mday;
583          value.hour = tm.tm_hour;
584          value.minute = tm.tm_min;
585          value.second = tm.tm_sec;
586          value.dayInTheYear = tm.tm_yday;
587          value.dayOfTheWeek = (DayOfTheWeek)tm.tm_wday;
588       #endif
589       }
590    };
591    property SecSince1970
592    {
593       set
594       {
595          int64 days, y;
596          int rem;
597
598          days = value / SECS_PER_DAY;
599          rem = (int)(value % SECS_PER_DAY);
600
601          while(rem < 0)             { rem += SECS_PER_DAY; days--; }
602          while(rem >= SECS_PER_DAY) { rem -= SECS_PER_DAY; days++; }
603
604          hour = rem / SECS_PER_HOUR;
605
606          rem %= SECS_PER_HOUR;
607          minute = rem / 60;
608          second = rem % 60;
609
610          dayOfTheWeek = (EPOCH_WEEKDAY + days) % 7;
611          if(dayOfTheWeek < 0)
612             dayOfTheWeek += 7;
613
614          y = EPOCH_YEAR;
615          while(days < 0 || days >= daysInAYearBeforeMonth[ISLEAP(y)][12])
616          {
617             int64 yg = y + days / 365 - (days % 365 < 0);
618             days -= ((yg - y) * 365 + LEAPS_THRU_END_OF(yg - 1) - LEAPS_THRU_END_OF(y - 1));
619             y = yg;
620          }
621          year = (int)y;
622          {
623             const int * daysBeforeMonth = daysInAYearBeforeMonth[ISLEAP(y)];
624             dayInTheYear = (int)days;
625             for(y = 11; days < daysBeforeMonth[y]; y--);
626             days -= daysBeforeMonth[y];
627             month = (Month)y;
628             day = (int)(days + 1);
629          }
630       }
631
632       get
633       {
634          int month = this.month;
635          int monthRemainder = month % 12;
636          bool negativeMonthRemainder = monthRemainder < 0;
637          int monthYears = month / 12 - negativeMonthRemainder;
638          int year = this.year + monthYears;
639          // if(year >= 1970)
640          {
641             int a4 = (year       / 4) - !(year       & 3);
642             int b4 = (EPOCH_YEAR / 4) - !(EPOCH_YEAR & 3);
643             int a100 = a4 / 25 - (a4 % 25 < 0);
644             int b100 = b4 / 25 - (b4 % 25 < 0);
645             int a400 = a100 / 4;
646             int b400 = b100 / 4;
647             int leapDays = (a4 - b4) - (a100 - b100) + (a400 - b400);
648             int64 days = 365 * (year - EPOCH_YEAR) + leapDays;
649             month = monthRemainder + 12 * negativeMonthRemainder;
650             days += daysInAYearBeforeMonth[ISLEAP(year)][month] + day - 1;
651             return 60 * (60 * (24 * days + hour) + minute) + second;
652          }
653          return 0;
654       }
655    };
656
657    char * OnGetString(char * stringOutput, void * fieldData, bool * needClass)
658    {
659       static const char ampm[2][3] = { "AM", "PM" };
660       int hour = this.hour;
661       bool pm = false;
662       if(hour > 12) { hour -= 12; pm = true; }
663       else if(hour == 12) pm = true;
664       if(!hour) hour = 12;
665
666       if(!year && !day && !month && !this.hour && !minute && !second)
667          stringOutput[0] = 0;
668       else
669          sprintf(stringOutput, "%s %s %2d %2d:%02d:%02d %s %04d",
670             shortDaysNames[dayOfTheWeek], shortMonthsNames[month], day, hour, minute, second, ampm[pm], year);
671
672       return stringOutput;
673    }
674
675    bool OnGetDataFromString(char * string)
676    {
677       char * s = CopyString(string);
678       char * tokens[20];
679       int count = TokenizeWith(s, 20, tokens, " ", false);
680       int c;
681       bool foundDayOfTheWeek = false;
682       bool foundDate = false;
683       DayOfTheWeek dayOfTheWeek;
684       int day = 0;
685       int minute = 0;
686       int second = 0;
687       int hour = 0;
688       int year = 0;
689
690       for(c = 0; c < count; c++)
691       {
692          int i;
693          for(i = 0; i<7; i++)
694             if(!strcmpi(tokens[c], shortDaysNames[i]) || !strcmpi(tokens[c], longDaysNames[i]) ||
695                !strcmpi(tokens[c], enShortDaysNames[i]) || !strcmpi(tokens[c], enLongDaysNames[i]))
696                break;
697          if(i < 7) { dayOfTheWeek = (DayOfTheWeek)i; foundDayOfTheWeek = true; continue; }
698
699          for(i = 0; i<12; i++)
700             if(!strcmpi(tokens[c], shortMonthsNames[i]) || !strcmpi(tokens[c], longMonthsNames[i]) ||
701                !strcmpi(tokens[c], enShortMonthsNames[i]) || !strcmpi(tokens[c], enLongMonthsNames[i]))
702                break;
703          if(i < 12) { month = (Month)i; continue; }
704
705          if(strchr(tokens[c], ':'))
706          {
707             char * subTokens[20];
708             int sCount = TokenizeWith(tokens[c], 20, subTokens, " :", false);
709             int t;
710             bool pm = false, am = false;
711             for(t = 0; t<sCount; t++)
712             {
713                if(!strcmpi(subTokens[t], "am")) am = true;
714                else if(!strcmpi(subTokens[t], "pm")) pm = true;
715                else if(t-am-pm == 0) hour = atoi(subTokens[t]);
716                else if(t-am-pm == 1) minute = atoi(subTokens[t]);
717                else if(t-am-pm == 2) second = atoi(subTokens[t]);
718             }
719
720             if(c < count - 1)
721             {
722                if(!strcmpi(tokens[c+1], "am")) am = true;
723                else if(!strcmpi(tokens[c+1], "pm")) pm = true;
724             }
725
726             if(am && hour == 12) hour = 0;
727             else if(pm && hour < 12) hour += 12;
728
729             continue;
730          }
731
732          if(!foundDate)
733          {
734             if(strchr(tokens[c], '/') || strchr(tokens[c], '-'))
735             {
736                Date date;
737                if(date.OnGetDataFromString(tokens[c]))
738                {
739                   day = date.day;
740                   year = date.year;
741                   month = date.month;
742                }
743                foundDate = true;
744             }
745             else
746             {
747                i = atoi(tokens[c]);
748                if(i > 31)
749                {
750                   year = i;
751                   continue;
752                }
753                else if(i)
754                   day = i;
755             }
756          }
757       }
758       if(day)
759       {
760          Date date { year, month, day };
761          this.dayOfTheWeek = date.dayOfTheWeek;
762          this.day = day;
763          this.minute = minute;
764          this.second = second;
765          this.hour = hour;
766          this.year = year;
767       }
768       else if(foundDayOfTheWeek)
769       {
770          SecSince1970 weWant;
771          GetLocalTime();
772          if(dayOfTheWeek <= this.dayOfTheWeek) dayOfTheWeek += 7;
773          weWant = (SecSince1970)this + (int)(dayOfTheWeek - this.dayOfTheWeek) * 24 * 60 * 60;
774          this = (DateTime)weWant;
775       }
776       else if(!strcmpi(s, "today") || !strcmpi(s, $"today") ||
777               !strcmpi(s, "now") || !strcmpi(s, $"now"))
778          GetLocalTime();
779       else if(!strcmpi(s, "tomorrow") || !strcmpi(s, $"tomorrow"))
780       {
781          SecSince1970 weWant;
782          GetLocalTime();
783          weWant = (SecSince1970)this + 24 * 60 * 60;
784          this = (DateTime)weWant;
785       }
786       else if(!strcmpi(s, "yesterday") || !strcmpi(s, $"yesterday"))
787       {
788          SecSince1970 weWant;
789          GetLocalTime();
790          weWant = (SecSince1970)this - 24 * 60 * 60;
791          this = (DateTime)weWant;
792       }
793       else if(!s[0])
794       {
795          this = { };
796          delete s;
797          return true;
798       }
799       delete s;
800       return this.day != 0;
801    }
802 };
803
804 public Time GetTime(void)
805 {
806 #if defined(__WIN32__)
807    return timeGetTime() / 1000.0;
808 #elif defined(__unix__) || defined(__APPLE__)
809    struct timeval tp;
810    struct timezone tzp;
811    static int secbase = 0;
812
813    gettimeofday(&tp, &tzp);
814
815    if(!secbase)
816    {
817       secbase = (int)tp.tv_sec;
818       return tp.tv_usec / 1000000.0;
819    }
820    return (tp.tv_sec - secbase) + tp.tv_usec / 1000000.0;
821 #endif
822 }
823
824 public void Sleep(Seconds seconds)
825 {
826 #if defined(__WIN32__)
827    ::Sleep((uint)(seconds * 1000));
828 #else
829    if(!seconds)
830       sched_yield();
831    else
832    {
833       // usleep((uint)(seconds * 1000000));
834       struct timeval tv = { (int)seconds, (int)((seconds - (int)seconds) * 1000000) };
835       select(0,null,null,null, &tv);
836    }
837 #endif
838 }
839
840 public void RandomSeed(uint seed)
841 {
842 #if defined(__linux__) || defined(__DJGPP__)
843    srandom(seed);
844 #else
845    srand(seed);
846 #endif
847 }
848
849 public int GetRandom(int lo, int hi)
850 {
851    if(hi >= lo)
852    {
853 #if defined(__linux__) || defined(__DJGPP__)
854       // return lo+(int)(((uint)(hi - lo) + 1.0)*random()/(RAND_MAX+1.0));
855       return (int)(lo + ((uint)(hi - lo) + 1.0) * random() / (RAND_MAX + 1.0));
856 #else
857       // return lo+(int)(((uint)(hi - lo) + 1.0)*rand()/(RAND_MAX+1.0));
858       return (int)(lo + ((uint)(hi - lo) + 1.0) * rand() / (RAND_MAX + 1.0));
859 #endif
860    }
861    else
862       return lo;
863 }