date.c
25.3 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002, 2007, 2009, 2010, 2011 Free
Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library. If not, see
<http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mailutils/diag.h>
#include <mailutils/util.h>
#include <mailutils/stream.h>
#include <mailutils/errno.h>
#include <mailutils/cstr.h>
#include <mailutils/cctype.h>
#define SECS_PER_DAY 86400
#define ADJUSTMENT -719162L
/* Julian day is the number of days since Jan 1, 4713 BC (ouch!).
Eg. Jan 1, 1900 is: */
#define JULIAN_1900 1721425L
/* Computes the number of days elapsed since January, 1 1900 to the
January, 1 of the given year */
static unsigned
jan1st (int year)
{
year--; /* Do not consider the current year */
return year * 365L
+ year/4L /* Years divisible by 4 are leap years */
+ year/400L /* Years divisible by 400 are always leap years */
- year/100L; /* Years divisible by 100 but not 400 aren't */
}
static int month_start[]=
{ 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
/* Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
31 28 31 30 31 30 31 31 30 31 30 31
*/
#define leap_year(y) ((y) % 4 == 0 && ((y) % 100 != 0 || (y) % 400 == 0))
static int
dayofyear (int year, int month, int day)
{
int leap, month_days;
if (year < 0 || month < 0 || month > 11)
return -1;
leap = leap_year (year);
month_days = month_start[month + 1] - month_start[month]
+ ((month == 2) ? leap : 0);
if (day < 0 || day > month_days)
return -1; /* Illegal Date */
if (month <= 2)
leap = 0;
return month_start[month] + day + leap;
}
/* Returns number of days in a given year */
static int
year_days (int year)
{
return dayofyear (year, 11, 31);
}
static int
julianday (unsigned *pd, int year, int month, int day)
{
int total = dayofyear (year, month, day);
if (total == -1)
return -1;
*pd = JULIAN_1900 + total + jan1st (year);
return 0;
}
static int
dayofweek (int year, int month, int day)
{
unsigned jd;
if (julianday (&jd, year, month, day))
return -1;
/* January 1, 1900 was Monday, hence +1 */
return (jd + 1) % 7;
}
#define ISO_8601_START_WDAY 1 /* Monday */
#define ISO_8601_MAX_WDAY 4 /* Thursday */
#define MAXDAYS 366 /* Max. number of days in a year */
#define ISO_8601_OFF ((MAXDAYS / 7 + 2) * 7)
int
ISO_8601_weekdays (int yday, int wday)
{
return (yday
- (yday - wday + ISO_8601_MAX_WDAY + ISO_8601_OFF) % 7
+ ISO_8601_MAX_WDAY - ISO_8601_START_WDAY);
}
/* Convert struct tm into time_t, taking into account timezone offset. */
/* FIXME: It does not take DST into account */
time_t
mu_tm2time (struct tm *tm, mu_timezone *tz)
{
time_t t;
int day;
day = dayofyear (tm->tm_year, tm->tm_mon, tm->tm_mday - 1);
if (day == -1)
return -1;
t = (day + ADJUSTMENT + jan1st (1900 + tm->tm_year)) * SECS_PER_DAY
+ (tm->tm_hour * 60 + tm->tm_min) * 60 + tm->tm_sec
- (tz ? tz->utc_offset : 0);
return t;
}
/* Convert time 0 at UTC to our localtime, that tells us the offset
of our current timezone from UTC. */
time_t
mu_utc_offset (void)
{
time_t t = 0;
struct tm *tm = gmtime (&t);
return - mktime (tm);
}
static const char *short_month[] =
{
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
static const char *full_month[] =
{
"January", "February", "March", "April",
"May", "June", "July", "August",
"September", "October", "November", "December"
};
static const char *short_wday[] =
{
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};
static const char *full_wday[] =
{
"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday"
};
int
mu_c_streamftime (mu_stream_t str, const char *fmt, struct tm *input_tm,
struct mu_timezone *tz)
{
int rc = 0;
struct tm tm;
/* Copy input TM because it might have been received from gmtime and
the fmt might result in further calls to gmtime which will clobber
it. */
tm = *input_tm;
while (*fmt && rc == 0)
{
size_t len = strcspn (fmt, "%");
if (len)
{
rc = mu_stream_write (str, fmt, len, NULL);
if (rc)
break;
}
fmt += len;
restart:
if (!*fmt || !*++fmt)
break;
switch (*fmt)
{
case 'a':
/* The abbreviated weekday name. */
if (tm.tm_wday < 0 || tm.tm_wday > 6)
rc = ERANGE;
else
rc = mu_stream_write (str, short_wday[tm.tm_wday],
strlen (short_wday[tm.tm_wday]), NULL);
break;
case 'A':
/* The full weekday name. */
if (tm.tm_wday < 0 || tm.tm_wday > 6)
rc = ERANGE;
else
rc = mu_stream_write (str, full_wday[tm.tm_wday],
strlen (full_wday[tm.tm_wday]), NULL);
break;
case 'b':
case 'h':
/* The abbreviated month name. */
if (tm.tm_mon < 0 || tm.tm_mon > 11)
rc = ERANGE;
else
rc = mu_stream_write (str, short_month[tm.tm_mon],
strlen (short_month[tm.tm_mon]), NULL);
break;
case 'B':
/* The full month name. */
if (tm.tm_mon < 0 || tm.tm_mon > 11)
rc = ERANGE;
else
rc = mu_stream_write (str, full_month[tm.tm_mon],
strlen (full_month[tm.tm_mon]), NULL);
break;
case 'c':
/* The preferred date and time representation. */
rc = mu_c_streamftime (str, "%a %b %e %H:%M:%S %Y", &tm, tz);
break;
case 'C':
/* The century number (year/100) as a 2-digit integer. */
rc = mu_stream_printf (str, "%02d", (tm.tm_year + 1900) / 100);
break;
case 'd':
/* The day of the month as a decimal number (range 01 to 31). */
if (tm.tm_mday < 1 || tm.tm_mday > 31)
rc = ERANGE;
else
rc = mu_stream_printf (str, "%02d", tm.tm_mday);
break;
case 'D':
/* Equivalent to %m/%d/%y. */
rc = mu_c_streamftime (str, "%m/%d/%y", &tm, tz);
break;
case 'e':
/* Like %d, the day of the month as a decimal number, but a leading
zero is replaced by a space. */
if (tm.tm_mday < 1 || tm.tm_mday > 31)
rc = ERANGE;
else
rc = mu_stream_printf (str, "%2d", tm.tm_mday);
break;
case 'E':
/* Modifier. The Single Unix Specification mentions %Ec, %EC, %Ex,
%EX, %Ey, and %EY, which are supposed to use a corresponding
locale-dependent alternative representation.
A no-op in POSIX locale */
goto restart;
case 'F':
/* Equivalent to %Y-%m-%d (the ISO 8601 date format). */
rc = mu_c_streamftime (str, "%Y-%m-%d", &tm, tz);
break;
case 'V':
/* The ISO 8601:1988 week number of the current year as a decimal
number range 01 to 53, where week 1 is the first week that has
at least 4 days in the current year, and with Monday as the
first day of the week.
*/
case 'G':
/* The ISO 8601 year with century as a decimal number. The 4-digit
year corresponding to the ISO week number (see %V). This has
the same format and value as %y, except that if the ISO week
number belongs to the previous or next year, that year is used
instead.
*/
case 'g':
/* Like %G, but without century, that is, with a 2-digit year
(00-99). */
{
int year = tm.tm_year + 1900;
int days = ISO_8601_weekdays (tm.tm_yday, tm.tm_wday);
if (days < 0)
{
days = ISO_8601_weekdays (tm.tm_yday + year_days (year - 1),
tm.tm_wday);
year--;
}
else
{
int d = ISO_8601_weekdays (tm.tm_yday - year_days (year),
tm.tm_wday);
if (d >= 0)
{
year++;
days = d;
}
}
switch (*fmt)
{
case 'V':
rc = mu_stream_printf (str, "%02d", days / 7 + 1);
break;
case 'G':
rc = mu_stream_printf (str, "%4d", year);
break;
case 'g':
rc = mu_stream_printf (str, "%02d", year % 100);
}
}
break;
case 'H':
/* The hour as a decimal number using a 24-hour clock (range 00 to
23). */
rc = mu_stream_printf (str, "%02d", tm.tm_hour);
break;
case 'I':
/* The hour as a decimal number using a 12-hour clock (range 01 to
12). */
{
unsigned n = tm.tm_hour % 12;
rc = mu_stream_printf (str, "%02d", n == 0 ? 12 : n);
}
break;
case 'j':
/* The day of the year as a decimal number (range 001 to 366). */
rc = mu_stream_printf (str, "%03d", tm.tm_yday + 1);
break;
case 'k':
/* The hour (24-hour clock) as a decimal number (range 0 to 23);
single digits are preceded by a blank. */
rc = mu_stream_printf (str, "%2d", tm.tm_hour);
break;
case 'l':
/* The hour (12-hour clock) as a decimal number (range 1 to 12);
single digits are preceded by a blank. */
{
unsigned n = tm.tm_hour % 12;
rc = mu_stream_printf (str, "%2d", n == 0 ? 12 : n);
}
break;
case 'm':
/* The month as a decimal number (range 01 to 12). */
rc = mu_stream_printf (str, "%02d", tm.tm_mon + 1);
break;
case 'M':
/* The minute as a decimal number (range 00 to 59). */
rc = mu_stream_printf (str, "%02d", tm.tm_min);
break;
case 'n':
/* A newline character. */
rc = mu_stream_write (str, "\n", 1, NULL);
break;
case 'O':
/* Modifier. The Single Unix Specification mentions %Od, %Oe, %OH,
%OI, %Om, %OM, %OS, %Ou, %OU, %OV, %Ow, %OW, and %Oy, which are
supposed to use alternative numeric symbols.
Hardly of any use for our purposes, hence a no-op. */
goto restart;
case 'p':
/* Either "AM" or "PM" according to the given time value.
Noon is treated as "PM" and midnight as "AM". */
rc = mu_stream_write (str,
tm.tm_hour < 12 ? "AM" : "PM",
2, NULL);
break;
case 'P':
/* Like %p but in lowercase: "am" or "pm". */
rc = mu_stream_write (str,
tm.tm_hour < 12 ? "am" : "pm",
2, NULL);
break;
case 'r':
/* The time in a.m. or p.m. notation, i.e. %I:%M:%S %p. */
rc = mu_c_streamftime (str, "%I:%M:%S %p", &tm, tz);
break;
case 'R':
/* The time in 24-hour notation (%H:%M) */
rc = mu_c_streamftime (str, "%H:%M", &tm, tz);
break;
case 's':
/* The number of seconds since the Epoch */
rc = mu_stream_printf (str, "%lu",
(unsigned long) mu_tm2time (&tm, tz));
break;
case 'S':
/* The second as a decimal number (range 00 to 60) */
rc = mu_stream_printf (str, "%02d", tm.tm_sec);
break;
case 't':
/* A tab character. */
rc = mu_stream_write (str, "\t", 1, NULL);
break;
case 'T':
/* The time in 24-hour notation (%H:%M:%S) */
rc = mu_c_streamftime (str, "%H:%M:%S", &tm, tz);
break;
case 'u':
/* The day of the week as a decimal, range 1 to 7, Monday being 1.
*/
rc = mu_stream_printf (str, "%1d",
tm.tm_wday == 0 ? 7 : tm.tm_wday);
break;
case 'U':
/* The week number of the current year as a decimal number, range
00 to 53, starting with the first Sunday as the first day of
week 01.
*/
rc = mu_stream_printf (str, "%02d",
(tm.tm_yday - tm.tm_wday + 7) / 7);
break;
case 'w':
/* The day of the week as a decimal, range 0 to 6, Sunday being 0.
*/
rc = mu_stream_printf (str, "%01d", tm.tm_wday);
break;
case 'W':
/* The week number of the current year as a decimal number, range
00 to 53, starting with the first Monday as the first day of
week 01. */
rc = mu_stream_printf (str, "%02d",
(tm.tm_yday - (tm.tm_wday - 1 + 7) % 7 + 7) / 7);
break;
/* The preferred date representation without the time:
equivalent to %D */
case 'x':
rc = mu_c_streamftime (str, "%m/%d/%y", &tm, tz);
break;
case 'X':
/* The preferred date representation without the date */
rc = mu_c_streamftime (str, "%H:%M:%S", &tm, tz);
break;
case 'y':
/* The year as a decimal number without a century (range 00 to 99).
*/
rc = mu_stream_printf (str, "%02d", (tm.tm_year + 1900) % 100);
break;
case 'Y':
/* The year as a decimal number including the century. */
rc = mu_stream_printf (str, "%d", tm.tm_year + 1900);
break;
case 'z':
case 'Z':
/* The time-zone as hour offset from GMT, for formatting RFC-822
dates (e.g. "%a, %d %b %Y %H:%M:%S %z") */
{
int utc_off = tz ? tz->utc_offset : mu_utc_offset ();
int sign;
if (utc_off < 0)
{
sign = '-';
utc_off = - utc_off;
}
else
sign = '+';
utc_off /= 60;
rc = mu_stream_printf (str, "%c%02u%02u", sign,
utc_off / 60, utc_off % 60);
}
break;
case '%':
/* A literal '%' character. */
rc = mu_stream_write (str, "%", 1, NULL);
break;
case '$':
/* Ignored for compatibilty with mu_scan_datetime */
break;
case '+':
/* Not supported (date and time in date(1) format. */
default:
rc = mu_stream_write (str, fmt-1, 2, NULL);
break;
}
fmt++;
}
/* Restore input tm */
*input_tm = tm;
return rc;
}
static int
_mu_short_weekday_string (const char *str)
{
int i;
for (i = 0; i < 7; i++)
{
if (mu_c_strncasecmp (str, short_wday[i], 3) == 0)
return i;
}
return -1;
}
static int
_mu_full_weekday_string (const char *str, char **endp)
{
int i;
for (i = 0; i < 7; i++)
{
if (mu_c_strcasecmp (str, full_wday[i]) == 0)
{
if (endp)
*endp = (char*) (str + strlen (full_wday[i]));
return i;
}
}
return -1;
}
static int
_mu_short_month_string (const char *str)
{
int i;
for (i = 0; i < 12; i++)
{
if (mu_c_strncasecmp (str, short_month[i], 3) == 0)
return i;
}
return -1;
}
static int
_mu_full_month_string (const char *str, char **endp)
{
int i;
for (i = 0; i < 12; i++)
{
if (mu_c_strcasecmp (str, full_month[i]) == 0)
{
if (endp)
*endp = (char*) (str + strlen (full_month[i]));
return i;
}
}
return -1;
}
int
get_num (const char *str, char **endp, int ndig, int minval, int maxval,
int *pn)
{
int x = 0;
int i;
errno = 0;
for (i = 0; i < ndig && *str && mu_isdigit (*str); str++, i++)
x = x * 10 + *str - '0';
*endp = (char*) str;
if (i == 0)
return -1;
else if (pn)
*pn = i;
else if (i != ndig)
return -1;
if (x < minval || x > maxval)
return -1;
return x;
}
#define DT_YEAR 0x01
#define DT_MONTH 0x02
#define DT_MDAY 0x04
#define DT_WDAY 0x08
#define DT_HOUR 0x10
#define DT_MIN 0x20
#define DT_SEC 0x40
#define ST_NON -1
#define ST_OPT 0
#define ST_ALT 1
struct save_input
{
int state;
const char *input;
};
static int
push_input (mu_list_t *plist, int state, const char *input)
{
mu_list_t list = *plist;
struct save_input *inp = malloc (sizeof (*inp));
if (!inp)
return ENOMEM;
if (!list)
{
int rc = mu_list_create (&list);
if (rc)
{
free (inp);
return rc;
}
mu_list_set_destroy_item (list, mu_list_free_item);
*plist = list;
}
inp->state = state;
inp->input = input;
return mu_list_push (list, (void*)inp);
}
static int
peek_state (mu_list_t list, int *state, const char **input)
{
int rc;
struct save_input *inp;
rc = mu_list_tail (list, (void**)&inp);
if (rc)
return rc;
*state = inp->state;
if (input)
*input = inp->input;
return 0;
}
static int
pop_input (mu_list_t list, int *state, const char **input)
{
int rc;
struct save_input *inp;
rc = mu_list_pop (list, (void**)&inp);
if (rc)
return rc;
*state = inp->state;
if (input)
*input = inp->input;
return 0;
}
static int
bracket_to_state (int c)
{
switch (c)
{
case '[':
case ']':
return ST_OPT;
case '(':
case ')':
return ST_ALT;
}
return ST_NON;
}
static int
state_to_closing_bracket (int st)
{
switch (st)
{
case ST_OPT:
return ']';
case ST_ALT:
return ')';
}
return '?';
}
static int
scan_recovery (const char *fmt, mu_list_t *plist, int skip_alt,
const char **endp,
const char **input)
{
int c, rc = 0;
int nesting_level = 1;
int st;
const char *p;
while (*fmt)
{
c = *fmt++;
if (c == '%')
{
c = *fmt++;
if (!c)
{
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: %% at the end of input",
__FILE__, __LINE__));
rc = MU_ERR_FORMAT;
break;
}
switch (c)
{
case '[':
case '(':
nesting_level++;
rc = push_input (plist, bracket_to_state (c), NULL);
break;
case ')':
case ']':
rc = pop_input (*plist, &st, &p);
if (rc || st != bracket_to_state (c))
{
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: %%%c out of context",
__FILE__, __LINE__, c));
rc = MU_ERR_FORMAT;
break;
}
if (--nesting_level == 0)
{
*endp = fmt;
if (skip_alt)
return 0;
*input = p;
if (st == ST_ALT)
{
if (*fmt == '%' && (fmt[1] == '|' || fmt[1] == ']'))
return 0;
return MU_ERR_PARSE; /* No match found */
}
return 0;
}
break;
case '|':
if (skip_alt)
continue;
if (nesting_level == 1)
{
*endp = fmt;
return peek_state (*plist, &st, input);
}
break;
case '\\':
if (*++fmt == 0)
{
peek_state (*plist, &st, NULL);
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: missing closing %%%c",
__FILE__, __LINE__,
state_to_closing_bracket (st)));
return MU_ERR_FORMAT;
}
}
}
}
peek_state (*plist, &st, NULL);
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: missing closing %%%c",
__FILE__, __LINE__,
state_to_closing_bracket (st)));
return MU_ERR_FORMAT;
}
int
mu_scan_datetime (const char *input, const char *fmt,
struct tm *tm, struct mu_timezone *tz, char **endp)
{
int rc = 0;
char *p;
int n;
int c;
int st;
int recovery = 0;
int eof_ok = 0;
int datetime_parts = 0;
mu_list_t save_input_list = NULL;
memset (tm, 0, sizeof *tm);
#ifdef HAVE_STRUCT_TM_TM_ISDST
tm->tm_isdst = -1; /* unknown. */
#endif
/* provide default timezone, in case it is not supplied in input */
if (tz)
{
memset (tz, 0, sizeof *tz);
tz->utc_offset = mu_utc_offset ();
}
/* Skip leading whitespace */
input = mu_str_skip_class (input, MU_CTYPE_BLANK);
for (; *fmt && rc == 0; fmt++)
{
if (mu_isspace (*fmt))
{
fmt = mu_str_skip_class (fmt, MU_CTYPE_BLANK);
input = mu_str_skip_class (input, MU_CTYPE_BLANK);
if (!*fmt)
break;
}
eof_ok = 0;
if (*fmt == '%')
{
c = *++fmt;
if (!c)
{
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: %% at the end of input",
__FILE__, __LINE__));
rc = MU_ERR_FORMAT;
break;
}
switch (c)
{
case 'a':
/* The abbreviated weekday name. */
n = _mu_short_weekday_string (input);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_wday = n;
datetime_parts |= DT_WDAY;
input += 3;
}
break;
case 'A':
/* The full weekday name. */
n = _mu_full_weekday_string (input, &p);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_wday = n;
datetime_parts |= DT_WDAY;
input = p;
}
break;
case 'b':
/* The abbreviated month name. */
n = _mu_short_month_string (input);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_mon = n;
datetime_parts |= DT_MONTH;
input += 3;
}
break;
case 'B':
/* The full month name. */
n = _mu_full_month_string (input, &p);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_mon = n;
datetime_parts |= DT_MONTH;
input = p;
}
break;
case 'd':
/* The day of the month as a decimal number (range 01 to 31). */
n = get_num (input, &p, 2, 1, 31, NULL);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_mday = n;
datetime_parts |= DT_MDAY;
input = p;
}
break;
case 'e':
/* Like %d, the day of the month as a decimal number, but a
leading zero is replaced by a space. */
{
int ndig;
n = get_num (input, &p, 2, 1, 31, &ndig);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_mday = n;
datetime_parts |= DT_MDAY;
input = p;
}
}
break;
case 'H':
/* The hour as a decimal number using a 24-hour clock (range
00 to 23). */
n = get_num (input, &p, 2, 0, 23, NULL);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_hour = n;
datetime_parts |= DT_HOUR;
input = p;
}
break;
case 'm':
/* The month as a decimal number (range 01 to 12). */
n = get_num (input, &p, 2, 1, 12, NULL);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_mon = n - 1;
datetime_parts |= DT_MONTH;
input = p;
}
break;
case 'M':
/* The minute as a decimal number (range 00 to 59). */
n = get_num (input, &p, 2, 0, 59, NULL);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_min = n;
datetime_parts |= DT_MIN;
input = p;
}
break;
case 'S':
/* The second as a decimal number (range 00 to 60) */
n = get_num (input, &p, 2, 0, 60, NULL);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
tm->tm_sec = n;
datetime_parts |= DT_SEC;
input = p;
}
break;
case 'Y':
/* The year as a decimal number including the century. */
errno = 0;
n = strtoul (input, &p, 10);
if (errno || p == input)
rc = MU_ERR_PARSE;
else
{
tm->tm_year = n - 1900;
datetime_parts |= DT_YEAR;
input = p;
}
break;
case 'z':
/* The time-zone as hour offset from GMT */
{
int sign = 1;
int hr;
if (*input == '+')
input++;
else if (*input == '-')
{
input++;
sign = -1;
}
n = get_num (input, &p, 2, 0, 11, NULL);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
input = p;
hr = n;
n = get_num (input, &p, 2, 0, 59, NULL);
if (n == -1)
rc = MU_ERR_PARSE;
else
{
input = p;
if (tz)
tz->utc_offset = sign * (hr * 60 + n) * 60;
}
}
}
break;
case '%':
if (*input == '%')
input++;
else
rc = MU_ERR_PARSE;
break;
rc = push_input (&save_input_list, ST_ALT, (void*)input);
break;
case '(':
case '[':
rc = push_input (&save_input_list, bracket_to_state (c),
(void*)input);
break;
case ')':
case ']':
if (pop_input (save_input_list, &st, NULL))
{
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: unbalanced %%%c near %s",
__FILE__, __LINE__, c, fmt));
rc = MU_ERR_FORMAT;
}
else if (st != bracket_to_state (c))
{
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: %%%c out of context",
__FILE__, __LINE__, c));
rc = MU_ERR_FORMAT;
}
break;
case '|':
rc = scan_recovery (fmt, &save_input_list, 1, &fmt, NULL);
if (rc == 0)
fmt--;
break;
case '$':
eof_ok = 1;
break;
case '\\':
c = *++fmt;
if (!c)
{
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: %% at the end of input",
__FILE__, __LINE__));
rc = MU_ERR_FORMAT;
}
else if (c == *input)
input++;
else
rc = MU_ERR_PARSE;
break;
case '?':
input++;
break;
default:
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: unrecognized conversion type"
" near %s",
__FILE__, __LINE__, fmt));
rc = MU_ERR_FORMAT;
break;
}
if (eof_ok && rc == 0 && *input == 0)
break;
}
else if (!recovery && *input != *fmt)
rc = MU_ERR_PARSE;
else
input++;
if (rc == MU_ERR_PARSE && !mu_list_is_empty (save_input_list))
{
rc = scan_recovery (fmt, &save_input_list, 0, &fmt, &input);
if (rc == 0)
--fmt;
}
}
if (!mu_list_is_empty (save_input_list))
{
mu_debug (MU_DEBCAT_MAILBOX, MU_DEBUG_ERROR,
("%s:%d: error in format: closing bracket missing",
__FILE__, __LINE__));
rc = MU_ERR_FORMAT;
}
mu_list_destroy (&save_input_list);
if (rc == 0 && recovery)
rc = MU_ERR_PARSE;
if (!eof_ok && rc == 0 && *input == 0 && *fmt)
rc = MU_ERR_PARSE;
if ((datetime_parts & (DT_YEAR|DT_MONTH|DT_MDAY)) ==
(DT_YEAR|DT_MONTH|DT_MDAY))
{
if (!(datetime_parts & DT_WDAY))
tm->tm_wday = dayofweek (tm->tm_year + 1900, tm->tm_mon, tm->tm_mday);
tm->tm_yday = dayofyear (tm->tm_year + 1900, tm->tm_mon, tm->tm_mday);
}
if (endp)
*endp = (char*) input;
return rc;
}