2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-12 21:12:48 +05:30
|
|
|
/*
|
|
|
|
* Mini date implementation for busybox
|
|
|
|
*
|
1999-10-21 03:38:37 +05:30
|
|
|
* by Matthew Grant <grantma@anathoth.gen.nz>
|
2002-08-05 08:27:12 +05:30
|
|
|
*
|
|
|
|
* iso-format handling added by Robert Griebl <griebl@gmx.de>
|
1999-10-12 21:12:48 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <stdio.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <string.h>
|
2000-08-10 23:29:11 +05:30
|
|
|
#include <getopt.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
1999-10-05 21:54:54 +05:30
|
|
|
|
|
|
|
|
|
|
|
/* This 'date' command supports only 2 time setting formats,
|
|
|
|
all the GNU strftime stuff (its in libc, lets use it),
|
|
|
|
setting time using UTC and displaying int, as well as
|
|
|
|
an RFC 822 complient date output for shell scripting
|
|
|
|
mail commands */
|
|
|
|
|
|
|
|
/* Input parsing code is always bulky - used heavy duty libc stuff as
|
|
|
|
much as possible, missed out a lot of bounds checking */
|
|
|
|
|
|
|
|
/* Default input handling to save suprising some people */
|
|
|
|
|
2001-03-10 02:54:12 +05:30
|
|
|
static struct tm *date_conv_time(struct tm *tm_time, const char *t_string)
|
2000-02-09 01:28:47 +05:30
|
|
|
{
|
|
|
|
int nr;
|
|
|
|
|
2002-08-23 11:28:38 +05:30
|
|
|
nr = sscanf(t_string, "%2d%2d%2d%2d%d", &(tm_time->tm_mon),
|
|
|
|
&(tm_time->tm_mday), &(tm_time->tm_hour), &(tm_time->tm_min),
|
|
|
|
&(tm_time->tm_year));
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
if (nr < 4 || nr > 5) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die(bb_msg_invalid_date, t_string);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* correct for century - minor Y2K problem here? */
|
2002-08-23 11:28:38 +05:30
|
|
|
if (tm_time->tm_year >= 1900) {
|
2000-02-09 01:28:47 +05:30
|
|
|
tm_time->tm_year -= 1900;
|
2002-08-23 11:28:38 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
/* adjust date */
|
|
|
|
tm_time->tm_mon -= 1;
|
|
|
|
|
|
|
|
return (tm_time);
|
1999-10-05 21:54:54 +05:30
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* The new stuff for LRP */
|
|
|
|
|
2001-03-10 02:54:12 +05:30
|
|
|
static struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string)
|
2000-02-09 01:28:47 +05:30
|
|
|
{
|
2000-11-30 03:31:42 +05:30
|
|
|
struct tm t;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
/* Parse input and assign appropriately to tm_time */
|
|
|
|
|
2002-08-23 11:28:38 +05:30
|
|
|
if (t =
|
|
|
|
*tm_time, sscanf(t_string, "%d:%d:%d", &t.tm_hour, &t.tm_min,
|
|
|
|
&t.tm_sec) == 3) {
|
|
|
|
/* no adjustments needed */
|
|
|
|
} else if (t =
|
|
|
|
*tm_time, sscanf(t_string, "%d:%d", &t.tm_hour,
|
|
|
|
&t.tm_min) == 2) {
|
|
|
|
/* no adjustments needed */
|
|
|
|
} else if (t =
|
|
|
|
*tm_time, sscanf(t_string, "%d.%d-%d:%d:%d", &t.tm_mon,
|
|
|
|
&t.tm_mday, &t.tm_hour, &t.tm_min,
|
|
|
|
&t.tm_sec) == 5) {
|
|
|
|
/* Adjust dates from 1-12 to 0-11 */
|
|
|
|
t.tm_mon -= 1;
|
|
|
|
} else if (t =
|
|
|
|
*tm_time, sscanf(t_string, "%d.%d-%d:%d", &t.tm_mon,
|
|
|
|
&t.tm_mday, &t.tm_hour, &t.tm_min) == 4) {
|
|
|
|
/* Adjust dates from 1-12 to 0-11 */
|
|
|
|
t.tm_mon -= 1;
|
|
|
|
} else if (t =
|
|
|
|
*tm_time, sscanf(t_string, "%d.%d.%d-%d:%d:%d", &t.tm_year,
|
|
|
|
&t.tm_mon, &t.tm_mday, &t.tm_hour, &t.tm_min,
|
|
|
|
&t.tm_sec) == 6) {
|
2000-11-30 03:31:42 +05:30
|
|
|
t.tm_year -= 1900; /* Adjust years */
|
|
|
|
t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
|
2002-08-23 11:28:38 +05:30
|
|
|
} else if (t =
|
|
|
|
*tm_time, sscanf(t_string, "%d.%d.%d-%d:%d", &t.tm_year,
|
|
|
|
&t.tm_mon, &t.tm_mday, &t.tm_hour,
|
|
|
|
&t.tm_min) == 5) {
|
2000-11-30 03:31:42 +05:30
|
|
|
t.tm_year -= 1900; /* Adjust years */
|
|
|
|
t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
|
|
|
|
} else {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die(bb_msg_invalid_date, t_string);
|
2000-11-30 03:31:42 +05:30
|
|
|
}
|
|
|
|
*tm_time = t;
|
|
|
|
return (tm_time);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
int date_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
char *date_str = NULL;
|
|
|
|
char *date_fmt = NULL;
|
|
|
|
char *t_buff;
|
2003-06-20 14:31:58 +05:30
|
|
|
int set_time;
|
|
|
|
int rfc822;
|
|
|
|
int utc;
|
2000-02-09 01:28:47 +05:30
|
|
|
int use_arg = 0;
|
|
|
|
time_t tm;
|
2003-06-20 14:31:58 +05:30
|
|
|
unsigned long opt;
|
2000-02-09 01:28:47 +05:30
|
|
|
struct tm tm_time;
|
|
|
|
|
2002-07-31 04:41:00 +05:30
|
|
|
#ifdef CONFIG_FEATURE_DATE_ISOFMT
|
|
|
|
int ifmt = 0;
|
2003-06-20 14:31:58 +05:30
|
|
|
char *isofmt_arg;
|
2002-08-23 11:28:38 +05:30
|
|
|
|
|
|
|
# define GETOPT_ISOFMT "I::"
|
2002-07-31 04:41:00 +05:30
|
|
|
#else
|
2002-08-23 11:28:38 +05:30
|
|
|
# define GETOPT_ISOFMT
|
2002-07-31 04:41:00 +05:30
|
|
|
#endif
|
2003-06-20 14:31:58 +05:30
|
|
|
bb_opt_complementaly = "d~ds:s~ds";
|
|
|
|
opt = bb_getopt_ulflags(argc, argv, "Rs:ud:" GETOPT_ISOFMT,
|
|
|
|
&date_str, &date_str
|
|
|
|
#ifdef CONFIG_FEATURE_DATE_ISOFMT
|
|
|
|
, &isofmt_arg
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
rfc822 = opt & 1;
|
|
|
|
set_time = opt & 2;
|
|
|
|
utc = opt & 4;
|
|
|
|
if(utc) {
|
2002-08-23 11:28:38 +05:30
|
|
|
if (putenv("TZ=UTC0") != 0)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die(bb_msg_memory_exhausted);
|
2003-06-20 14:31:58 +05:30
|
|
|
}
|
|
|
|
use_arg = opt & 8;
|
|
|
|
if(opt & 0x80000000UL)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-07-31 04:41:00 +05:30
|
|
|
#ifdef CONFIG_FEATURE_DATE_ISOFMT
|
2003-06-20 14:31:58 +05:30
|
|
|
if(opt & 16) {
|
|
|
|
if (!isofmt_arg)
|
2002-08-23 11:28:38 +05:30
|
|
|
ifmt = 1;
|
|
|
|
else {
|
2003-06-20 14:31:58 +05:30
|
|
|
int ifmt_len = bb_strlen(isofmt_arg);
|
2002-08-23 11:28:38 +05:30
|
|
|
|
|
|
|
if ((ifmt_len <= 4)
|
2003-06-20 14:31:58 +05:30
|
|
|
&& (strncmp(isofmt_arg, "date", ifmt_len) == 0)) {
|
2002-07-31 04:41:00 +05:30
|
|
|
ifmt = 1;
|
2002-08-23 11:28:38 +05:30
|
|
|
} else if ((ifmt_len <= 5)
|
2003-06-20 14:31:58 +05:30
|
|
|
&& (strncmp(isofmt_arg, "hours", ifmt_len) == 0)) {
|
2002-08-23 11:28:38 +05:30
|
|
|
ifmt = 2;
|
|
|
|
} else if ((ifmt_len <= 7)
|
2003-06-20 14:31:58 +05:30
|
|
|
&& (strncmp(isofmt_arg, "minutes", ifmt_len) == 0)) {
|
2002-08-23 11:28:38 +05:30
|
|
|
ifmt = 3;
|
|
|
|
} else if ((ifmt_len <= 7)
|
2003-06-20 14:31:58 +05:30
|
|
|
&& (strncmp(isofmt_arg, "seconds", ifmt_len) == 0)) {
|
2002-08-23 11:28:38 +05:30
|
|
|
ifmt = 4;
|
|
|
|
}
|
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
if (!ifmt) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
1999-10-12 21:12:48 +05:30
|
|
|
}
|
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
#endif
|
2002-07-31 04:41:00 +05:30
|
|
|
|
2002-08-23 11:28:38 +05:30
|
|
|
if ((date_fmt == NULL) && (optind < argc) && (argv[optind][0] == '+')) {
|
|
|
|
date_fmt = &argv[optind][1]; /* Skip over the '+' */
|
|
|
|
} else if (date_str == NULL) {
|
2000-07-15 00:09:08 +05:30
|
|
|
set_time = 1;
|
|
|
|
date_str = argv[optind];
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
/* Now we have parsed all the information except the date format
|
|
|
|
which depends on whether the clock is being set or read */
|
|
|
|
|
|
|
|
time(&tm);
|
|
|
|
memcpy(&tm_time, localtime(&tm), sizeof(tm_time));
|
|
|
|
/* Zero out fields - take her back to midnight! */
|
|
|
|
if (date_str != NULL) {
|
|
|
|
tm_time.tm_sec = 0;
|
|
|
|
tm_time.tm_min = 0;
|
|
|
|
tm_time.tm_hour = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process any date input to UNIX time since 1 Jan 1970 */
|
|
|
|
if (date_str != NULL) {
|
|
|
|
|
|
|
|
if (strchr(date_str, ':') != NULL) {
|
|
|
|
date_conv_ftime(&tm_time, date_str);
|
|
|
|
} else {
|
|
|
|
date_conv_time(&tm_time, date_str);
|
|
|
|
}
|
|
|
|
|
2001-05-24 02:02:09 +05:30
|
|
|
/* Correct any day of week and day of year etc. fields */
|
2000-02-09 01:28:47 +05:30
|
|
|
tm = mktime(&tm_time);
|
2002-08-23 11:28:38 +05:30
|
|
|
if (tm < 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die(bb_msg_invalid_date, date_str);
|
2002-08-23 11:28:38 +05:30
|
|
|
}
|
|
|
|
if (utc && (putenv("TZ=UTC0") != 0)) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die(bb_msg_memory_exhausted);
|
2000-11-18 00:21:45 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
/* if setting time, set it */
|
2002-08-23 11:28:38 +05:30
|
|
|
if (set_time && (stime(&tm) < 0)) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg("cannot set date");
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Display output */
|
|
|
|
|
|
|
|
/* Deal with format string */
|
|
|
|
if (date_fmt == NULL) {
|
2002-07-31 04:41:00 +05:30
|
|
|
#ifdef CONFIG_FEATURE_DATE_ISOFMT
|
2002-08-23 11:28:38 +05:30
|
|
|
switch (ifmt) {
|
|
|
|
case 4:
|
|
|
|
date_fmt = utc ? "%Y-%m-%dT%H:%M:%SZ" : "%Y-%m-%dT%H:%M:%S%z";
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
date_fmt = utc ? "%Y-%m-%dT%H:%MZ" : "%Y-%m-%dT%H:%M%z";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
date_fmt = utc ? "%Y-%m-%dT%HZ" : "%Y-%m-%dT%H%z";
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
date_fmt = "%Y-%m-%d";
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
default:
|
2002-07-31 04:41:00 +05:30
|
|
|
#endif
|
2002-08-23 11:28:38 +05:30
|
|
|
date_fmt =
|
|
|
|
(rfc822
|
|
|
|
? (utc ? "%a, %e %b %Y %H:%M:%S GMT" :
|
|
|
|
"%a, %e %b %Y %H:%M:%S %z") : "%a %b %e %H:%M:%S %Z %Y");
|
|
|
|
|
2002-07-31 04:41:00 +05:30
|
|
|
#ifdef CONFIG_FEATURE_DATE_ISOFMT
|
2002-08-23 11:28:38 +05:30
|
|
|
break;
|
2002-07-31 04:41:00 +05:30
|
|
|
}
|
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
} else if (*date_fmt == '\0') {
|
|
|
|
/* Imitate what GNU 'date' does with NO format string! */
|
|
|
|
printf("\n");
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle special conversions */
|
|
|
|
|
|
|
|
if (strncmp(date_fmt, "%f", 2) == 0) {
|
|
|
|
date_fmt = "%Y.%m.%d-%H:%M:%S";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print OUTPUT (after ALL that!) */
|
2000-03-22 04:02:57 +05:30
|
|
|
t_buff = xmalloc(201);
|
2000-02-09 01:28:47 +05:30
|
|
|
strftime(t_buff, 200, date_fmt, &tm_time);
|
2001-05-16 19:51:09 +05:30
|
|
|
puts(t_buff);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|