touch: implement -t TIME (needed for testsuite)
This changes date -d TIME format a bit, makes it more compatible function old new delta parse_datestr 391 618 +227 touch_main 360 361 +1 packed_usage 26624 26615 -9 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
7aca89a7a3
commit
38dd8aa657
@ -64,10 +64,14 @@ int touch_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
#if ENABLE_DESKTOP && ENABLE_LONG_OPTS
|
#if ENABLE_DESKTOP && ENABLE_LONG_OPTS
|
||||||
applet_long_options = touch_longopts;
|
applet_long_options = touch_longopts;
|
||||||
#endif
|
#endif
|
||||||
opts = getopt32(argv, "c" IF_DESKTOP("r:d:")
|
/* -d and -t both set time. In coreutils,
|
||||||
|
* accepted data format differs a bit between -d and -t.
|
||||||
|
* We accept the same formats for both */
|
||||||
|
opts = getopt32(argv, "c" IF_DESKTOP("r:d:t:")
|
||||||
/*ignored:*/ "fma"
|
/*ignored:*/ "fma"
|
||||||
IF_DESKTOP(, &reference_file)
|
IF_DESKTOP(, &reference_file)
|
||||||
IF_DESKTOP(, &date_str)
|
IF_DESKTOP(, &date_str)
|
||||||
|
IF_DESKTOP(, &date_str)
|
||||||
);
|
);
|
||||||
|
|
||||||
opts &= 1; /* only -c bit is left */
|
opts &= 1; /* only -c bit is left */
|
||||||
|
@ -668,6 +668,7 @@
|
|||||||
#define date_full_usage "\n\n" \
|
#define date_full_usage "\n\n" \
|
||||||
"Display time (using +FMT), or set time\n" \
|
"Display time (using +FMT), or set time\n" \
|
||||||
"\nOptions:" \
|
"\nOptions:" \
|
||||||
|
"\n [-s] TIME Set time to TIME" \
|
||||||
"\n -u Work in UTC (don't convert to local time)" \
|
"\n -u Work in UTC (don't convert to local time)" \
|
||||||
"\n -R Output RFC-822 compliant date string" \
|
"\n -R Output RFC-822 compliant date string" \
|
||||||
IF_FEATURE_DATE_ISOFMT( \
|
IF_FEATURE_DATE_ISOFMT( \
|
||||||
@ -676,18 +677,17 @@
|
|||||||
"\n 'hours', 'minutes', or 'seconds' for date and" \
|
"\n 'hours', 'minutes', or 'seconds' for date and" \
|
||||||
"\n time to the indicated precision" \
|
"\n time to the indicated precision" \
|
||||||
) \
|
) \
|
||||||
"\n -d TIME Display TIME, not 'now'" \
|
|
||||||
"\n -r FILE Display last modification time of FILE" \
|
"\n -r FILE Display last modification time of FILE" \
|
||||||
"\n [-s] TIME Set time to TIME" \
|
"\n -d TIME Display TIME, not 'now'" \
|
||||||
IF_FEATURE_DATE_ISOFMT( \
|
IF_FEATURE_DATE_ISOFMT( \
|
||||||
"\n -D FMT Use FMT for str->date conversion" \
|
"\n -D FMT Use FMT for -d TIME conversion" \
|
||||||
) \
|
) \
|
||||||
"\n" \
|
"\n" \
|
||||||
"\nRecognized formats for TIME:" \
|
"\nRecognized formats for TIME:" \
|
||||||
"\n hh:mm[:ss]" \
|
"\n hh:mm[:ss]" \
|
||||||
"\n [YYYY.]MM.DD-hh:mm[:ss]" \
|
"\n [YYYY.]MM.DD-hh:mm[:ss]" \
|
||||||
"\n YYYY-MM-DD hh:mm[:ss]" \
|
"\n YYYY-MM-DD hh:mm[:ss]" \
|
||||||
"\n MMDDhhmm[[YY]YY][.ss]" \
|
"\n [[[[[YY]YY]MM]DD]hh]mm[.ss]" \
|
||||||
|
|
||||||
#define date_example_usage \
|
#define date_example_usage \
|
||||||
"$ date\n" \
|
"$ date\n" \
|
||||||
|
97
libbb/time.c
97
libbb/time.c
@ -16,50 +16,117 @@ void FAST_FUNC parse_datestr(const char *date_str, struct tm *tm_time)
|
|||||||
if (last_colon != NULL) {
|
if (last_colon != NULL) {
|
||||||
/* Parse input and assign appropriately to tm_time */
|
/* Parse input and assign appropriately to tm_time */
|
||||||
|
|
||||||
|
/* HH:MM */
|
||||||
if (sscanf(date_str, "%u:%u%c",
|
if (sscanf(date_str, "%u:%u%c",
|
||||||
&tm_time->tm_hour,
|
&tm_time->tm_hour,
|
||||||
&tm_time->tm_min,
|
&tm_time->tm_min,
|
||||||
&end) >= 2) {
|
&end) >= 2) {
|
||||||
/* no adjustments needed */
|
/* no adjustments needed */
|
||||||
} else if (sscanf(date_str, "%u.%u-%u:%u%c",
|
} else
|
||||||
|
/* mm.dd-HH:MM */
|
||||||
|
if (sscanf(date_str, "%u.%u-%u:%u%c",
|
||||||
&tm_time->tm_mon, &tm_time->tm_mday,
|
&tm_time->tm_mon, &tm_time->tm_mday,
|
||||||
&tm_time->tm_hour, &tm_time->tm_min,
|
&tm_time->tm_hour, &tm_time->tm_min,
|
||||||
&end) >= 4) {
|
&end) >= 4) {
|
||||||
/* Adjust dates from 1-12 to 0-11 */
|
/* Adjust month from 1-12 to 0-11 */
|
||||||
tm_time->tm_mon -= 1;
|
tm_time->tm_mon -= 1;
|
||||||
} else if (sscanf(date_str, "%u.%u.%u-%u:%u%c", &tm_time->tm_year,
|
} else
|
||||||
|
/* yyyy.mm.dd-HH:MM */
|
||||||
|
if (sscanf(date_str, "%u.%u.%u-%u:%u%c", &tm_time->tm_year,
|
||||||
&tm_time->tm_mon, &tm_time->tm_mday,
|
&tm_time->tm_mon, &tm_time->tm_mday,
|
||||||
&tm_time->tm_hour, &tm_time->tm_min,
|
&tm_time->tm_hour, &tm_time->tm_min,
|
||||||
&end) >= 5) {
|
&end) >= 5) {
|
||||||
tm_time->tm_year -= 1900; /* Adjust years */
|
tm_time->tm_year -= 1900; /* Adjust years */
|
||||||
tm_time->tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
|
tm_time->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
|
||||||
} else if (sscanf(date_str, "%u-%u-%u %u:%u%c", &tm_time->tm_year,
|
} else
|
||||||
|
/* yyyy-mm-dd HH:MM */
|
||||||
|
if (sscanf(date_str, "%u-%u-%u %u:%u%c", &tm_time->tm_year,
|
||||||
&tm_time->tm_mon, &tm_time->tm_mday,
|
&tm_time->tm_mon, &tm_time->tm_mday,
|
||||||
&tm_time->tm_hour, &tm_time->tm_min,
|
&tm_time->tm_hour, &tm_time->tm_min,
|
||||||
&end) >= 5) {
|
&end) >= 5) {
|
||||||
tm_time->tm_year -= 1900; /* Adjust years */
|
tm_time->tm_year -= 1900; /* Adjust years */
|
||||||
tm_time->tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
|
tm_time->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
|
||||||
//TODO: coreutils 6.9 also accepts "YYYY-MM-DD HH" (no minutes)
|
//TODO: coreutils 6.9 also accepts "yyyy-mm-dd HH" (no minutes)
|
||||||
} else {
|
} else {
|
||||||
bb_error_msg_and_die(bb_msg_invalid_date, date_str);
|
bb_error_msg_and_die(bb_msg_invalid_date, date_str);
|
||||||
}
|
}
|
||||||
if (end == ':') {
|
if (end == ':') {
|
||||||
|
/* xxx:SS */
|
||||||
if (sscanf(last_colon + 1, "%u%c", &tm_time->tm_sec, &end) == 1)
|
if (sscanf(last_colon + 1, "%u%c", &tm_time->tm_sec, &end) == 1)
|
||||||
end = '\0';
|
end = '\0';
|
||||||
/* else end != NUL and we error out */
|
/* else end != NUL and we error out */
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (sscanf(date_str, "%2u%2u%2u%2u%u%c", &tm_time->tm_mon,
|
/* Googled the following on an old date manpage:
|
||||||
&tm_time->tm_mday, &tm_time->tm_hour, &tm_time->tm_min,
|
*
|
||||||
&tm_time->tm_year, &end) < 4)
|
* The canonical representation for setting the date/time is:
|
||||||
|
* cc Century (either 19 or 20)
|
||||||
|
* yy Year in abbreviated form (e.g. 89, 06)
|
||||||
|
* mm Numeric month, a number from 1 to 12
|
||||||
|
* dd Day, a number from 1 to 31
|
||||||
|
* HH Hour, a number from 0 to 23
|
||||||
|
* MM Minutes, a number from 0 to 59
|
||||||
|
* ss Seconds, a number from 0 to 61 (with leap seconds)
|
||||||
|
* Everything but the minutes is optional
|
||||||
|
*
|
||||||
|
* This coincides with the format of "touch -t TIME"
|
||||||
|
*/
|
||||||
|
int len = strchrnul(date_str, '.') - date_str;
|
||||||
|
|
||||||
|
/* MM[.SS] */
|
||||||
|
if (len == 2 && sscanf(date_str, "%2u%2u%2u%2u%2u%c" + 12,
|
||||||
|
&tm_time->tm_min,
|
||||||
|
&end) >= 1) {
|
||||||
|
} else
|
||||||
|
/* HHMM[.SS] */
|
||||||
|
if (len == 4 && sscanf(date_str, "%2u%2u%2u%2u%2u%c" + 9,
|
||||||
|
&tm_time->tm_hour,
|
||||||
|
&tm_time->tm_min,
|
||||||
|
&end) >= 2) {
|
||||||
|
} else
|
||||||
|
/* ddHHMM[.SS] */
|
||||||
|
if (len == 6 && sscanf(date_str, "%2u%2u%2u%2u%2u%c" + 6,
|
||||||
|
&tm_time->tm_mday,
|
||||||
|
&tm_time->tm_hour,
|
||||||
|
&tm_time->tm_min,
|
||||||
|
&end) >= 3) {
|
||||||
|
} else
|
||||||
|
/* mmddHHMM[.SS] */
|
||||||
|
if (len == 8 && sscanf(date_str, "%2u%2u%2u%2u%2u%c" + 3,
|
||||||
|
&tm_time->tm_mon,
|
||||||
|
&tm_time->tm_mday,
|
||||||
|
&tm_time->tm_hour,
|
||||||
|
&tm_time->tm_min,
|
||||||
|
&end) >= 4) {
|
||||||
|
/* Adjust month from 1-12 to 0-11 */
|
||||||
|
tm_time->tm_mon -= 1;
|
||||||
|
} else
|
||||||
|
/* yymmddHHMM[.SS] */
|
||||||
|
if (len == 10 && sscanf(date_str, "%2u%2u%2u%2u%2u%c",
|
||||||
|
&tm_time->tm_year,
|
||||||
|
&tm_time->tm_mon,
|
||||||
|
&tm_time->tm_mday,
|
||||||
|
&tm_time->tm_hour,
|
||||||
|
&tm_time->tm_min,
|
||||||
|
&end) >= 5) {
|
||||||
|
/* Adjust month from 1-12 to 0-11 */
|
||||||
|
tm_time->tm_mon -= 1;
|
||||||
|
} else
|
||||||
|
/* yyyymmddHHMM[.SS] */
|
||||||
|
if (len == 12 && sscanf(date_str, "%4u%2u%2u%2u%2u%c",
|
||||||
|
&tm_time->tm_year,
|
||||||
|
&tm_time->tm_mon,
|
||||||
|
&tm_time->tm_mday,
|
||||||
|
&tm_time->tm_hour,
|
||||||
|
&tm_time->tm_min,
|
||||||
|
&end) >= 5) {
|
||||||
|
tm_time->tm_year -= 1900; /* Adjust years */
|
||||||
|
tm_time->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
|
||||||
|
} else {
|
||||||
bb_error_msg_and_die(bb_msg_invalid_date, date_str);
|
bb_error_msg_and_die(bb_msg_invalid_date, date_str);
|
||||||
/* correct for century - minor Y2K problem here? */
|
|
||||||
if (tm_time->tm_year >= 1900) {
|
|
||||||
tm_time->tm_year -= 1900;
|
|
||||||
}
|
}
|
||||||
/* adjust date */
|
|
||||||
tm_time->tm_mon -= 1;
|
|
||||||
if (end == '.') {
|
if (end == '.') {
|
||||||
|
/* xxx.SS */
|
||||||
if (sscanf(strchr(date_str, '.') + 1, "%u%c",
|
if (sscanf(strchr(date_str, '.') + 1, "%u%c",
|
||||||
&tm_time->tm_sec, &end) == 1)
|
&tm_time->tm_sec, &end) == 1)
|
||||||
end = '\0';
|
end = '\0';
|
||||||
|
Loading…
Reference in New Issue
Block a user