1 /* vi: set sw=4 ts=4: */
3 * Mini date implementation for busybox
5 * by Matthew Grant <grantma@anathoth.gen.nz>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #define BB_DECLARE_EXTERN
25 #define bb_need_invalid_date
26 #define bb_need_memory_exhausted
37 /* This 'date' command supports only 2 time setting formats,
38 all the GNU strftime stuff (its in libc, lets use it),
39 setting time using UTC and displaying int, as well as
40 an RFC 822 complient date output for shell scripting
43 /* Input parsing code is always bulky - used heavy duty libc stuff as
44 much as possible, missed out a lot of bounds checking */
46 /* Default input handling to save suprising some people */
48 struct tm *date_conv_time(struct tm *tm_time, const char *t_string)
52 nr = sscanf(t_string, "%2d%2d%2d%2d%d",
56 &(tm_time->tm_min), &(tm_time->tm_year));
58 if (nr < 4 || nr > 5) {
59 error_msg_and_die(invalid_date, t_string);
62 /* correct for century - minor Y2K problem here? */
63 if (tm_time->tm_year >= 1900)
64 tm_time->tm_year -= 1900;
73 /* The new stuff for LRP */
75 struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string)
79 /* Parse input and assign appropriately to tm_time */
81 if (t=*tm_time,sscanf(t_string, "%d:%d:%d",
82 &t.tm_hour, &t.tm_min, &t.tm_sec) == 3) {
83 /* no adjustments needed */
85 } else if (t=*tm_time,sscanf(t_string, "%d:%d",
86 &t.tm_hour, &t.tm_min) == 2) {
87 /* no adjustments needed */
90 } else if (t=*tm_time,sscanf(t_string, "%d.%d-%d:%d:%d",
94 &t.tm_min, &t.tm_sec) == 5) {
96 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
98 } else if (t=*tm_time,sscanf(t_string, "%d.%d-%d:%d",
101 &t.tm_hour, &t.tm_min) == 4) {
103 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
105 } else if (t=*tm_time,sscanf(t_string, "%d.%d.%d-%d:%d:%d",
110 &t.tm_min, &t.tm_sec) == 6) {
112 t.tm_year -= 1900; /* Adjust years */
113 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
115 } else if (t=*tm_time,sscanf(t_string, "%d.%d.%d-%d:%d",
119 &t.tm_hour, &t.tm_min) == 5) {
120 t.tm_year -= 1900; /* Adjust years */
121 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
124 error_msg_and_die(invalid_date, t_string);
131 int date_main(int argc, char **argv)
133 char *date_str = NULL;
134 char *date_fmt = NULL;
144 /* Interpret command line args */
145 while ((c = getopt(argc, argv, "Rs:ud:")) != EOF) {
152 if ((date_str != NULL) || ((date_str = optarg) == NULL)) {
158 if (putenv("TZ=UTC0") != 0)
159 error_msg_and_die(memory_exhausted);
163 if ((date_str != NULL) || ((date_str = optarg) == NULL))
171 if ((date_fmt == NULL) && (optind < argc) && (argv[optind][0] == '+'))
172 date_fmt = &argv[optind][1]; /* Skip over the '+' */
173 else if (date_str == NULL) {
175 date_str = argv[optind];
179 error_msg("date_str='%s' date_fmt='%s'\n", date_str, date_fmt);
184 /* Now we have parsed all the information except the date format
185 which depends on whether the clock is being set or read */
188 memcpy(&tm_time, localtime(&tm), sizeof(tm_time));
189 /* Zero out fields - take her back to midnight! */
190 if (date_str != NULL) {
196 /* Process any date input to UNIX time since 1 Jan 1970 */
197 if (date_str != NULL) {
199 if (strchr(date_str, ':') != NULL) {
200 date_conv_ftime(&tm_time, date_str);
202 date_conv_time(&tm_time, date_str);
205 /* Correct any day of week and day of year etc fields */
206 tm = mktime(&tm_time);
208 error_msg_and_die(invalid_date, date_str);
210 if (putenv("TZ=UTC0") != 0)
211 error_msg_and_die(memory_exhausted);
214 /* if setting time, set it */
216 if (stime(&tm) < 0) {
217 perror_msg("cannot set date");
224 /* Deal with format string */
225 if (date_fmt == NULL) {
228 ? "%a, %_d %b %Y %H:%M:%S GMT"
229 : "%a, %_d %b %Y %H:%M:%S %z")
230 : "%a %b %e %H:%M:%S %Z %Y");
232 } else if (*date_fmt == '\0') {
233 /* Imitate what GNU 'date' does with NO format string! */
238 /* Handle special conversions */
240 if (strncmp(date_fmt, "%f", 2) == 0) {
241 date_fmt = "%Y.%m.%d-%H:%M:%S";
244 /* Print OUTPUT (after ALL that!) */
245 t_buff = xmalloc(201);
246 strftime(t_buff, 200, date_fmt, &tm_time);
247 printf("%s\n", t_buff);