From d78f05e91bb3a87a73b1d3fad29362447ee8e1f6 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 26 Mar 2019 15:40:00 -0500 Subject: Make touch use xparsedate() (result: -t and -d the same, autodetects format), and fix tests to pass on host too. --- lib/xwrap.c | 100 ++++++++++++++++++++++++------------------------------------ 1 file changed, 40 insertions(+), 60 deletions(-) (limited to 'lib/xwrap.c') diff --git a/lib/xwrap.c b/lib/xwrap.c index ee07fda2..a8214e57 100644 --- a/lib/xwrap.c +++ b/lib/xwrap.c @@ -958,14 +958,17 @@ time_t xvali_date(struct tm *tm, char *str) } // Parse date string (relative to current *t). Sets time_t and nanoseconds. -void xparsedate(char *str, time_t *t, unsigned *nano) +void xparsedate(char *str, time_t *t, unsigned *nano, int endian) { struct tm tm; time_t now = *t; - int len = 0, i; - // Formats with years must come first. - char *s = str, *p, *formats[] = {"%F %T", "%FT%T", "%F %H:%M", "%F", - "%H:%M:%S", "%H:%M"}; + int len = 0, i = 0; + // Formats with years must come first. Posix can't agree on whether 12 digits + // has year before (touch -t) or year after (date), so support both. + char *s = str, *p, *oldtz = 0, *formats[] = {"%Y-%m-%d %T", "%Y-%m-%dT%T", + "%H:%M:%S", "%Y-%m-%d %H:%M", "%Y-%m-%d", "%H:%M", "%m%d%H%M", + endian ? "%m%d%H%M%y" : "%y%m%d%H%M", + endian ? "%m%d%H%M%C%y" : "%C%y%m%d%H%M"}; *nano = 0; @@ -983,72 +986,49 @@ void xparsedate(char *str, time_t *t, unsigned *nano) if (isdigit(*s)) *nano += *s++-'0'; } } - if (s[len]) goto bad_dates; *t = ll; + if (!s[len]) return; + xvali_date(0, str); + } - return; + // Trailing Z means UTC timezone, don't expect libc to know this. + // (Trimming it off here means it won't show up in error messages.) + if ((i = strlen(str)) && toupper(str[i-1])=='Z') { + str[--i] = 0; + oldtz = getenv("TZ"); + if (oldtz) oldtz = xstrdup(oldtz); + setenv("TZ", "UTC0", 1); } - // Is it one of the fancy formats? + // Try each format for (i = 0; i2) { + len = 0; + sscanf(p, "%2u%n", &tm.tm_sec, &len); + p += len; + } + // nanoseconds + for (len = 0; len<9; len++) { + *nano *= 10; + if (isdigit(*p)) *nano += *p++-'0'; + } + } - // Posix format? - sscanf(s, "%2u%2u%2u%2u%n", &tm.tm_mon, &tm.tm_mday, &tm.tm_hour, - &tm.tm_min, &len); - if (len != 8) goto bad_dates; - s += len; - tm.tm_mon--; - - // If year specified, overwrite one we fetched earlier. - if (*s && *s != '.') { - unsigned year; - - len = 0; - sscanf(s, "%u%n", &year, &len); - if (len == 4) tm.tm_year = year - 1900; - else if (len != 2) goto bad_dates; - s += len; - - // 2 digit years, next 50 years are "future", last 50 years are "past". - // A "future" date in past is a century ahead. - // A non-future date in the future is a century behind. - if (len == 2) { - unsigned r1 = tm.tm_year % 100, r2 = (tm.tm_year + 50) % 100, - century = tm.tm_year - r1; - - if ((r1 < r2) ? (r1 < year && year < r2) : (year < r1 || year > r2)) { - if (year < r1) year += 100; - } else if (year > r1) year -= 100; - tm.tm_year = year + century; + if (!*p) break; } } - // Fractional part? - if (*s == '.') { - len = 0; - sscanf(s, ".%2u%n", &tm.tm_sec, &len); - s += len; - for (len = 0; len<9; len++) { - *nano *= 10; - if (isdigit(*s)) *nano += *s++-'0'; - } - } else tm.tm_sec = 0; // Sanity check field ranges - *t = xvali_date(&tm, str); - - // Shouldn't be any trailing garbage. - if (!*s) return; + *t = xvali_date((i!=ARRAY_LEN(formats)) ? &tm : 0, str); -bad_dates: - // monkey died - xvali_date(0, str); + if (oldtz) setenv("TZ", oldtz, 1); + free(oldtz); } -- cgit v1.2.3