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