summaryrefslogtreecommitdiffstats
path: root/toolbox/touch.c
diff options
context:
space:
mode:
authorKen Sumrall <ksumrall@android.com>2013-06-25 21:42:23 -0700
committerKen Sumrall <ksumrall@android.com>2013-06-26 17:42:25 -0700
commit13495a1cbb6c6b7ec617488f272bc02f2107a63c (patch)
tree226502f224c9d9e7ecfebff5c4f1a6a0c0560b0c /toolbox/touch.c
parent945ff923b7dde38bc308a7732e486fac04dda576 (diff)
downloadsystem_core-13495a1cbb6c6b7ec617488f272bc02f2107a63c.zip
system_core-13495a1cbb6c6b7ec617488f272bc02f2107a63c.tar.gz
system_core-13495a1cbb6c6b7ec617488f272bc02f2107a63c.tar.bz2
Update the touch command to take a human readable timestamp
Now the -t option to the toolbox touch command takes a timestamp in the form of YYYYMMDD.hhmmss Change-Id: I3812700edaa1a06590a07c15b050721b49e9b7e0
Diffstat (limited to 'toolbox/touch.c')
-rw-r--r--toolbox/touch.c35
1 files changed, 31 insertions, 4 deletions
diff --git a/toolbox/touch.c b/toolbox/touch.c
index b8ab310..52ddf2a 100644
--- a/toolbox/touch.c
+++ b/toolbox/touch.c
@@ -5,13 +5,40 @@
#include <sys/stat.h>
#include <stdlib.h>
#include <fcntl.h>
+#include <time.h>
static void usage(void)
{
- fprintf(stderr, "touch: usage: touch [-alm] [-t time_t] <file>\n");
+ fprintf(stderr, "touch: usage: touch [-alm] [-t YYYYMMDD[.hhmmss]] <file>\n");
exit(1);
}
+static time_t parse_time(char *s)
+{
+ struct tm tm;
+ int day = atoi(s);
+ int hour = 0;
+
+ while (*s && *s != '.') {
+ s++;
+ }
+
+ if (*s) {
+ s++;
+ hour = atoi(s);
+ }
+
+ tm.tm_year = day / 10000 - 1900;
+ tm.tm_mon = (day % 10000) / 100 - 1;
+ tm.tm_mday = day % 100;
+ tm.tm_hour = hour / 10000;
+ tm.tm_min = (hour % 10000) / 100;
+ tm.tm_sec = hour % 100;
+ tm.tm_isdst = -1;
+
+ return mktime(&tm);
+}
+
int touch_main(int argc, char *argv[])
{
int i, fd, aflag = 0, mflag = 0, debug = 0, flags = 0;
@@ -31,9 +58,9 @@ int touch_main(int argc, char *argv[])
case 't':
if ((i+1) >= argc)
usage();
- specified_time.tv_sec = atol(argv[++i]);
- if (specified_time.tv_sec == 0) {
- fprintf(stderr, "touch: invalid time_t\n");
+ specified_time.tv_sec = parse_time(argv[++i]);
+ if (specified_time.tv_sec == -1) {
+ fprintf(stderr, "touch: invalid timestamp specified\n");
exit(1);
}
specified_time.tv_nsec = 0;