60a8d82c581f3e31d4d2e5721b0ecaa8051f062d
[mmh] / sbr / dtimep.lex
1 /*
2 ** dtimep.lex exceeds the default table capacities for some old versions
3 ** of lex (and the minimum defaults as specified by POSIX).  The following
4 ** choices meet or exceed the lex defaults for older SunOS4.x, Solaris,
5 ** HPUX, and AIX.
6 */
7 %e4000
8 %p7000
9 %n2500
10 %a5000
11 %{
12 #include <ctype.h>
13 #include <h/tws.h>
14
15 /*
16 ** Since we're looking at a string at a time, don't worry about
17 ** wrapping to the next buffer.
18 */
19 #define yywrap() 1
20 #define YY_SKIP_YYWRAP
21
22 #define YY_NO_INPUT
23
24 /*
25 ** This is the tricky thing that makes this function cool.  We
26 ** replace the traditional int yylex(void) declaration with our
27 ** dparsetime() declaration, essentially piggy-backing off the
28 ** utility of the yylex() function and adding what we need to make
29 ** the parsing function useful to us.
30 */
31 #define YY_DECL struct tws *dparsetime(char *lexstr)
32
33 /*
34 ** yyerminate() is called after the input string is matched to
35 ** completion (actually, when the lexer reaches an EOF).  The only
36 ** thing that really needs to be in this macro function is the
37 ** return call, which must be substituted inline into dparsetime.
38 */
39
40 #define yyterminate() (void)yy_delete_buffer(lexhandle); \
41         if(!(tw.tw_flags & TW_SUCC)) { \
42                 return (struct tws *)NULL; \
43         } \
44         if(tw.tw_year < 1970) \
45                 tw.tw_year += 1900; \
46         if(tw.tw_year < 1970) \
47                 tw.tw_year += 100; \
48         return(&tw)
49
50 /*
51 ** Patchable flag that says how to interpret NN/NN/NN dates. When
52 ** true, we do it European style: DD/MM/YY. When false, we do it
53 ** American style: MM/DD/YY.  Of course, these are all non-RFC822
54 ** compliant.
55 */
56 int europeandate = 0;
57
58 /*
59 ** Table to convert month names to numeric month.  We use the
60 ** fact that the low order 5 bits of the sum of the 2nd & 3rd
61 ** characters of the name is a hash with no collisions for the 12
62 ** valid month names.  (The mask to 5 bits maps any combination of
63 ** upper and lower case into the same hash value).
64 */
65 static int month_map[] = {
66         0,
67         6,      /* 1 - Jul */
68         3,      /* 2 - Apr */
69         5,      /* 3 - Jun */
70         0,
71         10,     /* 5 - Nov */
72         0,
73         1,      /* 7 - Feb */
74         11,     /* 8 - Dec */
75         0,
76         0,
77         0,
78         0,
79         0,
80         0,
81         0,      /*15 - Jan */
82         0,
83         0,
84         0,
85         2,      /*19 - Mar */
86         0,
87         8,      /*21 - Sep */
88         0,
89         9,      /*23 - Oct */
90         0,
91         0,
92         4,      /*26 - May */
93         0,
94         7       /*28 - Aug */
95 };
96
97 /*
98 ** Lookup table for day-of-week using the same hash trick as for above
99 ** name-of-month table, but using the first and second character, not
100 ** second and third.
101 **
102 ** Compute index into table using: (day_name[0] & 7) + (day_name[1] & 4)
103 */
104 static int day_map[] = {
105         0,
106         0,
107         0,
108         6,      /* 3 - Sat */
109         4,      /* 4 - Thu */
110         0,
111         5,      /* 6 - Fri */
112         0,      /* 7 - Sun */
113         2,      /* 8 - Tue */
114         1       /* 9 - Mon */,
115         0,
116         3       /*11 - Wed */
117 };
118
119 /*
120 ** The SET* macros will parse for the appropriate field, and leave the
121 ** cp pointer at the first character after the desired field. Be
122 ** careful with variable-length fields or alpha-num mixes.
123 **
124 ** The SKIP* macros skip over characters of a particular class and
125 ** leave cp at the position of the first character that doesn't match
126 ** that class. Correspondingly, SKIPTO* skips until it reaches a
127 ** character of a particular class.
128 */
129
130 #define INIT() { cp = yytext;}
131 #define SETWDAY()  { tw.tw_wday= day_map[(cp[0] & 7) + (cp[1] & 4)]; \
132         tw.tw_flags &= ~TW_SDAY; tw.tw_flags |= TW_SEXP; SKIPA(); }
133 #define SETMON()  { cp++; tw.tw_mon = month_map[(cp[0] + cp[1]) & 0x1f]; \
134         SKIPA(); }
135 #define SETMON_NUM()  { tw.tw_mon = atoi(cp)-1; SKIPD(); }
136 #define SETYEAR()  { tw.tw_year = atoi(cp); SKIPD(); }
137 #define SETDAY()  { tw.tw_mday = atoi(cp); tw.tw_flags |= TW_YES; SKIPD(); }
138 #define SETTIME()  { tw.tw_hour = atoi(cp); cp += 2; SKIPTOD(); \
139         tw.tw_min = atoi(cp); cp += 2; if(*cp == ':') { \
140         tw.tw_sec = atoi(++cp); SKIPD(); } }
141 #define SETZONE(x)  { tw.tw_zone = ((x)/100)*60+(x)%100; \
142         tw.tw_flags |= TW_SZEXP; SKIPD(); }
143 #define SETDST()  { tw.tw_flags |= TW_DST; }
144 #define SKIPD()  { while ( isdigit(*cp++) ) ; --cp; }
145 #define SKIPTOD()  { while ( !isdigit(*cp++) ) ; --cp; }
146 #define SKIPA()  { while ( isalpha(*cp++) ) ; --cp; }
147 #define SKIPTOA()  { while ( !isalpha(*cp++) ) ; --cp; }
148 #define SKIPSP()  { while ( isspace(*cp++) ) ; --cp; }
149 #define SKIPTOSP()  { while ( !isspace(*cp++) ) ; --cp; }
150
151 #ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST
152 # ifdef HAVE_SYS_TIME_H
153 #  include <sys/time.h>
154 # endif
155 #include <time.h>
156
157 static void
158 zonehack (struct tws *tw)
159 {
160         register struct tm *tm;
161
162         if (dmktime (tw) == (time_t) -1)
163                 return;
164
165         tm = localtime (&tw->tw_clock);
166         if (tm->tm_isdst) {
167                 tw->tw_flags |= TW_DST;
168                 tw->tw_zone -= 60;
169         }
170 }
171 #endif /* ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST */
172 %}
173
174 sun     ([Ss]un(day)?)
175 mon     ([Mm]on(day)?)
176 tue     ([Tt]ue(sday)?)
177 wed     ([Ww]ed(nesday)?)
178 thu     ([Tt]hu(rsday)?)
179 fri     ([Ff]ri(day)?)
180 sat     ([Ss]at(urday)?)
181
182 DAY     ({sun}|{mon}|{tue}|{wed}|{thu}|{fri}|{sat})
183
184 jan     ([Jj]an(uary)?)
185 feb     ([Ff]eb(ruary)?)
186 mar     ([Mm]ar(ch)?)
187 apr     ([Aa]pr(il)?)
188 may     ([Mm]ay)
189 jun     ([Jj]un(e)?)
190 jul     ([Jj]ul(y)?)
191 aug     ([Aa]ug(ust)?)
192 sep     ([Ss]ep(tember)?)
193 oct     ([Oo]ct(ober)?)
194 nov     ([Nn]ov(ember)?)
195 dec     ([Dd]ec(ember)?)
196
197 MONTH   ({jan}|{feb}|{mar}|{apr}|{may}|{jun}|{jul}|{aug}|{sep}|{oct}|{nov}|{dec})
198
199 TIME    ({D}:{d}{d}(:{d}{d})?)
200
201 /*
202 ** The year can either be 2 digits, or 4. However, after
203 ** Y2K, we found that some MUA were reporting the year 100, hence
204 ** the middle term here. yyterminate() resolves the actual
205 ** issues with 2-digit years.
206 */
207
208 YEAR    (({d}{d})|(1{d}{d})|({d}{4}))
209
210 w       ([ \t]*)
211 W       ([ \t]+)
212 D       ([0-9]?[0-9])
213 d       [0-9]
214 nl      [ \t\n()]
215
216 %%
217 %{
218         /*
219         ** This section begins the definition of dparsetime().
220         ** Put here any local variable definitions and initializations
221         */
222         YY_BUFFER_STATE lexhandle;
223
224         register unsigned char *cp;
225         static struct tws tw;
226
227         memset(&tw,0,sizeof(struct tws));
228
229         lexhandle = yy_scan_string(lexstr);
230 %}
231
232 {DAY}","?{W}{MONTH}{W}{D}{W}{TIME}{W}{YEAR}  {
233         INIT();
234         SETWDAY();
235         SKIPTOA();
236         SETMON();
237         SKIPTOD();
238         SETDAY();
239         SKIPTOD();
240         SETTIME();
241         SKIPTOD();
242         SETYEAR();
243 }
244
245 {DAY}","?{W}{D}{W}{MONTH}{W}{YEAR}{W}{TIME}  {
246         INIT();
247         SETWDAY();
248         SKIPTOD();
249         SETDAY();
250         SKIPTOA();
251         SETMON();
252         SKIPTOD();
253         SETYEAR();
254         SKIPTOD();
255         SETTIME();
256 }
257 {D}{W}{MONTH}{W}{YEAR}{W}{TIME}  {
258         INIT();
259         SETDAY();
260         SKIPTOA();
261         SETMON();
262         SKIPTOD();
263         SETYEAR();
264         SKIPTOD();
265         SETTIME();
266 }
267 {DAY}","?{W}{MONTH}{W}{D}","?{W}{YEAR}","?{W}{TIME}  {
268         INIT();
269         SETWDAY();
270         SKIPTOA();
271         SETMON();
272         SKIPTOD();
273         SETDAY();
274         SKIPTOD();
275         SETYEAR();
276         SKIPTOD();
277         SETTIME();
278 }
279 {DAY}","?{W}{MONTH}{W}{D}","?{W}{YEAR}  {
280         INIT();
281         SETWDAY();
282         SKIPTOA();
283         SETMON();
284         SKIPTOD();
285         SETDAY();
286         SKIPTOD();
287         SETYEAR();
288 }
289 {MONTH}{W}{D}","?{W}{YEAR}","?{W}{DAY}  {
290         INIT();
291         SETMON();
292         SKIPTOD();
293         SETDAY();
294         SKIPTOD();
295         SETYEAR();
296         SKIPTOA();
297         SETWDAY();
298 }
299 {MONTH}{W}{D}","?{W}{YEAR}  {
300         INIT();
301         SETMON();
302         SKIPTOD();
303         SETDAY();
304         SKIPTOD();
305         SETYEAR();
306 }
307 {D}("-"|"/"){D}("-"|"/"){YEAR}{W}{TIME}  {
308         INIT();
309         if(europeandate) {
310                 /* DD/MM/YY */
311                 SETDAY();
312                 SKIPTOD();
313                 SETMON_NUM();
314         } else {
315                 /* MM/DD/YY */
316                 SETMON_NUM();
317                 SKIPTOD();
318                 SETDAY();
319         }
320         SKIPTOD();
321         SETYEAR();
322         SKIPTOD();
323         SETTIME();
324 }
325 {D}("-"|"/"){D}("-"|"/"){YEAR}  {
326         INIT();
327         if(europeandate) {
328                 /* DD/MM/YY */
329                 SETDAY();
330                 SKIPTOD();
331                 SETMON_NUM();
332         } else {
333                 /* MM/DD/YY */
334                 SETMON_NUM();
335                 SKIPTOD();
336                 SETDAY();
337         }
338         SKIPTOD();
339         SETYEAR();
340 }
341
342 "[Aa][Mm]"
343 "[Pp][Mm]"  tw.tw_hour += 12;
344
345 "+"{D}{d}{d}  {
346         INIT();
347         SKIPTOD();
348         SETZONE(atoi(cp));
349 #ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST
350         zonehack (&tw);
351 #endif /* ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST */
352         yyterminate();
353 }
354 "-"{D}{d}{d}  {
355         INIT();
356         SKIPTOD();
357         SETZONE(-atoi(cp));
358 #ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST
359         zonehack (&tw);
360 #endif /* ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST */
361         yyterminate();
362
363 }
364 {nl}("ut"|"UT")         INIT(); SETZONE(0); yyterminate();
365 {nl}("gmt"|"GMT")       INIT(); SETZONE(0); yyterminate();
366 {nl}("est"|"EST")       INIT(); SETZONE(-500); yyterminate();
367 {nl}("edt"|"EDT")       { INIT(); SETDST(); SETZONE(-500); yyterminate(); }
368 {nl}("cst"|"CST")       INIT(); SETZONE(-600); yyterminate();
369 {nl}("cdt"|"CDT")       { INIT(); SETDST(); SETZONE(-600); yyterminate(); }
370 {nl}("mst"|"MST")       INIT(); SETZONE(-700); yyterminate();
371 {nl}("mdt"|"MDT")       { INIT(); SETDST(); SETZONE(-700); yyterminate(); }
372 {nl}("pst"|"PST")       INIT(); SETZONE(-800); yyterminate();
373 {nl}("pdt"|"PDT")       { INIT(); SETDST(); SETZONE(-800); yyterminate(); }
374 {nl}("nst"|"NST")       INIT(); SETZONE(-330); yyterminate();
375 {nl}("ast"|"AST")       INIT(); SETZONE(-400); yyterminate();
376 {nl}("adt"|"ADT")       { INIT(); SETDST(); SETZONE(-400); yyterminate(); }
377 {nl}("hst"|"HST")       INIT(); SETZONE(-1000); yyterminate();
378 {nl}("hdt"|"HDT")       { INIT(); SETDST(); SETZONE(-1000); yyterminate(); }
379 .|\n
380
381 %%
382 /*
383 ** This is a portable way to squash a warning about the yyunput()
384 ** function being static but never used. It costs us a tiny amount
385 ** of extra code in the binary but the other options are:
386 ** "%option nounput" which is flex-specific
387 ** makefile hackery just to compile dtimep.c with different flags
388 */
389 void dtimep_yyunput(int c)
390 {
391         unput(c);
392 }