-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdate.d
More file actions
1223 lines (1047 loc) · 31 KB
/
date.d
File metadata and controls
1223 lines (1047 loc) · 31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Written in the D programming language.
/**
* $(RED Deprecated. It will be removed in February 2012.
* Please use std.datetime instead.)
*
* Dates are represented in several formats. The date implementation
* revolves around a central type, $(D d_time), from which other
* formats are converted to and from. Dates are calculated using the
* Gregorian calendar.
*
* References: $(WEB wikipedia.org/wiki/Gregorian_calendar, Gregorian
* calendar (Wikipedia))
*
* Macros: WIKI = Phobos/StdDate
*
* Copyright: Copyright Digital Mars 2000 - 2009.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: $(WEB digitalmars.com, Walter Bright)
* Source: $(PHOBOSSRC std/_date.d)
*/
/* Copyright Digital Mars 2000 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
module date;
import std.conv, std.exception, std.stdio;
import core.stdc.stdlib;
import datebase;
import dateparse;
/+
pragma(msg, "Notice: As of Phobos 2.055, std.date and std.dateparse have been " ~
"deprecated. They will be removed in February 2012. " ~
"Please use std.datetime instead.");
deprecated:
+/
/**
* $(D d_time) is a signed arithmetic type giving the time elapsed
* since January 1, 1970. Negative values are for dates preceding
* 1970. The time unit used is Ticks. Ticks are milliseconds or
* smaller intervals.
*
* The usual arithmetic operations can be performed on d_time, such as adding,
* subtracting, etc. Elapsed time in Ticks can be computed by subtracting a
* starting d_time from an ending d_time.
*/
alias long d_time;
/**
* A value for d_time that does not represent a valid time.
*/
enum d_time d_time_nan = long.min;
/**
* Time broken down into its components.
*/
struct Date
{
int year = int.min; /// use int.min as "nan" year value
int month; /// 1..12
int day; /// 1..31
int hour; /// 0..23
int minute; /// 0..59
int second; /// 0..59
int ms; /// 0..999
int weekday; /// 0: not specified, 1..7: Sunday..Saturday
int tzcorrection = int.min; /// -1200..1200 correction in hours
/// Parse date out of string s[] and store it in this Date instance.
void parse(string s)
{
DateParse dp;
dp.parse(s, this);
}
}
enum
{
hoursPerDay = 24,
minutesPerHour = 60,
msPerMinute = 60 * 1000,
msPerHour = 60 * msPerMinute,
msPerDay = 86_400_000,
ticksPerMs = 1,
ticksPerSecond = 1000, /// Will be at least 1000
ticksPerMinute = ticksPerSecond * 60,
ticksPerHour = ticksPerMinute * 60,
ticksPerDay = ticksPerHour * 24,
}
deprecated alias ticksPerSecond TicksPerSecond;
deprecated alias ticksPerMs TicksPerMs;
deprecated alias ticksPerMinute TicksPerMinute;
deprecated alias ticksPerHour TicksPerHour;
deprecated alias ticksPerDay TicksPerDay;
deprecated
unittest
{
assert(ticksPerSecond == TicksPerSecond);
}
__gshared d_time localTZA = 0;
private immutable char[] daystr = "SunMonTueWedThuFriSat";
private immutable char[] monstr = "JanFebMarAprMayJunJulAugSepOctNovDec";
private immutable int[12] mdays =
[ 0,31,59,90,120,151,181,212,243,273,304,334 ];
/********************************
* Compute year and week [1..53] from t. The ISO 8601 week 1 is the first week
* of the year that includes January 4. Monday is the first day of the week.
* References:
* $(LINK2 http://en.wikipedia.org/wiki/ISO_8601, ISO 8601 (Wikipedia))
*/
void toISO8601YearWeek(d_time t, out int year, out int week)
{
year = yearFromTime(t);
auto yday = day(t) - dayFromYear(year);
/* Determine day of week Jan 4 falls on.
* Weeks begin on a Monday.
*/
auto d = dayFromYear(year);
auto w = (d + 3/*Jan4*/ + 3) % 7;
if (w < 0)
w += 7;
/* Find yday of beginning of ISO 8601 year
*/
auto ydaybeg = 3/*Jan4*/ - w;
/* Check if yday is actually the last week of the previous year
*/
if (yday < ydaybeg)
{
year -= 1;
week = 53;
return;
}
/* Check if yday is actually the first week of the next year
*/
if (yday >= 362) // possible
{ int d2;
int ydaybeg2;
d2 = dayFromYear(year + 1);
w = (d2 + 3/*Jan4*/ + 3) % 7;
if (w < 0)
w += 7;
//printf("w = %d\n", w);
ydaybeg2 = 3/*Jan4*/ - w;
if (d + yday >= d2 + ydaybeg2)
{
year += 1;
week = 1;
return;
}
}
week = (yday - ydaybeg) / 7 + 1;
}
/* ***********************************
* Divide time by divisor. Always round down, even if d is negative.
*/
pure d_time floor(d_time d, int divisor)
{
return (d < 0 ? d - divisor - 1 : d) / divisor;
}
int dmod(d_time n, d_time d)
{ d_time r;
r = n % d;
if (r < 0)
r += d;
assert(cast(int)r == r);
return cast(int)r;
}
/********************************
* Calculates the hour from time.
*
* Params:
* time = The time to compute the hour from.
* Returns:
* The calculated hour, 0..23.
*/
int hourFromTime(d_time time)
{
return dmod(floor(time, msPerHour), hoursPerDay);
}
/********************************
* Calculates the minute from time.
*
* Params:
* time = The time to compute the minute from.
* Returns:
* The calculated minute, 0..59.
*/
int minFromTime(d_time time)
{
return dmod(floor(time, msPerMinute), minutesPerHour);
}
/********************************
* Calculates the second from time.
*
* Params:
* time = The time to compute the second from.
* Returns:
* The calculated second, 0..59.
*/
int secFromTime(d_time time)
{
return dmod(floor(time, ticksPerSecond), 60);
}
/********************************
* Calculates the milisecond from time.
*
* Params:
* time = The time to compute the milisecond from.
* Returns:
* The calculated milisecond, 0..999.
*/
int msFromTime(d_time time)
{
return dmod(time / (ticksPerSecond / 1000), 1000);
}
int timeWithinDay(d_time t)
{
return dmod(t, msPerDay);
}
d_time toInteger(d_time n)
{
return n;
}
int day(d_time t)
{
return cast(int)floor(t, msPerDay);
}
pure bool leapYear(uint y)
{
return (y % 4) == 0 && (y % 100 || (y % 400) == 0);
}
unittest {
assert(!leapYear(1970));
assert(leapYear(1984));
assert(leapYear(2000));
assert(!leapYear(2100));
}
/********************************
* Calculates the number of days that exists in a year.
*
* Leap years have 366 days, while other years have 365.
*
* Params:
* year = The year to compute the number of days from.
* Returns:
* The number of days in the year, 365 or 366.
*/
pure uint daysInYear(uint year)
{
return (leapYear(year) ? 366 : 365);
}
/********************************
* Calculates the number of days elapsed since 1 January 1970
* until 1 January of the given year.
*
* Params:
* year = The year to compute the number of days from.
* Returns:
* The number of days elapsed.
*
* Example:
* ----------
* writeln(dayFromYear(1970)); // writes '0'
* writeln(dayFromYear(1971)); // writes '365'
* writeln(dayFromYear(1972)); // writes '730'
* ----------
*/
pure int dayFromYear(int year)
{
return cast(int) (365 * (year - 1970) +
floor((year - 1969), 4) -
floor((year - 1901), 100) +
floor((year - 1601), 400));
}
pure d_time timeFromYear(int y)
{
return cast(d_time)msPerDay * dayFromYear(y);
}
/*****************************
* Calculates the year from the d_time t.
*/
pure int yearFromTime(d_time t)
{
if (t == d_time_nan)
return 0;
// Hazard a guess
//y = 1970 + cast(int) (t / (365.2425 * msPerDay));
// Use integer only math
int y = 1970 + cast(int) (t / (3652425 * (msPerDay / 10000)));
if (timeFromYear(y) <= t)
{
while (timeFromYear(y + 1) <= t)
y++;
}
else
{
do
{
y--;
}
while (timeFromYear(y) > t);
}
return y;
}
/*******************************
* Determines if d_time t is a leap year.
*
* A leap year is every 4 years except years ending in 00 that are not
* divsible by 400.
*
* Returns: !=0 if it is a leap year.
*
* References:
* $(LINK2 http://en.wikipedia.org/wiki/Leap_year, Wikipedia)
*/
pure bool inLeapYear(d_time t)
{
return leapYear(yearFromTime(t));
}
/*****************************
* Calculates the month from the d_time t.
*
* Returns: Integer in the range 0..11, where
* 0 represents January and 11 represents December.
*/
int monthFromTime(d_time t)
{
auto year = yearFromTime(t);
auto day = day(t) - dayFromYear(year);
int month;
if (day < 59)
{
if (day < 31)
{ assert(day >= 0);
month = 0;
}
else
month = 1;
}
else
{
day -= leapYear(year);
if (day < 212)
{
if (day < 59)
month = 1;
else if (day < 90)
month = 2;
else if (day < 120)
month = 3;
else if (day < 151)
month = 4;
else if (day < 181)
month = 5;
else
month = 6;
}
else
{
if (day < 243)
month = 7;
else if (day < 273)
month = 8;
else if (day < 304)
month = 9;
else if (day < 334)
month = 10;
else if (day < 365)
month = 11;
else
assert(0);
}
}
return month;
}
/*******************************
* Compute which day in a month a d_time t is.
* Returns:
* Integer in the range 1..31
*/
int dateFromTime(d_time t)
{
auto year = yearFromTime(t);
auto day = day(t) - dayFromYear(year);
auto leap = leapYear(year);
auto month = monthFromTime(t);
int date;
switch (month)
{
case 0: date = day + 1; break;
case 1: date = day - 30; break;
case 2: date = day - 58 - leap; break;
case 3: date = day - 89 - leap; break;
case 4: date = day - 119 - leap; break;
case 5: date = day - 150 - leap; break;
case 6: date = day - 180 - leap; break;
case 7: date = day - 211 - leap; break;
case 8: date = day - 242 - leap; break;
case 9: date = day - 272 - leap; break;
case 10: date = day - 303 - leap; break;
case 11: date = day - 333 - leap; break;
default:
assert(0);
}
return date;
}
/*******************************
* Compute which day of the week a d_time t is.
* Returns:
* Integer in the range 0..6, where 0 represents Sunday
* and 6 represents Saturday.
*/
int weekDay(d_time t)
{
auto w = (cast(int)day(t) + 4) % 7;
if (w < 0)
w += 7;
return w;
}
/***********************************
* Convert from UTC to local time.
*/
d_time UTCtoLocalTime(d_time t)
{
return (t == d_time_nan)
? d_time_nan
: t + localTZA + daylightSavingTA(t);
}
/***********************************
* Convert from local time to UTC.
*/
d_time localTimetoUTC(d_time t)
{
return (t == d_time_nan)
? d_time_nan
/* BUGZILLA 1752 says this line should be:
* : t - localTZA - daylightSavingTA(t);
*/
: t - localTZA - daylightSavingTA(t - localTZA);
}
d_time makeTime(d_time hour, d_time min, d_time sec, d_time ms)
{
return hour * ticksPerHour +
min * ticksPerMinute +
sec * ticksPerSecond +
ms * ticksPerMs;
}
/* *****************************
* Params:
* month = 0..11
* date = day of month, 1..31
* Returns:
* number of days since start of epoch
*/
d_time makeDay(d_time year, d_time month, d_time date)
{
const y = cast(int)(year + floor(month, 12));
const m = dmod(month, 12);
const leap = leapYear(y);
auto t = timeFromYear(y) + cast(d_time) mdays[m] * msPerDay;
if (leap && month >= 2)
t += msPerDay;
if (yearFromTime(t) != y ||
monthFromTime(t) != m ||
dateFromTime(t) != 1)
{
return d_time_nan;
}
return day(t) + date - 1;
}
d_time makeDate(d_time day, d_time time)
{
if (day == d_time_nan || time == d_time_nan)
return d_time_nan;
return day * ticksPerDay + time;
}
d_time timeClip(d_time time)
{
//printf("TimeClip(%g) = %g\n", time, toInteger(time));
return toInteger(time);
}
/***************************************
* Determine the date in the month, 1..31, of the nth
* weekday.
* Params:
* year = year
* month = month, 1..12
* weekday = day of week 0..6 representing Sunday..Saturday
* n = nth occurrence of that weekday in the month, 1..5, where
* 5 also means "the last occurrence in the month"
* Returns:
* the date in the month, 1..31, of the nth weekday
*/
int dateFromNthWeekdayOfMonth(int year, int month, int weekday, int n)
in
{
assert(1 <= month && month <= 12);
assert(0 <= weekday && weekday <= 6);
assert(1 <= n && n <= 5);
}
body
{
// Get day of the first of the month
auto x = makeDay(year, month - 1, 1);
// Get the week day 0..6 of the first of this month
auto wd = weekDay(makeDate(x, 0));
// Get monthday of first occurrence of weekday in this month
auto mday = weekday - wd + 1;
if (mday < 1)
mday += 7;
// Add in number of weeks
mday += (n - 1) * 7;
// If monthday is more than the number of days in the month,
// back up to 'last' occurrence
if (mday > 28 && mday > daysInMonth(year, month))
{ assert(n == 5);
mday -= 7;
}
return mday;
}
unittest
{
assert(dateFromNthWeekdayOfMonth(2003, 3, 0, 5) == 30);
assert(dateFromNthWeekdayOfMonth(2003, 10, 0, 5) == 26);
assert(dateFromNthWeekdayOfMonth(2004, 3, 0, 5) == 28);
assert(dateFromNthWeekdayOfMonth(2004, 10, 0, 5) == 31);
}
/**************************************
* Determine the number of days in a month, 1..31.
* Params:
* month = 1..12
*/
int daysInMonth(int year, int month)
{
switch (month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
return 31;
case 2:
return 28 + leapYear(year);
case 4:
case 6:
case 9:
case 11:
return 30;
default:
break;
}
return enforce(false, "Invalid month passed to daysInMonth");
}
unittest
{
assert(daysInMonth(2003, 2) == 28);
assert(daysInMonth(2004, 2) == 29);
}
/*************************************
* Converts UTC time into a text string of the form:
* "Www Mmm dd hh:mm:ss GMT+-TZ yyyy".
* For example, "Tue Apr 02 02:04:57 GMT-0800 1996".
* If time is invalid, i.e. is d_time_nan,
* the string "Invalid date" is returned.
*
* Example:
* ------------------------------------
d_time lNow;
char[] lNowString;
// Grab the date and time relative to UTC
lNow = std.date.getUTCtime();
// Convert this into the local date and time for display.
lNowString = std.date.UTCtoString(lNow);
* ------------------------------------
*/
string UTCtoString(d_time time)
{
// Years are supposed to be -285616 .. 285616, or 7 digits
// "Tue Apr 02 02:04:57 GMT-0800 1996"
auto buffer = new char[29 + 7 + 1];
if (time == d_time_nan)
return "Invalid Date";
auto dst = daylightSavingTA(time);
auto offset = localTZA + dst;
auto t = time + offset;
auto sign = '+';
if (offset < 0)
{ sign = '-';
// offset = -offset;
offset = -(localTZA + dst);
}
auto mn = cast(int)(offset / msPerMinute);
auto hr = mn / 60;
mn %= 60;
//printf("hr = %d, offset = %g, localTZA = %g, dst = %g, + = %g\n", hr, offset, localTZA, dst, localTZA + dst);
auto len = sprintf(buffer.ptr,
"%.3s %.3s %02d %02d:%02d:%02d GMT%c%02d%02d %d",
&daystr[weekDay(t) * 3],
&monstr[monthFromTime(t) * 3],
dateFromTime(t),
hourFromTime(t), minFromTime(t), secFromTime(t),
sign, hr, mn,
cast(long)yearFromTime(t));
// Ensure no buggy buffer overflows
//printf("len = %d, buffer.length = %d\n", len, buffer.length);
assert(len < buffer.length);
buffer = buffer[0 .. len];
return assumeUnique(buffer);
}
/// Alias for UTCtoString (deprecated).
deprecated alias UTCtoString toString;
/***********************************
* Converts t into a text string of the form: "Www, dd Mmm yyyy hh:mm:ss UTC".
* If t is invalid, "Invalid date" is returned.
*/
string toUTCString(d_time t)
{
// Years are supposed to be -285616 .. 285616, or 7 digits
// "Tue, 02 Apr 1996 02:04:57 GMT"
auto buffer = new char[25 + 7 + 1];
if (t == d_time_nan)
return "Invalid Date";
auto len = sprintf(buffer.ptr, "%.3s, %02d %.3s %d %02d:%02d:%02d UTC",
&daystr[weekDay(t) * 3], dateFromTime(t),
&monstr[monthFromTime(t) * 3],
yearFromTime(t),
hourFromTime(t), minFromTime(t), secFromTime(t));
// Ensure no buggy buffer overflows
assert(len < buffer.length);
return cast(string) buffer[0 .. len];
}
/************************************
* Converts the date portion of time into a text string of the form: "Www Mmm dd
* yyyy", for example, "Tue Apr 02 1996".
* If time is invalid, "Invalid date" is returned.
*/
string toDateString(d_time time)
{
// Years are supposed to be -285616 .. 285616, or 7 digits
// "Tue Apr 02 1996"
auto buffer = new char[29 + 7 + 1];
if (time == d_time_nan)
return "Invalid Date";
auto dst = daylightSavingTA(time);
auto offset = localTZA + dst;
auto t = time + offset;
auto len = sprintf(buffer.ptr, "%.3s %.3s %02d %d",
&daystr[weekDay(t) * 3],
&monstr[monthFromTime(t) * 3],
dateFromTime(t),
cast(long)yearFromTime(t));
// Ensure no buggy buffer overflows
assert(len < buffer.length);
return cast(string) buffer[0 .. len];
}
/******************************************
* Converts the time portion of t into a text string of the form: "hh:mm:ss
* GMT+-TZ", for example, "02:04:57 GMT-0800".
* If t is invalid, "Invalid date" is returned.
* The input must be in UTC, and the output is in local time.
*/
string toTimeString(d_time time)
{
// "02:04:57 GMT-0800"
auto buffer = new char[17 + 1];
if (time == d_time_nan)
return "Invalid Date";
auto dst = daylightSavingTA(time);
auto offset = localTZA + dst;
auto t = time + offset;
auto sign = '+';
if (offset < 0)
{ sign = '-';
// offset = -offset;
offset = -(localTZA + dst);
}
auto mn = cast(int)(offset / msPerMinute);
auto hr = mn / 60;
mn %= 60;
//printf("hr = %d, offset = %g, localTZA = %g, dst = %g, + = %g\n", hr, offset, localTZA, dst, localTZA + dst);
auto len = sprintf(buffer.ptr, "%02d:%02d:%02d GMT%c%02d%02d",
hourFromTime(t), minFromTime(t), secFromTime(t),
sign, hr, mn);
// Ensure no buggy buffer overflows
assert(len < buffer.length);
// Lop off terminating 0
return cast(string) buffer[0 .. len];
}
/******************************************
* Parses s as a textual date string, and returns it as a d_time. If
* the string is not a valid date, $(D d_time_nan) is returned.
*/
d_time parse(string s)
{
try
{
Date dp;
dp.parse(s);
auto time = makeTime(dp.hour, dp.minute, dp.second, dp.ms);
// Assume UTC if no tzcorrection is set (runnable/testdate).
if (dp.tzcorrection != int.min)
{
time += cast(d_time)(dp.tzcorrection / 100) * msPerHour +
cast(d_time)(dp.tzcorrection % 100) * msPerMinute;
}
auto day = makeDay(dp.year, dp.month - 1, dp.day);
auto result = makeDate(day,time);
return timeClip(result);
}
catch
{
return d_time_nan; // erroneous date string
}
}
extern(C) void std_date_static_this()
{
localTZA = getLocalTZA();
}
version (Win32)
{
private import core.sys.windows.windows;
//import c.time;
/******
* Get current UTC time.
*/
d_time getUTCtime()
{
SYSTEMTIME st;
GetSystemTime(&st); // get time in UTC
return SYSTEMTIME2d_time(&st, 0);
//return c.time.time(null) * ticksPerSecond;
}
static d_time FILETIME2d_time(const FILETIME *ft)
{
SYSTEMTIME st = void;
if (!FileTimeToSystemTime(ft, &st))
return d_time_nan;
return SYSTEMTIME2d_time(&st, 0);
}
FILETIME d_time2FILETIME(d_time dt)
{
static assert(10_000_000 >= ticksPerSecond);
static assert(10_000_000 % ticksPerSecond == 0);
enum ulong ticksFrom1601To1970 = 11_644_473_600UL * ticksPerSecond;
ulong t = (dt + ticksFrom1601To1970) * (10_000_000 / ticksPerSecond);
FILETIME result = void;
result.dwLowDateTime = cast(uint) (t & uint.max);
result.dwHighDateTime = cast(uint) (t >> 32);
return result;
}
unittest
{
auto dt = getUTCtime();
auto ft = d_time2FILETIME(dt);
auto dt1 = FILETIME2d_time(&ft);
assert(dt == dt1, text(dt, " != ", dt1));
}
static d_time SYSTEMTIME2d_time(const SYSTEMTIME *st, d_time t)
{
/* More info: http://delphicikk.atw.hu/listaz.php?id=2667&oldal=52
*/
d_time day = void;
d_time time = void;
if (st.wYear)
{
time = makeTime(st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
day = makeDay(st.wYear, st.wMonth - 1, st.wDay);
}
else
{ /* wYear being 0 is a flag to indicate relative time:
* wMonth is the month 1..12
* wDayOfWeek is weekday 0..6 corresponding to Sunday..Saturday
* wDay is the nth time, 1..5, that wDayOfWeek occurs
*/
auto year = yearFromTime(t);
auto mday = dateFromNthWeekdayOfMonth(year,
st.wMonth, st.wDay, st.wDayOfWeek);
day = makeDay(year, st.wMonth - 1, mday);
time = makeTime(st.wHour, st.wMinute, 0, 0);
}
auto n = makeDate(day,time);
return timeClip(n);
}
d_time getLocalTZA()
{
TIME_ZONE_INFORMATION tzi = void;
/* http://msdn.microsoft.com/library/en-us/sysinfo/base/gettimezoneinformation.asp
* http://msdn2.microsoft.com/en-us/library/ms725481.aspx
*/
auto r = GetTimeZoneInformation(&tzi);
//printf("bias = %d\n", tzi.Bias);
//printf("standardbias = %d\n", tzi.StandardBias);
//printf("daylightbias = %d\n", tzi.DaylightBias);
switch (r)
{
case TIME_ZONE_ID_STANDARD:
return -(tzi.Bias + tzi.StandardBias)
* cast(d_time)(60 * ticksPerSecond);
case TIME_ZONE_ID_DAYLIGHT:
// falthrough
//t = -(tzi.Bias + tzi.DaylightBias) * cast(d_time)(60 * ticksPerSecond);
//break;
case TIME_ZONE_ID_UNKNOWN:
return -(tzi.Bias) * cast(d_time)(60 * ticksPerSecond);
default:
return 0;
}
}
/*
* Get daylight savings time adjust for time dt.
*/
int daylightSavingTA(d_time dt)
{
TIME_ZONE_INFORMATION tzi = void;
d_time ts;
d_time td;
/* http://msdn.microsoft.com/library/en-us/sysinfo/base/gettimezoneinformation.asp
*/
auto r = GetTimeZoneInformation(&tzi);
auto t = 0;
switch (r)
{
case TIME_ZONE_ID_STANDARD:
case TIME_ZONE_ID_DAYLIGHT:
if (tzi.StandardDate.wMonth == 0 ||
tzi.DaylightDate.wMonth == 0)
break;
ts = SYSTEMTIME2d_time(&tzi.StandardDate, dt);
td = SYSTEMTIME2d_time(&tzi.DaylightDate, dt);
if (td <= dt && dt < ts)
{
t = -tzi.DaylightBias * (60 * ticksPerSecond);
//printf("DST is in effect, %d\n", t);
}
else
{
//printf("no DST\n");
}
break;
case TIME_ZONE_ID_UNKNOWN:
// Daylight savings time not used in this time zone
break;
default:
assert(0);
}
return t;
}
}
version (Posix)
{
private import core.sys.posix.time;
private import core.sys.posix.sys.time;
/******
* Get current UTC time.
*/
d_time getUTCtime()
{ timeval tv;
//printf("getUTCtime()\n");
if (gettimeofday(&tv, null))
{ // Some error happened - try time() instead
return time(null) * ticksPerSecond;
}
return tv.tv_sec * cast(d_time)ticksPerSecond +
(tv.tv_usec / (1000000 / cast(d_time)ticksPerSecond));