1 /* dtimep.l -- parse dates and times.
3 * This exceeds the default table capacities for some old versions
4 * of lex (and the minimum defaults as specified by POSIX). The following
5 * choices meet or exceed the lex defaults for older SunOS4.x, Solaris,
18 /* Since we're looking at a string at a time, don't worry about
19 * wrapping to the next buffer.
21 #if YY_FLEX_MAJOR_VERSION == 2 && \
22 YY_FLEX_MINOR_VERSION == 6 && \
23 YY_FLEX_SUBMINOR_VERSION == 3
24 /* https://github.com/westes/flex/issues/162 */
28 #define YY_SKIP_YYWRAP
32 /* This is the tricky thing that makes this function cool. We
33 * replace the traditional int yylex(void) declaration with our
34 * dparsetime() declaration, essentially piggy-backing off the
35 * utility of the yylex() function and adding what we need to make
36 * the parsing function useful to us.
38 #define YY_DECL struct tws *dparsetime(char *lexstr)
40 /* yyterminate() is called after the input string is matched to
41 * completion (actually, when the lexer reaches an EOF). The only
42 * thing that really needs to be in this macro function is the
43 * return call, which must be substituted inline into dparsetime.
46 #define yyterminate() (void)yy_delete_buffer(lexhandle); \
47 if(!(tw.tw_flags & TW_SUCC)) { \
50 if(tw.tw_year < 1970) \
52 if(tw.tw_year < 1970) \
57 * Table to convert month names to numeric month. We use the
58 * fact that the low order 5 bits of the sum of the 2nd & 3rd
59 * characters of the name is a hash with no collisions for the 12
60 * valid month names. (The mask to 5 bits maps any combination of
61 * upper and lower case into the same hash value).
63 static int month_map[] = {
96 * Lookup table for day-of-week using the same hash trick as for above name-of-
97 * month table, but using the first and second character, not second and third.
99 * Compute index into table using: (day_name[0] & 7) + (day_name[1] & 4)
101 static int day_map[] = {
116 /* The SET* macros will parse for the appropriate field, and leave the
117 * cp pointer at the first character after the desired field. Be
118 * careful with variable-length fields or alpha-num mixes.
120 * The SKIP* macros skip over characters of a particular class and
121 * leave cp at the position of the first character that doesn't match
122 * that class. Correspondingly, SKIPTO* skips until it reaches a
123 * character of a particular class.
126 #define INIT() { cp = yytext;}
127 #define SETWDAY() { tw.tw_wday= day_map[(cp[0] & 7) + (cp[1] & 4)]; \
128 tw.tw_flags &= ~TW_SDAY; tw.tw_flags |= TW_SEXP; \
130 #define SETMON() { cp++; \
131 tw.tw_mon = month_map[(((unsigned char) cp[0]) + ((unsigned char) cp[1])) & 0x1f]; \
133 #define SETMON_NUM() { tw.tw_mon = atoi(cp)-1; \
135 #define SETYEAR() { tw.tw_year = atoi(cp); \
137 #define SETDAY() { tw.tw_mday = atoi(cp); \
138 tw.tw_flags |= TW_SUCC; \
140 #define SETTIME() { tw.tw_hour = atoi(cp); \
143 tw.tw_min = atoi(cp); \
146 tw.tw_sec = atoi(++cp); SKIPD(); } }
147 #define SETZONE(x) { tw.tw_zone = ((x)/100)*60+(x)%100; \
148 tw.tw_flags |= TW_SZEXP; \
150 #define SETDST() { tw.tw_flags |= TW_DST; }
151 #define SKIPD() { while ( isdigit((unsigned char) *cp++) ) ; \
153 #define SKIPTOD() { while ( !isdigit((unsigned char) *cp++) ) ; \
155 #define SKIPA() { while ( isalpha((unsigned char) *cp++) ) ; \
157 #define SKIPTOA() { while ( !isalpha((unsigned char) *cp++) ) ; \
160 # ifdef HAVE_SYS_TIME_H
161 # include <sys/time.h>
166 zonehack (struct tws *tw)
170 if (dmktime (tw) == (time_t) -1)
173 tm = localtime (&tw->tw_clock);
175 tw->tw_flags |= TW_DST;
189 DAY {sun}|{mon}|{tue}|{wed}|{thu}|{fri}|{sat}
204 MONTH {jan}|{feb}|{mar}|{apr}|{may}|{jun}|{jul}|{aug}|{sep}|{oct}|{nov}|{dec}
206 TIME {D}:{d}{d}(:{d}{d})?
208 /* The year can either be 2 digits, or 4. However, after
209 Y2K, we found that some MUA were reporting the year 100, hence
210 the middle term here. yyterminate() resolves the actual
211 issues with 2-digit years.
214 YEAR ({d}{d})|(1{d}{d})|({d}{4})
224 /* This section begins the definition of dparsetime().
225 Put here any local variable definitions and initializations */
227 YY_BUFFER_STATE lexhandle;
230 static struct tws tw;
234 lexhandle = yy_scan_string(lexstr);
237 {DAY}","?{W}{MONTH}{W}{D}{W}{TIME}{W}{YEAR} {
250 {DAY}","?{W}{D}{W}{MONTH}{W}{YEAR}{W}{TIME} {
262 {D}{W}{MONTH}{W}{YEAR}{W}{TIME} {
272 {DAY}","?{W}{MONTH}{W}{D}","?{W}{YEAR}","?{W}{TIME} {
284 {DAY}","?{W}{MONTH}{W}{D}","?{W}{YEAR} {
294 {MONTH}{W}{D}","?{W}{YEAR}","?{W}{DAY} {
304 {MONTH}{W}{D}","?{W}{YEAR} {
312 {D}("-"|"/"){D}("-"|"/"){YEAR}{W}{TIME} {
323 {D}("-"|"/"){D}("-"|"/"){YEAR} {
334 "[Pp][Mm]" tw.tw_hour += 12;
351 {nl}("ut"|"UT") INIT(); SETZONE(0); yyterminate();
352 {nl}("gmt"|"GMT") INIT(); SETZONE(0); yyterminate();
353 {nl}("est"|"EST") INIT(); SETZONE(-500); yyterminate();
354 {nl}("edt"|"EDT") { INIT(); SETDST(); SETZONE(-500);
356 {nl}("cst"|"CST") INIT(); SETZONE(-600); yyterminate();
357 {nl}("cdt"|"CDT") { INIT(); SETDST(); SETZONE(-600);
359 {nl}("mst"|"MST") INIT(); SETZONE(-700); yyterminate();
360 {nl}("mdt"|"MDT") { INIT(); SETDST(); SETZONE(-700);
362 {nl}("pst"|"PST") INIT(); SETZONE(-800); yyterminate();
363 {nl}("pdt"|"PDT") { INIT(); SETDST(); SETZONE(-800);
365 {nl}("nst"|"NST") INIT(); SETZONE(-330); yyterminate();
366 {nl}("ast"|"AST") INIT(); SETZONE(-400); yyterminate();
367 {nl}("adt"|"ADT") { INIT(); SETDST(); SETZONE(-400);
369 {nl}("hst"|"HST") INIT(); SETZONE(-1000); yyterminate();
370 {nl}("hdt"|"HDT") { INIT(); SETDST(); SETZONE(-1000);
375 /* This is a portable way to squash a warning about the yyunput()
376 * function being static but never used. It costs us a tiny amount
377 * of extra code in the binary but the other options are:
378 * "%option nounput" which is flex-specific
379 * makefile hackery just to compile dtimep.c with different flags
382 dtimep_yyunput(int c)