]>
git.cameronkatri.com Git - apple_cmds.git/blob - system_cmds/at.tproj/parsetime.c
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
30 * /NUMBER [DOT NUMBER] [AM|PM]\ /[MONTH NUMBER [NUMBER]] \
31 * |NOON | |[TOMORROW] |
32 * |MIDNIGHT | |[DAY OF WEEK] |
33 * \TEATIME / |NUMBER [SLASH NUMBER [SLASH NUMBER]]|
34 * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/usr.bin/at/parsetime.c,v 1.28 2011/11/06 17:32:29 ed Exp $");
42 #include <sys/types.h>
60 #include "parsetime.h"
63 /* Structures and unions */
66 MIDNIGHT
, NOON
, TEATIME
,
67 PM
, AM
, TOMORROW
, TODAY
, NOW
,
68 MINUTES
, HOURS
, DAYS
, WEEKS
, MONTHS
, YEARS
,
69 NUMBER
, PLUS
, DOT
, COMMA
, SLASH
, ID
, JUNK
,
70 JAN
, FEB
, MAR
, APR
, MAY
, JUN
,
71 JUL
, AUG
, SEP
, OCT
, NOV
, DEC
,
72 SUN
, MON
, TUE
, WED
, THU
, FRI
, SAT
,
76 /* parse translation table - table driven parsers can be your FRIEND!
79 const char *name
; /* token name */
80 int value
; /* token id */
81 int plural
; /* is this plural? */
83 { "midnight", MIDNIGHT
,0 }, /* 00:00:00 of today or tomorrow */
84 { "noon", NOON
,0 }, /* 12:00:00 of today or tomorrow */
85 { "teatime", TEATIME
,0 }, /* 16:00:00 of today or tomorrow */
86 { "am", AM
,0 }, /* morning times for 0-12 clock */
87 { "pm", PM
,0 }, /* evening times for 0-12 clock */
88 { "tomorrow", TOMORROW
,0 }, /* execute 24 hours from time */
89 { "today", TODAY
, 0 }, /* execute today - don't advance time */
90 { "now", NOW
,0 }, /* opt prefix for PLUS */
92 { "minute", MINUTES
,0 }, /* minutes multiplier */
93 { "minutes", MINUTES
,1 }, /* (pluralized) */
94 { "hour", HOURS
,0 }, /* hours ... */
95 { "hours", HOURS
,1 }, /* (pluralized) */
96 { "day", DAYS
,0 }, /* days ... */
97 { "days", DAYS
,1 }, /* (pluralized) */
98 { "week", WEEKS
,0 }, /* week ... */
99 { "weeks", WEEKS
,1 }, /* (pluralized) */
100 { "month", MONTHS
,0 }, /* month ... */
101 { "months", MONTHS
,1 }, /* (pluralized) */
102 { "year", YEARS
,0 }, /* year ... */
103 { "years", YEARS
,1 }, /* (pluralized) */
116 { "january", JAN
,0 },
117 { "february", FEB
,0 },
124 { "september", SEP
,0 },
125 { "october", OCT
,0 },
126 { "november", NOV
,0 },
127 { "december", DEC
,0 },
128 { "sunday", SUN
, 0 },
130 { "monday", MON
, 0 },
132 { "tuesday", TUE
, 0 },
134 { "wednesday", WED
, 0 },
136 { "thursday", THU
, 0 },
138 { "friday", FRI
, 0 },
140 { "saturday", SAT
, 0 },
146 /* File scope variables */
148 static char **scp
; /* scanner - pointer at arglist */
149 static char scc
; /* scanner - count of remaining arguments */
150 static char *sct
; /* scanner - next char pointer in current argument */
151 static int need
; /* scanner - need to advance to next argument */
153 static char *sc_token
; /* scanner - token buffer */
154 static size_t sc_len
; /* scanner - length of token buffer */
155 static int sc_tokid
; /* scanner - token id */
156 static int sc_tokplur
; /* scanner - is token plural? */
158 /* Local functions */
161 * parse a token, checking if it's something special to us
164 parse_token(char *arg
)
168 for (i
=0; i
<(sizeof Specials
/sizeof Specials
[0]); i
++)
169 if (strcasecmp(Specials
[i
].name
, arg
) == 0) {
170 sc_tokplur
= Specials
[i
].plural
;
171 return sc_tokid
= Specials
[i
].value
;
174 /* not special - must be some random id */
175 return sc_tokid
= ID
;
180 * init_scanner() sets up the scanner to eat arguments
183 init_scanner(int argc
, char **argv
)
190 sc_len
+= strlen(*argv
++);
192 if ((sc_token
= malloc(sc_len
)) == NULL
)
193 errx(EXIT_FAILURE
, "virtual memory exhausted");
197 * token() fetches a token from the input stream
205 memset(sc_token
, 0, sc_len
);
210 /* if we need to read another argument, walk along the argument list;
211 * when we fall off the arglist, we'll just return EOF forever
221 /* eat whitespace now - if we walk off the end of the argument,
222 * we'll continue, which puts us up at the top of the while loop
223 * to fetch the next argument in
225 while (isspace(*sct
))
232 /* preserve the first character of the new token
234 sc_token
[0] = *sct
++;
236 /* then see what it is
238 if (isdigit(sc_token
[0])) {
239 while (isdigit(*sct
))
240 sc_token
[++idx
] = *sct
++;
242 return sc_tokid
= NUMBER
;
244 else if (isalpha(sc_token
[0])) {
245 while (isalpha(*sct
))
246 sc_token
[++idx
] = *sct
++;
248 return parse_token(sc_token
);
250 else if (sc_token
[0] == ':' || sc_token
[0] == '.')
251 return sc_tokid
= DOT
;
252 else if (sc_token
[0] == '+')
253 return sc_tokid
= PLUS
;
254 else if (sc_token
[0] == '/')
255 return sc_tokid
= SLASH
;
256 else if (sc_token
[0] == ',')
257 return sc_tokid
= COMMA
;
259 return sc_tokid
= JUNK
;
265 * plonk() gives an appropriate error message if a token is incorrect
270 panic((tok
== EOF
) ? "incomplete time"
276 * expect() gets a token and dies most horribly if it's not the token we want
281 if (token() != desired
)
282 plonk(sc_tokid
); /* and we die here... */
287 * plus() parses a now + time
289 * at [NOW] PLUS NUMBER [MINUTES|HOURS|DAYS|WEEKS|MONTHS|YEARS]
301 delay
= atoi(sc_token
);
302 expectplur
= (delay
!= 1) ? 1 : 0;
306 tm
->tm_year
+= delay
;
314 tm
->tm_mday
+= delay
;
317 tm
->tm_hour
+= delay
;
327 if (expectplur
!= sc_tokplur
)
328 warnx("pluralization is wrong");
337 * at [NOW] NEXT [MINUTES|HOURS|DAYS|WEEKS|MONTHS|YEARS]
373 warnx("pluralization is wrong");
376 if (mktime(tm
) < 0) {
382 * tod() computes the time of day
383 * [NUMBER [DOT NUMBER] [AM|PM]] [UTC]
388 int hour
, minute
= 0;
391 hour
= atoi(sc_token
);
392 tlen
= strlen(sc_token
);
394 /* first pick out the time of day - if it's 4 digits, we assume
395 * a HHMM time, otherwise it's HH DOT MM time
397 if (token() == DOT
) {
399 minute
= atoi(sc_token
);
401 panic("garbled time");
404 else if (tlen
== 4) {
407 panic("garbled time");
411 /* check if an AM or PM specifier was given
417 panic("garbled time");
419 if (sc_tokid
== PM
) {
420 if (hour
!= 12) /* 12:xx PM is 12:xx, not 24:xx */
423 if (hour
== 12) /* 12:xx AM is 00:xx, not 12:xx */
427 break; /* else fallthrough */
430 hour
+= tm
->tm_gmtoff
/(60*60);
433 minute
+= (tm
->tm_gmtoff
/60);
441 panic("garbled time");
445 /* if we specify an absolute time, we don't want to bump the day even
446 * if we've gone past that time - but if we're specifying a time plus
447 * a relative offset, it's okay to bump things
448 * If minutes are the same assume tomorrow was meant
450 if ((sc_tokid
== EOF
|| sc_tokid
== PLUS
) &&
451 ((tm
->tm_hour
> hour
) || ((tm
->tm_hour
== hour
) && (tm
->tm_min
>= minute
)))) {
458 if (tm
->tm_hour
== 24) {
466 * assign_date() assigns a date, wrapping to next year if needed
469 assign_date(struct tm
*tm
, int mday
, int mon
, int year
)
472 * Convert year into tm_year format (year - 1900).
473 * We may be given the year in 2 digit, 4 digit, or tm_year format.
476 if (year
>= TM_YEAR_BASE
)
477 year
-= TM_YEAR_BASE
; /* convert from 4 digit year */
478 else if (year
< 100) {
479 /* convert from 2 digit year */
484 lt
= localtime(&now
);
486 /* Convert to tm_year assuming current century */
487 year
+= (lt
->tm_year
/ 100) * 100;
489 if (year
== lt
->tm_year
- 1) year
++;
490 else if (year
< lt
->tm_year
)
491 year
+= 100; /* must be in next century */
496 (tm
->tm_mon
> mon
||(tm
->tm_mon
== mon
&& tm
->tm_mday
> mday
)))
497 year
= tm
->tm_year
+ 1;
508 * month() picks apart a month specification
510 * /[<month> NUMBER [NUMBER]] \
513 * |NUMBER [SLASH NUMBER [SLASH NUMBER]]|
514 * |NEXT MINUTES|HOURS|DAYS|WEEKS|MONTHS|YEARS|
515 * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/
521 int mday
= 0, wday
, mon
;
534 /* do something tomorrow */
537 case TODAY
: /* force ourselves to stay in today - no further processing */
541 case JAN
: case FEB
: case MAR
: case APR
: case MAY
: case JUN
:
542 case JUL
: case AUG
: case SEP
: case OCT
: case NOV
: case DEC
:
543 /* do month mday [,year]
545 mon
= (sc_tokid
-JAN
);
547 mday
= atoi(sc_token
);
548 if (token() == COMMA
) {
549 if (token() == NUMBER
) {
550 year
= atoi(sc_token
);
554 assign_date(tm
, mday
, mon
, year
);
555 if (sc_tokid
== PLUS
)
559 case SUN
: case MON
: case TUE
:
560 case WED
: case THU
: case FRI
:
562 /* do a particular day of the week
564 wday
= (sc_tokid
-SUN
);
568 /* if this day is < today, then roll to next week
570 if (wday
< tm
->tm_wday
)
571 mday
+= 7 - (tm
->tm_wday
- wday
);
573 mday
+= (wday
- tm
->tm_wday
);
577 assign_date(tm
, mday
, tm
->tm_mon
, tm
->tm_year
);
581 /* get numeric MMDDYY, mm/dd/yy, or dd.mm.yy
583 tlen
= (int)strlen(sc_token
);
584 mon
= atoi(sc_token
);
587 if (sc_tokid
== SLASH
|| sc_tokid
== DOT
) {
592 mday
= atoi(sc_token
);
593 if (token() == sep
) {
595 year
= atoi(sc_token
);
599 /* flip months and days for European timing
607 else if (tlen
== 6 || tlen
== 8) {
609 year
= (mon
% 10000) - TM_YEAR_BASE
;
620 panic("garbled time");
623 if (mon
< 0 || mon
> 11 || mday
< 1 || mday
> 31)
624 panic("garbled time");
626 assign_date(tm
, mday
, mon
, year
);
639 /* Global functions */
642 parsetime(int argc
, char **argv
)
644 /* Do the argument parsing, die if necessary, and return the time the job
647 time_t nowtimer
, runtimer
;
648 struct tm nowtime
, runtime
;
650 /* this MUST be initialized to zero for midnight/noon/teatime */
652 nowtimer
= time(NULL
);
653 nowtime
= *localtime(&nowtimer
);
657 runtime
.tm_isdst
= 0;
662 init_scanner(argc
-optind
, argv
+optind
);
669 /* now is optional prefix for PLUS/NEXT tree */
698 /* evil coding for TEATIME|NOON|MIDNIGHT - we've initialised
699 * hr to zero up above, then fall into this case in such a
700 * way so we add +12 +4 hours to it for teatime, +12 hours
701 * to it for noon, and nothing at all for midnight, then
702 * set our runtime to that hour before leaping into the
710 if (runtime
.tm_hour
>= hr
) {
714 runtime
.tm_hour
= hr
;
717 /* FALLTHROUGH to month setting */
721 } /* ugly case statement */
724 /* convert back to time_t
726 runtime
.tm_isdst
= -1;
727 runtimer
= mktime(&runtime
);
730 panic("garbled time");
732 if (nowtimer
> runtimer
)
733 panic("trying to travel back in time");