]> git.ipfire.org Git - thirdparty/git.git/blame - date.c
post-cocci: adjust comments for recent repo_* migration
[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 7#include "cache.h"
88c7b4c3 8#include "date.h"
e99d59ff 9
bb5799d6
JS
10/*
11 * This is like mktime, but without normalization of tm_wday and tm_yday.
12 */
9b591b94 13time_t tm_to_time_t(const struct tm *tm)
ecee9d9e
ET
14{
15 static const int mdays[] = {
16 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
17 };
18 int year = tm->tm_year - 70;
19 int month = tm->tm_mon;
20 int day = tm->tm_mday;
21
22 if (year < 0 || year > 129) /* algo only works for 1970-2099 */
23 return -1;
24 if (month < 0 || month > 11) /* array bounds */
25 return -1;
26 if (month < 2 || (year + 2) % 4)
27 day--;
36e4986f
LT
28 if (tm->tm_hour < 0 || tm->tm_min < 0 || tm->tm_sec < 0)
29 return -1;
ecee9d9e
ET
30 return (year * 365 + (year + 1) / 4 + mdays[month] + day) * 24*60*60UL +
31 tm->tm_hour * 60*60 + tm->tm_min * 60 + tm->tm_sec;
32}
33
34static const char *month_names[] = {
89967023
LT
35 "January", "February", "March", "April", "May", "June",
36 "July", "August", "September", "October", "November", "December"
ecee9d9e
ET
37};
38
39static const char *weekday_names[] = {
6b7b0427 40 "Sundays", "Mondays", "Tuesdays", "Wednesdays", "Thursdays", "Fridays", "Saturdays"
ecee9d9e
ET
41};
42
dddbad72 43static time_t gm_time_t(timestamp_t time, int tz)
9a8e35e9
LT
44{
45 int minutes;
46
47 minutes = tz < 0 ? -tz : tz;
48 minutes = (minutes / 100)*60 + (minutes % 100);
49 minutes = tz < 0 ? -minutes : minutes;
1e65a982
JS
50
51 if (minutes > 0) {
52 if (unsigned_add_overflows(time, minutes * 60))
53 die("Timestamp+tz too large: %"PRItime" +%04d",
54 time, tz);
55 } else if (time < -minutes * 60)
56 die("Timestamp before Unix epoch: %"PRItime" %04d", time, tz);
57 time += minutes * 60;
58 if (date_overflows(time))
59 die("Timestamp too large for this system: %"PRItime, time);
60 return (time_t)time;
9a8e35e9
LT
61}
62
f80cd783
LT
63/*
64 * The "tz" thing is passed in as this strange "decimal parse of tz"
65 * thing, which means that tz -0100 is passed in as the integer -100,
66 * even though it means "sixty minutes off"
67 */
ccd46945 68static struct tm *time_to_tm(timestamp_t time, int tz, struct tm *tm)
f80cd783 69{
9a8e35e9 70 time_t t = gm_time_t(time, tz);
ccd46945 71 return gmtime_r(&t, tm);
2a387043
JH
72}
73
ccd46945 74static struct tm *time_to_tm_local(timestamp_t time, struct tm *tm)
6eced3ec
JK
75{
76 time_t t = time;
ccd46945 77 return localtime_r(&t, tm);
6eced3ec
JK
78}
79
a7b02ccf 80/*
acdd3776
LT
81 * Fill in the localtime 'struct tm' for the supplied time,
82 * and return the local tz.
a7b02ccf 83 */
acdd3776 84static int local_time_tzoffset(time_t t, struct tm *tm)
a7b02ccf 85{
acdd3776 86 time_t t_local;
a7b02ccf
JH
87 int offset, eastwest;
88
acdd3776
LT
89 localtime_r(&t, tm);
90 t_local = tm_to_time_t(tm);
bab74837
JK
91 if (t_local == -1)
92 return 0; /* error; just use +0000 */
a7b02ccf
JH
93 if (t_local < t) {
94 eastwest = -1;
95 offset = t - t_local;
96 } else {
97 eastwest = 1;
98 offset = t_local - t;
99 }
100 offset /= 60; /* in minutes */
101 offset = (offset % 60) + ((offset / 60) * 100);
102 return offset * eastwest;
103}
104
acdd3776
LT
105/*
106 * What value of "tz" was in effect back then at "time" in the
107 * local timezone?
108 */
109static int local_tzoffset(timestamp_t time)
110{
111 struct tm tm;
112
113 if (date_overflows(time))
114 die("Timestamp too large for this system: %"PRItime, time);
115
116 return local_time_tzoffset((time_t)time, &tm);
117}
118
b841d4ff
SS
119static void get_time(struct timeval *now)
120{
121 const char *x;
122
123 x = getenv("GIT_TEST_DATE_NOW");
124 if (x) {
125 now->tv_sec = atoi(x);
126 now->tv_usec = 0;
127 }
128 else
129 gettimeofday(now, NULL);
130}
131
29f4332e 132void show_date_relative(timestamp_t time, struct strbuf *timebuf)
33012fc4 133{
29f4332e 134 struct timeval now;
dddbad72 135 timestamp_t diff;
29f4332e
SS
136
137 get_time(&now);
138 if (now.tv_sec < time) {
7d29afd4
JN
139 strbuf_addstr(timebuf, _("in the future"));
140 return;
141 }
29f4332e 142 diff = now.tv_sec - time;
33012fc4 143 if (diff < 90) {
7d29afd4 144 strbuf_addf(timebuf,
cb71f8bd 145 Q_("%"PRItime" second ago", "%"PRItime" seconds ago", diff), diff);
7d29afd4 146 return;
33012fc4
AR
147 }
148 /* Turn it into minutes */
149 diff = (diff + 30) / 60;
150 if (diff < 90) {
7d29afd4 151 strbuf_addf(timebuf,
cb71f8bd 152 Q_("%"PRItime" minute ago", "%"PRItime" minutes ago", diff), diff);
7d29afd4 153 return;
33012fc4
AR
154 }
155 /* Turn it into hours */
156 diff = (diff + 30) / 60;
157 if (diff < 36) {
7d29afd4 158 strbuf_addf(timebuf,
cb71f8bd 159 Q_("%"PRItime" hour ago", "%"PRItime" hours ago", diff), diff);
7d29afd4 160 return;
33012fc4
AR
161 }
162 /* We deal with number of days from here on */
163 diff = (diff + 12) / 24;
164 if (diff < 14) {
7d29afd4 165 strbuf_addf(timebuf,
cb71f8bd 166 Q_("%"PRItime" day ago", "%"PRItime" days ago", diff), diff);
7d29afd4 167 return;
33012fc4
AR
168 }
169 /* Say weeks for the past 10 weeks or so */
170 if (diff < 70) {
7d29afd4 171 strbuf_addf(timebuf,
cb71f8bd 172 Q_("%"PRItime" week ago", "%"PRItime" weeks ago", (diff + 3) / 7),
7d29afd4
JN
173 (diff + 3) / 7);
174 return;
33012fc4
AR
175 }
176 /* Say months for the past 12 months or so */
dbc1b1f7 177 if (diff < 365) {
7d29afd4 178 strbuf_addf(timebuf,
cb71f8bd 179 Q_("%"PRItime" month ago", "%"PRItime" months ago", (diff + 15) / 30),
7d29afd4
JN
180 (diff + 15) / 30);
181 return;
33012fc4
AR
182 }
183 /* Give years and months for 5 years or so */
184 if (diff < 1825) {
dddbad72
JS
185 timestamp_t totalmonths = (diff * 12 * 2 + 365) / (365 * 2);
186 timestamp_t years = totalmonths / 12;
187 timestamp_t months = totalmonths % 12;
7d29afd4
JN
188 if (months) {
189 struct strbuf sb = STRBUF_INIT;
cb71f8bd 190 strbuf_addf(&sb, Q_("%"PRItime" year", "%"PRItime" years", years), years);
7d29afd4 191 strbuf_addf(timebuf,
fcaed04d 192 /* TRANSLATORS: "%s" is "<n> years" */
cb71f8bd 193 Q_("%s, %"PRItime" month ago", "%s, %"PRItime" months ago", months),
7d29afd4
JN
194 sb.buf, months);
195 strbuf_release(&sb);
196 } else
197 strbuf_addf(timebuf,
cb71f8bd 198 Q_("%"PRItime" year ago", "%"PRItime" years ago", years), years);
7d29afd4 199 return;
33012fc4
AR
200 }
201 /* Otherwise, just years. Centuries is probably overkill. */
7d29afd4 202 strbuf_addf(timebuf,
cb71f8bd 203 Q_("%"PRItime" year ago", "%"PRItime" years ago", (diff + 183) / 365),
7d29afd4 204 (diff + 183) / 365);
33012fc4
AR
205}
206
a5481a6c
JK
207struct date_mode *date_mode_from_type(enum date_mode_type type)
208{
f1842898 209 static struct date_mode mode = DATE_MODE_INIT;
aa1462cc 210 if (type == DATE_STRFTIME)
033abf97 211 BUG("cannot create anonymous strftime date_mode struct");
a5481a6c
JK
212 mode.type = type;
213 return &mode;
214}
215
acdd3776
LT
216static void show_date_normal(struct strbuf *buf, timestamp_t time, struct tm *tm, int tz, struct tm *human_tm, int human_tz, int local)
217{
218 struct {
219 unsigned int year:1,
220 date:1,
221 wday:1,
222 time:1,
223 seconds:1,
224 tz:1;
225 } hide = { 0 };
226
227 hide.tz = local || tz == human_tz;
228 hide.year = tm->tm_year == human_tm->tm_year;
229 if (hide.year) {
230 if (tm->tm_mon == human_tm->tm_mon) {
231 if (tm->tm_mday > human_tm->tm_mday) {
232 /* Future date: think timezones */
233 } else if (tm->tm_mday == human_tm->tm_mday) {
234 hide.date = hide.wday = 1;
235 } else if (tm->tm_mday + 5 > human_tm->tm_mday) {
236 /* Leave just weekday if it was a few days ago */
237 hide.date = 1;
238 }
239 }
240 }
241
242 /* Show "today" times as just relative times */
243 if (hide.wday) {
29f4332e 244 show_date_relative(time, buf);
acdd3776
LT
245 return;
246 }
247
248 /*
249 * Always hide seconds for human-readable.
250 * Hide timezone if showing date.
251 * Hide weekday and time if showing year.
252 *
253 * The logic here is two-fold:
254 * (a) only show details when recent enough to matter
255 * (b) keep the maximum length "similar", and in check
256 */
257 if (human_tm->tm_year) {
258 hide.seconds = 1;
259 hide.tz |= !hide.date;
260 hide.wday = hide.time = !hide.year;
261 }
262
263 if (!hide.wday)
264 strbuf_addf(buf, "%.3s ", weekday_names[tm->tm_wday]);
265 if (!hide.date)
266 strbuf_addf(buf, "%.3s %d ", month_names[tm->tm_mon], tm->tm_mday);
267
268 /* Do we want AM/PM depending on locale? */
269 if (!hide.time) {
270 strbuf_addf(buf, "%02d:%02d", tm->tm_hour, tm->tm_min);
271 if (!hide.seconds)
272 strbuf_addf(buf, ":%02d", tm->tm_sec);
273 } else
274 strbuf_rtrim(buf);
275
276 if (!hide.year)
277 strbuf_addf(buf, " %d", tm->tm_year + 1900);
278
279 if (!hide.tz)
280 strbuf_addf(buf, " %+05d", tz);
281}
282
dddbad72 283const char *show_date(timestamp_t time, int tz, const struct date_mode *mode)
2a387043
JH
284{
285 struct tm *tm;
ccd46945 286 struct tm tmbuf = { 0 };
acdd3776
LT
287 struct tm human_tm = { 0 };
288 int human_tz = -1;
7d29afd4 289 static struct strbuf timebuf = STRBUF_INIT;
2a387043 290
642833db
JK
291 if (mode->type == DATE_UNIX) {
292 strbuf_reset(&timebuf);
cb71f8bd 293 strbuf_addf(&timebuf, "%"PRItime, time);
642833db
JK
294 return timebuf.buf;
295 }
296
acdd3776
LT
297 if (mode->type == DATE_HUMAN) {
298 struct timeval now;
299
b841d4ff 300 get_time(&now);
acdd3776
LT
301
302 /* Fill in the data for "current time" in human_tz and human_tm */
303 human_tz = local_time_tzoffset(now.tv_sec, &human_tm);
304 }
305
add00ba2 306 if (mode->local)
dc6d782c
JK
307 tz = local_tzoffset(time);
308
a5481a6c 309 if (mode->type == DATE_RAW) {
7d29afd4 310 strbuf_reset(&timebuf);
cb71f8bd 311 strbuf_addf(&timebuf, "%"PRItime" %+05d", time, tz);
7d29afd4 312 return timebuf.buf;
7dff9b30
LT
313 }
314
a5481a6c 315 if (mode->type == DATE_RELATIVE) {
7d29afd4 316 strbuf_reset(&timebuf);
29f4332e 317 show_date_relative(time, &timebuf);
7d29afd4 318 return timebuf.buf;
9a8e35e9
LT
319 }
320
6eced3ec 321 if (mode->local)
ccd46945 322 tm = time_to_tm_local(time, &tmbuf);
6eced3ec 323 else
ccd46945 324 tm = time_to_tm(time, tz, &tmbuf);
2b15846d 325 if (!tm) {
ccd46945 326 tm = time_to_tm(0, 0, &tmbuf);
2b15846d
JK
327 tz = 0;
328 }
7d29afd4
JN
329
330 strbuf_reset(&timebuf);
a5481a6c 331 if (mode->type == DATE_SHORT)
7d29afd4 332 strbuf_addf(&timebuf, "%04d-%02d-%02d", tm->tm_year + 1900,
f8493ec0 333 tm->tm_mon + 1, tm->tm_mday);
a5481a6c 334 else if (mode->type == DATE_ISO8601)
7d29afd4 335 strbuf_addf(&timebuf, "%04d-%02d-%02d %02d:%02d:%02d %+05d",
ee8f838e
RR
336 tm->tm_year + 1900,
337 tm->tm_mon + 1,
338 tm->tm_mday,
339 tm->tm_hour, tm->tm_min, tm->tm_sec,
340 tz);
a5481a6c 341 else if (mode->type == DATE_ISO8601_STRICT) {
466fb674
BB
342 char sign = (tz >= 0) ? '+' : '-';
343 tz = abs(tz);
344 strbuf_addf(&timebuf, "%04d-%02d-%02dT%02d:%02d:%02d%c%02d:%02d",
345 tm->tm_year + 1900,
346 tm->tm_mon + 1,
347 tm->tm_mday,
348 tm->tm_hour, tm->tm_min, tm->tm_sec,
349 sign, tz / 100, tz % 100);
a5481a6c 350 } else if (mode->type == DATE_RFC2822)
7d29afd4 351 strbuf_addf(&timebuf, "%.3s, %d %.3s %d %02d:%02d:%02d %+05d",
73013afd
JH
352 weekday_names[tm->tm_wday], tm->tm_mday,
353 month_names[tm->tm_mon], tm->tm_year + 1900,
354 tm->tm_hour, tm->tm_min, tm->tm_sec, tz);
aa1462cc 355 else if (mode->type == DATE_STRFTIME)
6eced3ec 356 strbuf_addftime(&timebuf, mode->strftime_fmt, tm, tz,
3b702239 357 !mode->local);
f8493ec0 358 else
acdd3776 359 show_date_normal(&timebuf, time, tm, tz, &human_tm, human_tz, mode->local);
7d29afd4 360 return timebuf.buf;
f80cd783
LT
361}
362
89967023
LT
363/*
364 * Check these. And note how it doesn't do the summer-time conversion.
365 *
366 * In my world, it's always summer, and things are probably a bit off
367 * in other ways too.
368 */
369static const struct {
370 const char *name;
371 int offset;
5e2a78a4 372 int dst;
89967023 373} timezone_names[] = {
5e2a78a4
LT
374 { "IDLW", -12, 0, }, /* International Date Line West */
375 { "NT", -11, 0, }, /* Nome */
376 { "CAT", -10, 0, }, /* Central Alaska */
377 { "HST", -10, 0, }, /* Hawaii Standard */
378 { "HDT", -10, 1, }, /* Hawaii Daylight */
379 { "YST", -9, 0, }, /* Yukon Standard */
380 { "YDT", -9, 1, }, /* Yukon Daylight */
381 { "PST", -8, 0, }, /* Pacific Standard */
382 { "PDT", -8, 1, }, /* Pacific Daylight */
383 { "MST", -7, 0, }, /* Mountain Standard */
384 { "MDT", -7, 1, }, /* Mountain Daylight */
385 { "CST", -6, 0, }, /* Central Standard */
386 { "CDT", -6, 1, }, /* Central Daylight */
387 { "EST", -5, 0, }, /* Eastern Standard */
388 { "EDT", -5, 1, }, /* Eastern Daylight */
389 { "AST", -3, 0, }, /* Atlantic Standard */
390 { "ADT", -3, 1, }, /* Atlantic Daylight */
391 { "WAT", -1, 0, }, /* West Africa */
392
393 { "GMT", 0, 0, }, /* Greenwich Mean */
394 { "UTC", 0, 0, }, /* Universal (Coordinated) */
75b37e70 395 { "Z", 0, 0, }, /* Zulu, alias for UTC */
5e2a78a4
LT
396
397 { "WET", 0, 0, }, /* Western European */
398 { "BST", 0, 1, }, /* British Summer */
399 { "CET", +1, 0, }, /* Central European */
400 { "MET", +1, 0, }, /* Middle European */
401 { "MEWT", +1, 0, }, /* Middle European Winter */
402 { "MEST", +1, 1, }, /* Middle European Summer */
403 { "CEST", +1, 1, }, /* Central European Summer */
404 { "MESZ", +1, 1, }, /* Middle European Summer */
405 { "FWT", +1, 0, }, /* French Winter */
406 { "FST", +1, 1, }, /* French Summer */
407 { "EET", +2, 0, }, /* Eastern Europe, USSR Zone 1 */
92e2311b 408 { "EEST", +2, 1, }, /* Eastern European Daylight */
5e2a78a4
LT
409 { "WAST", +7, 0, }, /* West Australian Standard */
410 { "WADT", +7, 1, }, /* West Australian Daylight */
411 { "CCT", +8, 0, }, /* China Coast, USSR Zone 7 */
412 { "JST", +9, 0, }, /* Japan Standard, USSR Zone 8 */
413 { "EAST", +10, 0, }, /* Eastern Australian Standard */
414 { "EADT", +10, 1, }, /* Eastern Australian Daylight */
415 { "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */
695ed472
SD
416 { "NZT", +12, 0, }, /* New Zealand */
417 { "NZST", +12, 0, }, /* New Zealand Standard */
418 { "NZDT", +12, 1, }, /* New Zealand Daylight */
5e2a78a4 419 { "IDLE", +12, 0, }, /* International Date Line East */
89967023 420};
ecee9d9e 421
89967023 422static int match_string(const char *date, const char *str)
ecee9d9e 423{
89967023
LT
424 int i = 0;
425
426 for (i = 0; *date; date++, str++, i++) {
427 if (*date == *str)
428 continue;
429 if (toupper(*date) == toupper(*str))
430 continue;
431 if (!isalnum(*date))
432 break;
433 return 0;
434 }
435 return i;
ecee9d9e
ET
436}
437
68849b54
LT
438static int skip_alpha(const char *date)
439{
440 int i = 0;
441 do {
442 i++;
443 } while (isalpha(date[i]));
444 return i;
445}
446
89967023
LT
447/*
448* Parse month, weekday, or timezone name
449*/
450static int match_alpha(const char *date, struct tm *tm, int *offset)
ecee9d9e 451{
89967023 452 int i;
ecee9d9e 453
89967023
LT
454 for (i = 0; i < 12; i++) {
455 int match = match_string(date, month_names[i]);
456 if (match >= 3) {
457 tm->tm_mon = i;
458 return match;
ecee9d9e 459 }
89967023 460 }
ecee9d9e 461
89967023
LT
462 for (i = 0; i < 7; i++) {
463 int match = match_string(date, weekday_names[i]);
464 if (match >= 3) {
465 tm->tm_wday = i;
466 return match;
467 }
468 }
ecee9d9e 469
b4f2a6ac 470 for (i = 0; i < ARRAY_SIZE(timezone_names); i++) {
89967023 471 int match = match_string(date, timezone_names[i].name);
75b37e70 472 if (match >= 3 || match == strlen(timezone_names[i].name)) {
5e2a78a4
LT
473 int off = timezone_names[i].offset;
474
475 /* This is bogus, but we like summer */
476 off += timezone_names[i].dst;
477
92e2311b
LT
478 /* Only use the tz name offset if we don't have anything better */
479 if (*offset == -1)
480 *offset = 60*off;
481
89967023 482 return match;
ecee9d9e
ET
483 }
484 }
ecee9d9e 485
68849b54 486 if (match_string(date, "PM") == 2) {
18b633ca
LT
487 tm->tm_hour = (tm->tm_hour % 12) + 12;
488 return 2;
489 }
490
491 if (match_string(date, "AM") == 2) {
492 tm->tm_hour = (tm->tm_hour % 12) + 0;
68849b54
LT
493 return 2;
494 }
495
b56be499
ĐTCD
496 /* ISO-8601 allows yyyymmDD'T'HHMMSS, with less precision */
497 if (*date == 'T' && isdigit(date[1]) && tm->tm_hour == -1) {
498 tm->tm_min = tm->tm_sec = 0;
499 return 1;
500 }
501
89967023 502 /* BAD CRAP */
68849b54 503 return skip_alpha(date);
89967023 504}
ecee9d9e 505
c933b28d 506static int set_date(int year, int month, int day, struct tm *now_tm, time_t now, struct tm *tm)
89967023 507{
198b0fb6 508 if (month > 0 && month < 13 && day > 0 && day < 32) {
38035cf4
JH
509 struct tm check = *tm;
510 struct tm *r = (now_tm ? &check : tm);
511 time_t specified;
512
513 r->tm_mon = month - 1;
514 r->tm_mday = day;
198b0fb6 515 if (year == -1) {
38035cf4
JH
516 if (!now_tm)
517 return 1;
518 r->tm_year = now_tm->tm_year;
89967023 519 }
38035cf4
JH
520 else if (year >= 1970 && year < 2100)
521 r->tm_year = year - 1900;
522 else if (year > 70 && year < 100)
523 r->tm_year = year;
524 else if (year < 38)
525 r->tm_year = year + 100;
526 else
c933b28d 527 return -1;
38035cf4 528 if (!now_tm)
c933b28d 529 return 0;
38035cf4 530
bb5799d6 531 specified = tm_to_time_t(r);
198b0fb6 532
38035cf4
JH
533 /* Be it commit time or author time, it does not make
534 * sense to specify timestamp way into the future. Make
535 * sure it is not later than ten days from now...
536 */
e6e87516 537 if ((specified != -1) && (now + 10*24*3600 < specified))
c933b28d 538 return -1;
38035cf4
JH
539 tm->tm_mon = r->tm_mon;
540 tm->tm_mday = r->tm_mday;
541 if (year != -1)
542 tm->tm_year = r->tm_year;
c933b28d 543 return 0;
89967023 544 }
c933b28d 545 return -1;
198b0fb6 546}
ecee9d9e 547
4f89f4fc
ĐTCD
548static int set_time(long hour, long minute, long second, struct tm *tm)
549{
550 /* We accept 61st second because of leap second */
551 if (0 <= hour && hour <= 24 &&
552 0 <= minute && minute < 60 &&
553 0 <= second && second <= 60) {
554 tm->tm_hour = hour;
555 tm->tm_min = minute;
556 tm->tm_sec = second;
557 return 0;
558 }
559 return -1;
560}
561
b784840c
ĐTCD
562static int is_date_known(struct tm *tm)
563{
564 return tm->tm_year != -1 && tm->tm_mon != -1 && tm->tm_mday != -1;
565}
566
dddbad72 567static int match_multi_number(timestamp_t num, char c, const char *date,
073281e2 568 char *end, struct tm *tm, time_t now)
198b0fb6 569{
38035cf4
JH
570 struct tm now_tm;
571 struct tm *refuse_future;
198b0fb6
LT
572 long num2, num3;
573
574 num2 = strtol(end+1, &end, 10);
575 num3 = -1;
576 if (*end == c && isdigit(end[1]))
577 num3 = strtol(end+1, &end, 10);
578
579 /* Time? Date? */
89967023 580 switch (c) {
198b0fb6
LT
581 case ':':
582 if (num3 < 0)
583 num3 = 0;
4f89f4fc 584 if (set_time(num, num2, num3, tm) == 0) {
b784840c
ĐTCD
585 /*
586 * If %H:%M:%S was just parsed followed by: .<num4>
587 * Consider (& discard) it as fractional second
588 * if %Y%m%d is parsed before.
589 */
590 if (*end == '.' && isdigit(end[1]) && is_date_known(tm))
591 strtol(end + 1, &end, 10);
89967023
LT
592 break;
593 }
198b0fb6 594 return 0;
89967023
LT
595
596 case '-':
597 case '/':
38035cf4 598 case '.':
073281e2
JK
599 if (!now)
600 now = time(NULL);
38035cf4
JH
601 refuse_future = NULL;
602 if (gmtime_r(&now, &now_tm))
603 refuse_future = &now_tm;
604
198b0fb6
LT
605 if (num > 70) {
606 /* yyyy-mm-dd? */
c933b28d 607 if (set_date(num, num2, num3, NULL, now, tm) == 0)
198b0fb6
LT
608 break;
609 /* yyyy-dd-mm? */
c933b28d 610 if (set_date(num, num3, num2, NULL, now, tm) == 0)
89967023 611 break;
198b0fb6 612 }
38035cf4
JH
613 /* Our eastern European friends say dd.mm.yy[yy]
614 * is the norm there, so giving precedence to
615 * mm/dd/yy[yy] form only when separator is not '.'
616 */
617 if (c != '.' &&
c933b28d 618 set_date(num3, num, num2, refuse_future, now, tm) == 0)
38035cf4
JH
619 break;
620 /* European dd.mm.yy[yy] or funny US dd/mm/yy[yy] */
c933b28d 621 if (set_date(num3, num2, num, refuse_future, now, tm) == 0)
89967023 622 break;
38035cf4
JH
623 /* Funny European mm.dd.yy */
624 if (c == '.' &&
c933b28d 625 set_date(num3, num, num2, refuse_future, now, tm) == 0)
198b0fb6
LT
626 break;
627 return 0;
628 }
629 return end - date;
630}
631
36e4986f
LT
632/*
633 * Have we filled in any part of the time/date yet?
634 * We just do a binary 'and' to see if the sign bit
635 * is set in all the values.
636 */
9f2b6d29
LT
637static inline int nodate(struct tm *tm)
638{
36e4986f
LT
639 return (tm->tm_year &
640 tm->tm_mon &
641 tm->tm_mday &
642 tm->tm_hour &
643 tm->tm_min &
644 tm->tm_sec) < 0;
9f2b6d29
LT
645}
646
b56be499
ĐTCD
647/*
648 * Have we seen an ISO-8601-alike date, i.e. 20220101T0,
649 * In which, hour is still unset,
650 * and minutes and second has been set to 0.
651 */
652static inline int maybeiso8601(struct tm *tm)
653{
654 return tm->tm_hour == -1 &&
655 tm->tm_min == 0 &&
656 tm->tm_sec == 0;
657}
658
198b0fb6 659/*
a6080a0a 660 * We've seen a digit. Time? Year? Date?
198b0fb6 661 */
26a2d8ae 662static int match_digit(const char *date, struct tm *tm, int *offset, int *tm_gmt)
198b0fb6
LT
663{
664 int n;
665 char *end;
dddbad72 666 timestamp_t num;
198b0fb6 667
1aeb7e75 668 num = parse_timestamp(date, &end, 10);
198b0fb6
LT
669
670 /*
a1a5a634
JS
671 * Seconds since 1970? We trigger on that for any numbers with
672 * more than 8 digits. This is because we don't want to rule out
673 * numbers like 20070606 as a YYYYMMDD date.
198b0fb6 674 */
9f2b6d29 675 if (num >= 100000000 && nodate(tm)) {
198b0fb6 676 time_t time = num;
9cb480f2
JH
677 if (gmtime_r(&time, tm)) {
678 *tm_gmt = 1;
198b0fb6 679 return end - date;
9cb480f2 680 }
198b0fb6
LT
681 }
682
683 /*
38035cf4 684 * Check for special formats: num[-.:/]num[same]num
198b0fb6
LT
685 */
686 switch (*end) {
687 case ':':
38035cf4 688 case '.':
198b0fb6
LT
689 case '/':
690 case '-':
691 if (isdigit(end[1])) {
073281e2 692 int match = match_multi_number(num, *end, date, end, tm, 0);
198b0fb6
LT
693 if (match)
694 return match;
89967023
LT
695 }
696 }
198b0fb6
LT
697
698 /*
699 * None of the special formats? Try to guess what
700 * the number meant. We use the number of digits
701 * to make a more educated guess..
702 */
703 n = 0;
704 do {
705 n++;
706 } while (isdigit(date[n]));
707
544ed961
ĐTCD
708 /* 8 digits, compact style of ISO-8601's date: YYYYmmDD */
709 /* 6 digits, compact style of ISO-8601's time: HHMMSS */
710 if (n == 8 || n == 6) {
711 unsigned int num1 = num / 10000;
712 unsigned int num2 = (num % 10000) / 100;
713 unsigned int num3 = num % 100;
714 if (n == 8)
715 set_date(num1, num2, num3, NULL, time(NULL), tm);
716 else if (n == 6 && set_time(num1, num2, num3, tm) == 0 &&
717 *end == '.' && isdigit(end[1]))
718 strtoul(end + 1, &end, 10);
719 return end - date;
720 }
721
b56be499
ĐTCD
722 /* reduced precision of ISO-8601's time: HHMM or HH */
723 if (maybeiso8601(tm)) {
724 unsigned int num1 = num;
725 unsigned int num2 = 0;
726 if (n == 4) {
727 num1 = num / 100;
728 num2 = num % 100;
729 }
730 if ((n == 4 || n == 2) && !nodate(tm) &&
731 set_time(num1, num2, 0, tm) == 0)
732 return n;
733 /*
734 * We thought this is an ISO-8601 time string,
735 * we set minutes and seconds to 0,
736 * turn out it isn't, rollback the change.
737 */
738 tm->tm_min = tm->tm_sec = -1;
739 }
740
198b0fb6
LT
741 /* Four-digit year or a timezone? */
742 if (n == 4) {
7122f82f 743 if (num <= 1400 && *offset == -1) {
198b0fb6
LT
744 unsigned int minutes = num % 100;
745 unsigned int hours = num / 100;
746 *offset = hours*60 + minutes;
747 } else if (num > 1900 && num < 2100)
748 tm->tm_year = num - 1900;
749 return n;
750 }
751
9f2b6d29
LT
752 /*
753 * Ignore lots of numerals. We took care of 4-digit years above.
754 * Days or months must be one or two digits.
755 */
756 if (n > 2)
757 return n;
758
198b0fb6
LT
759 /*
760 * NOTE! We will give precedence to day-of-month over month or
82f9d58a 761 * year numbers in the 1-12 range. So 05 is always "mday 5",
198b0fb6
LT
762 * unless we already have a mday..
763 *
764 * IOW, 01 Apr 05 parses as "April 1st, 2005".
765 */
766 if (num > 0 && num < 32 && tm->tm_mday < 0) {
767 tm->tm_mday = num;
768 return n;
769 }
770
771 /* Two-digit year? */
772 if (n == 2 && tm->tm_year < 0) {
773 if (num < 10 && tm->tm_mday >= 0) {
774 tm->tm_year = num + 100;
775 return n;
776 }
777 if (num >= 70) {
778 tm->tm_year = num;
779 return n;
780 }
781 }
782
90290552 783 if (num > 0 && num < 13 && tm->tm_mon < 0)
198b0fb6 784 tm->tm_mon = num-1;
a6080a0a 785
198b0fb6 786 return n;
89967023 787}
ecee9d9e 788
26a2d8ae 789static int match_tz(const char *date, int *offp)
89967023
LT
790{
791 char *end;
ee646eb4
HL
792 int hour = strtoul(date + 1, &end, 10);
793 int n = end - (date + 1);
794 int min = 0;
ecee9d9e 795
ee646eb4
HL
796 if (n == 4) {
797 /* hhmm */
798 min = hour % 100;
799 hour = hour / 100;
800 } else if (n != 2) {
801 min = 99; /* random crap */
802 } else if (*end == ':') {
803 /* hh:mm? */
804 min = strtoul(end + 1, &end, 10);
805 if (end - (date + 1) != 5)
806 min = 99; /* random crap */
807 } /* otherwise we parsed "hh" */
ecee9d9e 808
198b0fb6 809 /*
ee646eb4
HL
810 * Don't accept any random crap. Even though some places have
811 * offset larger than 12 hours (e.g. Pacific/Kiritimati is at
812 * UTC+14), there is something wrong if hour part is much
813 * larger than that. We might also want to check that the
814 * minutes are divisible by 15 or something too. (Offset of
815 * Kathmandu, Nepal is UTC+5:45)
198b0fb6 816 */
ee646eb4
HL
817 if (min < 60 && hour < 24) {
818 int offset = hour * 60 + min;
68849b54
LT
819 if (*date == '-')
820 offset = -offset;
68849b54
LT
821 *offp = offset;
822 }
89967023
LT
823 return end - date;
824}
ecee9d9e 825
dddbad72 826static void date_string(timestamp_t date, int offset, struct strbuf *buf)
01c6ad29
LT
827{
828 int sign = '+';
829
830 if (offset < 0) {
831 offset = -offset;
832 sign = '-';
833 }
cb71f8bd 834 strbuf_addf(buf, "%"PRItime" %c%02d%02d", date, sign, offset / 60, offset % 60);
01c6ad29
LT
835}
836
116eb3ab
JH
837/*
838 * Parse a string like "0 +0000" as ancient timestamp near epoch, but
839 * only when it appears not as part of any other string.
840 */
dddbad72 841static int match_object_header_date(const char *date, timestamp_t *timestamp, int *offset)
116eb3ab
JH
842{
843 char *end;
dddbad72 844 timestamp_t stamp;
116eb3ab
JH
845 int ofs;
846
be21d167 847 if (*date < '0' || '9' < *date)
116eb3ab 848 return -1;
1aeb7e75 849 stamp = parse_timestamp(date, &end, 10);
dddbad72 850 if (*end != ' ' || stamp == TIME_MAX || (end[1] != '+' && end[1] != '-'))
116eb3ab
JH
851 return -1;
852 date = end + 2;
853 ofs = strtol(date, &end, 10);
854 if ((*end != '\0' && (*end != '\n')) || end != date + 4)
855 return -1;
856 ofs = (ofs / 100) * 60 + (ofs % 100);
857 if (date[-1] == '-')
858 ofs = -ofs;
859 *timestamp = stamp;
860 *offset = ofs;
861 return 0;
862}
863
89967023
LT
864/* Gr. strptime is crap for this; it doesn't have a way to require RFC2822
865 (i.e. English) day/month names, and it doesn't work correctly with %z. */
dddbad72 866int parse_date_basic(const char *date, timestamp_t *timestamp, int *offset)
89967023
LT
867{
868 struct tm tm;
c5043cc1 869 int tm_gmt;
dddbad72 870 timestamp_t dummy_timestamp;
c5043cc1
RR
871 int dummy_offset;
872
873 if (!timestamp)
874 timestamp = &dummy_timestamp;
875 if (!offset)
876 offset = &dummy_offset;
ecee9d9e 877
89967023
LT
878 memset(&tm, 0, sizeof(tm));
879 tm.tm_year = -1;
880 tm.tm_mon = -1;
881 tm.tm_mday = -1;
eaa85129 882 tm.tm_isdst = -1;
36e4986f
LT
883 tm.tm_hour = -1;
884 tm.tm_min = -1;
885 tm.tm_sec = -1;
c5043cc1 886 *offset = -1;
9cb480f2 887 tm_gmt = 0;
89967023 888
2c733fb2
JH
889 if (*date == '@' &&
890 !match_object_header_date(date + 1, timestamp, offset))
116eb3ab 891 return 0; /* success */
89967023
LT
892 for (;;) {
893 int match = 0;
894 unsigned char c = *date;
895
896 /* Stop at end of string or newline */
897 if (!c || c == '\n')
898 break;
899
900 if (isalpha(c))
c5043cc1 901 match = match_alpha(date, &tm, offset);
89967023 902 else if (isdigit(c))
c5043cc1 903 match = match_digit(date, &tm, offset, &tm_gmt);
89967023 904 else if ((c == '-' || c == '+') && isdigit(date[1]))
c5043cc1 905 match = match_tz(date, offset);
89967023
LT
906
907 if (!match) {
908 /* BAD CRAP */
909 match = 1;
a6080a0a 910 }
89967023
LT
911
912 date += match;
913 }
ecee9d9e 914
f6e63621 915 /* do not use mktime(), which uses local timezone, here */
c5043cc1 916 *timestamp = tm_to_time_t(&tm);
7fcec48d
JH
917 if (*timestamp == -1)
918 return -1;
919
e1033da6 920 if (*offset == -1) {
f6e63621
JH
921 time_t temp_time;
922
923 /* gmtime_r() in match_digit() may have clobbered it */
924 tm.tm_isdst = -1;
925 temp_time = mktime(&tm);
e1033da6
MG
926 if ((time_t)*timestamp > temp_time) {
927 *offset = ((time_t)*timestamp - temp_time) / 60;
928 } else {
929 *offset = -(int)((temp_time - (time_t)*timestamp) / 60);
930 }
931 }
eaa85129 932
9cb480f2 933 if (!tm_gmt)
c5043cc1 934 *timestamp -= *offset * 60;
9644c061 935 return 0; /* success */
c5043cc1
RR
936}
937
dddbad72 938int parse_expiry_date(const char *date, timestamp_t *timestamp)
3d27b9b0
JH
939{
940 int errors = 0;
941
942 if (!strcmp(date, "never") || !strcmp(date, "false"))
943 *timestamp = 0;
944 else if (!strcmp(date, "all") || !strcmp(date, "now"))
945 /*
946 * We take over "now" here, which usually translates
947 * to the current timestamp. This is because the user
0e20b229 948 * really means to expire everything that was done in
3d27b9b0
JH
949 * the past, and by definition reflogs are the record
950 * of the past, and there is nothing from the future
951 * to be kept.
952 */
dddbad72 953 *timestamp = TIME_MAX;
3d27b9b0
JH
954 else
955 *timestamp = approxidate_careful(date, &errors);
956
957 return errors;
958}
959
c33ddc2e 960int parse_date(const char *date, struct strbuf *result)
c5043cc1 961{
dddbad72 962 timestamp_t timestamp;
c5043cc1 963 int offset;
9644c061 964 if (parse_date_basic(date, &timestamp, &offset))
c5043cc1 965 return -1;
c33ddc2e
JK
966 date_string(timestamp, offset, result);
967 return 0;
ecee9d9e
ET
968}
969
add00ba2
JK
970static enum date_mode_type parse_date_type(const char *format, const char **end)
971{
972 if (skip_prefix(format, "relative", end))
973 return DATE_RELATIVE;
974 if (skip_prefix(format, "iso8601-strict", end) ||
975 skip_prefix(format, "iso-strict", end))
976 return DATE_ISO8601_STRICT;
977 if (skip_prefix(format, "iso8601", end) ||
978 skip_prefix(format, "iso", end))
979 return DATE_ISO8601;
980 if (skip_prefix(format, "rfc2822", end) ||
981 skip_prefix(format, "rfc", end))
982 return DATE_RFC2822;
983 if (skip_prefix(format, "short", end))
984 return DATE_SHORT;
985 if (skip_prefix(format, "default", end))
986 return DATE_NORMAL;
acdd3776
LT
987 if (skip_prefix(format, "human", end))
988 return DATE_HUMAN;
add00ba2
JK
989 if (skip_prefix(format, "raw", end))
990 return DATE_RAW;
642833db
JK
991 if (skip_prefix(format, "unix", end))
992 return DATE_UNIX;
add00ba2
JK
993 if (skip_prefix(format, "format", end))
994 return DATE_STRFTIME;
5a59a230
NTND
995 /*
996 * Please update $__git_log_date_formats in
997 * git-completion.bash when you add new formats.
998 */
add00ba2
JK
999
1000 die("unknown date format %s", format);
1001}
1002
a5481a6c 1003void parse_date_format(const char *format, struct date_mode *mode)
856665f8 1004{
add00ba2
JK
1005 const char *p;
1006
2fd7c229
SS
1007 /* "auto:foo" is "if tty/pager, then foo, otherwise normal" */
1008 if (skip_prefix(format, "auto:", &p)) {
1009 if (isatty(1) || pager_in_use())
1010 format = p;
1011 else
1012 format = "default";
1013 }
1014
add00ba2
JK
1015 /* historical alias */
1016 if (!strcmp(format, "local"))
1017 format = "default-local";
1018
1019 mode->type = parse_date_type(format, &p);
1020 mode->local = 0;
1021
1022 if (skip_prefix(p, "-local", &p))
1023 mode->local = 1;
1024
1025 if (mode->type == DATE_STRFTIME) {
1026 if (!skip_prefix(p, ":", &p))
1027 die("date format missing colon separator: %s", format);
1028 mode->strftime_fmt = xstrdup(p);
1029 } else if (*p)
856665f8
AP
1030 die("unknown date format %s", format);
1031}
1032
974c919d
ÆAB
1033void date_mode_release(struct date_mode *mode)
1034{
1035 free((char *)mode->strftime_fmt);
1036}
1037
c33ddc2e 1038void datestamp(struct strbuf *out)
ecee9d9e
ET
1039{
1040 time_t now;
1041 int offset;
ccd46945 1042 struct tm tm = { 0 };
ecee9d9e
ET
1043
1044 time(&now);
1045
ccd46945 1046 offset = tm_to_time_t(localtime_r(&now, &tm)) - now;
ecee9d9e
ET
1047 offset /= 60;
1048
c33ddc2e 1049 date_string(now, offset, out);
ecee9d9e 1050}
3c07b1d1 1051
90290552
LT
1052/*
1053 * Relative time update (eg "2 days ago"). If we haven't set the time
1054 * yet, we need to set it from current time.
1055 */
dddbad72 1056static time_t update_tm(struct tm *tm, struct tm *now, time_t sec)
3c07b1d1 1057{
90290552
LT
1058 time_t n;
1059
1060 if (tm->tm_mday < 0)
1061 tm->tm_mday = now->tm_mday;
1062 if (tm->tm_mon < 0)
1063 tm->tm_mon = now->tm_mon;
1064 if (tm->tm_year < 0) {
1065 tm->tm_year = now->tm_year;
1066 if (tm->tm_mon > now->tm_mon)
1067 tm->tm_year--;
1068 }
1069
1070 n = mktime(tm) - sec;
3c07b1d1 1071 localtime_r(&n, tm);
90290552 1072 return n;
3c07b1d1
LT
1073}
1074
c27cc94f
JK
1075/*
1076 * Do we have a pending number at the end, or when
1077 * we see a new one? Let's assume it's a month day,
1078 * as in "Dec 6, 1992"
1079 */
1080static void pending_number(struct tm *tm, int *num)
1081{
1082 int number = *num;
1083
1084 if (number) {
1085 *num = 0;
1086 if (tm->tm_mday < 0 && number < 32)
1087 tm->tm_mday = number;
1088 else if (tm->tm_mon < 0 && number < 13)
1089 tm->tm_mon = number-1;
1090 else if (tm->tm_year < 0) {
1091 if (number > 1969 && number < 2100)
1092 tm->tm_year = number - 1900;
1093 else if (number > 69 && number < 100)
1094 tm->tm_year = number;
1095 else if (number < 38)
1096 tm->tm_year = 100 + number;
1097 /* We screw up for number = 00 ? */
1098 }
1099 }
1100}
1101
93cfa7c7
JH
1102static void date_now(struct tm *tm, struct tm *now, int *num)
1103{
c27cc94f 1104 *num = 0;
93cfa7c7
JH
1105 update_tm(tm, now, 0);
1106}
1107
90290552 1108static void date_yesterday(struct tm *tm, struct tm *now, int *num)
a8aca418 1109{
c27cc94f 1110 *num = 0;
90290552 1111 update_tm(tm, now, 24*60*60);
a8aca418
LT
1112}
1113
90290552 1114static void date_time(struct tm *tm, struct tm *now, int hour)
a8aca418
LT
1115{
1116 if (tm->tm_hour < hour)
aa097b88 1117 update_tm(tm, now, 24*60*60);
a8aca418
LT
1118 tm->tm_hour = hour;
1119 tm->tm_min = 0;
1120 tm->tm_sec = 0;
1121}
1122
90290552 1123static void date_midnight(struct tm *tm, struct tm *now, int *num)
a8aca418 1124{
c27cc94f 1125 pending_number(tm, num);
90290552 1126 date_time(tm, now, 0);
a8aca418
LT
1127}
1128
90290552 1129static void date_noon(struct tm *tm, struct tm *now, int *num)
a8aca418 1130{
c27cc94f 1131 pending_number(tm, num);
90290552 1132 date_time(tm, now, 12);
a8aca418
LT
1133}
1134
90290552 1135static void date_tea(struct tm *tm, struct tm *now, int *num)
a8aca418 1136{
c27cc94f 1137 pending_number(tm, num);
90290552 1138 date_time(tm, now, 17);
a8aca418
LT
1139}
1140
7829746a 1141static void date_pm(struct tm *tm, struct tm *now UNUSED, int *num)
393d340e 1142{
18b633ca 1143 int hour, n = *num;
393d340e
LT
1144 *num = 0;
1145
18b633ca
LT
1146 hour = tm->tm_hour;
1147 if (n) {
1148 hour = n;
393d340e
LT
1149 tm->tm_min = 0;
1150 tm->tm_sec = 0;
1151 }
18b633ca 1152 tm->tm_hour = (hour % 12) + 12;
393d340e
LT
1153}
1154
7829746a 1155static void date_am(struct tm *tm, struct tm *now UNUSED, int *num)
393d340e 1156{
18b633ca 1157 int hour, n = *num;
393d340e
LT
1158 *num = 0;
1159
18b633ca
LT
1160 hour = tm->tm_hour;
1161 if (n) {
1162 hour = n;
393d340e
LT
1163 tm->tm_min = 0;
1164 tm->tm_sec = 0;
1165 }
18b633ca 1166 tm->tm_hour = (hour % 12);
393d340e
LT
1167}
1168
7829746a 1169static void date_never(struct tm *tm, struct tm *now UNUSED, int *num)
af66366a 1170{
8c6b5786
OM
1171 time_t n = 0;
1172 localtime_r(&n, tm);
c27cc94f 1173 *num = 0;
af66366a
JS
1174}
1175
a8aca418
LT
1176static const struct special {
1177 const char *name;
90290552 1178 void (*fn)(struct tm *, struct tm *, int *);
a8aca418
LT
1179} special[] = {
1180 { "yesterday", date_yesterday },
1181 { "noon", date_noon },
1182 { "midnight", date_midnight },
1183 { "tea", date_tea },
393d340e
LT
1184 { "PM", date_pm },
1185 { "AM", date_am },
af66366a 1186 { "never", date_never },
93cfa7c7 1187 { "now", date_now },
a8aca418
LT
1188 { NULL }
1189};
1190
3c07b1d1
LT
1191static const char *number_name[] = {
1192 "zero", "one", "two", "three", "four",
1193 "five", "six", "seven", "eight", "nine", "ten",
1194};
1195
a8aca418 1196static const struct typelen {
3c07b1d1
LT
1197 const char *type;
1198 int length;
1199} typelen[] = {
1200 { "seconds", 1 },
1201 { "minutes", 60 },
1202 { "hours", 60*60 },
1203 { "days", 24*60*60 },
1204 { "weeks", 7*24*60*60 },
1205 { NULL }
a6080a0a 1206};
3c07b1d1 1207
93cfa7c7 1208static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm *now, int *num, int *touched)
3c07b1d1 1209{
a8aca418
LT
1210 const struct typelen *tl;
1211 const struct special *s;
3c07b1d1 1212 const char *end = date;
5df7dbba 1213 int i;
3c07b1d1 1214
38db01b7 1215 while (isalpha(*++end))
5df7dbba 1216 ;
3c07b1d1
LT
1217
1218 for (i = 0; i < 12; i++) {
1219 int match = match_string(date, month_names[i]);
1220 if (match >= 3) {
1221 tm->tm_mon = i;
93cfa7c7 1222 *touched = 1;
3c07b1d1
LT
1223 return end;
1224 }
1225 }
1226
a8aca418
LT
1227 for (s = special; s->name; s++) {
1228 int len = strlen(s->name);
1229 if (match_string(date, s->name) == len) {
90290552 1230 s->fn(tm, now, num);
93cfa7c7 1231 *touched = 1;
a8aca418
LT
1232 return end;
1233 }
3c07b1d1
LT
1234 }
1235
1236 if (!*num) {
1237 for (i = 1; i < 11; i++) {
1238 int len = strlen(number_name[i]);
1239 if (match_string(date, number_name[i]) == len) {
1240 *num = i;
93cfa7c7 1241 *touched = 1;
3c07b1d1
LT
1242 return end;
1243 }
1244 }
93cfa7c7 1245 if (match_string(date, "last") == 4) {
3c07b1d1 1246 *num = 1;
93cfa7c7
JH
1247 *touched = 1;
1248 }
3c07b1d1
LT
1249 return end;
1250 }
1251
1252 tl = typelen;
1253 while (tl->type) {
1254 int len = strlen(tl->type);
1255 if (match_string(date, tl->type) >= len-1) {
90290552 1256 update_tm(tm, now, tl->length * *num);
3c07b1d1 1257 *num = 0;
93cfa7c7 1258 *touched = 1;
3c07b1d1
LT
1259 return end;
1260 }
1261 tl++;
1262 }
1263
6b7b0427
LT
1264 for (i = 0; i < 7; i++) {
1265 int match = match_string(date, weekday_names[i]);
1266 if (match >= 3) {
1267 int diff, n = *num -1;
1268 *num = 0;
1269
1270 diff = tm->tm_wday - i;
1271 if (diff <= 0)
1272 n++;
1273 diff += 7*n;
1274
90290552 1275 update_tm(tm, now, diff * 24 * 60 * 60);
93cfa7c7 1276 *touched = 1;
6b7b0427
LT
1277 return end;
1278 }
1279 }
1280
3c07b1d1 1281 if (match_string(date, "months") >= 5) {
931e8e27
JK
1282 int n;
1283 update_tm(tm, now, 0); /* fill in date fields if needed */
1284 n = tm->tm_mon - *num;
3c07b1d1
LT
1285 *num = 0;
1286 while (n < 0) {
1287 n += 12;
1288 tm->tm_year--;
1289 }
1290 tm->tm_mon = n;
93cfa7c7 1291 *touched = 1;
3c07b1d1
LT
1292 return end;
1293 }
1294
1295 if (match_string(date, "years") >= 4) {
931e8e27 1296 update_tm(tm, now, 0); /* fill in date fields if needed */
3c07b1d1
LT
1297 tm->tm_year -= *num;
1298 *num = 0;
93cfa7c7 1299 *touched = 1;
3c07b1d1
LT
1300 return end;
1301 }
1302
1303 return end;
1304}
1305
073281e2
JK
1306static const char *approxidate_digit(const char *date, struct tm *tm, int *num,
1307 time_t now)
e92a54d9
LT
1308{
1309 char *end;
dddbad72 1310 timestamp_t number = parse_timestamp(date, &end, 10);
e92a54d9 1311
393d340e
LT
1312 switch (*end) {
1313 case ':':
1314 case '.':
1315 case '/':
1316 case '-':
1317 if (isdigit(end[1])) {
073281e2
JK
1318 int match = match_multi_number(number, *end, date, end,
1319 tm, now);
393d340e
LT
1320 if (match)
1321 return date + match;
1322 }
1323 }
1324
9f2b6d29
LT
1325 /* Accept zero-padding only for small numbers ("Dec 02", never "Dec 0002") */
1326 if (date[0] != '0' || end - date <= 2)
1327 *num = number;
e92a54d9
LT
1328 return end;
1329}
1330
dddbad72
JS
1331static timestamp_t approxidate_str(const char *date,
1332 const struct timeval *tv,
1333 int *error_ret)
3c07b1d1
LT
1334{
1335 int number = 0;
93cfa7c7 1336 int touched = 0;
3c07b1d1 1337 struct tm tm, now;
f697b33b 1338 time_t time_sec;
3c07b1d1 1339
33012fc4 1340 time_sec = tv->tv_sec;
f697b33b 1341 localtime_r(&time_sec, &tm);
3c07b1d1 1342 now = tm;
90290552
LT
1343
1344 tm.tm_year = -1;
1345 tm.tm_mon = -1;
1346 tm.tm_mday = -1;
1347
3c07b1d1
LT
1348 for (;;) {
1349 unsigned char c = *date;
1350 if (!c)
1351 break;
1352 date++;
1353 if (isdigit(c)) {
90290552 1354 pending_number(&tm, &number);
073281e2 1355 date = approxidate_digit(date-1, &tm, &number, time_sec);
93cfa7c7 1356 touched = 1;
3c07b1d1
LT
1357 continue;
1358 }
1359 if (isalpha(c))
93cfa7c7 1360 date = approxidate_alpha(date-1, &tm, &now, &number, &touched);
3c07b1d1 1361 }
90290552 1362 pending_number(&tm, &number);
93cfa7c7
JH
1363 if (!touched)
1364 *error_ret = 1;
dddbad72 1365 return (timestamp_t)update_tm(&tm, &now, 0);
3c07b1d1 1366}
33012fc4 1367
29f4332e 1368timestamp_t approxidate_relative(const char *date)
33012fc4 1369{
29f4332e 1370 struct timeval tv;
dddbad72 1371 timestamp_t timestamp;
c5043cc1 1372 int offset;
93cfa7c7 1373 int errors = 0;
33012fc4 1374
9644c061 1375 if (!parse_date_basic(date, &timestamp, &offset))
c5043cc1 1376 return timestamp;
29f4332e
SS
1377
1378 get_time(&tv);
1379 return approxidate_str(date, (const struct timeval *) &tv, &errors);
33012fc4
AR
1380}
1381
dddbad72 1382timestamp_t approxidate_careful(const char *date, int *error_ret)
33012fc4
AR
1383{
1384 struct timeval tv;
dddbad72 1385 timestamp_t timestamp;
c5043cc1 1386 int offset;
93cfa7c7
JH
1387 int dummy = 0;
1388 if (!error_ret)
1389 error_ret = &dummy;
33012fc4 1390
9644c061 1391 if (!parse_date_basic(date, &timestamp, &offset)) {
93cfa7c7 1392 *error_ret = 0;
c5043cc1 1393 return timestamp;
93cfa7c7 1394 }
33012fc4 1395
b841d4ff 1396 get_time(&tv);
93cfa7c7 1397 return approxidate_str(date, &tv, error_ret);
33012fc4 1398}
7ca36d93 1399
dddbad72 1400int date_overflows(timestamp_t t)
7ca36d93
JK
1401{
1402 time_t sys;
1403
dddbad72
JS
1404 /* If we overflowed our timestamp data type, that's bad... */
1405 if ((uintmax_t)t >= TIME_MAX)
7ca36d93
JK
1406 return 1;
1407
1408 /*
1409 * ...but we also are going to feed the result to system
1410 * functions that expect time_t, which is often "signed long".
1411 * Make sure that we fit into time_t, as well.
1412 */
1413 sys = t;
1414 return t != sys || (t < 1) != (sys < 1);
1415}