-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdate.c
133 lines (115 loc) · 3.12 KB
/
date.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* date - toolbox
Copyright 2007-2015 PC GO Ld.
Copyright 2015-2017 Rivoreo
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*/
//#include "timefunc.h"
#define _BSD_SOURCE /* For settimeofday */
#define __BSD_VISIBLE 1 /* For settimeofday */
//#define _XOPEN_SOURCE /* For strptime */
#define _POSIX_C_SOURCE 200112L /* For gmtime_r and localtime_r */
#define _DARWIN_C_SOURCE /* For settimeofday */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
//#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <sys/time.h>
//#include <linux/android_alarm.h>
//#include <sys/ioctl.h>
#ifdef _WIN32
struct tm *gmtime_r(const time_t *, struct tm *);
struct tm *localtime_r(const time_t *, struct tm *);
#endif
static int settime(const char *s) {
struct tm tm;
int day = atoi(s);
int hour;
time_t t;
//int fd;
//struct timespec ts;
struct timeval tv;
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;
t = mktime(&tm);
//fd = open("/dev/alarm", O_RDWR);
//ts.tv_sec = t;
//ts.tv_nsec = 0;
//ioctl(fd, ANDROID_ALARM_SET_RTC, &ts);
tv.tv_sec = t;
tv.tv_usec = 0;
return settimeofday(&tv, NULL);
}
int main(int argc, char *argv[]) {
int c;
//int res;
struct tm tm;
time_t t;
char strbuf[260];
int useutc = 0;
tzset();
while(1) {
c = getopt(argc, argv, "hus:");
if(c == EOF)
break;
switch(c) {
case 'h':
goto usage;
case 'u':
useutc = 1;
break;
case 's':
if(settime(optarg) < 0) {
perror(argv[0]);
return 3;
}
break;
case '?':
//fprintf(stderr, "%s: Invalid option -%c\n", argv[0], optopt);
return 1;
}
}
int hasfmt = argc > optind && argv[optind][0] == '+';
int lindex = optind + (hasfmt ? 2 : 1);
if(argc < lindex) {
if(time(&t) < 0) {
perror(argv[0]);
return 2;
}
/*
} else if(argc == lindex) {
struct timeval tv;
if(!strptime(argv[optind], NULL, &tm)) {
fprintf(stderr, "%s: Invaild date '%s'\n", argv[0], argv[optind]);
return 2;
}
tv.tv_sec = mktime(&tm);
tv.tv_usec = 0;
printf("time %s -> %ld.%ld\n", argv[optind], (long int)tv.tv_sec, (long int)tv.tv_usec);
*/
} else {
usage:
fprintf(stderr,"Usage: %s [-s <YYYYmmdd.HHMMss>] [-u] [+<format>]\n", argv[0]);
return -1;
}
if(useutc) {
gmtime_r(&t, &tm);
strftime(strbuf, sizeof strbuf, hasfmt ? argv[optind] + 1 : "%a %b %e %H:%M:%S GMT %Y", &tm);
} else {
localtime_r(&t, &tm);
strftime(strbuf, sizeof strbuf, hasfmt ? argv[optind] + 1 : "%a %b %e %H:%M:%S %Z %Y", &tm);
}
puts(strbuf);
return 0;
}