Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini date implementation for busybox |
| 4 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 5 | * by Matthew Grant <grantma@anathoth.gen.nz> |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 6 | * |
Robert Griebl | 6859d76 | 2002-08-05 02:57:12 +0000 | [diff] [blame] | 7 | * iso-format handling added by Robert Griebl <griebl@gmx.de> |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | * |
| 23 | */ |
| 24 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 25 | #include <stdlib.h> |
| 26 | #include <errno.h> |
| 27 | #include <sys/time.h> |
| 28 | #include <unistd.h> |
| 29 | #include <time.h> |
| 30 | #include <stdio.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 31 | #include <string.h> |
Eric Andersen | 88f50b6 | 2000-08-10 17:59:11 +0000 | [diff] [blame] | 32 | #include <getopt.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 33 | #include "busybox.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 34 | |
| 35 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 36 | /* This 'date' command supports only 2 time setting formats, |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 37 | all the GNU strftime stuff (its in libc, lets use it), |
| 38 | setting time using UTC and displaying int, as well as |
| 39 | an RFC 822 complient date output for shell scripting |
| 40 | mail commands */ |
| 41 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 42 | /* Input parsing code is always bulky - used heavy duty libc stuff as |
| 43 | much as possible, missed out a lot of bounds checking */ |
| 44 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 45 | /* Default input handling to save surprising some people */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 46 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 47 | static struct tm *date_conv_time(struct tm *tm_time, const char *t_string) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 48 | { |
| 49 | int nr; |
Eric Andersen | 9315842 | 2004-10-11 20:52:16 +0000 | [diff] [blame] | 50 | char *cp; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 51 | |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 52 | nr = sscanf(t_string, "%2d%2d%2d%2d%d", &(tm_time->tm_mon), |
| 53 | &(tm_time->tm_mday), &(tm_time->tm_hour), &(tm_time->tm_min), |
| 54 | &(tm_time->tm_year)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 55 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 56 | if (nr < 4 || nr > 5) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 57 | bb_error_msg_and_die(bb_msg_invalid_date, t_string); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 58 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 59 | |
Eric Andersen | 9315842 | 2004-10-11 20:52:16 +0000 | [diff] [blame] | 60 | cp = strchr(t_string, '.'); |
| 61 | if (cp) { |
| 62 | nr = sscanf(cp + 1, "%2d", &(tm_time->tm_sec)); |
| 63 | if (nr != 1) { |
| 64 | bb_error_msg_and_die(bb_msg_invalid_date, t_string); |
| 65 | } |
| 66 | } |
| 67 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 68 | /* correct for century - minor Y2K problem here? */ |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 69 | if (tm_time->tm_year >= 1900) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 70 | tm_time->tm_year -= 1900; |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 71 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 72 | /* adjust date */ |
| 73 | tm_time->tm_mon -= 1; |
| 74 | |
| 75 | return (tm_time); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 76 | |
| 77 | } |
| 78 | |
| 79 | |
| 80 | /* The new stuff for LRP */ |
| 81 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 82 | static struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 83 | { |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 84 | struct tm t; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 85 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 86 | /* Parse input and assign appropriately to tm_time */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 87 | |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 88 | if (t = |
| 89 | *tm_time, sscanf(t_string, "%d:%d:%d", &t.tm_hour, &t.tm_min, |
| 90 | &t.tm_sec) == 3) { |
| 91 | /* no adjustments needed */ |
| 92 | } else if (t = |
| 93 | *tm_time, sscanf(t_string, "%d:%d", &t.tm_hour, |
| 94 | &t.tm_min) == 2) { |
| 95 | /* no adjustments needed */ |
| 96 | } else if (t = |
| 97 | *tm_time, sscanf(t_string, "%d.%d-%d:%d:%d", &t.tm_mon, |
| 98 | &t.tm_mday, &t.tm_hour, &t.tm_min, |
| 99 | &t.tm_sec) == 5) { |
| 100 | /* Adjust dates from 1-12 to 0-11 */ |
| 101 | t.tm_mon -= 1; |
| 102 | } else if (t = |
| 103 | *tm_time, sscanf(t_string, "%d.%d-%d:%d", &t.tm_mon, |
| 104 | &t.tm_mday, &t.tm_hour, &t.tm_min) == 4) { |
| 105 | /* Adjust dates from 1-12 to 0-11 */ |
| 106 | t.tm_mon -= 1; |
| 107 | } else if (t = |
| 108 | *tm_time, sscanf(t_string, "%d.%d.%d-%d:%d:%d", &t.tm_year, |
| 109 | &t.tm_mon, &t.tm_mday, &t.tm_hour, &t.tm_min, |
| 110 | &t.tm_sec) == 6) { |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 111 | t.tm_year -= 1900; /* Adjust years */ |
| 112 | t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */ |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 113 | } else if (t = |
| 114 | *tm_time, sscanf(t_string, "%d.%d.%d-%d:%d", &t.tm_year, |
| 115 | &t.tm_mon, &t.tm_mday, &t.tm_hour, |
| 116 | &t.tm_min) == 5) { |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 117 | t.tm_year -= 1900; /* Adjust years */ |
| 118 | t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */ |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 119 | } else { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 120 | bb_error_msg_and_die(bb_msg_invalid_date, t_string); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 121 | } |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 122 | *tm_time = t; |
| 123 | return (tm_time); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 124 | } |
| 125 | |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 126 | #define DATE_OPT_RFC2822 0x01 |
| 127 | #define DATE_OPT_SET 0x02 |
| 128 | #define DATE_OPT_UTC 0x04 |
| 129 | #define DATE_OPT_DATE 0x08 |
Glenn L McGrath | 01cdb66 | 2004-02-17 12:22:21 +0000 | [diff] [blame] | 130 | #define DATE_OPT_REFERENCE 0x10 |
Glenn L McGrath | c2266bd | 2004-02-17 07:58:04 +0000 | [diff] [blame] | 131 | #ifdef CONFIG_FEATURE_DATE_ISOFMT |
Glenn L McGrath | 01cdb66 | 2004-02-17 12:22:21 +0000 | [diff] [blame] | 132 | # define DATE_OPT_TIMESPEC 0x20 |
Glenn L McGrath | c2266bd | 2004-02-17 07:58:04 +0000 | [diff] [blame] | 133 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 134 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 135 | int date_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 136 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 137 | char *date_str = NULL; |
| 138 | char *date_fmt = NULL; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 139 | int set_time; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 140 | int utc; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 141 | int use_arg = 0; |
| 142 | time_t tm; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 143 | unsigned long opt; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 144 | struct tm tm_time; |
Glenn L McGrath | 01cdb66 | 2004-02-17 12:22:21 +0000 | [diff] [blame] | 145 | char *filename = NULL; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 146 | |
Robert Griebl | df03932 | 2002-07-30 23:11:00 +0000 | [diff] [blame] | 147 | #ifdef CONFIG_FEATURE_DATE_ISOFMT |
| 148 | int ifmt = 0; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 149 | char *isofmt_arg; |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 150 | |
| 151 | # define GETOPT_ISOFMT "I::" |
Robert Griebl | df03932 | 2002-07-30 23:11:00 +0000 | [diff] [blame] | 152 | #else |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 153 | # define GETOPT_ISOFMT |
Robert Griebl | df03932 | 2002-07-30 23:11:00 +0000 | [diff] [blame] | 154 | #endif |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 155 | bb_opt_complementaly = "d~ds:s~ds"; |
Glenn L McGrath | 01cdb66 | 2004-02-17 12:22:21 +0000 | [diff] [blame] | 156 | opt = bb_getopt_ulflags(argc, argv, "Rs:ud:r:" GETOPT_ISOFMT, |
| 157 | &date_str, &date_str, &filename |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 158 | #ifdef CONFIG_FEATURE_DATE_ISOFMT |
| 159 | , &isofmt_arg |
| 160 | #endif |
| 161 | ); |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 162 | set_time = opt & DATE_OPT_SET; |
| 163 | utc = opt & DATE_OPT_UTC; |
| 164 | if ((utc) && (putenv("TZ=UTC0") != 0)) { |
| 165 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 166 | } |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 167 | use_arg = opt & DATE_OPT_DATE; |
Mike Frysinger | 348e84c | 2005-05-11 00:39:03 +0000 | [diff] [blame] | 168 | if(opt & BB_GETOPT_ERROR) |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 169 | bb_show_usage(); |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 170 | #ifdef CONFIG_FEATURE_DATE_ISOFMT |
Glenn L McGrath | c2266bd | 2004-02-17 07:58:04 +0000 | [diff] [blame] | 171 | if(opt & DATE_OPT_TIMESPEC) { |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 172 | if (!isofmt_arg) { |
| 173 | ifmt = 1; |
| 174 | } else { |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 175 | int ifmt_len = bb_strlen(isofmt_arg); |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 176 | |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 177 | if ((ifmt_len <= 4) |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 178 | && (strncmp(isofmt_arg, "date", ifmt_len) == 0)) { |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 179 | ifmt = 1; |
| 180 | } else if ((ifmt_len <= 5) |
| 181 | && (strncmp(isofmt_arg, "hours", ifmt_len) == 0)) { |
| 182 | ifmt = 2; |
| 183 | } else if ((ifmt_len <= 7) |
| 184 | && (strncmp(isofmt_arg, "minutes", ifmt_len) == 0)) { |
| 185 | ifmt = 3; |
| 186 | } else if ((ifmt_len <= 7) |
| 187 | && (strncmp(isofmt_arg, "seconds", ifmt_len) == 0)) { |
| 188 | ifmt = 4; |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 189 | } |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 190 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 191 | if (!ifmt) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 192 | bb_show_usage(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 193 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 194 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 195 | #endif |
Robert Griebl | df03932 | 2002-07-30 23:11:00 +0000 | [diff] [blame] | 196 | |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 197 | if ((date_fmt == NULL) && (optind < argc) && (argv[optind][0] == '+')) { |
| 198 | date_fmt = &argv[optind][1]; /* Skip over the '+' */ |
| 199 | } else if (date_str == NULL) { |
Eric Andersen | add09fd | 2000-07-14 18:39:08 +0000 | [diff] [blame] | 200 | set_time = 1; |
| 201 | date_str = argv[optind]; |
Eric Andersen | add09fd | 2000-07-14 18:39:08 +0000 | [diff] [blame] | 202 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 203 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 204 | /* Now we have parsed all the information except the date format |
| 205 | which depends on whether the clock is being set or read */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 206 | |
Glenn L McGrath | 01cdb66 | 2004-02-17 12:22:21 +0000 | [diff] [blame] | 207 | if(filename) { |
| 208 | struct stat statbuf; |
| 209 | if(stat(filename,&statbuf)) |
| 210 | bb_perror_msg_and_die("File '%s' not found.\n",filename); |
| 211 | tm=statbuf.st_mtime; |
| 212 | } else time(&tm); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 213 | memcpy(&tm_time, localtime(&tm), sizeof(tm_time)); |
| 214 | /* Zero out fields - take her back to midnight! */ |
| 215 | if (date_str != NULL) { |
| 216 | tm_time.tm_sec = 0; |
| 217 | tm_time.tm_min = 0; |
| 218 | tm_time.tm_hour = 0; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 219 | |
Glenn L McGrath | 5f11541 | 2004-02-17 07:51:31 +0000 | [diff] [blame] | 220 | /* Process any date input to UNIX time since 1 Jan 1970 */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 221 | if (strchr(date_str, ':') != NULL) { |
| 222 | date_conv_ftime(&tm_time, date_str); |
| 223 | } else { |
| 224 | date_conv_time(&tm_time, date_str); |
| 225 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 226 | |
Eric Andersen | 77d9268 | 2001-05-23 20:32:09 +0000 | [diff] [blame] | 227 | /* Correct any day of week and day of year etc. fields */ |
Manuel Novoa III | b511f9c | 2003-07-23 23:24:31 +0000 | [diff] [blame] | 228 | tm_time.tm_isdst = -1; /* Be sure to recheck dst. */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 229 | tm = mktime(&tm_time); |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 230 | if (tm < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 231 | bb_error_msg_and_die(bb_msg_invalid_date, date_str); |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 232 | } |
| 233 | if (utc && (putenv("TZ=UTC0") != 0)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 234 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 235 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 236 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 237 | /* if setting time, set it */ |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 238 | if (set_time && (stime(&tm) < 0)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 239 | bb_perror_msg("cannot set date"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 240 | } |
| 241 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 242 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 243 | /* Display output */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 244 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 245 | /* Deal with format string */ |
| 246 | if (date_fmt == NULL) { |
Robert Griebl | df03932 | 2002-07-30 23:11:00 +0000 | [diff] [blame] | 247 | #ifdef CONFIG_FEATURE_DATE_ISOFMT |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 248 | switch (ifmt) { |
| 249 | case 4: |
| 250 | date_fmt = utc ? "%Y-%m-%dT%H:%M:%SZ" : "%Y-%m-%dT%H:%M:%S%z"; |
| 251 | break; |
| 252 | case 3: |
| 253 | date_fmt = utc ? "%Y-%m-%dT%H:%MZ" : "%Y-%m-%dT%H:%M%z"; |
| 254 | break; |
| 255 | case 2: |
| 256 | date_fmt = utc ? "%Y-%m-%dT%HZ" : "%Y-%m-%dT%H%z"; |
| 257 | break; |
| 258 | case 1: |
| 259 | date_fmt = "%Y-%m-%d"; |
| 260 | break; |
| 261 | case 0: |
| 262 | default: |
Robert Griebl | df03932 | 2002-07-30 23:11:00 +0000 | [diff] [blame] | 263 | #endif |
Eric Andersen | 39396b9 | 2004-04-06 09:38:18 +0000 | [diff] [blame] | 264 | date_fmt = (opt & DATE_OPT_RFC2822 ? |
| 265 | (utc ? "%a, %d %b %Y %H:%M:%S GMT" : |
| 266 | "%a, %d %b %Y %H:%M:%S %z") : |
| 267 | "%a %b %e %H:%M:%S %Z %Y"); |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 268 | |
Robert Griebl | df03932 | 2002-07-30 23:11:00 +0000 | [diff] [blame] | 269 | #ifdef CONFIG_FEATURE_DATE_ISOFMT |
Glenn L McGrath | 03195fc | 2002-08-23 05:58:38 +0000 | [diff] [blame] | 270 | break; |
Robert Griebl | df03932 | 2002-07-30 23:11:00 +0000 | [diff] [blame] | 271 | } |
| 272 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 273 | } else if (*date_fmt == '\0') { |
| 274 | /* Imitate what GNU 'date' does with NO format string! */ |
| 275 | printf("\n"); |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 276 | return EXIT_SUCCESS; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 277 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 278 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 279 | /* Handle special conversions */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 280 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 281 | if (strncmp(date_fmt, "%f", 2) == 0) { |
| 282 | date_fmt = "%Y.%m.%d-%H:%M:%S"; |
| 283 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 284 | |
Rob Landley | f7662da | 2005-05-28 23:55:26 +0000 | [diff] [blame] | 285 | { |
| 286 | /* Print OUTPUT (after ALL that!) */ |
| 287 | RESERVE_CONFIG_BUFFER(t_buff, 201); |
| 288 | strftime(t_buff, 200, date_fmt, &tm_time); |
| 289 | puts(t_buff); |
| 290 | RELEASE_CONFIG_BUFFER(t_buff); |
| 291 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 292 | |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 293 | return EXIT_SUCCESS; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 294 | } |