2 * Copyright (c) 2014 Gary Mills
3 * Copyright 2011, Nexenta Systems, Inc. All rights reserved.
4 * Copyright (c) 1994 Powerdog Industries. All rights reserved.
6 * Copyright (c) 2011 The FreeBSD Foundation
8 * Portions of this software were developed by David Chisnall
9 * under sponsorship from the FreeBSD Foundation.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer
18 * in the documentation and/or other materials provided with the
21 * THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY
22 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
30 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
31 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 * The views and conclusions contained in the software and documentation
34 * are those of the authors and should not be interpreted as representing
35 * official policies, either expressed or implied, of Powerdog Industries.
37 * @(#)strptime.c 0.1 (Powerdog) 94/03/27
38 * @(#) Copyright (c) 1994 Powerdog Industries. All rights reserved.
39 * $FreeBSD: head/lib/libc/stdtime/strptime.c 272679 2014-10-07 06:34:05Z ache $
42 #include "namespace.h"
49 #include "un-namespace.h"
50 #include "libc_private.h"
51 #include "timelocal.h"
54 static char * _strptime(const char *, const char *, struct tm
*, int *, locale_t
);
56 #define asizeof(a) (sizeof(a) / sizeof((a)[0]))
58 #define FLAG_NONE (1 << 0)
59 #define FLAG_YEAR (1 << 1)
60 #define FLAG_MONTH (1 << 2)
61 #define FLAG_YDAY (1 << 3)
62 #define FLAG_MDAY (1 << 4)
63 #define FLAG_WDAY (1 << 5)
66 * Calculate the week day of the first day of a year. Valid for
67 * the Gregorian calendar, which began Sept 14, 1752 in the UK
68 * and its colonies. Ref:
69 * http://en.wikipedia.org/wiki/Determination_of_the_day_of_the_week
73 first_wday_of(int year
)
75 return (((2 * (3 - (year
/ 100) % 4)) + (year
% 100) +
76 ((year
% 100) / 4) + (isleap(year
) ? 6 : 0) + 1) % 7);
80 _strptime(const char *buf
, const char *fmt
, struct tm
*tm
, int *GMTp
,
85 int day_offset
= -1, wday_offset
;
89 int Ealternative
, Oalternative
;
90 const struct lc_time_T
*tptr
= __get_current_time_locale(locale
);
91 static int start_of_month
[2][13] = {
92 {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365},
93 {0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366}
103 if (isspace_l((unsigned char)c
, locale
))
105 isspace_l((unsigned char)*buf
, locale
))
107 else if (c
!= *buf
++)
123 buf
= _strptime(buf
, tptr
->date_fmt
, tm
, GMTp
, locale
);
126 flags
|= FLAG_WDAY
| FLAG_MONTH
| FLAG_MDAY
| FLAG_YEAR
;
130 if (!isdigit_l((unsigned char)*buf
, locale
))
133 /* XXX This will break for 3-digit centuries. */
135 for (i
= 0; len
&& *buf
!= 0 &&
136 isdigit_l((unsigned char)*buf
, locale
); buf
++) {
144 tm
->tm_year
= i
* 100 - TM_YEAR_BASE
;
150 buf
= _strptime(buf
, tptr
->c_fmt
, tm
, GMTp
, locale
);
153 flags
|= FLAG_WDAY
| FLAG_MONTH
| FLAG_MDAY
| FLAG_YEAR
;
157 buf
= _strptime(buf
, "%m/%d/%y", tm
, GMTp
, locale
);
160 flags
|= FLAG_MONTH
| FLAG_MDAY
| FLAG_YEAR
;
164 if (Ealternative
|| Oalternative
)
170 if (Ealternative
|| Oalternative
)
176 buf
= _strptime(buf
, "%Y-%m-%d", tm
, GMTp
, locale
);
179 flags
|= FLAG_MONTH
| FLAG_MDAY
| FLAG_YEAR
;
183 buf
= _strptime(buf
, "%H:%M", tm
, GMTp
, locale
);
189 buf
= _strptime(buf
, tptr
->ampm_fmt
, tm
, GMTp
, locale
);
195 buf
= _strptime(buf
, "%H:%M:%S", tm
, GMTp
, locale
);
201 buf
= _strptime(buf
, tptr
->X_fmt
, tm
, GMTp
, locale
);
207 buf
= _strptime(buf
, tptr
->x_fmt
, tm
, GMTp
, locale
);
210 flags
|= FLAG_MONTH
| FLAG_MDAY
| FLAG_YEAR
;
214 if (!isdigit_l((unsigned char)*buf
, locale
))
218 for (i
= 0; len
&& *buf
!= 0 &&
219 isdigit_l((unsigned char)*buf
, locale
); buf
++){
224 if (i
< 1 || i
> 366)
235 isspace_l((unsigned char)*buf
, locale
))
238 if (!isdigit_l((unsigned char)*buf
, locale
))
242 for (i
= 0; len
&& *buf
!= 0 &&
243 isdigit_l((unsigned char)*buf
, locale
); buf
++){
266 * Of these, %l is the only specifier explicitly
267 * documented as not being zero-padded. However,
268 * there is no harm in allowing zero-padding.
270 * XXX The %l specifier may gobble one too many
271 * digits if used incorrectly.
273 if (!isdigit_l((unsigned char)*buf
, locale
))
277 for (i
= 0; len
&& *buf
!= 0 &&
278 isdigit_l((unsigned char)*buf
, locale
); buf
++) {
283 if (c
== 'H' || c
== 'k') {
295 * XXX This is bogus if parsed before hour-related
298 len
= strlen(tptr
->am
);
299 if (strncasecmp_l(buf
, tptr
->am
, len
, locale
) == 0) {
300 if (tm
->tm_hour
> 12)
302 if (tm
->tm_hour
== 12)
308 len
= strlen(tptr
->pm
);
309 if (strncasecmp_l(buf
, tptr
->pm
, len
, locale
) == 0) {
310 if (tm
->tm_hour
> 12)
312 if (tm
->tm_hour
!= 12)
322 for (i
= 0; i
< asizeof(tptr
->weekday
); i
++) {
323 len
= strlen(tptr
->weekday
[i
]);
324 if (strncasecmp_l(buf
, tptr
->weekday
[i
],
327 len
= strlen(tptr
->wday
[i
]);
328 if (strncasecmp_l(buf
, tptr
->wday
[i
],
332 if (i
== asizeof(tptr
->weekday
))
343 * XXX This is bogus, as we can not assume any valid
344 * information present in the tm structure at this
345 * point to calculate a real value, so just check the
348 if (!isdigit_l((unsigned char)*buf
, locale
))
352 for (i
= 0; len
&& *buf
!= 0 &&
353 isdigit_l((unsigned char)*buf
, locale
); buf
++) {
362 day_offset
= TM_SUNDAY
;
364 day_offset
= TM_MONDAY
;
372 if (!isdigit_l((unsigned char)*buf
, locale
))
387 * With %e format, our strftime(3) adds a blank space
388 * before single digits.
391 isspace_l((unsigned char)*buf
, locale
))
396 * The %e specifier was once explicitly documented as
397 * not being zero-padded but was later changed to
398 * equivalent to %d. There is no harm in allowing
401 * XXX The %e specifier may gobble one too many
402 * digits if used incorrectly.
404 if (!isdigit_l((unsigned char)*buf
, locale
))
408 for (i
= 0; len
&& *buf
!= 0 &&
409 isdigit_l((unsigned char)*buf
, locale
); buf
++) {
425 for (i
= 0; i
< asizeof(tptr
->month
); i
++) {
428 len
= strlen(tptr
->alt_month
[i
]);
429 if (strncasecmp_l(buf
,
435 len
= strlen(tptr
->month
[i
]);
436 if (strncasecmp_l(buf
, tptr
->month
[i
],
442 * Try the abbreviated month name if the full name
443 * wasn't found and Oalternative was not requested.
445 if (i
== asizeof(tptr
->month
) && !Oalternative
) {
446 for (i
= 0; i
< asizeof(tptr
->month
); i
++) {
447 len
= strlen(tptr
->mon
[i
]);
448 if (strncasecmp_l(buf
, tptr
->mon
[i
],
453 if (i
== asizeof(tptr
->month
))
463 if (!isdigit_l((unsigned char)*buf
, locale
))
467 for (i
= 0; len
&& *buf
!= 0 &&
468 isdigit_l((unsigned char)*buf
, locale
); buf
++) {
490 n
= strtol_l(buf
, &cp
, 10, locale
);
491 if (errno
== ERANGE
|| (long)(t
= n
) != n
) {
497 if (gmtime_r(&t
, tm
) == NULL
)
500 flags
|= FLAG_YDAY
| FLAG_WDAY
| FLAG_MONTH
|
501 FLAG_MDAY
| FLAG_YEAR
;
508 isspace_l((unsigned char)*buf
, locale
))
511 if (!isdigit_l((unsigned char)*buf
, locale
))
514 len
= (c
== 'Y') ? 4 : 2;
515 for (i
= 0; len
&& *buf
!= 0 &&
516 isdigit_l((unsigned char)*buf
, locale
); buf
++) {
523 if (c
== 'y' && i
< 69)
538 for (cp
= buf
; *cp
&&
539 isupper_l((unsigned char)*cp
, locale
); ++cp
) {
542 zonestr
= alloca(cp
- buf
+ 1);
543 strncpy(zonestr
, buf
, cp
- buf
);
544 zonestr
[cp
- buf
] = '\0';
546 if (0 == strcmp(zonestr
, "GMT") ||
547 0 == strcmp(zonestr
, "UTC")) {
549 } else if (0 == strcmp(zonestr
, tzname
[0])) {
551 } else if (0 == strcmp(zonestr
, tzname
[1])) {
564 len
= 4; /* RFC 822/ISO 8601 */
569 else if (*buf
== 'Z') /* ISO 8601 Z (UTC) */
577 for (; len
> 0; len
--) {
578 if (isdigit_l((unsigned char)*buf
, locale
)) {
582 } else if (*buf
== ':' && len
== 2) {
583 buf
++; /* ISO 8601 +hh:mm */
584 if (isdigit_l((unsigned char)*buf
,
592 } else if (len
== 2) {
593 i
*= 100; /* ISO 8601 +hh */
600 tm
->tm_hour
-= sign
* (i
/ 100);
601 tm
->tm_min
-= sign
* (i
% 100);
608 while (isspace_l((unsigned char)*buf
, locale
))
617 if (!(flags
& FLAG_YDAY
) && (flags
& FLAG_YEAR
)) {
618 if ((flags
& (FLAG_MONTH
| FLAG_MDAY
)) ==
619 (FLAG_MONTH
| FLAG_MDAY
)) {
620 tm
->tm_yday
= start_of_month
[isleap(tm
->tm_year
+
621 TM_YEAR_BASE
)][tm
->tm_mon
] + (tm
->tm_mday
- 1);
623 } else if (day_offset
!= -1) {
624 /* Set the date to the first Sunday (or Monday)
625 * of the specified week of the year.
627 if (!(flags
& FLAG_WDAY
)) {
628 tm
->tm_wday
= day_offset
;
632 first_wday_of(tm
->tm_year
+ TM_YEAR_BASE
) +
633 day_offset
) % 7 + (week_offset
- 1 +
634 (tm
->tm_wday
== 0 ? day_offset
: 0)) * 7 +
635 tm
->tm_wday
- day_offset
;
640 if ((flags
& (FLAG_YEAR
| FLAG_YDAY
)) == (FLAG_YEAR
| FLAG_YDAY
)) {
641 if (!(flags
& FLAG_MONTH
)) {
643 while (tm
->tm_yday
>=
644 start_of_month
[isleap(tm
->tm_year
+
650 start_of_month
[isleap(tm
->tm_year
+
657 if (!(flags
& FLAG_MDAY
)) {
658 tm
->tm_mday
= tm
->tm_yday
-
659 start_of_month
[isleap(tm
->tm_year
+ TM_YEAR_BASE
)]
663 if (!(flags
& FLAG_WDAY
)) {
665 wday_offset
= first_wday_of(tm
->tm_year
);
666 while (i
++ <= tm
->tm_yday
) {
667 if (wday_offset
++ >= 6)
670 tm
->tm_wday
= wday_offset
;
675 return ((char *)buf
);
679 strptime_l(const char * __restrict buf
, const char * __restrict fmt
,
680 struct tm
* __restrict tm
, locale_t loc
)
687 ret
= _strptime(buf
, fmt
, tm
, &gmt
, loc
);
689 time_t t
= timegm(tm
);
698 strptime(const char * __restrict buf
, const char * __restrict fmt
,
699 struct tm
* __restrict tm
)
701 return strptime_l(buf
, fmt
, tm
, __get_locale());