]> git.ipfire.org Git - thirdparty/git.git/blame - date.c
git-diff -B output fix.
[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
ecee9d9e 7#include <time.h>
3c07b1d1 8#include <sys/time.h>
ecee9d9e 9
e99d59ff
LT
10#include "cache.h"
11
ecee9d9e
ET
12static time_t my_mktime(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 return (year * 365 + (year + 1) / 4 + mdays[month] + day) * 24*60*60UL +
28 tm->tm_hour * 60*60 + tm->tm_min * 60 + tm->tm_sec;
29}
30
31static const char *month_names[] = {
89967023
LT
32 "January", "February", "March", "April", "May", "June",
33 "July", "August", "September", "October", "November", "December"
ecee9d9e
ET
34};
35
36static const char *weekday_names[] = {
6b7b0427 37 "Sundays", "Mondays", "Tuesdays", "Wednesdays", "Thursdays", "Fridays", "Saturdays"
ecee9d9e
ET
38};
39
9a8e35e9
LT
40static time_t gm_time_t(unsigned long time, int tz)
41{
42 int minutes;
43
44 minutes = tz < 0 ? -tz : tz;
45 minutes = (minutes / 100)*60 + (minutes % 100);
46 minutes = tz < 0 ? -minutes : minutes;
47 return time + minutes * 60;
48}
49
f80cd783
LT
50/*
51 * The "tz" thing is passed in as this strange "decimal parse of tz"
52 * thing, which means that tz -0100 is passed in as the integer -100,
53 * even though it means "sixty minutes off"
54 */
2a387043 55static struct tm *time_to_tm(unsigned long time, int tz)
f80cd783 56{
9a8e35e9 57 time_t t = gm_time_t(time, tz);
2a387043
JH
58 return gmtime(&t);
59}
60
9a8e35e9 61const char *show_date(unsigned long time, int tz, int relative)
2a387043
JH
62{
63 struct tm *tm;
64 static char timebuf[200];
65
9a8e35e9
LT
66 if (relative) {
67 unsigned long diff;
68 time_t t = gm_time_t(time, tz);
69 struct timeval now;
70 gettimeofday(&now, NULL);
71 if (now.tv_sec < t)
72 return "in the future";
73 diff = now.tv_sec - t;
74 if (diff < 90) {
75 snprintf(timebuf, sizeof(timebuf), "%lu seconds ago", diff);
76 return timebuf;
77 }
78 /* Turn it into minutes */
79 diff = (diff + 30) / 60;
80 if (diff < 90) {
81 snprintf(timebuf, sizeof(timebuf), "%lu minutes ago", diff);
82 return timebuf;
83 }
84 /* Turn it into hours */
85 diff = (diff + 30) / 60;
86 if (diff < 36) {
87 snprintf(timebuf, sizeof(timebuf), "%lu hours ago", diff);
88 return timebuf;
89 }
90 /* We deal with number of days from here on */
91 diff = (diff + 12) / 24;
92 if (diff < 14) {
93 snprintf(timebuf, sizeof(timebuf), "%lu days ago", diff);
94 return timebuf;
95 }
96 /* Say weeks for the past 10 weeks or so */
97 if (diff < 70) {
98 snprintf(timebuf, sizeof(timebuf), "%lu weeks ago", (diff + 3) / 7);
99 return timebuf;
100 }
101 /* Say months for the past 12 months or so */
102 if (diff < 360) {
103 snprintf(timebuf, sizeof(timebuf), "%lu months ago", (diff + 15) / 30);
104 return timebuf;
105 }
106 /* Else fall back on absolute format.. */
107 }
108
2a387043 109 tm = time_to_tm(time, tz);
f80cd783
LT
110 if (!tm)
111 return NULL;
112 sprintf(timebuf, "%.3s %.3s %d %02d:%02d:%02d %d %+05d",
113 weekday_names[tm->tm_wday],
114 month_names[tm->tm_mon],
115 tm->tm_mday,
116 tm->tm_hour, tm->tm_min, tm->tm_sec,
117 tm->tm_year + 1900, tz);
118 return timebuf;
119}
120
2a387043
JH
121const char *show_rfc2822_date(unsigned long time, int tz)
122{
123 struct tm *tm;
124 static char timebuf[200];
125
126 tm = time_to_tm(time, tz);
127 if (!tm)
128 return NULL;
129 sprintf(timebuf, "%.3s, %d %.3s %d %02d:%02d:%02d %+05d",
130 weekday_names[tm->tm_wday], tm->tm_mday,
131 month_names[tm->tm_mon], tm->tm_year + 1900,
132 tm->tm_hour, tm->tm_min, tm->tm_sec, tz);
133 return timebuf;
134}
135
89967023
LT
136/*
137 * Check these. And note how it doesn't do the summer-time conversion.
138 *
139 * In my world, it's always summer, and things are probably a bit off
140 * in other ways too.
141 */
142static const struct {
143 const char *name;
144 int offset;
5e2a78a4 145 int dst;
89967023 146} timezone_names[] = {
5e2a78a4
LT
147 { "IDLW", -12, 0, }, /* International Date Line West */
148 { "NT", -11, 0, }, /* Nome */
149 { "CAT", -10, 0, }, /* Central Alaska */
150 { "HST", -10, 0, }, /* Hawaii Standard */
151 { "HDT", -10, 1, }, /* Hawaii Daylight */
152 { "YST", -9, 0, }, /* Yukon Standard */
153 { "YDT", -9, 1, }, /* Yukon Daylight */
154 { "PST", -8, 0, }, /* Pacific Standard */
155 { "PDT", -8, 1, }, /* Pacific Daylight */
156 { "MST", -7, 0, }, /* Mountain Standard */
157 { "MDT", -7, 1, }, /* Mountain Daylight */
158 { "CST", -6, 0, }, /* Central Standard */
159 { "CDT", -6, 1, }, /* Central Daylight */
160 { "EST", -5, 0, }, /* Eastern Standard */
161 { "EDT", -5, 1, }, /* Eastern Daylight */
162 { "AST", -3, 0, }, /* Atlantic Standard */
163 { "ADT", -3, 1, }, /* Atlantic Daylight */
164 { "WAT", -1, 0, }, /* West Africa */
165
166 { "GMT", 0, 0, }, /* Greenwich Mean */
167 { "UTC", 0, 0, }, /* Universal (Coordinated) */
168
169 { "WET", 0, 0, }, /* Western European */
170 { "BST", 0, 1, }, /* British Summer */
171 { "CET", +1, 0, }, /* Central European */
172 { "MET", +1, 0, }, /* Middle European */
173 { "MEWT", +1, 0, }, /* Middle European Winter */
174 { "MEST", +1, 1, }, /* Middle European Summer */
175 { "CEST", +1, 1, }, /* Central European Summer */
176 { "MESZ", +1, 1, }, /* Middle European Summer */
177 { "FWT", +1, 0, }, /* French Winter */
178 { "FST", +1, 1, }, /* French Summer */
179 { "EET", +2, 0, }, /* Eastern Europe, USSR Zone 1 */
92e2311b 180 { "EEST", +2, 1, }, /* Eastern European Daylight */
5e2a78a4
LT
181 { "WAST", +7, 0, }, /* West Australian Standard */
182 { "WADT", +7, 1, }, /* West Australian Daylight */
183 { "CCT", +8, 0, }, /* China Coast, USSR Zone 7 */
184 { "JST", +9, 0, }, /* Japan Standard, USSR Zone 8 */
185 { "EAST", +10, 0, }, /* Eastern Australian Standard */
186 { "EADT", +10, 1, }, /* Eastern Australian Daylight */
187 { "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */
188 { "NZT", +11, 0, }, /* New Zealand */
189 { "NZST", +11, 0, }, /* New Zealand Standard */
190 { "NZDT", +11, 1, }, /* New Zealand Daylight */
191 { "IDLE", +12, 0, }, /* International Date Line East */
89967023 192};
ecee9d9e 193
89967023 194static int match_string(const char *date, const char *str)
ecee9d9e 195{
89967023
LT
196 int i = 0;
197
198 for (i = 0; *date; date++, str++, i++) {
199 if (*date == *str)
200 continue;
201 if (toupper(*date) == toupper(*str))
202 continue;
203 if (!isalnum(*date))
204 break;
205 return 0;
206 }
207 return i;
ecee9d9e
ET
208}
209
68849b54
LT
210static int skip_alpha(const char *date)
211{
212 int i = 0;
213 do {
214 i++;
215 } while (isalpha(date[i]));
216 return i;
217}
218
89967023
LT
219/*
220* Parse month, weekday, or timezone name
221*/
222static int match_alpha(const char *date, struct tm *tm, int *offset)
ecee9d9e 223{
89967023 224 int i;
ecee9d9e 225
89967023
LT
226 for (i = 0; i < 12; i++) {
227 int match = match_string(date, month_names[i]);
228 if (match >= 3) {
229 tm->tm_mon = i;
230 return match;
ecee9d9e 231 }
89967023 232 }
ecee9d9e 233
89967023
LT
234 for (i = 0; i < 7; i++) {
235 int match = match_string(date, weekday_names[i]);
236 if (match >= 3) {
237 tm->tm_wday = i;
238 return match;
239 }
240 }
ecee9d9e 241
b4f2a6ac 242 for (i = 0; i < ARRAY_SIZE(timezone_names); i++) {
89967023
LT
243 int match = match_string(date, timezone_names[i].name);
244 if (match >= 3) {
5e2a78a4
LT
245 int off = timezone_names[i].offset;
246
247 /* This is bogus, but we like summer */
248 off += timezone_names[i].dst;
249
92e2311b
LT
250 /* Only use the tz name offset if we don't have anything better */
251 if (*offset == -1)
252 *offset = 60*off;
253
89967023 254 return match;
ecee9d9e
ET
255 }
256 }
ecee9d9e 257
68849b54
LT
258 if (match_string(date, "PM") == 2) {
259 if (tm->tm_hour > 0 && tm->tm_hour < 12)
260 tm->tm_hour += 12;
261 return 2;
262 }
263
89967023 264 /* BAD CRAP */
68849b54 265 return skip_alpha(date);
89967023 266}
ecee9d9e 267
38035cf4 268static int is_date(int year, int month, int day, struct tm *now_tm, time_t now, struct tm *tm)
89967023 269{
198b0fb6 270 if (month > 0 && month < 13 && day > 0 && day < 32) {
38035cf4
JH
271 struct tm check = *tm;
272 struct tm *r = (now_tm ? &check : tm);
273 time_t specified;
274
275 r->tm_mon = month - 1;
276 r->tm_mday = day;
198b0fb6 277 if (year == -1) {
38035cf4
JH
278 if (!now_tm)
279 return 1;
280 r->tm_year = now_tm->tm_year;
89967023 281 }
38035cf4
JH
282 else if (year >= 1970 && year < 2100)
283 r->tm_year = year - 1900;
284 else if (year > 70 && year < 100)
285 r->tm_year = year;
286 else if (year < 38)
287 r->tm_year = year + 100;
288 else
198b0fb6 289 return 0;
38035cf4
JH
290 if (!now_tm)
291 return 1;
292
293 specified = my_mktime(r);
198b0fb6 294
38035cf4
JH
295 /* Be it commit time or author time, it does not make
296 * sense to specify timestamp way into the future. Make
297 * sure it is not later than ten days from now...
298 */
299 if (now + 10*24*3600 < specified)
300 return 0;
301 tm->tm_mon = r->tm_mon;
302 tm->tm_mday = r->tm_mday;
303 if (year != -1)
304 tm->tm_year = r->tm_year;
198b0fb6 305 return 1;
89967023 306 }
198b0fb6
LT
307 return 0;
308}
ecee9d9e 309
26a2d8ae 310static int match_multi_number(unsigned long num, char c, const char *date, char *end, struct tm *tm)
198b0fb6 311{
38035cf4
JH
312 time_t now;
313 struct tm now_tm;
314 struct tm *refuse_future;
198b0fb6
LT
315 long num2, num3;
316
317 num2 = strtol(end+1, &end, 10);
318 num3 = -1;
319 if (*end == c && isdigit(end[1]))
320 num3 = strtol(end+1, &end, 10);
321
322 /* Time? Date? */
89967023 323 switch (c) {
198b0fb6
LT
324 case ':':
325 if (num3 < 0)
326 num3 = 0;
327 if (num < 25 && num2 >= 0 && num2 < 60 && num3 >= 0 && num3 <= 60) {
328 tm->tm_hour = num;
329 tm->tm_min = num2;
330 tm->tm_sec = num3;
89967023
LT
331 break;
332 }
198b0fb6 333 return 0;
89967023
LT
334
335 case '-':
336 case '/':
38035cf4
JH
337 case '.':
338 now = time(NULL);
339 refuse_future = NULL;
340 if (gmtime_r(&now, &now_tm))
341 refuse_future = &now_tm;
342
198b0fb6
LT
343 if (num > 70) {
344 /* yyyy-mm-dd? */
38035cf4 345 if (is_date(num, num2, num3, refuse_future, now, tm))
198b0fb6
LT
346 break;
347 /* yyyy-dd-mm? */
38035cf4 348 if (is_date(num, num3, num2, refuse_future, now, tm))
89967023 349 break;
198b0fb6 350 }
38035cf4
JH
351 /* Our eastern European friends say dd.mm.yy[yy]
352 * is the norm there, so giving precedence to
353 * mm/dd/yy[yy] form only when separator is not '.'
354 */
355 if (c != '.' &&
356 is_date(num3, num, num2, refuse_future, now, tm))
357 break;
358 /* European dd.mm.yy[yy] or funny US dd/mm/yy[yy] */
359 if (is_date(num3, num2, num, refuse_future, now, tm))
89967023 360 break;
38035cf4
JH
361 /* Funny European mm.dd.yy */
362 if (c == '.' &&
363 is_date(num3, num, num2, refuse_future, now, tm))
198b0fb6
LT
364 break;
365 return 0;
366 }
367 return end - date;
368}
369
370/*
371 * We've seen a digit. Time? Year? Date?
372 */
26a2d8ae 373static int match_digit(const char *date, struct tm *tm, int *offset, int *tm_gmt)
198b0fb6
LT
374{
375 int n;
376 char *end;
377 unsigned long num;
378
379 num = strtoul(date, &end, 10);
380
381 /*
382 * Seconds since 1970? We trigger on that for anything after Jan 1, 2000
383 */
384 if (num > 946684800) {
385 time_t time = num;
9cb480f2
JH
386 if (gmtime_r(&time, tm)) {
387 *tm_gmt = 1;
198b0fb6 388 return end - date;
9cb480f2 389 }
198b0fb6
LT
390 }
391
392 /*
38035cf4 393 * Check for special formats: num[-.:/]num[same]num
198b0fb6
LT
394 */
395 switch (*end) {
396 case ':':
38035cf4 397 case '.':
198b0fb6
LT
398 case '/':
399 case '-':
400 if (isdigit(end[1])) {
401 int match = match_multi_number(num, *end, date, end, tm);
402 if (match)
403 return match;
89967023
LT
404 }
405 }
198b0fb6
LT
406
407 /*
408 * None of the special formats? Try to guess what
409 * the number meant. We use the number of digits
410 * to make a more educated guess..
411 */
412 n = 0;
413 do {
414 n++;
415 } while (isdigit(date[n]));
416
417 /* Four-digit year or a timezone? */
418 if (n == 4) {
7122f82f 419 if (num <= 1400 && *offset == -1) {
198b0fb6
LT
420 unsigned int minutes = num % 100;
421 unsigned int hours = num / 100;
422 *offset = hours*60 + minutes;
423 } else if (num > 1900 && num < 2100)
424 tm->tm_year = num - 1900;
425 return n;
426 }
427
428 /*
429 * NOTE! We will give precedence to day-of-month over month or
82f9d58a 430 * year numbers in the 1-12 range. So 05 is always "mday 5",
198b0fb6
LT
431 * unless we already have a mday..
432 *
433 * IOW, 01 Apr 05 parses as "April 1st, 2005".
434 */
435 if (num > 0 && num < 32 && tm->tm_mday < 0) {
436 tm->tm_mday = num;
437 return n;
438 }
439
440 /* Two-digit year? */
441 if (n == 2 && tm->tm_year < 0) {
442 if (num < 10 && tm->tm_mday >= 0) {
443 tm->tm_year = num + 100;
444 return n;
445 }
446 if (num >= 70) {
447 tm->tm_year = num;
448 return n;
449 }
450 }
451
452 if (num > 0 && num < 32) {
453 tm->tm_mday = num;
454 } else if (num > 1900) {
455 tm->tm_year = num - 1900;
456 } else if (num > 70) {
457 tm->tm_year = num;
458 } else if (num > 0 && num < 13) {
459 tm->tm_mon = num-1;
460 }
ecee9d9e 461
198b0fb6 462 return n;
89967023 463}
ecee9d9e 464
26a2d8ae 465static int match_tz(const char *date, int *offp)
89967023
LT
466{
467 char *end;
468 int offset = strtoul(date+1, &end, 10);
469 int min, hour;
198b0fb6 470 int n = end - date - 1;
ecee9d9e 471
89967023
LT
472 min = offset % 100;
473 hour = offset / 100;
ecee9d9e 474
198b0fb6
LT
475 /*
476 * Don't accept any random crap.. At least 3 digits, and
477 * a valid minute. We might want to check that the minutes
478 * are divisible by 30 or something too.
479 */
68849b54
LT
480 if (min < 60 && n > 2) {
481 offset = hour*60+min;
482 if (*date == '-')
483 offset = -offset;
ecee9d9e 484
68849b54
LT
485 *offp = offset;
486 }
89967023
LT
487 return end - date;
488}
ecee9d9e 489
01c6ad29
LT
490static int date_string(unsigned long date, int offset, char *buf, int len)
491{
492 int sign = '+';
493
494 if (offset < 0) {
495 offset = -offset;
496 sign = '-';
497 }
498 return snprintf(buf, len, "%lu %c%02d%02d", date, sign, offset / 60, offset % 60);
499}
500
89967023
LT
501/* Gr. strptime is crap for this; it doesn't have a way to require RFC2822
502 (i.e. English) day/month names, and it doesn't work correctly with %z. */
2a39064c 503int parse_date(const char *date, char *result, int maxlen)
89967023
LT
504{
505 struct tm tm;
01c6ad29 506 int offset, tm_gmt;
89967023 507 time_t then;
ecee9d9e 508
89967023
LT
509 memset(&tm, 0, sizeof(tm));
510 tm.tm_year = -1;
511 tm.tm_mon = -1;
512 tm.tm_mday = -1;
eaa85129
LT
513 tm.tm_isdst = -1;
514 offset = -1;
9cb480f2 515 tm_gmt = 0;
89967023
LT
516
517 for (;;) {
518 int match = 0;
519 unsigned char c = *date;
520
521 /* Stop at end of string or newline */
522 if (!c || c == '\n')
523 break;
524
525 if (isalpha(c))
526 match = match_alpha(date, &tm, &offset);
527 else if (isdigit(c))
9cb480f2 528 match = match_digit(date, &tm, &offset, &tm_gmt);
89967023
LT
529 else if ((c == '-' || c == '+') && isdigit(date[1]))
530 match = match_tz(date, &offset);
531
532 if (!match) {
533 /* BAD CRAP */
534 match = 1;
535 }
536
537 date += match;
538 }
ecee9d9e 539
eaa85129
LT
540 /* mktime uses local timezone */
541 then = my_mktime(&tm);
542 if (offset == -1)
543 offset = (then - mktime(&tm)) / 60;
544
ecee9d9e 545 if (then == -1)
2a39064c 546 return -1;
ecee9d9e 547
9cb480f2
JH
548 if (!tm_gmt)
549 then -= offset * 60;
01c6ad29 550 return date_string(then, offset, result, maxlen);
ecee9d9e
ET
551}
552
553void datestamp(char *buf, int bufsize)
554{
555 time_t now;
556 int offset;
557
558 time(&now);
559
560 offset = my_mktime(localtime(&now)) - now;
561 offset /= 60;
562
01c6ad29 563 date_string(now, offset, buf, bufsize);
ecee9d9e 564}
3c07b1d1
LT
565
566static void update_tm(struct tm *tm, unsigned long sec)
567{
568 time_t n = mktime(tm) - sec;
569 localtime_r(&n, tm);
570}
571
a8aca418
LT
572static void date_yesterday(struct tm *tm, int *num)
573{
574 update_tm(tm, 24*60*60);
575}
576
577static void date_time(struct tm *tm, int hour)
578{
579 if (tm->tm_hour < hour)
580 date_yesterday(tm, NULL);
581 tm->tm_hour = hour;
582 tm->tm_min = 0;
583 tm->tm_sec = 0;
584}
585
586static void date_midnight(struct tm *tm, int *num)
587{
588 date_time(tm, 0);
589}
590
591static void date_noon(struct tm *tm, int *num)
592{
593 date_time(tm, 12);
594}
595
596static void date_tea(struct tm *tm, int *num)
597{
598 date_time(tm, 17);
599}
600
393d340e
LT
601static void date_pm(struct tm *tm, int *num)
602{
603 int hour = *num;
604 *num = 0;
605
606 if (hour > 0 && hour < 12) {
607 tm->tm_hour = hour;
608 tm->tm_min = 0;
609 tm->tm_sec = 0;
610 }
611 if (tm->tm_hour > 0 && tm->tm_hour < 12)
612 tm->tm_hour += 12;
613}
614
615static void date_am(struct tm *tm, int *num)
616{
617 int hour = *num;
618 *num = 0;
619
620 if (hour > 0 && hour < 12) {
621 tm->tm_hour = hour;
622 tm->tm_min = 0;
623 tm->tm_sec = 0;
624 }
625}
626
a8aca418
LT
627static const struct special {
628 const char *name;
629 void (*fn)(struct tm *, int *);
630} special[] = {
631 { "yesterday", date_yesterday },
632 { "noon", date_noon },
633 { "midnight", date_midnight },
634 { "tea", date_tea },
393d340e
LT
635 { "PM", date_pm },
636 { "AM", date_am },
a8aca418
LT
637 { NULL }
638};
639
3c07b1d1
LT
640static const char *number_name[] = {
641 "zero", "one", "two", "three", "four",
642 "five", "six", "seven", "eight", "nine", "ten",
643};
644
a8aca418 645static const struct typelen {
3c07b1d1
LT
646 const char *type;
647 int length;
648} typelen[] = {
649 { "seconds", 1 },
650 { "minutes", 60 },
651 { "hours", 60*60 },
652 { "days", 24*60*60 },
653 { "weeks", 7*24*60*60 },
654 { NULL }
655};
656
657static const char *approxidate_alpha(const char *date, struct tm *tm, int *num)
658{
a8aca418
LT
659 const struct typelen *tl;
660 const struct special *s;
3c07b1d1 661 const char *end = date;
5df7dbba 662 int i;
3c07b1d1 663
5df7dbba
PH
664 while (isalpha(*++end));
665 ;
3c07b1d1
LT
666
667 for (i = 0; i < 12; i++) {
668 int match = match_string(date, month_names[i]);
669 if (match >= 3) {
670 tm->tm_mon = i;
671 return end;
672 }
673 }
674
a8aca418
LT
675 for (s = special; s->name; s++) {
676 int len = strlen(s->name);
677 if (match_string(date, s->name) == len) {
678 s->fn(tm, num);
679 return end;
680 }
3c07b1d1
LT
681 }
682
683 if (!*num) {
684 for (i = 1; i < 11; i++) {
685 int len = strlen(number_name[i]);
686 if (match_string(date, number_name[i]) == len) {
687 *num = i;
688 return end;
689 }
690 }
691 if (match_string(date, "last") == 4)
692 *num = 1;
693 return end;
694 }
695
696 tl = typelen;
697 while (tl->type) {
698 int len = strlen(tl->type);
699 if (match_string(date, tl->type) >= len-1) {
700 update_tm(tm, tl->length * *num);
701 *num = 0;
702 return end;
703 }
704 tl++;
705 }
706
6b7b0427
LT
707 for (i = 0; i < 7; i++) {
708 int match = match_string(date, weekday_names[i]);
709 if (match >= 3) {
710 int diff, n = *num -1;
711 *num = 0;
712
713 diff = tm->tm_wday - i;
714 if (diff <= 0)
715 n++;
716 diff += 7*n;
717
718 update_tm(tm, diff * 24 * 60 * 60);
719 return end;
720 }
721 }
722
3c07b1d1
LT
723 if (match_string(date, "months") >= 5) {
724 int n = tm->tm_mon - *num;
725 *num = 0;
726 while (n < 0) {
727 n += 12;
728 tm->tm_year--;
729 }
730 tm->tm_mon = n;
731 return end;
732 }
733
734 if (match_string(date, "years") >= 4) {
735 tm->tm_year -= *num;
736 *num = 0;
737 return end;
738 }
739
740 return end;
741}
742
e92a54d9
LT
743static const char *approxidate_digit(const char *date, struct tm *tm, int *num)
744{
745 char *end;
746 unsigned long number = strtoul(date, &end, 10);
747
393d340e
LT
748 switch (*end) {
749 case ':':
750 case '.':
751 case '/':
752 case '-':
753 if (isdigit(end[1])) {
754 int match = match_multi_number(number, *end, date, end, tm);
755 if (match)
756 return date + match;
757 }
758 }
759
e92a54d9
LT
760 *num = number;
761 return end;
762}
763
3c07b1d1
LT
764unsigned long approxidate(const char *date)
765{
766 int number = 0;
767 struct tm tm, now;
768 struct timeval tv;
769 char buffer[50];
770
771 if (parse_date(date, buffer, sizeof(buffer)) > 0)
772 return strtoul(buffer, NULL, 10);
773
774 gettimeofday(&tv, NULL);
775 localtime_r(&tv.tv_sec, &tm);
776 now = tm;
777 for (;;) {
778 unsigned char c = *date;
779 if (!c)
780 break;
781 date++;
782 if (isdigit(c)) {
e92a54d9 783 date = approxidate_digit(date-1, &tm, &number);
3c07b1d1
LT
784 continue;
785 }
786 if (isalpha(c))
787 date = approxidate_alpha(date-1, &tm, &number);
788 }
789 if (number > 0 && number < 32)
790 tm.tm_mday = number;
b73cebf4 791 if (tm.tm_mon > now.tm_mon && tm.tm_year == now.tm_year)
3c07b1d1
LT
792 tm.tm_year--;
793 return mktime(&tm);
794}