2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
10 * This is like mktime, but without normalization of tm_wday and tm_yday.
12 static time_t tm_to_time_t(const struct tm
*tm
)
14 static const int mdays
[] = {
15 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
17 int year
= tm
->tm_year
- 70;
18 int month
= tm
->tm_mon
;
19 int day
= tm
->tm_mday
;
21 if (year
< 0 || year
> 129) /* algo only works for 1970-2099 */
23 if (month
< 0 || month
> 11) /* array bounds */
25 if (month
< 2 || (year
+ 2) % 4)
27 if (tm
->tm_hour
< 0 || tm
->tm_min
< 0 || tm
->tm_sec
< 0)
29 return (year
* 365 + (year
+ 1) / 4 + mdays
[month
] + day
) * 24*60*60UL +
30 tm
->tm_hour
* 60*60 + tm
->tm_min
* 60 + tm
->tm_sec
;
33 static const char *month_names
[] = {
34 "January", "February", "March", "April", "May", "June",
35 "July", "August", "September", "October", "November", "December"
38 static const char *weekday_names
[] = {
39 "Sundays", "Mondays", "Tuesdays", "Wednesdays", "Thursdays", "Fridays", "Saturdays"
42 static time_t gm_time_t(unsigned long time
, int tz
)
46 minutes
= tz
< 0 ? -tz
: tz
;
47 minutes
= (minutes
/ 100)*60 + (minutes
% 100);
48 minutes
= tz
< 0 ? -minutes
: minutes
;
49 return time
+ minutes
* 60;
53 * The "tz" thing is passed in as this strange "decimal parse of tz"
54 * thing, which means that tz -0100 is passed in as the integer -100,
55 * even though it means "sixty minutes off"
57 static struct tm
*time_to_tm(unsigned long time
, int tz
)
59 time_t t
= gm_time_t(time
, tz
);
64 * What value of "tz" was in effect back then at "time" in the
67 static int local_tzoffset(unsigned long time
)
75 t_local
= tm_to_time_t(&tm
);
78 return 0; /* error; just use +0000 */
86 offset
/= 60; /* in minutes */
87 offset
= (offset
% 60) + ((offset
/ 60) * 100);
88 return offset
* eastwest
;
91 void show_date_relative(unsigned long time
, int tz
,
92 const struct timeval
*now
,
93 struct strbuf
*timebuf
)
96 if (now
->tv_sec
< time
) {
97 strbuf_addstr(timebuf
, _("in the future"));
100 diff
= now
->tv_sec
- time
;
103 Q_("%lu second ago", "%lu seconds ago", diff
), diff
);
106 /* Turn it into minutes */
107 diff
= (diff
+ 30) / 60;
110 Q_("%lu minute ago", "%lu minutes ago", diff
), diff
);
113 /* Turn it into hours */
114 diff
= (diff
+ 30) / 60;
117 Q_("%lu hour ago", "%lu hours ago", diff
), diff
);
120 /* We deal with number of days from here on */
121 diff
= (diff
+ 12) / 24;
124 Q_("%lu day ago", "%lu days ago", diff
), diff
);
127 /* Say weeks for the past 10 weeks or so */
130 Q_("%lu week ago", "%lu weeks ago", (diff
+ 3) / 7),
134 /* Say months for the past 12 months or so */
137 Q_("%lu month ago", "%lu months ago", (diff
+ 15) / 30),
141 /* Give years and months for 5 years or so */
143 unsigned long totalmonths
= (diff
* 12 * 2 + 365) / (365 * 2);
144 unsigned long years
= totalmonths
/ 12;
145 unsigned long months
= totalmonths
% 12;
147 struct strbuf sb
= STRBUF_INIT
;
148 strbuf_addf(&sb
, Q_("%lu year", "%lu years", years
), years
);
150 /* TRANSLATORS: "%s" is "<n> years" */
151 Q_("%s, %lu month ago", "%s, %lu months ago", months
),
156 Q_("%lu year ago", "%lu years ago", years
), years
);
159 /* Otherwise, just years. Centuries is probably overkill. */
161 Q_("%lu year ago", "%lu years ago", (diff
+ 183) / 365),
165 struct date_mode
*date_mode_from_type(enum date_mode_type type
)
167 static struct date_mode mode
;
168 if (type
== DATE_STRFTIME
)
169 die("BUG: cannot create anonymous strftime date_mode struct");
175 const char *show_date(unsigned long time
, int tz
, const struct date_mode
*mode
)
178 static struct strbuf timebuf
= STRBUF_INIT
;
181 tz
= local_tzoffset(time
);
183 if (mode
->type
== DATE_RAW
) {
184 strbuf_reset(&timebuf
);
185 strbuf_addf(&timebuf
, "%lu %+05d", time
, tz
);
189 if (mode
->type
== DATE_RELATIVE
) {
192 strbuf_reset(&timebuf
);
193 gettimeofday(&now
, NULL
);
194 show_date_relative(time
, tz
, &now
, &timebuf
);
198 tm
= time_to_tm(time
, tz
);
200 tm
= time_to_tm(0, 0);
204 strbuf_reset(&timebuf
);
205 if (mode
->type
== DATE_SHORT
)
206 strbuf_addf(&timebuf
, "%04d-%02d-%02d", tm
->tm_year
+ 1900,
207 tm
->tm_mon
+ 1, tm
->tm_mday
);
208 else if (mode
->type
== DATE_ISO8601
)
209 strbuf_addf(&timebuf
, "%04d-%02d-%02d %02d:%02d:%02d %+05d",
213 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
,
215 else if (mode
->type
== DATE_ISO8601_STRICT
) {
216 char sign
= (tz
>= 0) ? '+' : '-';
218 strbuf_addf(&timebuf
, "%04d-%02d-%02dT%02d:%02d:%02d%c%02d:%02d",
222 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
,
223 sign
, tz
/ 100, tz
% 100);
224 } else if (mode
->type
== DATE_RFC2822
)
225 strbuf_addf(&timebuf
, "%.3s, %d %.3s %d %02d:%02d:%02d %+05d",
226 weekday_names
[tm
->tm_wday
], tm
->tm_mday
,
227 month_names
[tm
->tm_mon
], tm
->tm_year
+ 1900,
228 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
, tz
);
229 else if (mode
->type
== DATE_STRFTIME
)
230 strbuf_addftime(&timebuf
, mode
->strftime_fmt
, tm
);
232 strbuf_addf(&timebuf
, "%.3s %.3s %d %02d:%02d:%02d %d%c%+05d",
233 weekday_names
[tm
->tm_wday
],
234 month_names
[tm
->tm_mon
],
236 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
,
238 mode
->local
? 0 : ' ',
244 * Check these. And note how it doesn't do the summer-time conversion.
246 * In my world, it's always summer, and things are probably a bit off
249 static const struct {
253 } timezone_names
[] = {
254 { "IDLW", -12, 0, }, /* International Date Line West */
255 { "NT", -11, 0, }, /* Nome */
256 { "CAT", -10, 0, }, /* Central Alaska */
257 { "HST", -10, 0, }, /* Hawaii Standard */
258 { "HDT", -10, 1, }, /* Hawaii Daylight */
259 { "YST", -9, 0, }, /* Yukon Standard */
260 { "YDT", -9, 1, }, /* Yukon Daylight */
261 { "PST", -8, 0, }, /* Pacific Standard */
262 { "PDT", -8, 1, }, /* Pacific Daylight */
263 { "MST", -7, 0, }, /* Mountain Standard */
264 { "MDT", -7, 1, }, /* Mountain Daylight */
265 { "CST", -6, 0, }, /* Central Standard */
266 { "CDT", -6, 1, }, /* Central Daylight */
267 { "EST", -5, 0, }, /* Eastern Standard */
268 { "EDT", -5, 1, }, /* Eastern Daylight */
269 { "AST", -3, 0, }, /* Atlantic Standard */
270 { "ADT", -3, 1, }, /* Atlantic Daylight */
271 { "WAT", -1, 0, }, /* West Africa */
273 { "GMT", 0, 0, }, /* Greenwich Mean */
274 { "UTC", 0, 0, }, /* Universal (Coordinated) */
275 { "Z", 0, 0, }, /* Zulu, alias for UTC */
277 { "WET", 0, 0, }, /* Western European */
278 { "BST", 0, 1, }, /* British Summer */
279 { "CET", +1, 0, }, /* Central European */
280 { "MET", +1, 0, }, /* Middle European */
281 { "MEWT", +1, 0, }, /* Middle European Winter */
282 { "MEST", +1, 1, }, /* Middle European Summer */
283 { "CEST", +1, 1, }, /* Central European Summer */
284 { "MESZ", +1, 1, }, /* Middle European Summer */
285 { "FWT", +1, 0, }, /* French Winter */
286 { "FST", +1, 1, }, /* French Summer */
287 { "EET", +2, 0, }, /* Eastern Europe, USSR Zone 1 */
288 { "EEST", +2, 1, }, /* Eastern European Daylight */
289 { "WAST", +7, 0, }, /* West Australian Standard */
290 { "WADT", +7, 1, }, /* West Australian Daylight */
291 { "CCT", +8, 0, }, /* China Coast, USSR Zone 7 */
292 { "JST", +9, 0, }, /* Japan Standard, USSR Zone 8 */
293 { "EAST", +10, 0, }, /* Eastern Australian Standard */
294 { "EADT", +10, 1, }, /* Eastern Australian Daylight */
295 { "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */
296 { "NZT", +12, 0, }, /* New Zealand */
297 { "NZST", +12, 0, }, /* New Zealand Standard */
298 { "NZDT", +12, 1, }, /* New Zealand Daylight */
299 { "IDLE", +12, 0, }, /* International Date Line East */
302 static int match_string(const char *date
, const char *str
)
306 for (i
= 0; *date
; date
++, str
++, i
++) {
309 if (toupper(*date
) == toupper(*str
))
318 static int skip_alpha(const char *date
)
323 } while (isalpha(date
[i
]));
328 * Parse month, weekday, or timezone name
330 static int match_alpha(const char *date
, struct tm
*tm
, int *offset
)
334 for (i
= 0; i
< 12; i
++) {
335 int match
= match_string(date
, month_names
[i
]);
342 for (i
= 0; i
< 7; i
++) {
343 int match
= match_string(date
, weekday_names
[i
]);
350 for (i
= 0; i
< ARRAY_SIZE(timezone_names
); i
++) {
351 int match
= match_string(date
, timezone_names
[i
].name
);
352 if (match
>= 3 || match
== strlen(timezone_names
[i
].name
)) {
353 int off
= timezone_names
[i
].offset
;
355 /* This is bogus, but we like summer */
356 off
+= timezone_names
[i
].dst
;
358 /* Only use the tz name offset if we don't have anything better */
366 if (match_string(date
, "PM") == 2) {
367 tm
->tm_hour
= (tm
->tm_hour
% 12) + 12;
371 if (match_string(date
, "AM") == 2) {
372 tm
->tm_hour
= (tm
->tm_hour
% 12) + 0;
377 return skip_alpha(date
);
380 static int is_date(int year
, int month
, int day
, struct tm
*now_tm
, time_t now
, struct tm
*tm
)
382 if (month
> 0 && month
< 13 && day
> 0 && day
< 32) {
383 struct tm check
= *tm
;
384 struct tm
*r
= (now_tm
? &check
: tm
);
387 r
->tm_mon
= month
- 1;
392 r
->tm_year
= now_tm
->tm_year
;
394 else if (year
>= 1970 && year
< 2100)
395 r
->tm_year
= year
- 1900;
396 else if (year
> 70 && year
< 100)
399 r
->tm_year
= year
+ 100;
405 specified
= tm_to_time_t(r
);
407 /* Be it commit time or author time, it does not make
408 * sense to specify timestamp way into the future. Make
409 * sure it is not later than ten days from now...
411 if ((specified
!= -1) && (now
+ 10*24*3600 < specified
))
413 tm
->tm_mon
= r
->tm_mon
;
414 tm
->tm_mday
= r
->tm_mday
;
416 tm
->tm_year
= r
->tm_year
;
422 static int match_multi_number(unsigned long num
, char c
, const char *date
,
423 char *end
, struct tm
*tm
, time_t now
)
426 struct tm
*refuse_future
;
429 num2
= strtol(end
+1, &end
, 10);
431 if (*end
== c
&& isdigit(end
[1]))
432 num3
= strtol(end
+1, &end
, 10);
439 if (num
< 25 && num2
>= 0 && num2
< 60 && num3
>= 0 && num3
<= 60) {
452 refuse_future
= NULL
;
453 if (gmtime_r(&now
, &now_tm
))
454 refuse_future
= &now_tm
;
458 if (is_date(num
, num2
, num3
, NULL
, now
, tm
))
461 if (is_date(num
, num3
, num2
, NULL
, now
, tm
))
464 /* Our eastern European friends say dd.mm.yy[yy]
465 * is the norm there, so giving precedence to
466 * mm/dd/yy[yy] form only when separator is not '.'
469 is_date(num3
, num
, num2
, refuse_future
, now
, tm
))
471 /* European dd.mm.yy[yy] or funny US dd/mm/yy[yy] */
472 if (is_date(num3
, num2
, num
, refuse_future
, now
, tm
))
474 /* Funny European mm.dd.yy */
476 is_date(num3
, num
, num2
, refuse_future
, now
, tm
))
484 * Have we filled in any part of the time/date yet?
485 * We just do a binary 'and' to see if the sign bit
486 * is set in all the values.
488 static inline int nodate(struct tm
*tm
)
490 return (tm
->tm_year
&
499 * We've seen a digit. Time? Year? Date?
501 static int match_digit(const char *date
, struct tm
*tm
, int *offset
, int *tm_gmt
)
507 num
= strtoul(date
, &end
, 10);
510 * Seconds since 1970? We trigger on that for any numbers with
511 * more than 8 digits. This is because we don't want to rule out
512 * numbers like 20070606 as a YYYYMMDD date.
514 if (num
>= 100000000 && nodate(tm
)) {
516 if (gmtime_r(&time
, tm
)) {
523 * Check for special formats: num[-.:/]num[same]num
530 if (isdigit(end
[1])) {
531 int match
= match_multi_number(num
, *end
, date
, end
, tm
, 0);
538 * None of the special formats? Try to guess what
539 * the number meant. We use the number of digits
540 * to make a more educated guess..
545 } while (isdigit(date
[n
]));
547 /* Four-digit year or a timezone? */
549 if (num
<= 1400 && *offset
== -1) {
550 unsigned int minutes
= num
% 100;
551 unsigned int hours
= num
/ 100;
552 *offset
= hours
*60 + minutes
;
553 } else if (num
> 1900 && num
< 2100)
554 tm
->tm_year
= num
- 1900;
559 * Ignore lots of numerals. We took care of 4-digit years above.
560 * Days or months must be one or two digits.
566 * NOTE! We will give precedence to day-of-month over month or
567 * year numbers in the 1-12 range. So 05 is always "mday 5",
568 * unless we already have a mday..
570 * IOW, 01 Apr 05 parses as "April 1st, 2005".
572 if (num
> 0 && num
< 32 && tm
->tm_mday
< 0) {
577 /* Two-digit year? */
578 if (n
== 2 && tm
->tm_year
< 0) {
579 if (num
< 10 && tm
->tm_mday
>= 0) {
580 tm
->tm_year
= num
+ 100;
589 if (num
> 0 && num
< 13 && tm
->tm_mon
< 0)
595 static int match_tz(const char *date
, int *offp
)
598 int hour
= strtoul(date
+ 1, &end
, 10);
599 int n
= end
- (date
+ 1);
607 min
= 99; /* random crap */
608 } else if (*end
== ':') {
610 min
= strtoul(end
+ 1, &end
, 10);
611 if (end
- (date
+ 1) != 5)
612 min
= 99; /* random crap */
613 } /* otherwise we parsed "hh" */
616 * Don't accept any random crap. Even though some places have
617 * offset larger than 12 hours (e.g. Pacific/Kiritimati is at
618 * UTC+14), there is something wrong if hour part is much
619 * larger than that. We might also want to check that the
620 * minutes are divisible by 15 or something too. (Offset of
621 * Kathmandu, Nepal is UTC+5:45)
623 if (min
< 60 && hour
< 24) {
624 int offset
= hour
* 60 + min
;
632 static void date_string(unsigned long date
, int offset
, struct strbuf
*buf
)
640 strbuf_addf(buf
, "%lu %c%02d%02d", date
, sign
, offset
/ 60, offset
% 60);
644 * Parse a string like "0 +0000" as ancient timestamp near epoch, but
645 * only when it appears not as part of any other string.
647 static int match_object_header_date(const char *date
, unsigned long *timestamp
, int *offset
)
653 if (*date
< '0' || '9' < *date
)
655 stamp
= strtoul(date
, &end
, 10);
656 if (*end
!= ' ' || stamp
== ULONG_MAX
|| (end
[1] != '+' && end
[1] != '-'))
659 ofs
= strtol(date
, &end
, 10);
660 if ((*end
!= '\0' && (*end
!= '\n')) || end
!= date
+ 4)
662 ofs
= (ofs
/ 100) * 60 + (ofs
% 100);
670 /* Gr. strptime is crap for this; it doesn't have a way to require RFC2822
671 (i.e. English) day/month names, and it doesn't work correctly with %z. */
672 int parse_date_basic(const char *date
, unsigned long *timestamp
, int *offset
)
676 unsigned long dummy_timestamp
;
680 timestamp
= &dummy_timestamp
;
682 offset
= &dummy_offset
;
684 memset(&tm
, 0, sizeof(tm
));
696 !match_object_header_date(date
+ 1, timestamp
, offset
))
697 return 0; /* success */
700 unsigned char c
= *date
;
702 /* Stop at end of string or newline */
707 match
= match_alpha(date
, &tm
, offset
);
709 match
= match_digit(date
, &tm
, offset
, &tm_gmt
);
710 else if ((c
== '-' || c
== '+') && isdigit(date
[1]))
711 match
= match_tz(date
, offset
);
721 /* do not use mktime(), which uses local timezone, here */
722 *timestamp
= tm_to_time_t(&tm
);
723 if (*timestamp
== -1)
729 /* gmtime_r() in match_digit() may have clobbered it */
731 temp_time
= mktime(&tm
);
732 if ((time_t)*timestamp
> temp_time
) {
733 *offset
= ((time_t)*timestamp
- temp_time
) / 60;
735 *offset
= -(int)((temp_time
- (time_t)*timestamp
) / 60);
740 *timestamp
-= *offset
* 60;
741 return 0; /* success */
744 int parse_expiry_date(const char *date
, unsigned long *timestamp
)
748 if (!strcmp(date
, "never") || !strcmp(date
, "false"))
750 else if (!strcmp(date
, "all") || !strcmp(date
, "now"))
752 * We take over "now" here, which usually translates
753 * to the current timestamp. This is because the user
754 * really means to expire everything she has done in
755 * the past, and by definition reflogs are the record
756 * of the past, and there is nothing from the future
759 *timestamp
= ULONG_MAX
;
761 *timestamp
= approxidate_careful(date
, &errors
);
766 int parse_date(const char *date
, struct strbuf
*result
)
768 unsigned long timestamp
;
770 if (parse_date_basic(date
, ×tamp
, &offset
))
772 date_string(timestamp
, offset
, result
);
776 static enum date_mode_type
parse_date_type(const char *format
, const char **end
)
778 if (skip_prefix(format
, "relative", end
))
779 return DATE_RELATIVE
;
780 if (skip_prefix(format
, "iso8601-strict", end
) ||
781 skip_prefix(format
, "iso-strict", end
))
782 return DATE_ISO8601_STRICT
;
783 if (skip_prefix(format
, "iso8601", end
) ||
784 skip_prefix(format
, "iso", end
))
786 if (skip_prefix(format
, "rfc2822", end
) ||
787 skip_prefix(format
, "rfc", end
))
789 if (skip_prefix(format
, "short", end
))
791 if (skip_prefix(format
, "default", end
))
793 if (skip_prefix(format
, "raw", end
))
795 if (skip_prefix(format
, "format", end
))
796 return DATE_STRFTIME
;
798 die("unknown date format %s", format
);
801 void parse_date_format(const char *format
, struct date_mode
*mode
)
805 /* historical alias */
806 if (!strcmp(format
, "local"))
807 format
= "default-local";
809 mode
->type
= parse_date_type(format
, &p
);
812 if (skip_prefix(p
, "-local", &p
))
815 if (mode
->type
== DATE_STRFTIME
) {
816 if (!skip_prefix(p
, ":", &p
))
817 die("date format missing colon separator: %s", format
);
818 mode
->strftime_fmt
= xstrdup(p
);
820 die("unknown date format %s", format
);
823 void datestamp(struct strbuf
*out
)
830 offset
= tm_to_time_t(localtime(&now
)) - now
;
833 date_string(now
, offset
, out
);
837 * Relative time update (eg "2 days ago"). If we haven't set the time
838 * yet, we need to set it from current time.
840 static unsigned long update_tm(struct tm
*tm
, struct tm
*now
, unsigned long sec
)
845 tm
->tm_mday
= now
->tm_mday
;
847 tm
->tm_mon
= now
->tm_mon
;
848 if (tm
->tm_year
< 0) {
849 tm
->tm_year
= now
->tm_year
;
850 if (tm
->tm_mon
> now
->tm_mon
)
854 n
= mktime(tm
) - sec
;
859 static void date_now(struct tm
*tm
, struct tm
*now
, int *num
)
861 update_tm(tm
, now
, 0);
864 static void date_yesterday(struct tm
*tm
, struct tm
*now
, int *num
)
866 update_tm(tm
, now
, 24*60*60);
869 static void date_time(struct tm
*tm
, struct tm
*now
, int hour
)
871 if (tm
->tm_hour
< hour
)
872 date_yesterday(tm
, now
, NULL
);
878 static void date_midnight(struct tm
*tm
, struct tm
*now
, int *num
)
880 date_time(tm
, now
, 0);
883 static void date_noon(struct tm
*tm
, struct tm
*now
, int *num
)
885 date_time(tm
, now
, 12);
888 static void date_tea(struct tm
*tm
, struct tm
*now
, int *num
)
890 date_time(tm
, now
, 17);
893 static void date_pm(struct tm
*tm
, struct tm
*now
, int *num
)
904 tm
->tm_hour
= (hour
% 12) + 12;
907 static void date_am(struct tm
*tm
, struct tm
*now
, int *num
)
918 tm
->tm_hour
= (hour
% 12);
921 static void date_never(struct tm
*tm
, struct tm
*now
, int *num
)
927 static const struct special
{
929 void (*fn
)(struct tm
*, struct tm
*, int *);
931 { "yesterday", date_yesterday
},
932 { "noon", date_noon
},
933 { "midnight", date_midnight
},
937 { "never", date_never
},
942 static const char *number_name
[] = {
943 "zero", "one", "two", "three", "four",
944 "five", "six", "seven", "eight", "nine", "ten",
947 static const struct typelen
{
954 { "days", 24*60*60 },
955 { "weeks", 7*24*60*60 },
959 static const char *approxidate_alpha(const char *date
, struct tm
*tm
, struct tm
*now
, int *num
, int *touched
)
961 const struct typelen
*tl
;
962 const struct special
*s
;
963 const char *end
= date
;
966 while (isalpha(*++end
))
969 for (i
= 0; i
< 12; i
++) {
970 int match
= match_string(date
, month_names
[i
]);
978 for (s
= special
; s
->name
; s
++) {
979 int len
= strlen(s
->name
);
980 if (match_string(date
, s
->name
) == len
) {
988 for (i
= 1; i
< 11; i
++) {
989 int len
= strlen(number_name
[i
]);
990 if (match_string(date
, number_name
[i
]) == len
) {
996 if (match_string(date
, "last") == 4) {
1005 int len
= strlen(tl
->type
);
1006 if (match_string(date
, tl
->type
) >= len
-1) {
1007 update_tm(tm
, now
, tl
->length
* *num
);
1015 for (i
= 0; i
< 7; i
++) {
1016 int match
= match_string(date
, weekday_names
[i
]);
1018 int diff
, n
= *num
-1;
1021 diff
= tm
->tm_wday
- i
;
1026 update_tm(tm
, now
, diff
* 24 * 60 * 60);
1032 if (match_string(date
, "months") >= 5) {
1034 update_tm(tm
, now
, 0); /* fill in date fields if needed */
1035 n
= tm
->tm_mon
- *num
;
1046 if (match_string(date
, "years") >= 4) {
1047 update_tm(tm
, now
, 0); /* fill in date fields if needed */
1048 tm
->tm_year
-= *num
;
1057 static const char *approxidate_digit(const char *date
, struct tm
*tm
, int *num
,
1061 unsigned long number
= strtoul(date
, &end
, 10);
1068 if (isdigit(end
[1])) {
1069 int match
= match_multi_number(number
, *end
, date
, end
,
1072 return date
+ match
;
1076 /* Accept zero-padding only for small numbers ("Dec 02", never "Dec 0002") */
1077 if (date
[0] != '0' || end
- date
<= 2)
1083 * Do we have a pending number at the end, or when
1084 * we see a new one? Let's assume it's a month day,
1085 * as in "Dec 6, 1992"
1087 static void pending_number(struct tm
*tm
, int *num
)
1093 if (tm
->tm_mday
< 0 && number
< 32)
1094 tm
->tm_mday
= number
;
1095 else if (tm
->tm_mon
< 0 && number
< 13)
1096 tm
->tm_mon
= number
-1;
1097 else if (tm
->tm_year
< 0) {
1098 if (number
> 1969 && number
< 2100)
1099 tm
->tm_year
= number
- 1900;
1100 else if (number
> 69 && number
< 100)
1101 tm
->tm_year
= number
;
1102 else if (number
< 38)
1103 tm
->tm_year
= 100 + number
;
1104 /* We screw up for number = 00 ? */
1109 static unsigned long approxidate_str(const char *date
,
1110 const struct timeval
*tv
,
1118 time_sec
= tv
->tv_sec
;
1119 localtime_r(&time_sec
, &tm
);
1127 unsigned char c
= *date
;
1132 pending_number(&tm
, &number
);
1133 date
= approxidate_digit(date
-1, &tm
, &number
, time_sec
);
1138 date
= approxidate_alpha(date
-1, &tm
, &now
, &number
, &touched
);
1140 pending_number(&tm
, &number
);
1143 return update_tm(&tm
, &now
, 0);
1146 unsigned long approxidate_relative(const char *date
, const struct timeval
*tv
)
1148 unsigned long timestamp
;
1152 if (!parse_date_basic(date
, ×tamp
, &offset
))
1154 return approxidate_str(date
, tv
, &errors
);
1157 unsigned long approxidate_careful(const char *date
, int *error_ret
)
1160 unsigned long timestamp
;
1166 if (!parse_date_basic(date
, ×tamp
, &offset
)) {
1171 gettimeofday(&tv
, NULL
);
1172 return approxidate_str(date
, &tv
, error_ret
);
1175 int date_overflows(unsigned long t
)
1179 /* If we overflowed our unsigned long, that's bad... */
1184 * ...but we also are going to feed the result to system
1185 * functions that expect time_t, which is often "signed long".
1186 * Make sure that we fit into time_t, as well.
1189 return t
!= sys
|| (t
< 1) != (sys
< 1);