2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
7 #include "git-compat-util.h"
14 * This is like mktime, but without normalization of tm_wday and tm_yday.
16 time_t tm_to_time_t(const struct tm
*tm
)
18 static const int mdays
[] = {
19 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
21 int year
= tm
->tm_year
- 70;
22 int month
= tm
->tm_mon
;
23 int day
= tm
->tm_mday
;
25 if (year
< 0 || year
> 129) /* algo only works for 1970-2099 */
27 if (month
< 0 || month
> 11) /* array bounds */
29 if (month
< 2 || (year
+ 2) % 4)
31 if (tm
->tm_hour
< 0 || tm
->tm_min
< 0 || tm
->tm_sec
< 0)
33 return (year
* 365 + (year
+ 1) / 4 + mdays
[month
] + day
) * 24*60*60UL +
34 tm
->tm_hour
* 60*60 + tm
->tm_min
* 60 + tm
->tm_sec
;
37 static const char *month_names
[] = {
38 "January", "February", "March", "April", "May", "June",
39 "July", "August", "September", "October", "November", "December"
42 static const char *weekday_names
[] = {
43 "Sundays", "Mondays", "Tuesdays", "Wednesdays", "Thursdays", "Fridays", "Saturdays"
46 static time_t gm_time_t(timestamp_t time
, int tz
)
50 minutes
= tz
< 0 ? -tz
: tz
;
51 minutes
= (minutes
/ 100)*60 + (minutes
% 100);
52 minutes
= tz
< 0 ? -minutes
: minutes
;
55 if (unsigned_add_overflows(time
, minutes
* 60))
56 die("Timestamp+tz too large: %"PRItime
" +%04d",
58 } else if (time
< -minutes
* 60)
59 die("Timestamp before Unix epoch: %"PRItime
" %04d", time
, tz
);
61 if (date_overflows(time
))
62 die("Timestamp too large for this system: %"PRItime
, time
);
67 * The "tz" thing is passed in as this strange "decimal parse of tz"
68 * thing, which means that tz -0100 is passed in as the integer -100,
69 * even though it means "sixty minutes off"
71 static struct tm
*time_to_tm(timestamp_t time
, int tz
, struct tm
*tm
)
73 time_t t
= gm_time_t(time
, tz
);
74 return gmtime_r(&t
, tm
);
77 static struct tm
*time_to_tm_local(timestamp_t time
, struct tm
*tm
)
80 return localtime_r(&t
, tm
);
84 * Fill in the localtime 'struct tm' for the supplied time,
85 * and return the local tz.
87 static int local_time_tzoffset(time_t t
, struct tm
*tm
)
93 t_local
= tm_to_time_t(tm
);
95 return 0; /* error; just use +0000 */
101 offset
= t_local
- t
;
103 offset
/= 60; /* in minutes */
104 offset
= (offset
% 60) + ((offset
/ 60) * 100);
105 return offset
* eastwest
;
109 * What value of "tz" was in effect back then at "time" in the
112 static int local_tzoffset(timestamp_t time
)
116 if (date_overflows(time
))
117 die("Timestamp too large for this system: %"PRItime
, time
);
119 return local_time_tzoffset((time_t)time
, &tm
);
122 static void get_time(struct timeval
*now
)
126 x
= getenv("GIT_TEST_DATE_NOW");
128 now
->tv_sec
= atoi(x
);
132 gettimeofday(now
, NULL
);
135 void show_date_relative(timestamp_t time
, struct strbuf
*timebuf
)
141 if (now
.tv_sec
< time
) {
142 strbuf_addstr(timebuf
, _("in the future"));
145 diff
= now
.tv_sec
- time
;
148 Q_("%"PRItime
" second ago", "%"PRItime
" seconds ago", diff
), diff
);
151 /* Turn it into minutes */
152 diff
= (diff
+ 30) / 60;
155 Q_("%"PRItime
" minute ago", "%"PRItime
" minutes ago", diff
), diff
);
158 /* Turn it into hours */
159 diff
= (diff
+ 30) / 60;
162 Q_("%"PRItime
" hour ago", "%"PRItime
" hours ago", diff
), diff
);
165 /* We deal with number of days from here on */
166 diff
= (diff
+ 12) / 24;
169 Q_("%"PRItime
" day ago", "%"PRItime
" days ago", diff
), diff
);
172 /* Say weeks for the past 10 weeks or so */
175 Q_("%"PRItime
" week ago", "%"PRItime
" weeks ago", (diff
+ 3) / 7),
179 /* Say months for the past 12 months or so */
182 Q_("%"PRItime
" month ago", "%"PRItime
" months ago", (diff
+ 15) / 30),
186 /* Give years and months for 5 years or so */
188 timestamp_t totalmonths
= (diff
* 12 * 2 + 365) / (365 * 2);
189 timestamp_t years
= totalmonths
/ 12;
190 timestamp_t months
= totalmonths
% 12;
192 struct strbuf sb
= STRBUF_INIT
;
193 strbuf_addf(&sb
, Q_("%"PRItime
" year", "%"PRItime
" years", years
), years
);
195 /* TRANSLATORS: "%s" is "<n> years" */
196 Q_("%s, %"PRItime
" month ago", "%s, %"PRItime
" months ago", months
),
201 Q_("%"PRItime
" year ago", "%"PRItime
" years ago", years
), years
);
204 /* Otherwise, just years. Centuries is probably overkill. */
206 Q_("%"PRItime
" year ago", "%"PRItime
" years ago", (diff
+ 183) / 365),
210 struct date_mode
*date_mode_from_type(enum date_mode_type type
)
212 static struct date_mode mode
= DATE_MODE_INIT
;
213 if (type
== DATE_STRFTIME
)
214 BUG("cannot create anonymous strftime date_mode struct");
219 static void show_date_normal(struct strbuf
*buf
, timestamp_t time
, struct tm
*tm
, int tz
, struct tm
*human_tm
, int human_tz
, int local
)
230 hide
.tz
= local
|| tz
== human_tz
;
231 hide
.year
= tm
->tm_year
== human_tm
->tm_year
;
233 if (tm
->tm_mon
== human_tm
->tm_mon
) {
234 if (tm
->tm_mday
> human_tm
->tm_mday
) {
235 /* Future date: think timezones */
236 } else if (tm
->tm_mday
== human_tm
->tm_mday
) {
237 hide
.date
= hide
.wday
= 1;
238 } else if (tm
->tm_mday
+ 5 > human_tm
->tm_mday
) {
239 /* Leave just weekday if it was a few days ago */
245 /* Show "today" times as just relative times */
247 show_date_relative(time
, buf
);
252 * Always hide seconds for human-readable.
253 * Hide timezone if showing date.
254 * Hide weekday and time if showing year.
256 * The logic here is two-fold:
257 * (a) only show details when recent enough to matter
258 * (b) keep the maximum length "similar", and in check
260 if (human_tm
->tm_year
) {
262 hide
.tz
|= !hide
.date
;
263 hide
.wday
= hide
.time
= !hide
.year
;
267 strbuf_addf(buf
, "%.3s ", weekday_names
[tm
->tm_wday
]);
269 strbuf_addf(buf
, "%.3s %d ", month_names
[tm
->tm_mon
], tm
->tm_mday
);
271 /* Do we want AM/PM depending on locale? */
273 strbuf_addf(buf
, "%02d:%02d", tm
->tm_hour
, tm
->tm_min
);
275 strbuf_addf(buf
, ":%02d", tm
->tm_sec
);
280 strbuf_addf(buf
, " %d", tm
->tm_year
+ 1900);
283 strbuf_addf(buf
, " %+05d", tz
);
286 const char *show_date(timestamp_t time
, int tz
, const struct date_mode
*mode
)
289 struct tm tmbuf
= { 0 };
290 struct tm human_tm
= { 0 };
292 static struct strbuf timebuf
= STRBUF_INIT
;
294 if (mode
->type
== DATE_UNIX
) {
295 strbuf_reset(&timebuf
);
296 strbuf_addf(&timebuf
, "%"PRItime
, time
);
300 if (mode
->type
== DATE_HUMAN
) {
305 /* Fill in the data for "current time" in human_tz and human_tm */
306 human_tz
= local_time_tzoffset(now
.tv_sec
, &human_tm
);
310 tz
= local_tzoffset(time
);
312 if (mode
->type
== DATE_RAW
) {
313 strbuf_reset(&timebuf
);
314 strbuf_addf(&timebuf
, "%"PRItime
" %+05d", time
, tz
);
318 if (mode
->type
== DATE_RELATIVE
) {
319 strbuf_reset(&timebuf
);
320 show_date_relative(time
, &timebuf
);
325 tm
= time_to_tm_local(time
, &tmbuf
);
327 tm
= time_to_tm(time
, tz
, &tmbuf
);
329 tm
= time_to_tm(0, 0, &tmbuf
);
333 strbuf_reset(&timebuf
);
334 if (mode
->type
== DATE_SHORT
)
335 strbuf_addf(&timebuf
, "%04d-%02d-%02d", tm
->tm_year
+ 1900,
336 tm
->tm_mon
+ 1, tm
->tm_mday
);
337 else if (mode
->type
== DATE_ISO8601
)
338 strbuf_addf(&timebuf
, "%04d-%02d-%02d %02d:%02d:%02d %+05d",
342 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
,
344 else if (mode
->type
== DATE_ISO8601_STRICT
) {
345 char sign
= (tz
>= 0) ? '+' : '-';
347 strbuf_addf(&timebuf
, "%04d-%02d-%02dT%02d:%02d:%02d%c%02d:%02d",
351 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
,
352 sign
, tz
/ 100, tz
% 100);
353 } else if (mode
->type
== DATE_RFC2822
)
354 strbuf_addf(&timebuf
, "%.3s, %d %.3s %d %02d:%02d:%02d %+05d",
355 weekday_names
[tm
->tm_wday
], tm
->tm_mday
,
356 month_names
[tm
->tm_mon
], tm
->tm_year
+ 1900,
357 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
, tz
);
358 else if (mode
->type
== DATE_STRFTIME
)
359 strbuf_addftime(&timebuf
, mode
->strftime_fmt
, tm
, tz
,
362 show_date_normal(&timebuf
, time
, tm
, tz
, &human_tm
, human_tz
, mode
->local
);
367 * Check these. And note how it doesn't do the summer-time conversion.
369 * In my world, it's always summer, and things are probably a bit off
372 static const struct {
376 } timezone_names
[] = {
377 { "IDLW", -12, 0, }, /* International Date Line West */
378 { "NT", -11, 0, }, /* Nome */
379 { "CAT", -10, 0, }, /* Central Alaska */
380 { "HST", -10, 0, }, /* Hawaii Standard */
381 { "HDT", -10, 1, }, /* Hawaii Daylight */
382 { "YST", -9, 0, }, /* Yukon Standard */
383 { "YDT", -9, 1, }, /* Yukon Daylight */
384 { "PST", -8, 0, }, /* Pacific Standard */
385 { "PDT", -8, 1, }, /* Pacific Daylight */
386 { "MST", -7, 0, }, /* Mountain Standard */
387 { "MDT", -7, 1, }, /* Mountain Daylight */
388 { "CST", -6, 0, }, /* Central Standard */
389 { "CDT", -6, 1, }, /* Central Daylight */
390 { "EST", -5, 0, }, /* Eastern Standard */
391 { "EDT", -5, 1, }, /* Eastern Daylight */
392 { "AST", -3, 0, }, /* Atlantic Standard */
393 { "ADT", -3, 1, }, /* Atlantic Daylight */
394 { "WAT", -1, 0, }, /* West Africa */
396 { "GMT", 0, 0, }, /* Greenwich Mean */
397 { "UTC", 0, 0, }, /* Universal (Coordinated) */
398 { "Z", 0, 0, }, /* Zulu, alias for UTC */
400 { "WET", 0, 0, }, /* Western European */
401 { "BST", 0, 1, }, /* British Summer */
402 { "CET", +1, 0, }, /* Central European */
403 { "MET", +1, 0, }, /* Middle European */
404 { "MEWT", +1, 0, }, /* Middle European Winter */
405 { "MEST", +1, 1, }, /* Middle European Summer */
406 { "CEST", +1, 1, }, /* Central European Summer */
407 { "MESZ", +1, 1, }, /* Middle European Summer */
408 { "FWT", +1, 0, }, /* French Winter */
409 { "FST", +1, 1, }, /* French Summer */
410 { "EET", +2, 0, }, /* Eastern Europe, USSR Zone 1 */
411 { "EEST", +2, 1, }, /* Eastern European Daylight */
412 { "WAST", +7, 0, }, /* West Australian Standard */
413 { "WADT", +7, 1, }, /* West Australian Daylight */
414 { "CCT", +8, 0, }, /* China Coast, USSR Zone 7 */
415 { "JST", +9, 0, }, /* Japan Standard, USSR Zone 8 */
416 { "EAST", +10, 0, }, /* Eastern Australian Standard */
417 { "EADT", +10, 1, }, /* Eastern Australian Daylight */
418 { "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */
419 { "NZT", +12, 0, }, /* New Zealand */
420 { "NZST", +12, 0, }, /* New Zealand Standard */
421 { "NZDT", +12, 1, }, /* New Zealand Daylight */
422 { "IDLE", +12, 0, }, /* International Date Line East */
425 static int match_string(const char *date
, const char *str
)
429 for (i
= 0; *date
; date
++, str
++, i
++) {
432 if (toupper(*date
) == toupper(*str
))
441 static int skip_alpha(const char *date
)
446 } while (isalpha(date
[i
]));
451 * Parse month, weekday, or timezone name
453 static int match_alpha(const char *date
, struct tm
*tm
, int *offset
)
457 for (i
= 0; i
< 12; i
++) {
458 int match
= match_string(date
, month_names
[i
]);
465 for (i
= 0; i
< 7; i
++) {
466 int match
= match_string(date
, weekday_names
[i
]);
473 for (i
= 0; i
< ARRAY_SIZE(timezone_names
); i
++) {
474 int match
= match_string(date
, timezone_names
[i
].name
);
475 if (match
>= 3 || match
== strlen(timezone_names
[i
].name
)) {
476 int off
= timezone_names
[i
].offset
;
478 /* This is bogus, but we like summer */
479 off
+= timezone_names
[i
].dst
;
481 /* Only use the tz name offset if we don't have anything better */
489 if (match_string(date
, "PM") == 2) {
490 tm
->tm_hour
= (tm
->tm_hour
% 12) + 12;
494 if (match_string(date
, "AM") == 2) {
495 tm
->tm_hour
= (tm
->tm_hour
% 12) + 0;
499 /* ISO-8601 allows yyyymmDD'T'HHMMSS, with less precision */
500 if (*date
== 'T' && isdigit(date
[1]) && tm
->tm_hour
== -1) {
501 tm
->tm_min
= tm
->tm_sec
= 0;
506 return skip_alpha(date
);
509 static int set_date(int year
, int month
, int day
, struct tm
*now_tm
, time_t now
, struct tm
*tm
)
511 if (month
> 0 && month
< 13 && day
> 0 && day
< 32) {
512 struct tm check
= *tm
;
513 struct tm
*r
= (now_tm
? &check
: tm
);
516 r
->tm_mon
= month
- 1;
521 r
->tm_year
= now_tm
->tm_year
;
523 else if (year
>= 1970 && year
< 2100)
524 r
->tm_year
= year
- 1900;
525 else if (year
> 70 && year
< 100)
528 r
->tm_year
= year
+ 100;
534 specified
= tm_to_time_t(r
);
536 /* Be it commit time or author time, it does not make
537 * sense to specify timestamp way into the future. Make
538 * sure it is not later than ten days from now...
540 if ((specified
!= -1) && (now
+ 10*24*3600 < specified
))
542 tm
->tm_mon
= r
->tm_mon
;
543 tm
->tm_mday
= r
->tm_mday
;
545 tm
->tm_year
= r
->tm_year
;
551 static int set_time(long hour
, long minute
, long second
, struct tm
*tm
)
553 /* We accept 61st second because of leap second */
554 if (0 <= hour
&& hour
<= 24 &&
555 0 <= minute
&& minute
< 60 &&
556 0 <= second
&& second
<= 60) {
565 static int is_date_known(struct tm
*tm
)
567 return tm
->tm_year
!= -1 && tm
->tm_mon
!= -1 && tm
->tm_mday
!= -1;
570 static int match_multi_number(timestamp_t num
, char c
, const char *date
,
571 char *end
, struct tm
*tm
, time_t now
)
574 struct tm
*refuse_future
;
577 num2
= strtol(end
+1, &end
, 10);
579 if (*end
== c
&& isdigit(end
[1]))
580 num3
= strtol(end
+1, &end
, 10);
587 if (set_time(num
, num2
, num3
, tm
) == 0) {
589 * If %H:%M:%S was just parsed followed by: .<num4>
590 * Consider (& discard) it as fractional second
591 * if %Y%m%d is parsed before.
593 if (*end
== '.' && isdigit(end
[1]) && is_date_known(tm
))
594 strtol(end
+ 1, &end
, 10);
604 refuse_future
= NULL
;
605 if (gmtime_r(&now
, &now_tm
))
606 refuse_future
= &now_tm
;
610 if (set_date(num
, num2
, num3
, NULL
, now
, tm
) == 0)
613 if (set_date(num
, num3
, num2
, NULL
, now
, tm
) == 0)
616 /* Our eastern European friends say dd.mm.yy[yy]
617 * is the norm there, so giving precedence to
618 * mm/dd/yy[yy] form only when separator is not '.'
621 set_date(num3
, num
, num2
, refuse_future
, now
, tm
) == 0)
623 /* European dd.mm.yy[yy] or funny US dd/mm/yy[yy] */
624 if (set_date(num3
, num2
, num
, refuse_future
, now
, tm
) == 0)
626 /* Funny European mm.dd.yy */
628 set_date(num3
, num
, num2
, refuse_future
, now
, tm
) == 0)
636 * Have we filled in any part of the time/date yet?
637 * We just do a binary 'and' to see if the sign bit
638 * is set in all the values.
640 static inline int nodate(struct tm
*tm
)
642 return (tm
->tm_year
&
651 * Have we seen an ISO-8601-alike date, i.e. 20220101T0,
652 * In which, hour is still unset,
653 * and minutes and second has been set to 0.
655 static inline int maybeiso8601(struct tm
*tm
)
657 return tm
->tm_hour
== -1 &&
663 * We've seen a digit. Time? Year? Date?
665 static int match_digit(const char *date
, struct tm
*tm
, int *offset
, int *tm_gmt
)
671 num
= parse_timestamp(date
, &end
, 10);
674 * Seconds since 1970? We trigger on that for any numbers with
675 * more than 8 digits. This is because we don't want to rule out
676 * numbers like 20070606 as a YYYYMMDD date.
678 if (num
>= 100000000 && nodate(tm
)) {
680 if (gmtime_r(&time
, tm
)) {
687 * Check for special formats: num[-.:/]num[same]num
694 if (isdigit(end
[1])) {
695 int match
= match_multi_number(num
, *end
, date
, end
, tm
, 0);
702 * None of the special formats? Try to guess what
703 * the number meant. We use the number of digits
704 * to make a more educated guess..
709 } while (isdigit(date
[n
]));
711 /* 8 digits, compact style of ISO-8601's date: YYYYmmDD */
712 /* 6 digits, compact style of ISO-8601's time: HHMMSS */
713 if (n
== 8 || n
== 6) {
714 unsigned int num1
= num
/ 10000;
715 unsigned int num2
= (num
% 10000) / 100;
716 unsigned int num3
= num
% 100;
718 set_date(num1
, num2
, num3
, NULL
, time(NULL
), tm
);
719 else if (n
== 6 && set_time(num1
, num2
, num3
, tm
) == 0 &&
720 *end
== '.' && isdigit(end
[1]))
721 strtoul(end
+ 1, &end
, 10);
725 /* reduced precision of ISO-8601's time: HHMM or HH */
726 if (maybeiso8601(tm
)) {
727 unsigned int num1
= num
;
728 unsigned int num2
= 0;
733 if ((n
== 4 || n
== 2) && !nodate(tm
) &&
734 set_time(num1
, num2
, 0, tm
) == 0)
737 * We thought this is an ISO-8601 time string,
738 * we set minutes and seconds to 0,
739 * turn out it isn't, rollback the change.
741 tm
->tm_min
= tm
->tm_sec
= -1;
744 /* Four-digit year or a timezone? */
746 if (num
<= 1400 && *offset
== -1) {
747 unsigned int minutes
= num
% 100;
748 unsigned int hours
= num
/ 100;
749 *offset
= hours
*60 + minutes
;
750 } else if (num
> 1900 && num
< 2100)
751 tm
->tm_year
= num
- 1900;
756 * Ignore lots of numerals. We took care of 4-digit years above.
757 * Days or months must be one or two digits.
763 * NOTE! We will give precedence to day-of-month over month or
764 * year numbers in the 1-12 range. So 05 is always "mday 5",
765 * unless we already have a mday..
767 * IOW, 01 Apr 05 parses as "April 1st, 2005".
769 if (num
> 0 && num
< 32 && tm
->tm_mday
< 0) {
774 /* Two-digit year? */
775 if (n
== 2 && tm
->tm_year
< 0) {
776 if (num
< 10 && tm
->tm_mday
>= 0) {
777 tm
->tm_year
= num
+ 100;
786 if (num
> 0 && num
< 13 && tm
->tm_mon
< 0)
792 static int match_tz(const char *date
, int *offp
)
795 int hour
= strtoul(date
+ 1, &end
, 10);
796 int n
= end
- (date
+ 1);
804 min
= 99; /* random crap */
805 } else if (*end
== ':') {
807 min
= strtoul(end
+ 1, &end
, 10);
808 if (end
- (date
+ 1) != 5)
809 min
= 99; /* random crap */
810 } /* otherwise we parsed "hh" */
813 * Don't accept any random crap. Even though some places have
814 * offset larger than 12 hours (e.g. Pacific/Kiritimati is at
815 * UTC+14), there is something wrong if hour part is much
816 * larger than that. We might also want to check that the
817 * minutes are divisible by 15 or something too. (Offset of
818 * Kathmandu, Nepal is UTC+5:45)
820 if (min
< 60 && hour
< 24) {
821 int offset
= hour
* 60 + min
;
829 static void date_string(timestamp_t date
, int offset
, struct strbuf
*buf
)
837 strbuf_addf(buf
, "%"PRItime
" %c%02d%02d", date
, sign
, offset
/ 60, offset
% 60);
841 * Parse a string like "0 +0000" as ancient timestamp near epoch, but
842 * only when it appears not as part of any other string.
844 static int match_object_header_date(const char *date
, timestamp_t
*timestamp
, int *offset
)
850 if (*date
< '0' || '9' < *date
)
852 stamp
= parse_timestamp(date
, &end
, 10);
853 if (*end
!= ' ' || stamp
== TIME_MAX
|| (end
[1] != '+' && end
[1] != '-'))
856 ofs
= strtol(date
, &end
, 10);
857 if ((*end
!= '\0' && (*end
!= '\n')) || end
!= date
+ 4)
859 ofs
= (ofs
/ 100) * 60 + (ofs
% 100);
867 /* Gr. strptime is crap for this; it doesn't have a way to require RFC2822
868 (i.e. English) day/month names, and it doesn't work correctly with %z. */
869 int parse_date_basic(const char *date
, timestamp_t
*timestamp
, int *offset
)
873 timestamp_t dummy_timestamp
;
877 timestamp
= &dummy_timestamp
;
879 offset
= &dummy_offset
;
881 memset(&tm
, 0, sizeof(tm
));
893 !match_object_header_date(date
+ 1, timestamp
, offset
))
894 return 0; /* success */
897 unsigned char c
= *date
;
899 /* Stop at end of string or newline */
904 match
= match_alpha(date
, &tm
, offset
);
906 match
= match_digit(date
, &tm
, offset
, &tm_gmt
);
907 else if ((c
== '-' || c
== '+') && isdigit(date
[1]))
908 match
= match_tz(date
, offset
);
918 /* do not use mktime(), which uses local timezone, here */
919 *timestamp
= tm_to_time_t(&tm
);
920 if (*timestamp
== -1)
926 /* gmtime_r() in match_digit() may have clobbered it */
928 temp_time
= mktime(&tm
);
929 if ((time_t)*timestamp
> temp_time
) {
930 *offset
= ((time_t)*timestamp
- temp_time
) / 60;
932 *offset
= -(int)((temp_time
- (time_t)*timestamp
) / 60);
937 *timestamp
-= *offset
* 60;
938 return 0; /* success */
941 int parse_expiry_date(const char *date
, timestamp_t
*timestamp
)
945 if (!strcmp(date
, "never") || !strcmp(date
, "false"))
947 else if (!strcmp(date
, "all") || !strcmp(date
, "now"))
949 * We take over "now" here, which usually translates
950 * to the current timestamp. This is because the user
951 * really means to expire everything that was done in
952 * the past, and by definition reflogs are the record
953 * of the past, and there is nothing from the future
956 *timestamp
= TIME_MAX
;
958 *timestamp
= approxidate_careful(date
, &errors
);
963 int parse_date(const char *date
, struct strbuf
*result
)
965 timestamp_t timestamp
;
967 if (parse_date_basic(date
, ×tamp
, &offset
))
969 date_string(timestamp
, offset
, result
);
973 static enum date_mode_type
parse_date_type(const char *format
, const char **end
)
975 if (skip_prefix(format
, "relative", end
))
976 return DATE_RELATIVE
;
977 if (skip_prefix(format
, "iso8601-strict", end
) ||
978 skip_prefix(format
, "iso-strict", end
))
979 return DATE_ISO8601_STRICT
;
980 if (skip_prefix(format
, "iso8601", end
) ||
981 skip_prefix(format
, "iso", end
))
983 if (skip_prefix(format
, "rfc2822", end
) ||
984 skip_prefix(format
, "rfc", end
))
986 if (skip_prefix(format
, "short", end
))
988 if (skip_prefix(format
, "default", end
))
990 if (skip_prefix(format
, "human", end
))
992 if (skip_prefix(format
, "raw", end
))
994 if (skip_prefix(format
, "unix", end
))
996 if (skip_prefix(format
, "format", end
))
997 return DATE_STRFTIME
;
999 * Please update $__git_log_date_formats in
1000 * git-completion.bash when you add new formats.
1003 die("unknown date format %s", format
);
1006 void parse_date_format(const char *format
, struct date_mode
*mode
)
1010 /* "auto:foo" is "if tty/pager, then foo, otherwise normal" */
1011 if (skip_prefix(format
, "auto:", &p
)) {
1012 if (isatty(1) || pager_in_use())
1018 /* historical alias */
1019 if (!strcmp(format
, "local"))
1020 format
= "default-local";
1022 mode
->type
= parse_date_type(format
, &p
);
1025 if (skip_prefix(p
, "-local", &p
))
1028 if (mode
->type
== DATE_STRFTIME
) {
1029 if (!skip_prefix(p
, ":", &p
))
1030 die("date format missing colon separator: %s", format
);
1031 mode
->strftime_fmt
= xstrdup(p
);
1033 die("unknown date format %s", format
);
1036 void date_mode_release(struct date_mode
*mode
)
1038 free((char *)mode
->strftime_fmt
);
1041 void datestamp(struct strbuf
*out
)
1045 struct tm tm
= { 0 };
1049 offset
= tm_to_time_t(localtime_r(&now
, &tm
)) - now
;
1052 date_string(now
, offset
, out
);
1056 * Relative time update (eg "2 days ago"). If we haven't set the time
1057 * yet, we need to set it from current time.
1059 static time_t update_tm(struct tm
*tm
, struct tm
*now
, time_t sec
)
1063 if (tm
->tm_mday
< 0)
1064 tm
->tm_mday
= now
->tm_mday
;
1066 tm
->tm_mon
= now
->tm_mon
;
1067 if (tm
->tm_year
< 0) {
1068 tm
->tm_year
= now
->tm_year
;
1069 if (tm
->tm_mon
> now
->tm_mon
)
1073 n
= mktime(tm
) - sec
;
1074 localtime_r(&n
, tm
);
1079 * Do we have a pending number at the end, or when
1080 * we see a new one? Let's assume it's a month day,
1081 * as in "Dec 6, 1992"
1083 static void pending_number(struct tm
*tm
, int *num
)
1089 if (tm
->tm_mday
< 0 && number
< 32)
1090 tm
->tm_mday
= number
;
1091 else if (tm
->tm_mon
< 0 && number
< 13)
1092 tm
->tm_mon
= number
-1;
1093 else if (tm
->tm_year
< 0) {
1094 if (number
> 1969 && number
< 2100)
1095 tm
->tm_year
= number
- 1900;
1096 else if (number
> 69 && number
< 100)
1097 tm
->tm_year
= number
;
1098 else if (number
< 38)
1099 tm
->tm_year
= 100 + number
;
1100 /* We screw up for number = 00 ? */
1105 static void date_now(struct tm
*tm
, struct tm
*now
, int *num
)
1108 update_tm(tm
, now
, 0);
1111 static void date_yesterday(struct tm
*tm
, struct tm
*now
, int *num
)
1114 update_tm(tm
, now
, 24*60*60);
1117 static void date_time(struct tm
*tm
, struct tm
*now
, int hour
)
1119 if (tm
->tm_hour
< hour
)
1120 update_tm(tm
, now
, 24*60*60);
1126 static void date_midnight(struct tm
*tm
, struct tm
*now
, int *num
)
1128 pending_number(tm
, num
);
1129 date_time(tm
, now
, 0);
1132 static void date_noon(struct tm
*tm
, struct tm
*now
, int *num
)
1134 pending_number(tm
, num
);
1135 date_time(tm
, now
, 12);
1138 static void date_tea(struct tm
*tm
, struct tm
*now
, int *num
)
1140 pending_number(tm
, num
);
1141 date_time(tm
, now
, 17);
1144 static void date_pm(struct tm
*tm
, struct tm
*now UNUSED
, int *num
)
1155 tm
->tm_hour
= (hour
% 12) + 12;
1158 static void date_am(struct tm
*tm
, struct tm
*now UNUSED
, int *num
)
1169 tm
->tm_hour
= (hour
% 12);
1172 static void date_never(struct tm
*tm
, struct tm
*now UNUSED
, int *num
)
1175 localtime_r(&n
, tm
);
1179 static const struct special
{
1181 void (*fn
)(struct tm
*, struct tm
*, int *);
1183 { "yesterday", date_yesterday
},
1184 { "noon", date_noon
},
1185 { "midnight", date_midnight
},
1186 { "tea", date_tea
},
1189 { "never", date_never
},
1190 { "now", date_now
},
1194 static const char *number_name
[] = {
1195 "zero", "one", "two", "three", "four",
1196 "five", "six", "seven", "eight", "nine", "ten",
1199 static const struct typelen
{
1206 { "days", 24*60*60 },
1207 { "weeks", 7*24*60*60 },
1211 static const char *approxidate_alpha(const char *date
, struct tm
*tm
, struct tm
*now
, int *num
, int *touched
)
1213 const struct typelen
*tl
;
1214 const struct special
*s
;
1215 const char *end
= date
;
1218 while (isalpha(*++end
))
1221 for (i
= 0; i
< 12; i
++) {
1222 int match
= match_string(date
, month_names
[i
]);
1230 for (s
= special
; s
->name
; s
++) {
1231 int len
= strlen(s
->name
);
1232 if (match_string(date
, s
->name
) == len
) {
1233 s
->fn(tm
, now
, num
);
1240 for (i
= 1; i
< 11; i
++) {
1241 int len
= strlen(number_name
[i
]);
1242 if (match_string(date
, number_name
[i
]) == len
) {
1248 if (match_string(date
, "last") == 4) {
1257 int len
= strlen(tl
->type
);
1258 if (match_string(date
, tl
->type
) >= len
-1) {
1259 update_tm(tm
, now
, tl
->length
* *num
);
1267 for (i
= 0; i
< 7; i
++) {
1268 int match
= match_string(date
, weekday_names
[i
]);
1270 int diff
, n
= *num
-1;
1273 diff
= tm
->tm_wday
- i
;
1278 update_tm(tm
, now
, diff
* 24 * 60 * 60);
1284 if (match_string(date
, "months") >= 5) {
1286 update_tm(tm
, now
, 0); /* fill in date fields if needed */
1287 n
= tm
->tm_mon
- *num
;
1298 if (match_string(date
, "years") >= 4) {
1299 update_tm(tm
, now
, 0); /* fill in date fields if needed */
1300 tm
->tm_year
-= *num
;
1309 static const char *approxidate_digit(const char *date
, struct tm
*tm
, int *num
,
1313 timestamp_t number
= parse_timestamp(date
, &end
, 10);
1320 if (isdigit(end
[1])) {
1321 int match
= match_multi_number(number
, *end
, date
, end
,
1324 return date
+ match
;
1328 /* Accept zero-padding only for small numbers ("Dec 02", never "Dec 0002") */
1329 if (date
[0] != '0' || end
- date
<= 2)
1334 static timestamp_t
approxidate_str(const char *date
,
1335 const struct timeval
*tv
,
1343 time_sec
= tv
->tv_sec
;
1344 localtime_r(&time_sec
, &tm
);
1352 unsigned char c
= *date
;
1357 pending_number(&tm
, &number
);
1358 date
= approxidate_digit(date
-1, &tm
, &number
, time_sec
);
1363 date
= approxidate_alpha(date
-1, &tm
, &now
, &number
, &touched
);
1365 pending_number(&tm
, &number
);
1368 return (timestamp_t
)update_tm(&tm
, &now
, 0);
1371 timestamp_t
approxidate_careful(const char *date
, int *error_ret
)
1374 timestamp_t timestamp
;
1380 if (!parse_date_basic(date
, ×tamp
, &offset
)) {
1386 return approxidate_str(date
, &tv
, error_ret
);
1389 int date_overflows(timestamp_t t
)
1393 /* If we overflowed our timestamp data type, that's bad... */
1394 if ((uintmax_t)t
>= TIME_MAX
)
1398 * ...but we also are going to feed the result to system
1399 * functions that expect time_t, which is often "signed long".
1400 * Make sure that we fit into time_t, as well.
1403 return t
!= sys
|| (t
< 1) != (sys
< 1);