]> git.ipfire.org Git - thirdparty/git.git/blame - date.c
pass TIME_DATE_NOW to approxidate future-check
[thirdparty/git.git] / date.c
CommitLineData
ecee9d9e
ET
1/*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
6
e99d59ff
LT
7#include "cache.h"
8
bb5799d6
JS
9/*
10 * This is like mktime, but without normalization of tm_wday and tm_yday.
11 */
23418ea9 12static time_t tm_to_time_t(const struct tm *tm)
ecee9d9e
ET
13{
14 static const int mdays[] = {
15 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
16 };
17 int year = tm->tm_year - 70;
18 int month = tm->tm_mon;
19 int day = tm->tm_mday;
20
21 if (year < 0 || year > 129) /* algo only works for 1970-2099 */
22 return -1;
23 if (month < 0 || month > 11) /* array bounds */
24 return -1;
25 if (month < 2 || (year + 2) % 4)
26 day--;
36e4986f
LT
27 if (tm->tm_hour < 0 || tm->tm_min < 0 || tm->tm_sec < 0)
28 return -1;
ecee9d9e
ET
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;
31}
32
33static const char *month_names[] = {
89967023
LT
34 "January", "February", "March", "April", "May", "June",
35 "July", "August", "September", "October", "November", "December"
ecee9d9e
ET
36};
37
38static const char *weekday_names[] = {
6b7b0427 39 "Sundays", "Mondays", "Tuesdays", "Wednesdays", "Thursdays", "Fridays", "Saturdays"
ecee9d9e
ET
40};
41
9a8e35e9
LT
42static time_t gm_time_t(unsigned long time, int tz)
43{
44 int minutes;
45
46 minutes = tz < 0 ? -tz : tz;
47 minutes = (minutes / 100)*60 + (minutes % 100);
48 minutes = tz < 0 ? -minutes : minutes;
49 return time + minutes * 60;
50}
51
f80cd783
LT
52/*
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"
56 */
2a387043 57static struct tm *time_to_tm(unsigned long time, int tz)
f80cd783 58{
9a8e35e9 59 time_t t = gm_time_t(time, tz);
2a387043
JH
60 return gmtime(&t);
61}
62
a7b02ccf
JH
63/*
64 * What value of "tz" was in effect back then at "time" in the
65 * local timezone?
66 */
67static int local_tzoffset(unsigned long time)
68{
69 time_t t, t_local;
70 struct tm tm;
71 int offset, eastwest;
72
73 t = time;
74 localtime_r(&t, &tm);
bb5799d6 75 t_local = tm_to_time_t(&tm);
a7b02ccf
JH
76
77 if (t_local < t) {
78 eastwest = -1;
79 offset = t - t_local;
80 } else {
81 eastwest = 1;
82 offset = t_local - t;
83 }
84 offset /= 60; /* in minutes */
85 offset = (offset % 60) + ((offset / 60) * 100);
86 return offset * eastwest;
87}
88
7d29afd4 89void show_date_relative(unsigned long time, int tz,
33012fc4 90 const struct timeval *now,
7d29afd4 91 struct strbuf *timebuf)
33012fc4
AR
92{
93 unsigned long diff;
7d29afd4
JN
94 if (now->tv_sec < time) {
95 strbuf_addstr(timebuf, _("in the future"));
96 return;
97 }
33012fc4
AR
98 diff = now->tv_sec - time;
99 if (diff < 90) {
7d29afd4
JN
100 strbuf_addf(timebuf,
101 Q_("%lu second ago", "%lu seconds ago", diff), diff);
102 return;
33012fc4
AR
103 }
104 /* Turn it into minutes */
105 diff = (diff + 30) / 60;
106 if (diff < 90) {
7d29afd4
JN
107 strbuf_addf(timebuf,
108 Q_("%lu minute ago", "%lu minutes ago", diff), diff);
109 return;
33012fc4
AR
110 }
111 /* Turn it into hours */
112 diff = (diff + 30) / 60;
113 if (diff < 36) {
7d29afd4
JN
114 strbuf_addf(timebuf,
115 Q_("%lu hour ago", "%lu hours ago", diff), diff);
116 return;
33012fc4
AR
117 }
118 /* We deal with number of days from here on */
119 diff = (diff + 12) / 24;
120 if (diff < 14) {
7d29afd4
JN
121 strbuf_addf(timebuf,
122 Q_("%lu day ago", "%lu days ago", diff), diff);
123 return;
33012fc4
AR
124 }
125 /* Say weeks for the past 10 weeks or so */
126 if (diff < 70) {
7d29afd4
JN
127 strbuf_addf(timebuf,
128 Q_("%lu week ago", "%lu weeks ago", (diff + 3) / 7),
129 (diff + 3) / 7);
130 return;
33012fc4
AR
131 }
132 /* Say months for the past 12 months or so */
dbc1b1f7 133 if (diff < 365) {
7d29afd4
JN
134 strbuf_addf(timebuf,
135 Q_("%lu month ago", "%lu months ago", (diff + 15) / 30),
136 (diff + 15) / 30);
137 return;
33012fc4
AR
138 }
139 /* Give years and months for 5 years or so */
140 if (diff < 1825) {
f1e9c548
MG
141 unsigned long totalmonths = (diff * 12 * 2 + 365) / (365 * 2);
142 unsigned long years = totalmonths / 12;
143 unsigned long months = totalmonths % 12;
7d29afd4
JN
144 if (months) {
145 struct strbuf sb = STRBUF_INIT;
146 strbuf_addf(&sb, Q_("%lu year", "%lu years", years), years);
7d29afd4 147 strbuf_addf(timebuf,
fcaed04d 148 /* TRANSLATORS: "%s" is "<n> years" */
7d29afd4
JN
149 Q_("%s, %lu month ago", "%s, %lu months ago", months),
150 sb.buf, months);
151 strbuf_release(&sb);
152 } else
153 strbuf_addf(timebuf,
154 Q_("%lu year ago", "%lu years ago", years), years);
155 return;
33012fc4
AR
156 }
157 /* Otherwise, just years. Centuries is probably overkill. */
7d29afd4
JN
158 strbuf_addf(timebuf,
159 Q_("%lu year ago", "%lu years ago", (diff + 183) / 365),
160 (diff + 183) / 365);
33012fc4
AR
161}
162
f8493ec0 163const char *show_date(unsigned long time, int tz, enum date_mode mode)
2a387043
JH
164{
165 struct tm *tm;
7d29afd4 166 static struct strbuf timebuf = STRBUF_INIT;
2a387043 167
7dff9b30 168 if (mode == DATE_RAW) {
7d29afd4
JN
169 strbuf_reset(&timebuf);
170 strbuf_addf(&timebuf, "%lu %+05d", time, tz);
171 return timebuf.buf;
7dff9b30
LT
172 }
173
f8493ec0 174 if (mode == DATE_RELATIVE) {
9a8e35e9 175 struct timeval now;
7d29afd4
JN
176
177 strbuf_reset(&timebuf);
9a8e35e9 178 gettimeofday(&now, NULL);
7d29afd4
JN
179 show_date_relative(time, tz, &now, &timebuf);
180 return timebuf.buf;
9a8e35e9
LT
181 }
182
a7b02ccf
JH
183 if (mode == DATE_LOCAL)
184 tz = local_tzoffset(time);
185
2a387043 186 tm = time_to_tm(time, tz);
2b15846d
JK
187 if (!tm) {
188 tm = time_to_tm(0, 0);
189 tz = 0;
190 }
7d29afd4
JN
191
192 strbuf_reset(&timebuf);
f8493ec0 193 if (mode == DATE_SHORT)
7d29afd4 194 strbuf_addf(&timebuf, "%04d-%02d-%02d", tm->tm_year + 1900,
f8493ec0 195 tm->tm_mon + 1, tm->tm_mday);
ee8f838e 196 else if (mode == DATE_ISO8601)
7d29afd4 197 strbuf_addf(&timebuf, "%04d-%02d-%02d %02d:%02d:%02d %+05d",
ee8f838e
RR
198 tm->tm_year + 1900,
199 tm->tm_mon + 1,
200 tm->tm_mday,
201 tm->tm_hour, tm->tm_min, tm->tm_sec,
202 tz);
73013afd 203 else if (mode == DATE_RFC2822)
7d29afd4 204 strbuf_addf(&timebuf, "%.3s, %d %.3s %d %02d:%02d:%02d %+05d",
73013afd
JH
205 weekday_names[tm->tm_wday], tm->tm_mday,
206 month_names[tm->tm_mon], tm->tm_year + 1900,
207 tm->tm_hour, tm->tm_min, tm->tm_sec, tz);
f8493ec0 208 else
7d29afd4 209 strbuf_addf(&timebuf, "%.3s %.3s %d %02d:%02d:%02d %d%c%+05d",
f8493ec0
JS
210 weekday_names[tm->tm_wday],
211 month_names[tm->tm_mon],
212 tm->tm_mday,
213 tm->tm_hour, tm->tm_min, tm->tm_sec,
a7b02ccf
JH
214 tm->tm_year + 1900,
215 (mode == DATE_LOCAL) ? 0 : ' ',
216 tz);
7d29afd4 217 return timebuf.buf;
f80cd783
LT
218}
219
89967023
LT
220/*
221 * Check these. And note how it doesn't do the summer-time conversion.
222 *
223 * In my world, it's always summer, and things are probably a bit off
224 * in other ways too.
225 */
226static const struct {
227 const char *name;
228 int offset;
5e2a78a4 229 int dst;
89967023 230} timezone_names[] = {
5e2a78a4
LT
231 { "IDLW", -12, 0, }, /* International Date Line West */
232 { "NT", -11, 0, }, /* Nome */
233 { "CAT", -10, 0, }, /* Central Alaska */
234 { "HST", -10, 0, }, /* Hawaii Standard */
235 { "HDT", -10, 1, }, /* Hawaii Daylight */
236 { "YST", -9, 0, }, /* Yukon Standard */
237 { "YDT", -9, 1, }, /* Yukon Daylight */
238 { "PST", -8, 0, }, /* Pacific Standard */
239 { "PDT", -8, 1, }, /* Pacific Daylight */
240 { "MST", -7, 0, }, /* Mountain Standard */
241 { "MDT", -7, 1, }, /* Mountain Daylight */
242 { "CST", -6, 0, }, /* Central Standard */
243 { "CDT", -6, 1, }, /* Central Daylight */
244 { "EST", -5, 0, }, /* Eastern Standard */
245 { "EDT", -5, 1, }, /* Eastern Daylight */
246 { "AST", -3, 0, }, /* Atlantic Standard */
247 { "ADT", -3, 1, }, /* Atlantic Daylight */
248 { "WAT", -1, 0, }, /* West Africa */
249
250 { "GMT", 0, 0, }, /* Greenwich Mean */
251 { "UTC", 0, 0, }, /* Universal (Coordinated) */
75b37e70 252 { "Z", 0, 0, }, /* Zulu, alias for UTC */
5e2a78a4
LT
253
254 { "WET", 0, 0, }, /* Western European */
255 { "BST", 0, 1, }, /* British Summer */
256 { "CET", +1, 0, }, /* Central European */
257 { "MET", +1, 0, }, /* Middle European */
258 { "MEWT", +1, 0, }, /* Middle European Winter */
259 { "MEST", +1, 1, }, /* Middle European Summer */
260 { "CEST", +1, 1, }, /* Central European Summer */
261 { "MESZ", +1, 1, }, /* Middle European Summer */
262 { "FWT", +1, 0, }, /* French Winter */
263 { "FST", +1, 1, }, /* French Summer */
264 { "EET", +2, 0, }, /* Eastern Europe, USSR Zone 1 */
92e2311b 265 { "EEST", +2, 1, }, /* Eastern European Daylight */
5e2a78a4
LT
266 { "WAST", +7, 0, }, /* West Australian Standard */
267 { "WADT", +7, 1, }, /* West Australian Daylight */
268 { "CCT", +8, 0, }, /* China Coast, USSR Zone 7 */
269 { "JST", +9, 0, }, /* Japan Standard, USSR Zone 8 */
270 { "EAST", +10, 0, }, /* Eastern Australian Standard */
271 { "EADT", +10, 1, }, /* Eastern Australian Daylight */
272 { "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */
695ed472
SD
273 { "NZT", +12, 0, }, /* New Zealand */
274 { "NZST", +12, 0, }, /* New Zealand Standard */
275 { "NZDT", +12, 1, }, /* New Zealand Daylight */
5e2a78a4 276 { "IDLE", +12, 0, }, /* International Date Line East */
89967023 277};
ecee9d9e 278
89967023 279static int match_string(const char *date, const char *str)
ecee9d9e 280{
89967023
LT
281 int i = 0;
282
283 for (i = 0; *date; date++, str++, i++) {
284 if (*date == *str)
285 continue;
286 if (toupper(*date) == toupper(*str))
287 continue;
288 if (!isalnum(*date))
289 break;
290 return 0;
291 }
292 return i;
ecee9d9e
ET
293}
294
68849b54
LT
295static int skip_alpha(const char *date)
296{
297 int i = 0;
298 do {
299 i++;
300 } while (isalpha(date[i]));
301 return i;
302}
303
89967023
LT
304/*
305* Parse month, weekday, or timezone name
306*/
307static int match_alpha(const char *date, struct tm *tm, int *offset)
ecee9d9e 308{
89967023 309 int i;
ecee9d9e 310
89967023
LT
311 for (i = 0; i < 12; i++) {
312 int match = match_string(date, month_names[i]);
313 if (match >= 3) {
314 tm->tm_mon = i;
315 return match;
ecee9d9e 316 }
89967023 317 }
ecee9d9e 318
89967023
LT
319 for (i = 0; i < 7; i++) {
320 int match = match_string(date, weekday_names[i]);
321 if (match >= 3) {
322 tm->tm_wday = i;
323 return match;
324 }
325 }
ecee9d9e 326
b4f2a6ac 327 for (i = 0; i < ARRAY_SIZE(timezone_names); i++) {
89967023 328 int match = match_string(date, timezone_names[i].name);
75b37e70 329 if (match >= 3 || match == strlen(timezone_names[i].name)) {
5e2a78a4
LT
330 int off = timezone_names[i].offset;
331
332 /* This is bogus, but we like summer */
333 off += timezone_names[i].dst;
334
92e2311b
LT
335 /* Only use the tz name offset if we don't have anything better */
336 if (*offset == -1)
337 *offset = 60*off;
338
89967023 339 return match;
ecee9d9e
ET
340 }
341 }
ecee9d9e 342
68849b54 343 if (match_string(date, "PM") == 2) {
18b633ca
LT
344 tm->tm_hour = (tm->tm_hour % 12) + 12;
345 return 2;
346 }
347
348 if (match_string(date, "AM") == 2) {
349 tm->tm_hour = (tm->tm_hour % 12) + 0;
68849b54
LT
350 return 2;
351 }
352
89967023 353 /* BAD CRAP */
68849b54 354 return skip_alpha(date);
89967023 355}
ecee9d9e 356
38035cf4 357static int is_date(int year, int month, int day, struct tm *now_tm, time_t now, struct tm *tm)
89967023 358{
198b0fb6 359 if (month > 0 && month < 13 && day > 0 && day < 32) {
38035cf4
JH
360 struct tm check = *tm;
361 struct tm *r = (now_tm ? &check : tm);
362 time_t specified;
363
364 r->tm_mon = month - 1;
365 r->tm_mday = day;
198b0fb6 366 if (year == -1) {
38035cf4
JH
367 if (!now_tm)
368 return 1;
369 r->tm_year = now_tm->tm_year;
89967023 370 }
38035cf4
JH
371 else if (year >= 1970 && year < 2100)
372 r->tm_year = year - 1900;
373 else if (year > 70 && year < 100)
374 r->tm_year = year;
375 else if (year < 38)
376 r->tm_year = year + 100;
377 else
198b0fb6 378 return 0;
38035cf4
JH
379 if (!now_tm)
380 return 1;
381
bb5799d6 382 specified = tm_to_time_t(r);
198b0fb6 383
38035cf4
JH
384 /* Be it commit time or author time, it does not make
385 * sense to specify timestamp way into the future. Make
386 * sure it is not later than ten days from now...
387 */
e6e87516 388 if ((specified != -1) && (now + 10*24*3600 < specified))
38035cf4
JH
389 return 0;
390 tm->tm_mon = r->tm_mon;
391 tm->tm_mday = r->tm_mday;
392 if (year != -1)
393 tm->tm_year = r->tm_year;
198b0fb6 394 return 1;
89967023 395 }
198b0fb6
LT
396 return 0;
397}
ecee9d9e 398
073281e2
JK
399static int match_multi_number(unsigned long num, char c, const char *date,
400 char *end, struct tm *tm, time_t now)
198b0fb6 401{
38035cf4
JH
402 struct tm now_tm;
403 struct tm *refuse_future;
198b0fb6
LT
404 long num2, num3;
405
406 num2 = strtol(end+1, &end, 10);
407 num3 = -1;
408 if (*end == c && isdigit(end[1]))
409 num3 = strtol(end+1, &end, 10);
410
411 /* Time? Date? */
89967023 412 switch (c) {
198b0fb6
LT
413 case ':':
414 if (num3 < 0)
415 num3 = 0;
416 if (num < 25 && num2 >= 0 && num2 < 60 && num3 >= 0 && num3 <= 60) {
417 tm->tm_hour = num;
418 tm->tm_min = num2;
419 tm->tm_sec = num3;
89967023
LT
420 break;
421 }
198b0fb6 422 return 0;
89967023
LT
423
424 case '-':
425 case '/':
38035cf4 426 case '.':
073281e2
JK
427 if (!now)
428 now = time(NULL);
38035cf4
JH
429 refuse_future = NULL;
430 if (gmtime_r(&now, &now_tm))
431 refuse_future = &now_tm;
432
198b0fb6
LT
433 if (num > 70) {
434 /* yyyy-mm-dd? */
38035cf4 435 if (is_date(num, num2, num3, refuse_future, now, tm))
198b0fb6
LT
436 break;
437 /* yyyy-dd-mm? */
38035cf4 438 if (is_date(num, num3, num2, refuse_future, now, tm))
89967023 439 break;
198b0fb6 440 }
38035cf4
JH
441 /* Our eastern European friends say dd.mm.yy[yy]
442 * is the norm there, so giving precedence to
443 * mm/dd/yy[yy] form only when separator is not '.'
444 */
445 if (c != '.' &&
446 is_date(num3, num, num2, refuse_future, now, tm))
447 break;
448 /* European dd.mm.yy[yy] or funny US dd/mm/yy[yy] */
449 if (is_date(num3, num2, num, refuse_future, now, tm))
89967023 450 break;
38035cf4
JH
451 /* Funny European mm.dd.yy */
452 if (c == '.' &&
453 is_date(num3, num, num2, refuse_future, now, tm))
198b0fb6
LT
454 break;
455 return 0;
456 }
457 return end - date;
458}
459
36e4986f
LT
460/*
461 * Have we filled in any part of the time/date yet?
462 * We just do a binary 'and' to see if the sign bit
463 * is set in all the values.
464 */
9f2b6d29
LT
465static inline int nodate(struct tm *tm)
466{
36e4986f
LT
467 return (tm->tm_year &
468 tm->tm_mon &
469 tm->tm_mday &
470 tm->tm_hour &
471 tm->tm_min &
472 tm->tm_sec) < 0;
9f2b6d29
LT
473}
474
198b0fb6 475/*
a6080a0a 476 * We've seen a digit. Time? Year? Date?
198b0fb6 477 */
26a2d8ae 478static int match_digit(const char *date, struct tm *tm, int *offset, int *tm_gmt)
198b0fb6
LT
479{
480 int n;
481 char *end;
482 unsigned long num;
483
484 num = strtoul(date, &end, 10);
485
486 /*
a1a5a634
JS
487 * Seconds since 1970? We trigger on that for any numbers with
488 * more than 8 digits. This is because we don't want to rule out
489 * numbers like 20070606 as a YYYYMMDD date.
198b0fb6 490 */
9f2b6d29 491 if (num >= 100000000 && nodate(tm)) {
198b0fb6 492 time_t time = num;
9cb480f2
JH
493 if (gmtime_r(&time, tm)) {
494 *tm_gmt = 1;
198b0fb6 495 return end - date;
9cb480f2 496 }
198b0fb6
LT
497 }
498
499 /*
38035cf4 500 * Check for special formats: num[-.:/]num[same]num
198b0fb6
LT
501 */
502 switch (*end) {
503 case ':':
38035cf4 504 case '.':
198b0fb6
LT
505 case '/':
506 case '-':
507 if (isdigit(end[1])) {
073281e2 508 int match = match_multi_number(num, *end, date, end, tm, 0);
198b0fb6
LT
509 if (match)
510 return match;
89967023
LT
511 }
512 }
198b0fb6
LT
513
514 /*
515 * None of the special formats? Try to guess what
516 * the number meant. We use the number of digits
517 * to make a more educated guess..
518 */
519 n = 0;
520 do {
521 n++;
522 } while (isdigit(date[n]));
523
524 /* Four-digit year or a timezone? */
525 if (n == 4) {
7122f82f 526 if (num <= 1400 && *offset == -1) {
198b0fb6
LT
527 unsigned int minutes = num % 100;
528 unsigned int hours = num / 100;
529 *offset = hours*60 + minutes;
530 } else if (num > 1900 && num < 2100)
531 tm->tm_year = num - 1900;
532 return n;
533 }
534
9f2b6d29
LT
535 /*
536 * Ignore lots of numerals. We took care of 4-digit years above.
537 * Days or months must be one or two digits.
538 */
539 if (n > 2)
540 return n;
541
198b0fb6
LT
542 /*
543 * NOTE! We will give precedence to day-of-month over month or
82f9d58a 544 * year numbers in the 1-12 range. So 05 is always "mday 5",
198b0fb6
LT
545 * unless we already have a mday..
546 *
547 * IOW, 01 Apr 05 parses as "April 1st, 2005".
548 */
549 if (num > 0 && num < 32 && tm->tm_mday < 0) {
550 tm->tm_mday = num;
551 return n;
552 }
553
554 /* Two-digit year? */
555 if (n == 2 && tm->tm_year < 0) {
556 if (num < 10 && tm->tm_mday >= 0) {
557 tm->tm_year = num + 100;
558 return n;
559 }
560 if (num >= 70) {
561 tm->tm_year = num;
562 return n;
563 }
564 }
565
90290552 566 if (num > 0 && num < 13 && tm->tm_mon < 0)
198b0fb6 567 tm->tm_mon = num-1;
a6080a0a 568
198b0fb6 569 return n;
89967023 570}
ecee9d9e 571
26a2d8ae 572static int match_tz(const char *date, int *offp)
89967023
LT
573{
574 char *end;
ee646eb4
HL
575 int hour = strtoul(date + 1, &end, 10);
576 int n = end - (date + 1);
577 int min = 0;
ecee9d9e 578
ee646eb4
HL
579 if (n == 4) {
580 /* hhmm */
581 min = hour % 100;
582 hour = hour / 100;
583 } else if (n != 2) {
584 min = 99; /* random crap */
585 } else if (*end == ':') {
586 /* hh:mm? */
587 min = strtoul(end + 1, &end, 10);
588 if (end - (date + 1) != 5)
589 min = 99; /* random crap */
590 } /* otherwise we parsed "hh" */
ecee9d9e 591
198b0fb6 592 /*
ee646eb4
HL
593 * Don't accept any random crap. Even though some places have
594 * offset larger than 12 hours (e.g. Pacific/Kiritimati is at
595 * UTC+14), there is something wrong if hour part is much
596 * larger than that. We might also want to check that the
597 * minutes are divisible by 15 or something too. (Offset of
598 * Kathmandu, Nepal is UTC+5:45)
198b0fb6 599 */
ee646eb4
HL
600 if (min < 60 && hour < 24) {
601 int offset = hour * 60 + min;
68849b54
LT
602 if (*date == '-')
603 offset = -offset;
68849b54
LT
604 *offp = offset;
605 }
89967023
LT
606 return end - date;
607}
ecee9d9e 608
01c6ad29
LT
609static int date_string(unsigned long date, int offset, char *buf, int len)
610{
611 int sign = '+';
612
613 if (offset < 0) {
614 offset = -offset;
615 sign = '-';
616 }
617 return snprintf(buf, len, "%lu %c%02d%02d", date, sign, offset / 60, offset % 60);
618}
619
116eb3ab
JH
620/*
621 * Parse a string like "0 +0000" as ancient timestamp near epoch, but
622 * only when it appears not as part of any other string.
623 */
624static int match_object_header_date(const char *date, unsigned long *timestamp, int *offset)
625{
626 char *end;
627 unsigned long stamp;
628 int ofs;
629
be21d167 630 if (*date < '0' || '9' < *date)
116eb3ab
JH
631 return -1;
632 stamp = strtoul(date, &end, 10);
633 if (*end != ' ' || stamp == ULONG_MAX || (end[1] != '+' && end[1] != '-'))
634 return -1;
635 date = end + 2;
636 ofs = strtol(date, &end, 10);
637 if ((*end != '\0' && (*end != '\n')) || end != date + 4)
638 return -1;
639 ofs = (ofs / 100) * 60 + (ofs % 100);
640 if (date[-1] == '-')
641 ofs = -ofs;
642 *timestamp = stamp;
643 *offset = ofs;
644 return 0;
645}
646
89967023
LT
647/* Gr. strptime is crap for this; it doesn't have a way to require RFC2822
648 (i.e. English) day/month names, and it doesn't work correctly with %z. */
9644c061 649int parse_date_basic(const char *date, unsigned long *timestamp, int *offset)
89967023
LT
650{
651 struct tm tm;
c5043cc1
RR
652 int tm_gmt;
653 unsigned long dummy_timestamp;
654 int dummy_offset;
655
656 if (!timestamp)
657 timestamp = &dummy_timestamp;
658 if (!offset)
659 offset = &dummy_offset;
ecee9d9e 660
89967023
LT
661 memset(&tm, 0, sizeof(tm));
662 tm.tm_year = -1;
663 tm.tm_mon = -1;
664 tm.tm_mday = -1;
eaa85129 665 tm.tm_isdst = -1;
36e4986f
LT
666 tm.tm_hour = -1;
667 tm.tm_min = -1;
668 tm.tm_sec = -1;
c5043cc1 669 *offset = -1;
9cb480f2 670 tm_gmt = 0;
89967023 671
2c733fb2
JH
672 if (*date == '@' &&
673 !match_object_header_date(date + 1, timestamp, offset))
116eb3ab 674 return 0; /* success */
89967023
LT
675 for (;;) {
676 int match = 0;
677 unsigned char c = *date;
678
679 /* Stop at end of string or newline */
680 if (!c || c == '\n')
681 break;
682
683 if (isalpha(c))
c5043cc1 684 match = match_alpha(date, &tm, offset);
89967023 685 else if (isdigit(c))
c5043cc1 686 match = match_digit(date, &tm, offset, &tm_gmt);
89967023 687 else if ((c == '-' || c == '+') && isdigit(date[1]))
c5043cc1 688 match = match_tz(date, offset);
89967023
LT
689
690 if (!match) {
691 /* BAD CRAP */
692 match = 1;
a6080a0a 693 }
89967023
LT
694
695 date += match;
696 }
ecee9d9e 697
eaa85129 698 /* mktime uses local timezone */
c5043cc1 699 *timestamp = tm_to_time_t(&tm);
e1033da6
MG
700 if (*offset == -1) {
701 time_t temp_time = mktime(&tm);
702 if ((time_t)*timestamp > temp_time) {
703 *offset = ((time_t)*timestamp - temp_time) / 60;
704 } else {
705 *offset = -(int)((temp_time - (time_t)*timestamp) / 60);
706 }
707 }
eaa85129 708
c5043cc1 709 if (*timestamp == -1)
2a39064c 710 return -1;
ecee9d9e 711
9cb480f2 712 if (!tm_gmt)
c5043cc1 713 *timestamp -= *offset * 60;
9644c061 714 return 0; /* success */
c5043cc1
RR
715}
716
3d27b9b0
JH
717int parse_expiry_date(const char *date, unsigned long *timestamp)
718{
719 int errors = 0;
720
721 if (!strcmp(date, "never") || !strcmp(date, "false"))
722 *timestamp = 0;
723 else if (!strcmp(date, "all") || !strcmp(date, "now"))
724 /*
725 * We take over "now" here, which usually translates
726 * to the current timestamp. This is because the user
727 * really means to expire everything she has done in
728 * the past, and by definition reflogs are the record
729 * of the past, and there is nothing from the future
730 * to be kept.
731 */
732 *timestamp = ULONG_MAX;
733 else
734 *timestamp = approxidate_careful(date, &errors);
735
736 return errors;
737}
738
c5043cc1
RR
739int parse_date(const char *date, char *result, int maxlen)
740{
741 unsigned long timestamp;
742 int offset;
9644c061 743 if (parse_date_basic(date, &timestamp, &offset))
c5043cc1 744 return -1;
9644c061 745 return date_string(timestamp, offset, result, maxlen);
ecee9d9e
ET
746}
747
856665f8
AP
748enum date_mode parse_date_format(const char *format)
749{
750 if (!strcmp(format, "relative"))
751 return DATE_RELATIVE;
752 else if (!strcmp(format, "iso8601") ||
753 !strcmp(format, "iso"))
754 return DATE_ISO8601;
755 else if (!strcmp(format, "rfc2822") ||
756 !strcmp(format, "rfc"))
757 return DATE_RFC2822;
758 else if (!strcmp(format, "short"))
759 return DATE_SHORT;
760 else if (!strcmp(format, "local"))
761 return DATE_LOCAL;
762 else if (!strcmp(format, "default"))
763 return DATE_NORMAL;
7dff9b30
LT
764 else if (!strcmp(format, "raw"))
765 return DATE_RAW;
856665f8
AP
766 else
767 die("unknown date format %s", format);
768}
769
ecee9d9e
ET
770void datestamp(char *buf, int bufsize)
771{
772 time_t now;
773 int offset;
774
775 time(&now);
776
bb5799d6 777 offset = tm_to_time_t(localtime(&now)) - now;
ecee9d9e
ET
778 offset /= 60;
779
01c6ad29 780 date_string(now, offset, buf, bufsize);
ecee9d9e 781}
3c07b1d1 782
90290552
LT
783/*
784 * Relative time update (eg "2 days ago"). If we haven't set the time
785 * yet, we need to set it from current time.
786 */
787static unsigned long update_tm(struct tm *tm, struct tm *now, unsigned long sec)
3c07b1d1 788{
90290552
LT
789 time_t n;
790
791 if (tm->tm_mday < 0)
792 tm->tm_mday = now->tm_mday;
793 if (tm->tm_mon < 0)
794 tm->tm_mon = now->tm_mon;
795 if (tm->tm_year < 0) {
796 tm->tm_year = now->tm_year;
797 if (tm->tm_mon > now->tm_mon)
798 tm->tm_year--;
799 }
800
801 n = mktime(tm) - sec;
3c07b1d1 802 localtime_r(&n, tm);
90290552 803 return n;
3c07b1d1
LT
804}
805
93cfa7c7
JH
806static void date_now(struct tm *tm, struct tm *now, int *num)
807{
808 update_tm(tm, now, 0);
809}
810
90290552 811static void date_yesterday(struct tm *tm, struct tm *now, int *num)
a8aca418 812{
90290552 813 update_tm(tm, now, 24*60*60);
a8aca418
LT
814}
815
90290552 816static void date_time(struct tm *tm, struct tm *now, int hour)
a8aca418
LT
817{
818 if (tm->tm_hour < hour)
90290552 819 date_yesterday(tm, now, NULL);
a8aca418
LT
820 tm->tm_hour = hour;
821 tm->tm_min = 0;
822 tm->tm_sec = 0;
823}
824
90290552 825static void date_midnight(struct tm *tm, struct tm *now, int *num)
a8aca418 826{
90290552 827 date_time(tm, now, 0);
a8aca418
LT
828}
829
90290552 830static void date_noon(struct tm *tm, struct tm *now, int *num)
a8aca418 831{
90290552 832 date_time(tm, now, 12);
a8aca418
LT
833}
834
90290552 835static void date_tea(struct tm *tm, struct tm *now, int *num)
a8aca418 836{
90290552 837 date_time(tm, now, 17);
a8aca418
LT
838}
839
90290552 840static void date_pm(struct tm *tm, struct tm *now, int *num)
393d340e 841{
18b633ca 842 int hour, n = *num;
393d340e
LT
843 *num = 0;
844
18b633ca
LT
845 hour = tm->tm_hour;
846 if (n) {
847 hour = n;
393d340e
LT
848 tm->tm_min = 0;
849 tm->tm_sec = 0;
850 }
18b633ca 851 tm->tm_hour = (hour % 12) + 12;
393d340e
LT
852}
853
90290552 854static void date_am(struct tm *tm, struct tm *now, int *num)
393d340e 855{
18b633ca 856 int hour, n = *num;
393d340e
LT
857 *num = 0;
858
18b633ca
LT
859 hour = tm->tm_hour;
860 if (n) {
861 hour = n;
393d340e
LT
862 tm->tm_min = 0;
863 tm->tm_sec = 0;
864 }
18b633ca 865 tm->tm_hour = (hour % 12);
393d340e
LT
866}
867
90290552 868static void date_never(struct tm *tm, struct tm *now, int *num)
af66366a 869{
8c6b5786
OM
870 time_t n = 0;
871 localtime_r(&n, tm);
af66366a
JS
872}
873
a8aca418
LT
874static const struct special {
875 const char *name;
90290552 876 void (*fn)(struct tm *, struct tm *, int *);
a8aca418
LT
877} special[] = {
878 { "yesterday", date_yesterday },
879 { "noon", date_noon },
880 { "midnight", date_midnight },
881 { "tea", date_tea },
393d340e
LT
882 { "PM", date_pm },
883 { "AM", date_am },
af66366a 884 { "never", date_never },
93cfa7c7 885 { "now", date_now },
a8aca418
LT
886 { NULL }
887};
888
3c07b1d1
LT
889static const char *number_name[] = {
890 "zero", "one", "two", "three", "four",
891 "five", "six", "seven", "eight", "nine", "ten",
892};
893
a8aca418 894static const struct typelen {
3c07b1d1
LT
895 const char *type;
896 int length;
897} typelen[] = {
898 { "seconds", 1 },
899 { "minutes", 60 },
900 { "hours", 60*60 },
901 { "days", 24*60*60 },
902 { "weeks", 7*24*60*60 },
903 { NULL }
a6080a0a 904};
3c07b1d1 905
93cfa7c7 906static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm *now, int *num, int *touched)
3c07b1d1 907{
a8aca418
LT
908 const struct typelen *tl;
909 const struct special *s;
3c07b1d1 910 const char *end = date;
5df7dbba 911 int i;
3c07b1d1 912
38db01b7 913 while (isalpha(*++end))
5df7dbba 914 ;
3c07b1d1
LT
915
916 for (i = 0; i < 12; i++) {
917 int match = match_string(date, month_names[i]);
918 if (match >= 3) {
919 tm->tm_mon = i;
93cfa7c7 920 *touched = 1;
3c07b1d1
LT
921 return end;
922 }
923 }
924
a8aca418
LT
925 for (s = special; s->name; s++) {
926 int len = strlen(s->name);
927 if (match_string(date, s->name) == len) {
90290552 928 s->fn(tm, now, num);
93cfa7c7 929 *touched = 1;
a8aca418
LT
930 return end;
931 }
3c07b1d1
LT
932 }
933
934 if (!*num) {
935 for (i = 1; i < 11; i++) {
936 int len = strlen(number_name[i]);
937 if (match_string(date, number_name[i]) == len) {
938 *num = i;
93cfa7c7 939 *touched = 1;
3c07b1d1
LT
940 return end;
941 }
942 }
93cfa7c7 943 if (match_string(date, "last") == 4) {
3c07b1d1 944 *num = 1;
93cfa7c7
JH
945 *touched = 1;
946 }
3c07b1d1
LT
947 return end;
948 }
949
950 tl = typelen;
951 while (tl->type) {
952 int len = strlen(tl->type);
953 if (match_string(date, tl->type) >= len-1) {
90290552 954 update_tm(tm, now, tl->length * *num);
3c07b1d1 955 *num = 0;
93cfa7c7 956 *touched = 1;
3c07b1d1
LT
957 return end;
958 }
959 tl++;
960 }
961
6b7b0427
LT
962 for (i = 0; i < 7; i++) {
963 int match = match_string(date, weekday_names[i]);
964 if (match >= 3) {
965 int diff, n = *num -1;
966 *num = 0;
967
968 diff = tm->tm_wday - i;
969 if (diff <= 0)
970 n++;
971 diff += 7*n;
972
90290552 973 update_tm(tm, now, diff * 24 * 60 * 60);
93cfa7c7 974 *touched = 1;
6b7b0427
LT
975 return end;
976 }
977 }
978
3c07b1d1 979 if (match_string(date, "months") >= 5) {
931e8e27
JK
980 int n;
981 update_tm(tm, now, 0); /* fill in date fields if needed */
982 n = tm->tm_mon - *num;
3c07b1d1
LT
983 *num = 0;
984 while (n < 0) {
985 n += 12;
986 tm->tm_year--;
987 }
988 tm->tm_mon = n;
93cfa7c7 989 *touched = 1;
3c07b1d1
LT
990 return end;
991 }
992
993 if (match_string(date, "years") >= 4) {
931e8e27 994 update_tm(tm, now, 0); /* fill in date fields if needed */
3c07b1d1
LT
995 tm->tm_year -= *num;
996 *num = 0;
93cfa7c7 997 *touched = 1;
3c07b1d1
LT
998 return end;
999 }
1000
1001 return end;
1002}
1003
073281e2
JK
1004static const char *approxidate_digit(const char *date, struct tm *tm, int *num,
1005 time_t now)
e92a54d9
LT
1006{
1007 char *end;
1008 unsigned long number = strtoul(date, &end, 10);
1009
393d340e
LT
1010 switch (*end) {
1011 case ':':
1012 case '.':
1013 case '/':
1014 case '-':
1015 if (isdigit(end[1])) {
073281e2
JK
1016 int match = match_multi_number(number, *end, date, end,
1017 tm, now);
393d340e
LT
1018 if (match)
1019 return date + match;
1020 }
1021 }
1022
9f2b6d29
LT
1023 /* Accept zero-padding only for small numbers ("Dec 02", never "Dec 0002") */
1024 if (date[0] != '0' || end - date <= 2)
1025 *num = number;
e92a54d9
LT
1026 return end;
1027}
1028
90290552
LT
1029/*
1030 * Do we have a pending number at the end, or when
1031 * we see a new one? Let's assume it's a month day,
1032 * as in "Dec 6, 1992"
1033 */
1034static void pending_number(struct tm *tm, int *num)
1035{
1036 int number = *num;
1037
1038 if (number) {
1039 *num = 0;
1040 if (tm->tm_mday < 0 && number < 32)
1041 tm->tm_mday = number;
36e4986f
LT
1042 else if (tm->tm_mon < 0 && number < 13)
1043 tm->tm_mon = number-1;
1044 else if (tm->tm_year < 0) {
1045 if (number > 1969 && number < 2100)
1046 tm->tm_year = number - 1900;
1047 else if (number > 69 && number < 100)
1048 tm->tm_year = number;
1049 else if (number < 38)
1050 tm->tm_year = 100 + number;
1051 /* We screw up for number = 00 ? */
1052 }
90290552
LT
1053 }
1054}
1055
93cfa7c7
JH
1056static unsigned long approxidate_str(const char *date,
1057 const struct timeval *tv,
1058 int *error_ret)
3c07b1d1
LT
1059{
1060 int number = 0;
93cfa7c7 1061 int touched = 0;
3c07b1d1 1062 struct tm tm, now;
f697b33b 1063 time_t time_sec;
3c07b1d1 1064
33012fc4 1065 time_sec = tv->tv_sec;
f697b33b 1066 localtime_r(&time_sec, &tm);
3c07b1d1 1067 now = tm;
90290552
LT
1068
1069 tm.tm_year = -1;
1070 tm.tm_mon = -1;
1071 tm.tm_mday = -1;
1072
3c07b1d1
LT
1073 for (;;) {
1074 unsigned char c = *date;
1075 if (!c)
1076 break;
1077 date++;
1078 if (isdigit(c)) {
90290552 1079 pending_number(&tm, &number);
073281e2 1080 date = approxidate_digit(date-1, &tm, &number, time_sec);
93cfa7c7 1081 touched = 1;
3c07b1d1
LT
1082 continue;
1083 }
1084 if (isalpha(c))
93cfa7c7 1085 date = approxidate_alpha(date-1, &tm, &now, &number, &touched);
3c07b1d1 1086 }
90290552 1087 pending_number(&tm, &number);
93cfa7c7
JH
1088 if (!touched)
1089 *error_ret = 1;
90290552 1090 return update_tm(&tm, &now, 0);
3c07b1d1 1091}
33012fc4
AR
1092
1093unsigned long approxidate_relative(const char *date, const struct timeval *tv)
1094{
c5043cc1
RR
1095 unsigned long timestamp;
1096 int offset;
93cfa7c7 1097 int errors = 0;
33012fc4 1098
9644c061 1099 if (!parse_date_basic(date, &timestamp, &offset))
c5043cc1 1100 return timestamp;
93cfa7c7 1101 return approxidate_str(date, tv, &errors);
33012fc4
AR
1102}
1103
93cfa7c7 1104unsigned long approxidate_careful(const char *date, int *error_ret)
33012fc4
AR
1105{
1106 struct timeval tv;
c5043cc1
RR
1107 unsigned long timestamp;
1108 int offset;
93cfa7c7
JH
1109 int dummy = 0;
1110 if (!error_ret)
1111 error_ret = &dummy;
33012fc4 1112
9644c061 1113 if (!parse_date_basic(date, &timestamp, &offset)) {
93cfa7c7 1114 *error_ret = 0;
c5043cc1 1115 return timestamp;
93cfa7c7 1116 }
33012fc4
AR
1117
1118 gettimeofday(&tv, NULL);
93cfa7c7 1119 return approxidate_str(date, &tv, error_ret);
33012fc4 1120}
7ca36d93
JK
1121
1122int date_overflows(unsigned long t)
1123{
1124 time_t sys;
1125
1126 /* If we overflowed our unsigned long, that's bad... */
1127 if (t == ULONG_MAX)
1128 return 1;
1129
1130 /*
1131 * ...but we also are going to feed the result to system
1132 * functions that expect time_t, which is often "signed long".
1133 * Make sure that we fit into time_t, as well.
1134 */
1135 sys = t;
1136 return t != sys || (t < 1) != (sys < 1);
1137}