2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
13 * This is like mktime, but without normalization of tm_wday and tm_yday.
15 time_t tm_to_time_t(const struct tm
*tm
)
17 static const int mdays
[] = {
18 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
20 int year
= tm
->tm_year
- 70;
21 int month
= tm
->tm_mon
;
22 int day
= tm
->tm_mday
;
24 if (year
< 0 || year
> 129) /* algo only works for 1970-2099 */
26 if (month
< 0 || month
> 11) /* array bounds */
28 if (month
< 2 || (year
+ 2) % 4)
30 if (tm
->tm_hour
< 0 || tm
->tm_min
< 0 || tm
->tm_sec
< 0)
32 return (year
* 365 + (year
+ 1) / 4 + mdays
[month
] + day
) * 24*60*60UL +
33 tm
->tm_hour
* 60*60 + tm
->tm_min
* 60 + tm
->tm_sec
;
36 static const char *month_names
[] = {
37 "January", "February", "March", "April", "May", "June",
38 "July", "August", "September", "October", "November", "December"
41 static const char *weekday_names
[] = {
42 "Sundays", "Mondays", "Tuesdays", "Wednesdays", "Thursdays", "Fridays", "Saturdays"
45 static time_t gm_time_t(timestamp_t time
, int tz
)
49 minutes
= tz
< 0 ? -tz
: tz
;
50 minutes
= (minutes
/ 100)*60 + (minutes
% 100);
51 minutes
= tz
< 0 ? -minutes
: minutes
;
54 if (unsigned_add_overflows(time
, minutes
* 60))
55 die("Timestamp+tz too large: %"PRItime
" +%04d",
57 } else if (time
< -minutes
* 60)
58 die("Timestamp before Unix epoch: %"PRItime
" %04d", time
, tz
);
60 if (date_overflows(time
))
61 die("Timestamp too large for this system: %"PRItime
, time
);
66 * The "tz" thing is passed in as this strange "decimal parse of tz"
67 * thing, which means that tz -0100 is passed in as the integer -100,
68 * even though it means "sixty minutes off"
70 static struct tm
*time_to_tm(timestamp_t time
, int tz
, struct tm
*tm
)
72 time_t t
= gm_time_t(time
, tz
);
73 return gmtime_r(&t
, tm
);
76 static struct tm
*time_to_tm_local(timestamp_t time
, struct tm
*tm
)
79 return localtime_r(&t
, tm
);
83 * Fill in the localtime 'struct tm' for the supplied time,
84 * and return the local tz.
86 static int local_time_tzoffset(time_t t
, struct tm
*tm
)
92 t_local
= tm_to_time_t(tm
);
94 return 0; /* error; just use +0000 */
100 offset
= t_local
- t
;
102 offset
/= 60; /* in minutes */
103 offset
= (offset
% 60) + ((offset
/ 60) * 100);
104 return offset
* eastwest
;
108 * What value of "tz" was in effect back then at "time" in the
111 static int local_tzoffset(timestamp_t time
)
115 if (date_overflows(time
))
116 die("Timestamp too large for this system: %"PRItime
, time
);
118 return local_time_tzoffset((time_t)time
, &tm
);
121 static void get_time(struct timeval
*now
)
125 x
= getenv("GIT_TEST_DATE_NOW");
127 now
->tv_sec
= atoi(x
);
131 gettimeofday(now
, NULL
);
134 void show_date_relative(timestamp_t time
, struct strbuf
*timebuf
)
140 if (now
.tv_sec
< time
) {
141 strbuf_addstr(timebuf
, _("in the future"));
144 diff
= now
.tv_sec
- time
;
147 Q_("%"PRItime
" second ago", "%"PRItime
" seconds ago", diff
), diff
);
150 /* Turn it into minutes */
151 diff
= (diff
+ 30) / 60;
154 Q_("%"PRItime
" minute ago", "%"PRItime
" minutes ago", diff
), diff
);
157 /* Turn it into hours */
158 diff
= (diff
+ 30) / 60;
161 Q_("%"PRItime
" hour ago", "%"PRItime
" hours ago", diff
), diff
);
164 /* We deal with number of days from here on */
165 diff
= (diff
+ 12) / 24;
168 Q_("%"PRItime
" day ago", "%"PRItime
" days ago", diff
), diff
);
171 /* Say weeks for the past 10 weeks or so */
174 Q_("%"PRItime
" week ago", "%"PRItime
" weeks ago", (diff
+ 3) / 7),
178 /* Say months for the past 12 months or so */
181 Q_("%"PRItime
" month ago", "%"PRItime
" months ago", (diff
+ 15) / 30),
185 /* Give years and months for 5 years or so */
187 timestamp_t totalmonths
= (diff
* 12 * 2 + 365) / (365 * 2);
188 timestamp_t years
= totalmonths
/ 12;
189 timestamp_t months
= totalmonths
% 12;
191 struct strbuf sb
= STRBUF_INIT
;
192 strbuf_addf(&sb
, Q_("%"PRItime
" year", "%"PRItime
" years", years
), years
);
194 /* TRANSLATORS: "%s" is "<n> years" */
195 Q_("%s, %"PRItime
" month ago", "%s, %"PRItime
" months ago", months
),
200 Q_("%"PRItime
" year ago", "%"PRItime
" years ago", years
), years
);
203 /* Otherwise, just years. Centuries is probably overkill. */
205 Q_("%"PRItime
" year ago", "%"PRItime
" years ago", (diff
+ 183) / 365),
209 struct date_mode
*date_mode_from_type(enum date_mode_type type
)
211 static struct date_mode mode
= DATE_MODE_INIT
;
212 if (type
== DATE_STRFTIME
)
213 BUG("cannot create anonymous strftime date_mode struct");
218 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
)
229 hide
.tz
= local
|| tz
== human_tz
;
230 hide
.year
= tm
->tm_year
== human_tm
->tm_year
;
232 if (tm
->tm_mon
== human_tm
->tm_mon
) {
233 if (tm
->tm_mday
> human_tm
->tm_mday
) {
234 /* Future date: think timezones */
235 } else if (tm
->tm_mday
== human_tm
->tm_mday
) {
236 hide
.date
= hide
.wday
= 1;
237 } else if (tm
->tm_mday
+ 5 > human_tm
->tm_mday
) {
238 /* Leave just weekday if it was a few days ago */
244 /* Show "today" times as just relative times */
246 show_date_relative(time
, buf
);
251 * Always hide seconds for human-readable.
252 * Hide timezone if showing date.
253 * Hide weekday and time if showing year.
255 * The logic here is two-fold:
256 * (a) only show details when recent enough to matter
257 * (b) keep the maximum length "similar", and in check
259 if (human_tm
->tm_year
) {
261 hide
.tz
|= !hide
.date
;
262 hide
.wday
= hide
.time
= !hide
.year
;
266 strbuf_addf(buf
, "%.3s ", weekday_names
[tm
->tm_wday
]);
268 strbuf_addf(buf
, "%.3s %d ", month_names
[tm
->tm_mon
], tm
->tm_mday
);
270 /* Do we want AM/PM depending on locale? */
272 strbuf_addf(buf
, "%02d:%02d", tm
->tm_hour
, tm
->tm_min
);
274 strbuf_addf(buf
, ":%02d", tm
->tm_sec
);
279 strbuf_addf(buf
, " %d", tm
->tm_year
+ 1900);
282 strbuf_addf(buf
, " %+05d", tz
);
285 const char *show_date(timestamp_t time
, int tz
, const struct date_mode
*mode
)
288 struct tm tmbuf
= { 0 };
289 struct tm human_tm
= { 0 };
291 static struct strbuf timebuf
= STRBUF_INIT
;
293 if (mode
->type
== DATE_UNIX
) {
294 strbuf_reset(&timebuf
);
295 strbuf_addf(&timebuf
, "%"PRItime
, time
);
299 if (mode
->type
== DATE_HUMAN
) {
304 /* Fill in the data for "current time" in human_tz and human_tm */
305 human_tz
= local_time_tzoffset(now
.tv_sec
, &human_tm
);
309 tz
= local_tzoffset(time
);
311 if (mode
->type
== DATE_RAW
) {
312 strbuf_reset(&timebuf
);
313 strbuf_addf(&timebuf
, "%"PRItime
" %+05d", time
, tz
);
317 if (mode
->type
== DATE_RELATIVE
) {
318 strbuf_reset(&timebuf
);
319 show_date_relative(time
, &timebuf
);
324 tm
= time_to_tm_local(time
, &tmbuf
);
326 tm
= time_to_tm(time
, tz
, &tmbuf
);
328 tm
= time_to_tm(0, 0, &tmbuf
);
332 strbuf_reset(&timebuf
);
333 if (mode
->type
== DATE_SHORT
)
334 strbuf_addf(&timebuf
, "%04d-%02d-%02d", tm
->tm_year
+ 1900,
335 tm
->tm_mon
+ 1, tm
->tm_mday
);
336 else if (mode
->type
== DATE_ISO8601
)
337 strbuf_addf(&timebuf
, "%04d-%02d-%02d %02d:%02d:%02d %+05d",
341 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
,
343 else if (mode
->type
== DATE_ISO8601_STRICT
) {
344 char sign
= (tz
>= 0) ? '+' : '-';
346 strbuf_addf(&timebuf
, "%04d-%02d-%02dT%02d:%02d:%02d%c%02d:%02d",
350 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
,
351 sign
, tz
/ 100, tz
% 100);
352 } else if (mode
->type
== DATE_RFC2822
)
353 strbuf_addf(&timebuf
, "%.3s, %d %.3s %d %02d:%02d:%02d %+05d",
354 weekday_names
[tm
->tm_wday
], tm
->tm_mday
,
355 month_names
[tm
->tm_mon
], tm
->tm_year
+ 1900,
356 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
, tz
);
357 else if (mode
->type
== DATE_STRFTIME
)
358 strbuf_addftime(&timebuf
, mode
->strftime_fmt
, tm
, tz
,
361 show_date_normal(&timebuf
, time
, tm
, tz
, &human_tm
, human_tz
, mode
->local
);
366 * Check these. And note how it doesn't do the summer-time conversion.
368 * In my world, it's always summer, and things are probably a bit off
371 static const struct {
375 } timezone_names
[] = {
376 { "IDLW", -12, 0, }, /* International Date Line West */
377 { "NT", -11, 0, }, /* Nome */
378 { "CAT", -10, 0, }, /* Central Alaska */
379 { "HST", -10, 0, }, /* Hawaii Standard */
380 { "HDT", -10, 1, }, /* Hawaii Daylight */
381 { "YST", -9, 0, }, /* Yukon Standard */
382 { "YDT", -9, 1, }, /* Yukon Daylight */
383 { "PST", -8, 0, }, /* Pacific Standard */
384 { "PDT", -8, 1, }, /* Pacific Daylight */
385 { "MST", -7, 0, }, /* Mountain Standard */
386 { "MDT", -7, 1, }, /* Mountain Daylight */
387 { "CST", -6, 0, }, /* Central Standard */
388 { "CDT", -6, 1, }, /* Central Daylight */
389 { "EST", -5, 0, }, /* Eastern Standard */
390 { "EDT", -5, 1, }, /* Eastern Daylight */
391 { "AST", -3, 0, }, /* Atlantic Standard */
392 { "ADT", -3, 1, }, /* Atlantic Daylight */
393 { "WAT", -1, 0, }, /* West Africa */
395 { "GMT", 0, 0, }, /* Greenwich Mean */
396 { "UTC", 0, 0, }, /* Universal (Coordinated) */
397 { "Z", 0, 0, }, /* Zulu, alias for UTC */
399 { "WET", 0, 0, }, /* Western European */
400 { "BST", 0, 1, }, /* British Summer */
401 { "CET", +1, 0, }, /* Central European */
402 { "MET", +1, 0, }, /* Middle European */
403 { "MEWT", +1, 0, }, /* Middle European Winter */
404 { "MEST", +1, 1, }, /* Middle European Summer */
405 { "CEST", +1, 1, }, /* Central European Summer */
406 { "MESZ", +1, 1, }, /* Middle European Summer */
407 { "FWT", +1, 0, }, /* French Winter */
408 { "FST", +1, 1, }, /* French Summer */
409 { "EET", +2, 0, }, /* Eastern Europe, USSR Zone 1 */
410 { "EEST", +2, 1, }, /* Eastern European Daylight */
411 { "WAST", +7, 0, }, /* West Australian Standard */
412 { "WADT", +7, 1, }, /* West Australian Daylight */
413 { "CCT", +8, 0, }, /* China Coast, USSR Zone 7 */
414 { "JST", +9, 0, }, /* Japan Standard, USSR Zone 8 */
415 { "EAST", +10, 0, }, /* Eastern Australian Standard */
416 { "EADT", +10, 1, }, /* Eastern Australian Daylight */
417 { "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */
418 { "NZT", +12, 0, }, /* New Zealand */
419 { "NZST", +12, 0, }, /* New Zealand Standard */
420 { "NZDT", +12, 1, }, /* New Zealand Daylight */
421 { "IDLE", +12, 0, }, /* International Date Line East */
424 static int match_string(const char *date
, const char *str
)
428 for (i
= 0; *date
; date
++, str
++, i
++) {
431 if (toupper(*date
) == toupper(*str
))
440 static int skip_alpha(const char *date
)
445 } while (isalpha(date
[i
]));
450 * Parse month, weekday, or timezone name
452 static int match_alpha(const char *date
, struct tm
*tm
, int *offset
)
456 for (i
= 0; i
< 12; i
++) {
457 int match
= match_string(date
, month_names
[i
]);
464 for (i
= 0; i
< 7; i
++) {
465 int match
= match_string(date
, weekday_names
[i
]);
472 for (i
= 0; i
< ARRAY_SIZE(timezone_names
); i
++) {
473 int match
= match_string(date
, timezone_names
[i
].name
);
474 if (match
>= 3 || match
== strlen(timezone_names
[i
].name
)) {
475 int off
= timezone_names
[i
].offset
;
477 /* This is bogus, but we like summer */
478 off
+= timezone_names
[i
].dst
;
480 /* Only use the tz name offset if we don't have anything better */
488 if (match_string(date
, "PM") == 2) {
489 tm
->tm_hour
= (tm
->tm_hour
% 12) + 12;
493 if (match_string(date
, "AM") == 2) {
494 tm
->tm_hour
= (tm
->tm_hour
% 12) + 0;
498 /* ISO-8601 allows yyyymmDD'T'HHMMSS, with less precision */
499 if (*date
== 'T' && isdigit(date
[1]) && tm
->tm_hour
== -1) {
500 tm
->tm_min
= tm
->tm_sec
= 0;
505 return skip_alpha(date
);
508 static int set_date(int year
, int month
, int day
, struct tm
*now_tm
, time_t now
, struct tm
*tm
)
510 if (month
> 0 && month
< 13 && day
> 0 && day
< 32) {
511 struct tm check
= *tm
;
512 struct tm
*r
= (now_tm
? &check
: tm
);
515 r
->tm_mon
= month
- 1;
520 r
->tm_year
= now_tm
->tm_year
;
522 else if (year
>= 1970 && year
< 2100)
523 r
->tm_year
= year
- 1900;
524 else if (year
> 70 && year
< 100)
527 r
->tm_year
= year
+ 100;
533 specified
= tm_to_time_t(r
);
535 /* Be it commit time or author time, it does not make
536 * sense to specify timestamp way into the future. Make
537 * sure it is not later than ten days from now...
539 if ((specified
!= -1) && (now
+ 10*24*3600 < specified
))
541 tm
->tm_mon
= r
->tm_mon
;
542 tm
->tm_mday
= r
->tm_mday
;
544 tm
->tm_year
= r
->tm_year
;
550 static int set_time(long hour
, long minute
, long second
, struct tm
*tm
)
552 /* We accept 61st second because of leap second */
553 if (0 <= hour
&& hour
<= 24 &&
554 0 <= minute
&& minute
< 60 &&
555 0 <= second
&& second
<= 60) {
564 static int is_date_known(struct tm
*tm
)
566 return tm
->tm_year
!= -1 && tm
->tm_mon
!= -1 && tm
->tm_mday
!= -1;
569 static int match_multi_number(timestamp_t num
, char c
, const char *date
,
570 char *end
, struct tm
*tm
, time_t now
)
573 struct tm
*refuse_future
;
576 num2
= strtol(end
+1, &end
, 10);
578 if (*end
== c
&& isdigit(end
[1]))
579 num3
= strtol(end
+1, &end
, 10);
586 if (set_time(num
, num2
, num3
, tm
) == 0) {
588 * If %H:%M:%S was just parsed followed by: .<num4>
589 * Consider (& discard) it as fractional second
590 * if %Y%m%d is parsed before.
592 if (*end
== '.' && isdigit(end
[1]) && is_date_known(tm
))
593 strtol(end
+ 1, &end
, 10);
603 refuse_future
= NULL
;
604 if (gmtime_r(&now
, &now_tm
))
605 refuse_future
= &now_tm
;
609 if (set_date(num
, num2
, num3
, NULL
, now
, tm
) == 0)
612 if (set_date(num
, num3
, num2
, NULL
, now
, tm
) == 0)
615 /* Our eastern European friends say dd.mm.yy[yy]
616 * is the norm there, so giving precedence to
617 * mm/dd/yy[yy] form only when separator is not '.'
620 set_date(num3
, num
, num2
, refuse_future
, now
, tm
) == 0)
622 /* European dd.mm.yy[yy] or funny US dd/mm/yy[yy] */
623 if (set_date(num3
, num2
, num
, refuse_future
, now
, tm
) == 0)
625 /* Funny European mm.dd.yy */
627 set_date(num3
, num
, num2
, refuse_future
, now
, tm
) == 0)
635 * Have we filled in any part of the time/date yet?
636 * We just do a binary 'and' to see if the sign bit
637 * is set in all the values.
639 static inline int nodate(struct tm
*tm
)
641 return (tm
->tm_year
&
650 * Have we seen an ISO-8601-alike date, i.e. 20220101T0,
651 * In which, hour is still unset,
652 * and minutes and second has been set to 0.
654 static inline int maybeiso8601(struct tm
*tm
)
656 return tm
->tm_hour
== -1 &&
662 * We've seen a digit. Time? Year? Date?
664 static int match_digit(const char *date
, struct tm
*tm
, int *offset
, int *tm_gmt
)
670 num
= parse_timestamp(date
, &end
, 10);
673 * Seconds since 1970? We trigger on that for any numbers with
674 * more than 8 digits. This is because we don't want to rule out
675 * numbers like 20070606 as a YYYYMMDD date.
677 if (num
>= 100000000 && nodate(tm
)) {
679 if (gmtime_r(&time
, tm
)) {
686 * Check for special formats: num[-.:/]num[same]num
693 if (isdigit(end
[1])) {
694 int match
= match_multi_number(num
, *end
, date
, end
, tm
, 0);
701 * None of the special formats? Try to guess what
702 * the number meant. We use the number of digits
703 * to make a more educated guess..
708 } while (isdigit(date
[n
]));
710 /* 8 digits, compact style of ISO-8601's date: YYYYmmDD */
711 /* 6 digits, compact style of ISO-8601's time: HHMMSS */
712 if (n
== 8 || n
== 6) {
713 unsigned int num1
= num
/ 10000;
714 unsigned int num2
= (num
% 10000) / 100;
715 unsigned int num3
= num
% 100;
717 set_date(num1
, num2
, num3
, NULL
, time(NULL
), tm
);
718 else if (n
== 6 && set_time(num1
, num2
, num3
, tm
) == 0 &&
719 *end
== '.' && isdigit(end
[1]))
720 strtoul(end
+ 1, &end
, 10);
724 /* reduced precision of ISO-8601's time: HHMM or HH */
725 if (maybeiso8601(tm
)) {
726 unsigned int num1
= num
;
727 unsigned int num2
= 0;
732 if ((n
== 4 || n
== 2) && !nodate(tm
) &&
733 set_time(num1
, num2
, 0, tm
) == 0)
736 * We thought this is an ISO-8601 time string,
737 * we set minutes and seconds to 0,
738 * turn out it isn't, rollback the change.
740 tm
->tm_min
= tm
->tm_sec
= -1;
743 /* Four-digit year or a timezone? */
745 if (num
<= 1400 && *offset
== -1) {
746 unsigned int minutes
= num
% 100;
747 unsigned int hours
= num
/ 100;
748 *offset
= hours
*60 + minutes
;
749 } else if (num
> 1900 && num
< 2100)
750 tm
->tm_year
= num
- 1900;
755 * Ignore lots of numerals. We took care of 4-digit years above.
756 * Days or months must be one or two digits.
762 * NOTE! We will give precedence to day-of-month over month or
763 * year numbers in the 1-12 range. So 05 is always "mday 5",
764 * unless we already have a mday..
766 * IOW, 01 Apr 05 parses as "April 1st, 2005".
768 if (num
> 0 && num
< 32 && tm
->tm_mday
< 0) {
773 /* Two-digit year? */
774 if (n
== 2 && tm
->tm_year
< 0) {
775 if (num
< 10 && tm
->tm_mday
>= 0) {
776 tm
->tm_year
= num
+ 100;
785 if (num
> 0 && num
< 13 && tm
->tm_mon
< 0)
791 static int match_tz(const char *date
, int *offp
)
794 int hour
= strtoul(date
+ 1, &end
, 10);
795 int n
= end
- (date
+ 1);
803 min
= 99; /* random crap */
804 } else if (*end
== ':') {
806 min
= strtoul(end
+ 1, &end
, 10);
807 if (end
- (date
+ 1) != 5)
808 min
= 99; /* random crap */
809 } /* otherwise we parsed "hh" */
812 * Don't accept any random crap. Even though some places have
813 * offset larger than 12 hours (e.g. Pacific/Kiritimati is at
814 * UTC+14), there is something wrong if hour part is much
815 * larger than that. We might also want to check that the
816 * minutes are divisible by 15 or something too. (Offset of
817 * Kathmandu, Nepal is UTC+5:45)
819 if (min
< 60 && hour
< 24) {
820 int offset
= hour
* 60 + min
;
828 static void date_string(timestamp_t date
, int offset
, struct strbuf
*buf
)
836 strbuf_addf(buf
, "%"PRItime
" %c%02d%02d", date
, sign
, offset
/ 60, offset
% 60);
840 * Parse a string like "0 +0000" as ancient timestamp near epoch, but
841 * only when it appears not as part of any other string.
843 static int match_object_header_date(const char *date
, timestamp_t
*timestamp
, int *offset
)
849 if (*date
< '0' || '9' < *date
)
851 stamp
= parse_timestamp(date
, &end
, 10);
852 if (*end
!= ' ' || stamp
== TIME_MAX
|| (end
[1] != '+' && end
[1] != '-'))
855 ofs
= strtol(date
, &end
, 10);
856 if ((*end
!= '\0' && (*end
!= '\n')) || end
!= date
+ 4)
858 ofs
= (ofs
/ 100) * 60 + (ofs
% 100);
866 /* Gr. strptime is crap for this; it doesn't have a way to require RFC2822
867 (i.e. English) day/month names, and it doesn't work correctly with %z. */
868 int parse_date_basic(const char *date
, timestamp_t
*timestamp
, int *offset
)
872 timestamp_t dummy_timestamp
;
876 timestamp
= &dummy_timestamp
;
878 offset
= &dummy_offset
;
880 memset(&tm
, 0, sizeof(tm
));
892 !match_object_header_date(date
+ 1, timestamp
, offset
))
893 return 0; /* success */
896 unsigned char c
= *date
;
898 /* Stop at end of string or newline */
903 match
= match_alpha(date
, &tm
, offset
);
905 match
= match_digit(date
, &tm
, offset
, &tm_gmt
);
906 else if ((c
== '-' || c
== '+') && isdigit(date
[1]))
907 match
= match_tz(date
, offset
);
917 /* do not use mktime(), which uses local timezone, here */
918 *timestamp
= tm_to_time_t(&tm
);
919 if (*timestamp
== -1)
925 /* gmtime_r() in match_digit() may have clobbered it */
927 temp_time
= mktime(&tm
);
928 if ((time_t)*timestamp
> temp_time
) {
929 *offset
= ((time_t)*timestamp
- temp_time
) / 60;
931 *offset
= -(int)((temp_time
- (time_t)*timestamp
) / 60);
936 *timestamp
-= *offset
* 60;
937 return 0; /* success */
940 int parse_expiry_date(const char *date
, timestamp_t
*timestamp
)
944 if (!strcmp(date
, "never") || !strcmp(date
, "false"))
946 else if (!strcmp(date
, "all") || !strcmp(date
, "now"))
948 * We take over "now" here, which usually translates
949 * to the current timestamp. This is because the user
950 * really means to expire everything that was done in
951 * the past, and by definition reflogs are the record
952 * of the past, and there is nothing from the future
955 *timestamp
= TIME_MAX
;
957 *timestamp
= approxidate_careful(date
, &errors
);
962 int parse_date(const char *date
, struct strbuf
*result
)
964 timestamp_t timestamp
;
966 if (parse_date_basic(date
, ×tamp
, &offset
))
968 date_string(timestamp
, offset
, result
);
972 static enum date_mode_type
parse_date_type(const char *format
, const char **end
)
974 if (skip_prefix(format
, "relative", end
))
975 return DATE_RELATIVE
;
976 if (skip_prefix(format
, "iso8601-strict", end
) ||
977 skip_prefix(format
, "iso-strict", end
))
978 return DATE_ISO8601_STRICT
;
979 if (skip_prefix(format
, "iso8601", end
) ||
980 skip_prefix(format
, "iso", end
))
982 if (skip_prefix(format
, "rfc2822", end
) ||
983 skip_prefix(format
, "rfc", end
))
985 if (skip_prefix(format
, "short", end
))
987 if (skip_prefix(format
, "default", end
))
989 if (skip_prefix(format
, "human", end
))
991 if (skip_prefix(format
, "raw", end
))
993 if (skip_prefix(format
, "unix", end
))
995 if (skip_prefix(format
, "format", end
))
996 return DATE_STRFTIME
;
998 * Please update $__git_log_date_formats in
999 * git-completion.bash when you add new formats.
1002 die("unknown date format %s", format
);
1005 void parse_date_format(const char *format
, struct date_mode
*mode
)
1009 /* "auto:foo" is "if tty/pager, then foo, otherwise normal" */
1010 if (skip_prefix(format
, "auto:", &p
)) {
1011 if (isatty(1) || pager_in_use())
1017 /* historical alias */
1018 if (!strcmp(format
, "local"))
1019 format
= "default-local";
1021 mode
->type
= parse_date_type(format
, &p
);
1024 if (skip_prefix(p
, "-local", &p
))
1027 if (mode
->type
== DATE_STRFTIME
) {
1028 if (!skip_prefix(p
, ":", &p
))
1029 die("date format missing colon separator: %s", format
);
1030 mode
->strftime_fmt
= xstrdup(p
);
1032 die("unknown date format %s", format
);
1035 void date_mode_release(struct date_mode
*mode
)
1037 free((char *)mode
->strftime_fmt
);
1040 void datestamp(struct strbuf
*out
)
1044 struct tm tm
= { 0 };
1048 offset
= tm_to_time_t(localtime_r(&now
, &tm
)) - now
;
1051 date_string(now
, offset
, out
);
1055 * Relative time update (eg "2 days ago"). If we haven't set the time
1056 * yet, we need to set it from current time.
1058 static time_t update_tm(struct tm
*tm
, struct tm
*now
, time_t sec
)
1062 if (tm
->tm_mday
< 0)
1063 tm
->tm_mday
= now
->tm_mday
;
1065 tm
->tm_mon
= now
->tm_mon
;
1066 if (tm
->tm_year
< 0) {
1067 tm
->tm_year
= now
->tm_year
;
1068 if (tm
->tm_mon
> now
->tm_mon
)
1072 n
= mktime(tm
) - sec
;
1073 localtime_r(&n
, tm
);
1078 * Do we have a pending number at the end, or when
1079 * we see a new one? Let's assume it's a month day,
1080 * as in "Dec 6, 1992"
1082 static void pending_number(struct tm
*tm
, int *num
)
1088 if (tm
->tm_mday
< 0 && number
< 32)
1089 tm
->tm_mday
= number
;
1090 else if (tm
->tm_mon
< 0 && number
< 13)
1091 tm
->tm_mon
= number
-1;
1092 else if (tm
->tm_year
< 0) {
1093 if (number
> 1969 && number
< 2100)
1094 tm
->tm_year
= number
- 1900;
1095 else if (number
> 69 && number
< 100)
1096 tm
->tm_year
= number
;
1097 else if (number
< 38)
1098 tm
->tm_year
= 100 + number
;
1099 /* We screw up for number = 00 ? */
1104 static void date_now(struct tm
*tm
, struct tm
*now
, int *num
)
1107 update_tm(tm
, now
, 0);
1110 static void date_yesterday(struct tm
*tm
, struct tm
*now
, int *num
)
1113 update_tm(tm
, now
, 24*60*60);
1116 static void date_time(struct tm
*tm
, struct tm
*now
, int hour
)
1118 if (tm
->tm_hour
< hour
)
1119 update_tm(tm
, now
, 24*60*60);
1125 static void date_midnight(struct tm
*tm
, struct tm
*now
, int *num
)
1127 pending_number(tm
, num
);
1128 date_time(tm
, now
, 0);
1131 static void date_noon(struct tm
*tm
, struct tm
*now
, int *num
)
1133 pending_number(tm
, num
);
1134 date_time(tm
, now
, 12);
1137 static void date_tea(struct tm
*tm
, struct tm
*now
, int *num
)
1139 pending_number(tm
, num
);
1140 date_time(tm
, now
, 17);
1143 static void date_pm(struct tm
*tm
, struct tm
*now UNUSED
, int *num
)
1154 tm
->tm_hour
= (hour
% 12) + 12;
1157 static void date_am(struct tm
*tm
, struct tm
*now UNUSED
, int *num
)
1168 tm
->tm_hour
= (hour
% 12);
1171 static void date_never(struct tm
*tm
, struct tm
*now UNUSED
, int *num
)
1174 localtime_r(&n
, tm
);
1178 static const struct special
{
1180 void (*fn
)(struct tm
*, struct tm
*, int *);
1182 { "yesterday", date_yesterday
},
1183 { "noon", date_noon
},
1184 { "midnight", date_midnight
},
1185 { "tea", date_tea
},
1188 { "never", date_never
},
1189 { "now", date_now
},
1193 static const char *number_name
[] = {
1194 "zero", "one", "two", "three", "four",
1195 "five", "six", "seven", "eight", "nine", "ten",
1198 static const struct typelen
{
1205 { "days", 24*60*60 },
1206 { "weeks", 7*24*60*60 },
1210 static const char *approxidate_alpha(const char *date
, struct tm
*tm
, struct tm
*now
, int *num
, int *touched
)
1212 const struct typelen
*tl
;
1213 const struct special
*s
;
1214 const char *end
= date
;
1217 while (isalpha(*++end
))
1220 for (i
= 0; i
< 12; i
++) {
1221 int match
= match_string(date
, month_names
[i
]);
1229 for (s
= special
; s
->name
; s
++) {
1230 int len
= strlen(s
->name
);
1231 if (match_string(date
, s
->name
) == len
) {
1232 s
->fn(tm
, now
, num
);
1239 for (i
= 1; i
< 11; i
++) {
1240 int len
= strlen(number_name
[i
]);
1241 if (match_string(date
, number_name
[i
]) == len
) {
1247 if (match_string(date
, "last") == 4) {
1256 int len
= strlen(tl
->type
);
1257 if (match_string(date
, tl
->type
) >= len
-1) {
1258 update_tm(tm
, now
, tl
->length
* *num
);
1266 for (i
= 0; i
< 7; i
++) {
1267 int match
= match_string(date
, weekday_names
[i
]);
1269 int diff
, n
= *num
-1;
1272 diff
= tm
->tm_wday
- i
;
1277 update_tm(tm
, now
, diff
* 24 * 60 * 60);
1283 if (match_string(date
, "months") >= 5) {
1285 update_tm(tm
, now
, 0); /* fill in date fields if needed */
1286 n
= tm
->tm_mon
- *num
;
1297 if (match_string(date
, "years") >= 4) {
1298 update_tm(tm
, now
, 0); /* fill in date fields if needed */
1299 tm
->tm_year
-= *num
;
1308 static const char *approxidate_digit(const char *date
, struct tm
*tm
, int *num
,
1312 timestamp_t number
= parse_timestamp(date
, &end
, 10);
1319 if (isdigit(end
[1])) {
1320 int match
= match_multi_number(number
, *end
, date
, end
,
1323 return date
+ match
;
1327 /* Accept zero-padding only for small numbers ("Dec 02", never "Dec 0002") */
1328 if (date
[0] != '0' || end
- date
<= 2)
1333 static timestamp_t
approxidate_str(const char *date
,
1334 const struct timeval
*tv
,
1342 time_sec
= tv
->tv_sec
;
1343 localtime_r(&time_sec
, &tm
);
1351 unsigned char c
= *date
;
1356 pending_number(&tm
, &number
);
1357 date
= approxidate_digit(date
-1, &tm
, &number
, time_sec
);
1362 date
= approxidate_alpha(date
-1, &tm
, &now
, &number
, &touched
);
1364 pending_number(&tm
, &number
);
1367 return (timestamp_t
)update_tm(&tm
, &now
, 0);
1370 timestamp_t
approxidate_careful(const char *date
, int *error_ret
)
1373 timestamp_t timestamp
;
1379 if (!parse_date_basic(date
, ×tamp
, &offset
)) {
1385 return approxidate_str(date
, &tv
, error_ret
);
1388 int date_overflows(timestamp_t t
)
1392 /* If we overflowed our timestamp data type, that's bad... */
1393 if ((uintmax_t)t
>= TIME_MAX
)
1397 * ...but we also are going to feed the result to system
1398 * functions that expect time_t, which is often "signed long".
1399 * Make sure that we fit into time_t, as well.
1402 return t
!= sys
|| (t
< 1) != (sys
< 1);