2 * parsetime.c - parse time for at(1)
3 * Copyright (C) 1993, 1994 Thomas Koenig
5 * modifications for English-language times
6 * Copyright (C) 1993 David Parsons
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. The name of the author(s) may not be used to endorse or promote
14 * products derived from this software without specific prior written
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 * at [NOW] PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS
29 * /NUMBER [DOT NUMBER] [AM|PM]\ /[MONTH NUMBER [NUMBER]] \
30 * |NOON | |[TOMORROW] |
31 * |MIDNIGHT | |[DAY OF WEEK] |
32 * \TEATIME / |NUMBER [SLASH NUMBER [SLASH NUMBER]]|
33 * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/
35 * $FreeBSD: src/usr.bin/at/parsetime.c,v 1.27 2005/08/18 08:18:02 stefanf Exp $
36 * $DragonFly: src/usr.bin/at/parsetime.c,v 1.6 2007/08/26 16:12:27 pavalos Exp $
41 #include <sys/types.h>
55 #include "parsetime.h"
58 /* Structures and unions */
61 MIDNIGHT
, NOON
, TEATIME
,
62 PM
, AM
, TOMORROW
, TODAY
, NOW
,
63 MINUTES
, HOURS
, DAYS
, WEEKS
, MONTHS
, YEARS
,
64 NUMBER
, PLUS
, DOT
, SLASH
, ID
, JUNK
,
65 JAN
, FEB
, MAR
, APR
, MAY
, JUN
,
66 JUL
, AUG
, SEP
, OCT
, NOV
, DEC
,
67 SUN
, MON
, TUE
, WED
, THU
, FRI
, SAT
70 /* parse translation table - table driven parsers can be your FRIEND!
73 const char *name
; /* token name */
74 int value
; /* token id */
75 int plural
; /* is this plural? */
77 { "midnight", MIDNIGHT
,0 }, /* 00:00:00 of today or tomorrow */
78 { "noon", NOON
,0 }, /* 12:00:00 of today or tomorrow */
79 { "teatime", TEATIME
,0 }, /* 16:00:00 of today or tomorrow */
80 { "am", AM
,0 }, /* morning times for 0-12 clock */
81 { "pm", PM
,0 }, /* evening times for 0-12 clock */
82 { "tomorrow", TOMORROW
,0 }, /* execute 24 hours from time */
83 { "today", TODAY
, 0 }, /* execute today - don't advance time */
84 { "now", NOW
,0 }, /* opt prefix for PLUS */
86 { "minute", MINUTES
,0 }, /* minutes multiplier */
87 { "minutes", MINUTES
,1 }, /* (pluralized) */
88 { "hour", HOURS
,0 }, /* hours ... */
89 { "hours", HOURS
,1 }, /* (pluralized) */
90 { "day", DAYS
,0 }, /* days ... */
91 { "days", DAYS
,1 }, /* (pluralized) */
92 { "week", WEEKS
,0 }, /* week ... */
93 { "weeks", WEEKS
,1 }, /* (pluralized) */
94 { "month", MONTHS
,0 }, /* month ... */
95 { "months", MONTHS
,1 }, /* (pluralized) */
96 { "year", YEARS
,0 }, /* year ... */
97 { "years", YEARS
,1 }, /* (pluralized) */
110 { "january", JAN
,0 },
111 { "february", FEB
,0 },
118 { "september", SEP
,0 },
119 { "october", OCT
,0 },
120 { "november", NOV
,0 },
121 { "december", DEC
,0 },
122 { "sunday", SUN
, 0 },
124 { "monday", MON
, 0 },
126 { "tuesday", TUE
, 0 },
128 { "wednesday", WED
, 0 },
130 { "thursday", THU
, 0 },
132 { "friday", FRI
, 0 },
134 { "saturday", SAT
, 0 },
138 /* File scope variables */
140 static char **scp
; /* scanner - pointer at arglist */
141 static char scc
; /* scanner - count of remaining arguments */
142 static char *sct
; /* scanner - next char pointer in current argument */
143 static int need
; /* scanner - need to advance to next argument */
145 static char *sc_token
; /* scanner - token buffer */
146 static size_t sc_len
; /* scanner - length of token buffer */
147 static int sc_tokid
; /* scanner - token id */
148 static int sc_tokplur
; /* scanner - is token plural? */
150 /* Local functions */
153 * parse a token, checking if it's something special to us
156 parse_token(char *arg
)
160 for (i
=0; i
<(sizeof Specials
/sizeof Specials
[0]); i
++)
161 if (strcasecmp(Specials
[i
].name
, arg
) == 0) {
162 sc_tokplur
= Specials
[i
].plural
;
163 return sc_tokid
= Specials
[i
].value
;
166 /* not special - must be some random id */
172 * init_scanner() sets up the scanner to eat arguments
175 init_scanner(int argc
, char **argv
)
182 sc_len
+= strlen(*argv
++);
184 if ((sc_token
= malloc(sc_len
)) == NULL
)
185 errx(EXIT_FAILURE
, "virtual memory exhausted");
189 * token() fetches a token from the input stream
197 memset(sc_token
, 0, sc_len
);
202 /* if we need to read another argument, walk along the argument list;
203 * when we fall off the arglist, we'll just return EOF forever
213 /* eat whitespace now - if we walk off the end of the argument,
214 * we'll continue, which puts us up at the top of the while loop
215 * to fetch the next argument in
217 while (isspace(*sct
))
224 /* preserve the first character of the new token
226 sc_token
[0] = *sct
++;
228 /* then see what it is
230 if (isdigit(sc_token
[0])) {
231 while (isdigit(*sct
))
232 sc_token
[++idx
] = *sct
++;
234 return sc_tokid
= NUMBER
;
236 else if (isalpha(sc_token
[0])) {
237 while (isalpha(*sct
))
238 sc_token
[++idx
] = *sct
++;
240 return parse_token(sc_token
);
242 else if (sc_token
[0] == ':' || sc_token
[0] == '.')
243 return sc_tokid
= DOT
;
244 else if (sc_token
[0] == '+')
245 return sc_tokid
= PLUS
;
246 else if (sc_token
[0] == '/')
247 return sc_tokid
= SLASH
;
249 return sc_tokid
= JUNK
;
255 * plonk() gives an appropriate error message if a token is incorrect
260 panic((tok
== EOF
) ? "incomplete time"
266 * expect() gets a token and dies most horribly if it's not the token we want
271 if (token() != desired
)
272 plonk(sc_tokid
); /* and we die here... */
277 * plus() parses a now + time
279 * at [NOW] PLUS NUMBER [MINUTES|HOURS|DAYS|WEEKS|MONTHS|YEARS]
291 delay
= atoi(sc_token
);
292 expectplur
= (delay
!= 1) ? 1 : 0;
296 tm
->tm_year
+= delay
;
304 tm
->tm_mday
+= delay
;
307 tm
->tm_hour
+= delay
;
317 if (expectplur
!= sc_tokplur
)
318 warnx("pluralization is wrong");
328 * tod() computes the time of day
329 * [NUMBER [DOT NUMBER] [AM|PM]]
334 int hour
, minute
= 0;
337 hour
= atoi(sc_token
);
338 tlen
= strlen(sc_token
);
340 /* first pick out the time of day - if it's 4 digits, we assume
341 * a HHMM time, otherwise it's HH DOT MM time
343 if (token() == DOT
) {
345 minute
= atoi(sc_token
);
347 panic("garbled time");
350 else if (tlen
== 4) {
353 panic("garbled time");
357 /* check if an AM or PM specifier was given
359 if (sc_tokid
== AM
|| sc_tokid
== PM
) {
361 panic("garbled time");
363 if (sc_tokid
== PM
) {
364 if (hour
!= 12) /* 12:xx PM is 12:xx, not 24:xx */
367 if (hour
== 12) /* 12:xx AM is 00:xx, not 12:xx */
373 panic("garbled time");
375 /* if we specify an absolute time, we don't want to bump the day even
376 * if we've gone past that time - but if we're specifying a time plus
377 * a relative offset, it's okay to bump things
379 if ((sc_tokid
== EOF
|| sc_tokid
== PLUS
) && tm
->tm_hour
> hour
) {
386 if (tm
->tm_hour
== 24) {
394 * assign_date() assigns a date, wrapping to next year if needed
397 assign_date(struct tm
*tm
, long mday
, long mon
, long year
)
401 * Convert year into tm_year format (year - 1900).
402 * We may be given the year in 2 digit, 4 digit, or tm_year format.
406 year
-= 1900; /* convert from 4 digit year */
407 else if (year
< 100) {
408 /* convert from 2 digit year */
413 lt
= localtime(&now
);
415 /* Convert to tm_year assuming current century */
416 year
+= (lt
->tm_year
/ 100) * 100;
418 if (year
== lt
->tm_year
- 1) year
++;
419 else if (year
< lt
->tm_year
)
420 year
+= 100; /* must be in next century */
425 (tm
->tm_mon
> mon
||(tm
->tm_mon
== mon
&& tm
->tm_mday
> mday
)))
426 year
= tm
->tm_year
+ 1;
437 * month() picks apart a month specification
439 * /[<month> NUMBER [NUMBER]] \
442 * |NUMBER [SLASH NUMBER [SLASH NUMBER]]|
443 * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/
449 long mday
= 0, wday
, mon
;
458 /* do something tomorrow */
461 case TODAY
: /* force ourselves to stay in today - no further processing */
465 case JAN
: case FEB
: case MAR
: case APR
: case MAY
: case JUN
:
466 case JUL
: case AUG
: case SEP
: case OCT
: case NOV
: case DEC
:
467 /* do month mday [year]
469 mon
= (sc_tokid
-JAN
);
471 mday
= atol(sc_token
);
472 if (token() == NUMBER
) {
473 year
= atol(sc_token
);
476 assign_date(tm
, mday
, mon
, year
);
479 case SUN
: case MON
: case TUE
:
480 case WED
: case THU
: case FRI
:
482 /* do a particular day of the week
484 wday
= (sc_tokid
-SUN
);
488 /* if this day is < today, then roll to next week
490 if (wday
< tm
->tm_wday
)
491 mday
+= 7 - (tm
->tm_wday
- wday
);
493 mday
+= (wday
- tm
->tm_wday
);
497 assign_date(tm
, mday
, tm
->tm_mon
, tm
->tm_year
);
501 /* get numeric MMDDYY, mm/dd/yy, or dd.mm.yy
503 tlen
= strlen(sc_token
);
504 mon
= atol(sc_token
);
507 if (sc_tokid
== SLASH
|| sc_tokid
== DOT
) {
512 mday
= atol(sc_token
);
513 if (token() == sep
) {
515 year
= atol(sc_token
);
519 /* flip months and days for European timing
527 else if (tlen
== 6 || tlen
== 8) {
529 year
= (mon
% 10000) - 1900;
540 panic("garbled time");
543 if (mon
< 0 || mon
> 11 || mday
< 1 || mday
> 31)
544 panic("garbled time");
546 assign_date(tm
, mday
, mon
, year
);
552 /* Global functions */
555 parsetime(int argc
, char **argv
)
557 /* Do the argument parsing, die if necessary, and return the time the job
560 time_t nowtimer
, runtimer
;
561 struct tm nowtime
, runtime
;
563 /* this MUST be initialized to zero for midnight/noon/teatime */
565 nowtimer
= time(NULL
);
566 nowtime
= *localtime(&nowtimer
);
570 runtime
.tm_isdst
= 0;
575 init_scanner(argc
-optind
, argv
+optind
);
582 /* now is optional prefix for PLUS tree */
593 /* evil coding for TEATIME|NOON|MIDNIGHT - we've initialised
594 * hr to zero up above, then fall into this case in such a
595 * way so we add +12 +4 hours to it for teatime, +12 hours
596 * to it for noon, and nothing at all for midnight, then
597 * set our runtime to that hour before leaping into the
605 if (runtime
.tm_hour
>= hr
) {
609 runtime
.tm_hour
= hr
;
612 /* FALLTHROUGH to month setting */
616 } /* ugly case statement */
619 /* convert back to time_t
621 runtime
.tm_isdst
= -1;
622 runtimer
= mktime(&runtime
);
625 panic("garbled time");
627 if (nowtimer
> runtimer
)
628 panic("trying to travel back in time");