1 /* Parse dates for touch.
2 Copyright (C) 1989, 1990, 1991 Free Software Foundation Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Jim Kingdon and David MacKenzie. */
25 /* The following block of alloca-related preprocessor directives is here
26 solely to allow compilation by non GNU-C compilers of the C parser
27 produced from this file by old versions of bison. Newer versions of
28 bison include a block similar to this one in bison.simple. */
31 #define alloca __builtin_alloca
45 #include <sys/types.h>
53 /* Some old versions of bison generate parsers that use bcopy.
54 That loses on systems that don't provide the function, so we have
55 to redefine it here. */
56 #if !defined (HAVE_BCOPY) && defined (HAVE_MEMCPY) && !defined (bcopy)
57 #define bcopy(from, to, len) memcpy ((to), (from), (len))
62 /* Lexical analyzer's current scan position in the input string. */
65 /* The return value. */
70 /* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
71 as well as gratuitiously global symbol names, so we can have multiple
72 yacc generated parsers in the same program. Note that these are only
73 the variables produced by yacc. If other parser generators (bison,
74 byacc, etc) produce additional global names that conflict at link time,
75 then those parser generators need to be fixed instead of adding those
76 names to this list. */
78 #define yymaxdepth pt_maxdepth
79 #define yyparse pt_parse
81 #define yyerror pt_error
82 #define yylval pt_lval
83 #define yychar pt_char
84 #define yydebug pt_debug
85 #define yypact pt_pact
92 #define yyexca pt_exca
93 #define yyerrflag pt_errflag
94 #define yynerrs pt_nerrs
99 #define yystate pt_state
102 #define yy_yyv pt_yyv
104 #define yylloc pt_lloc
105 #define yyreds pt_reds /* With YYDEBUG defined */
106 #define yytoks pt_toks /* With YYDEBUG defined */
107 #define yylhs pt_yylhs
108 #define yylen pt_yylen
109 #define yydefred pt_yydefred
110 #define yydgoto pt_yydgoto
111 #define yysindex pt_yysindex
112 #define yyrindex pt_yyrindex
113 #define yygindex pt_yygindex
114 #define yytable pt_yytable
115 #define yycheck pt_yycheck
118 static int yyerror ();
126 digitpair
/* month */
128 digitpair
/* hours */
129 digitpair
/* minutes */
132 if
($1 >= 1 && $1 <= 12)
137 if
($2 >= 1 && $2 <= 31)
142 if
($3 >= 0 && $3 <= 23)
147 if
($4 >= 0 && $4 <= 59)
156 /* Deduce the century based on the year.
157 See POSIX.2 section 4.63.3. */
161 | digitpair digitpair
{
162 t.tm_year
= $1 * 100 + $2;
163 if
(t.tm_year
< 1900) {
172 /* Use current year. */
174 tmp
= localtime
(&now
);
175 t.tm_year
= tmp
->tm_year
;
179 seconds
: /* empty */ {
183 if
($2 >= 0 && $2 <= 61)
191 digitpair
: DIGIT DIGIT
{
201 if
(ch
>= '0' && ch
<= '9')
206 else if
(ch
== '.' || ch
== 0)
209 return
'?'; /* Cause an error. */
218 /* Parse a POSIX-style date and return it, or (time_t)-1 for an error. */
225 /* Let mktime decide whether it is daylight savings time. */
233 /* Parse a POSIX-style date and return it, or NULL for an error. */
239 if
(posixtime
(s
) == -1)