1 /* Convert a string representation of time to a time value.
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* XXX This version of the implementation is not really complete.
22 Some of the fields cannot add information alone. But if seeing
23 some of them in the same format (such as year, week and weekday)
24 this is enough information for determining the date. */
37 # include "../locale/localeinfo.h"
42 # if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
43 # define __P(args) args
49 #if ! HAVE_LOCALTIME_R && ! defined (localtime_r)
51 #define localtime_r __localtime_r
53 /* Approximate localtime_r as best we can in its absence. */
54 #define localtime_r my_localtime_r
55 static struct tm
*localtime_r
__P ((const time_t *, struct tm
*));
61 struct tm
*l
= localtime (t
);
68 #endif /* ! HAVE_LOCALTIME_R && ! defined (localtime_r) */
71 #define match_char(ch1, ch2) if (ch1 != ch2) return NULL
72 #if defined __GNUC__ && __GNUC__ >= 2
73 # define match_string(cs1, s2) \
74 ({ size_t len = strlen (cs1); \
75 int result = strncasecmp ((cs1), (s2), len) == 0; \
76 if (result) (s2) += len; \
79 /* Oh come on. Get a reasonable compiler. */
80 # define match_string(cs1, s2) \
81 (strncasecmp ((cs1), (s2), strlen (cs1)) ? 0 : ((s2) += strlen (cs1), 1))
83 /* We intentionally do not use isdigit() for testing because this will
84 lead to problems with the wide character version. */
85 #define get_number(from, to) \
88 if (*rp < '0' || *rp > '9') \
93 } while (val * 10 <= to && *rp >= '0' && *rp <= '9'); \
94 if (val < from || val > to) \
98 # define get_alt_number(from, to) \
100 if (*decided != raw) \
102 const char *alts = _NL_CURRENT (LC_TIME, ALT_DIGITS); \
104 while (*alts != '\0') \
106 size_t len = strlen (alts); \
107 if (strncasecmp (alts, rp, len) == 0) \
109 alts = strchr (alts, '\0') + 1; \
114 if (*decided == loc && val != 0) \
123 get_number (from, to); \
126 # define get_alt_number(from, to) \
127 /* We don't have the alternate representation. */ \
130 #define recursive(new_fmt) \
131 (*(new_fmt) != '\0' \
132 && (rp = strptime_internal (rp, (new_fmt), tm, decided)) != NULL)
136 /* This is defined in locale/C-time.c in the GNU libc. */
137 extern const struct locale_data _nl_C_LC_TIME
;
139 # define weekday_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (DAY_1)].string)
140 # define ab_weekday_name \
141 (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABDAY_1)].string)
142 # define month_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (MON_1)].string)
143 # define ab_month_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABMON_1)].string)
144 # define HERE_D_T_FMT (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (D_T_FMT)].string)
145 # define HERE_D_FMT (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (D_T_FMT)].string)
146 # define HERE_AM_STR (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (AM_STR)].string)
147 # define HERE_PM_STR (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (PM_STR)].string)
148 # define HERE_T_FMT_AMPM \
149 (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (T_FMT_AMPM)].string)
150 # define HERE_T_FMT (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (T_FMT)].string)
152 static char const weekday_name
[][10] =
154 "Sunday", "Monday", "Tuesday", "Wednesday",
155 "Thursday", "Friday", "Saturday"
157 static char const ab_weekday_name
[][4] =
159 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
161 static char const month_name
[][10] =
163 "January", "February", "March", "April", "May", "June",
164 "July", "August", "September", "October", "November", "December"
166 static char const ab_month_name
[][4] =
168 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
169 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
171 # define HERE_D_T_FMT "%a %b %e %H:%M:%S %Y"
172 # define HERE_D_FMT "%m/%d/%y"
173 # define HERE_AM_STR "AM"
174 # define HERE_PM_STR "PM"
175 # define HERE_T_FMT_AMPM "%I:%M:%S %p"
176 # define HERE_T_FMT "%H:%M:%S"
179 /* Status of lookup: do we use the locale data or the raw data? */
180 enum locale_status
{ not, loc
, raw
};
183 strptime_internal
__P ((const char *buf
, const char *format
, struct tm
*tm
,
184 enum locale_status
*decided
));
187 strptime_internal (buf
, format
, tm
, decided
)
191 enum locale_status
*decided
;
205 /* A white space in the format string matches 0 more or white
206 space in the input string. */
209 while (isspace (*rp
))
215 /* Any character but `%' must be matched by the same character
216 in the iput string. */
219 match_char (*fmt
++, *rp
++);
225 /* We need this for handling the `E' modifier. */
231 /* Match the `%' character itself. */
232 match_char ('%', *rp
++);
236 /* Match day of week. */
237 for (cnt
= 0; cnt
< 7; ++cnt
)
242 if (match_string (_NL_CURRENT (LC_TIME
, DAY_1
+ cnt
), rp
))
245 && strcmp (_NL_CURRENT (LC_TIME
, DAY_1
+ cnt
),
250 if (match_string (_NL_CURRENT (LC_TIME
, ABDAY_1
+ cnt
), rp
))
253 && strcmp (_NL_CURRENT (LC_TIME
, ABDAY_1
+ cnt
),
254 ab_weekday_name
[cnt
]))
261 && (match_string (weekday_name
[cnt
], rp
)
262 || match_string (ab_weekday_name
[cnt
], rp
)))
269 /* Does not match a weekday name. */
276 /* Match month name. */
277 for (cnt
= 0; cnt
< 12; ++cnt
)
282 if (match_string (_NL_CURRENT (LC_TIME
, MON_1
+ cnt
), rp
))
285 && strcmp (_NL_CURRENT (LC_TIME
, MON_1
+ cnt
),
290 if (match_string (_NL_CURRENT (LC_TIME
, ABMON_1
+ cnt
), rp
))
293 && strcmp (_NL_CURRENT (LC_TIME
, ABMON_1
+ cnt
),
300 if (match_string (month_name
[cnt
], rp
)
301 || match_string (ab_month_name
[cnt
], rp
))
308 /* Does not match a month name. */
313 /* Match locale's date and time format. */
317 if (!recursive (_NL_CURRENT (LC_TIME
, D_T_FMT
)))
324 if (*decided
== not &&
325 strcmp (_NL_CURRENT (LC_TIME
, D_T_FMT
), HERE_D_T_FMT
))
332 if (!recursive (HERE_D_T_FMT
))
336 /* Match century number. */
338 /* We don't need the number. */
342 /* Match day of month. */
350 if (!recursive (_NL_CURRENT (LC_TIME
, D_FMT
)))
358 && strcmp (_NL_CURRENT (LC_TIME
, D_FMT
), HERE_D_FMT
))
367 /* Match standard day format. */
368 if (!recursive (HERE_D_FMT
))
372 /* Match hour in 24-hour clock. */
378 /* Match hour in 12-hour clock. */
380 tm
->tm_hour
= val
% 12;
384 /* Match day number of year. */
386 tm
->tm_yday
= val
- 1;
389 /* Match number of month. */
391 tm
->tm_mon
= val
- 1;
400 /* Match any white space. */
401 while (isspace (*rp
))
405 /* Match locale's equivalent of AM/PM. */
409 if (match_string (_NL_CURRENT (LC_TIME
, AM_STR
), rp
))
411 if (strcmp (_NL_CURRENT (LC_TIME
, AM_STR
), HERE_AM_STR
))
415 if (match_string (_NL_CURRENT (LC_TIME
, PM_STR
), rp
))
417 if (strcmp (_NL_CURRENT (LC_TIME
, PM_STR
), HERE_PM_STR
))
425 if (!match_string (HERE_AM_STR
, rp
))
426 if (match_string (HERE_PM_STR
, rp
))
435 if (!recursive (_NL_CURRENT (LC_TIME
, T_FMT_AMPM
)))
442 if (*decided
== not &&
443 strcmp (_NL_CURRENT (LC_TIME
, T_FMT_AMPM
),
451 if (!recursive (HERE_T_FMT_AMPM
))
455 if (!recursive ("%H:%M"))
460 /* The number of seconds may be very high so we cannot use
461 the `get_number' macro. Instead read the number
462 character for character and construct the result while
465 if (*rp
< '0' || *rp
> '9')
466 /* We need at least one digit. */
474 while (*rp
>= '0' && *rp
<= '9');
476 if (localtime_r (&secs
, tm
) == NULL
)
477 /* Error in function. */
489 if (!recursive (_NL_CURRENT (LC_TIME
, T_FMT
)))
496 if (strcmp (_NL_CURRENT (LC_TIME
, T_FMT
), HERE_T_FMT
))
505 if (!recursive (HERE_T_FMT
))
510 tm
->tm_wday
= val
% 7;
514 /* XXX This cannot determine any field in TM. */
517 if (*rp
< '0' || *rp
> '9')
519 /* XXX Ignore the number since we would need some more
520 information to compute a real date. */
523 while (*rp
>= '0' && *rp
<= '9');
529 /* XXX This cannot determine any field in TM without some
533 /* Match number of weekday. */
538 /* Match year within century. */
540 tm
->tm_year
= val
>= 50 ? val
: val
+ 100;
543 /* Match year including century number. */
544 if (sizeof (time_t) > 4)
545 get_number (0, 9999);
547 get_number (0, 2036);
548 tm
->tm_year
= val
- 1900;
551 /* XXX How to handle this? */
558 /* Match locale's alternate date and time format. */
561 const char *fmt
= _NL_CURRENT (LC_TIME
, ERA_D_T_FMT
);
564 fmt
= _NL_CURRENT (LC_TIME
, D_T_FMT
);
566 if (!recursive (fmt
))
573 if (strcmp (fmt
, HERE_D_T_FMT
))
579 /* The C locale has no era information, so use the
580 normal representation. */
581 if (!recursive (HERE_D_T_FMT
))
587 /* Match name of base year in locale's alternate
589 /* XXX This is currently not implemented. It should
590 use the value _NL_CURRENT (LC_TIME, ERA). */
595 const char *fmt
= _NL_CURRENT (LC_TIME
, ERA_D_FMT
);
598 fmt
= _NL_CURRENT (LC_TIME
, D_FMT
);
600 if (!recursive (fmt
))
607 if (strcmp (fmt
, HERE_D_FMT
))
613 if (!recursive (HERE_D_FMT
))
619 const char *fmt
= _NL_CURRENT (LC_TIME
, ERA_T_FMT
);
622 fmt
= _NL_CURRENT (LC_TIME
, T_FMT
);
624 if (!recursive (fmt
))
631 if (strcmp (fmt
, HERE_T_FMT
))
637 if (!recursive (HERE_T_FMT
))
645 /* We have no information about the era format. Just use
646 the normal format. */
647 if (*fmt
!= 'c' && *fmt
!= 'C' && *fmt
!= 'y' && *fmt
!= 'Y'
648 && *fmt
!= 'x' && *fmt
!= 'X')
649 /* This is an illegal format. */
659 /* Match day of month using alternate numeric symbols. */
660 get_alt_number (1, 31);
664 /* Match hour in 24-hour clock using alternate numeric
666 get_alt_number (0, 23);
671 /* Match hour in 12-hour clock using alternate numeric
673 get_alt_number (1, 12);
674 tm
->tm_hour
= val
- 1;
678 /* Match month using alternate numeric symbols. */
679 get_alt_number (1, 12);
680 tm
->tm_mon
= val
- 1;
683 /* Match minutes using alternate numeric symbols. */
684 get_alt_number (0, 59);
688 /* Match seconds using alternate numeric symbols. */
689 get_alt_number (0, 61);
695 get_alt_number (0, 53);
696 /* XXX This cannot determine any field in TM without
697 further information. */
700 /* Match number of weekday using alternate numeric symbols. */
701 get_alt_number (0, 6);
705 /* Match year within century using alternate numeric symbols. */
706 get_alt_number (0, 99);
725 strptime (buf
, format
, tm
)
730 enum locale_status decided
;
736 return strptime_internal (buf
, format
, tm
, &decided
);