3 * David L. Nugent. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/usr.sbin/pw/psdate.c,v 1.8 2004/06/17 14:07:16 robert Exp $
38 a2i(char const ** str
)
43 if (isdigit((unsigned char)*s
)) {
45 while (isdigit((unsigned char)*s
))
53 numerics(char const * str
)
55 int rc
= isdigit((unsigned char)*str
);
58 while (isdigit((unsigned char)*str
) || *str
== 'x')
64 aindex(char const * arr
[], char const ** str
, int len
)
70 l
= strlen(strncpy(mystr
, *str
, len
));
71 for (i
= 0; i
< l
; i
++)
72 mystr
[i
] = (char) tolower((unsigned char)mystr
[i
]);
73 for (i
= 0; arr
[i
] && strcmp(mystr
, arr
[i
]) != 0; i
++);
76 else { /* Skip past it */
77 while (**str
&& isalpha((unsigned char)**str
))
79 /* And any following whitespace */
80 while (**str
&& (**str
== ',' || isspace((unsigned char)**str
)))
87 weekday(char const ** str
)
89 static char const *days
[] =
90 {"sun", "mon", "tue", "wed", "thu", "fri", "sat", NULL
};
92 return aindex(days
, str
, 3);
96 month(char const ** str
)
98 static char const *months
[] =
99 {"jan", "feb", "mar", "apr", "may", "jun", "jul",
100 "aug", "sep", "oct", "nov", "dec", NULL
};
102 return aindex(months
, str
, 3);
106 parse_time(char const * str
, int *hour
, int *min
, int *sec
)
109 if ((str
= strchr(str
, ':')) == NULL
)
114 *sec
= ((str
= strchr(str
, ':')) == NULL
) ? 0 : atoi(++str
);
120 parse_datesub(char const * str
, int *day
, int *mon
, int *year
)
124 static char const nchrs
[] = "0123456789 \t,/-.";
126 if ((i
= month(&str
)) != -1) {
128 if ((i
= a2i(&str
)) != 0)
130 } else if ((i
= a2i(&str
)) != 0) {
132 while (*str
&& strchr(nchrs
+ 10, *str
) != NULL
)
134 if ((i
= month(&str
)) != -1)
136 else if ((i
= a2i(&str
)) != 0)
141 while (*str
&& strchr(nchrs
+ 10, *str
) != NULL
)
143 if (isdigit((unsigned char)*str
)) {
154 * Parse time must be flexible, it handles the following formats:
155 * nnnnnnnnnnn UNIX timestamp (all numeric), 0 = now
156 * 0xnnnnnnnn UNIX timestamp in hexadecimal
157 * 0nnnnnnnnn UNIX timestamp in octal
159 * +nnnn[smhdwoy] Given time + nnnn hours, mins, days, weeks, months or years
160 * -nnnn[smhdwoy] Given time - nnnn hours, mins, days, weeks, months or years
161 * dd[ ./-]mmm[ ./-]yy Date }
162 * hh:mm:ss Time } May be combined
166 parse_date(time_t dt
, char const * str
)
176 while (*str
&& isspace((unsigned char)*str
))
180 dt
= strtol(str
, &p
, 0);
181 } else if (*str
== '+' || *str
== '-') {
182 val
= strtol(str
, &p
, 0);
185 case 'H': /* hours */
190 case 'M': /* minutes */
194 case 'S': /* seconds */
199 dt
+= (val
* 86400L);
202 case 'W': /* weeks */
203 dt
+= (val
* 604800L);
206 case 'O': /* months */
208 T
->tm_mon
+= (int) val
;
212 case 'Y': /* years */
214 T
->tm_year
+= (int) val
;
219 if (T
->tm_mday
!= i
) {
222 dt
-= (time_t) 86400L;
224 default: /* unknown */
225 break; /* leave untouched */
231 * Skip past any weekday prefix
234 strlcpy(tmp
, str
, sizeof(tmp
));
239 * See if we can break off any timezone
241 while ((q
= strrchr(tmp
, ' ')) != NULL
) {
242 if (strchr("(+-", q
[1]) != NULL
)
247 while (q
[j
] && isupper((unsigned char)q
[j
]))
257 * See if there is a time hh:mm[:ss]
259 if ((p
= strchr(tmp
, ':')) == NULL
) {
262 * No time string involved
264 T
->tm_hour
= T
->tm_min
= T
->tm_sec
= 0;
265 parse_datesub(tmp
, &T
->tm_mday
, &T
->tm_mon
, &T
->tm_year
);
267 char datestr
[64], timestr
[64];
270 * Let's chip off the time string
272 if ((q
= strpbrk(p
, " \t")) != NULL
) { /* Time first? */
275 strlcpy(timestr
, str
, l
+ 1);
276 strlcpy(datestr
, q
+ 1, sizeof(datestr
));
277 parse_time(timestr
, &T
->tm_hour
, &T
->tm_min
, &T
->tm_sec
);
278 parse_datesub(datestr
, &T
->tm_mday
, &T
->tm_mon
, &T
->tm_year
);
279 } else if ((q
= strrchr(tmp
, ' ')) != NULL
) { /* Time last */
282 strlcpy(timestr
, q
+ 1, sizeof(timestr
));
283 strlcpy(datestr
, tmp
, l
+ 1);
284 } else /* Bail out */
286 parse_time(timestr
, &T
->tm_hour
, &T
->tm_min
, &T
->tm_sec
);
287 parse_datesub(datestr
, &T
->tm_mday
, &T
->tm_mon
, &T
->tm_year
);