X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=recover-src%2Fuparse.c;h=f74d65d6953bce2f98c279da119ce4ee313e2a1d;hb=HEAD;hp=9a2010a2923fd9fdc10437d41812d6757d280b3e;hpb=d3b2175e084f88c8736ad7073eacbf4670147aec;p=debian%2Famanda diff --git a/recover-src/uparse.c b/recover-src/uparse.c index 9a2010a..f74d65d 100644 --- a/recover-src/uparse.c +++ b/recover-src/uparse.c @@ -1,24 +1,21 @@ -/* A Bison parser, made by GNU Bison 2.3. */ +/* A Bison parser, made by GNU Bison 2.5. */ -/* Skeleton implementation for Bison's Yacc-like parsers in C - - Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 - Free Software Foundation, Inc. - - This program is free software; you can redistribute it and/or modify +/* Bison implementation for Yacc-like parsers in C + + Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) - any later version. - + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work @@ -29,7 +26,7 @@ special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - + This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ @@ -47,7 +44,7 @@ #define YYBISON 1 /* Bison version. */ -#define YYBISON_VERSION "2.3" +#define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" @@ -55,91 +52,34 @@ /* Pure parsers. */ #define YYPURE 0 -/* Using locations. */ -#define YYLSP_NEEDED 0 - +/* Push parsers. */ +#define YYPUSH 0 +/* Pull parsers. */ +#define YYPULL 1 -/* Tokens. */ -#ifndef YYTOKENTYPE -# define YYTOKENTYPE - /* Put the tokens into the symbol table, so that GDB and other debuggers - know about them. */ - enum yytokentype { - LISTHOST = 258, - LISTDISK = 259, - SETHOST = 260, - SETDISK = 261, - SETDATE = 262, - SETTAPE = 263, - SETMODE = 264, - CD = 265, - CDX = 266, - QUIT = 267, - DHIST = 268, - LS = 269, - ADD = 270, - ADDX = 271, - EXTRACT = 272, - LIST = 273, - DELETE = 274, - DELETEX = 275, - PWD = 276, - CLEAR = 277, - HELP = 278, - LCD = 279, - LPWD = 280, - MODE = 281, - SMB = 282, - TAR = 283, - PATH = 284, - DATE = 285 - }; -#endif -/* Tokens. */ -#define LISTHOST 258 -#define LISTDISK 259 -#define SETHOST 260 -#define SETDISK 261 -#define SETDATE 262 -#define SETTAPE 263 -#define SETMODE 264 -#define CD 265 -#define CDX 266 -#define QUIT 267 -#define DHIST 268 -#define LS 269 -#define ADD 270 -#define ADDX 271 -#define EXTRACT 272 -#define LIST 273 -#define DELETE 274 -#define DELETEX 275 -#define PWD 276 -#define CLEAR 277 -#define HELP 278 -#define LCD 279 -#define LPWD 280 -#define MODE 281 -#define SMB 282 -#define TAR 283 -#define PATH 284 -#define DATE 285 - +/* Using locations. */ +#define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ -#line 31 "uparse.y" + +/* Line 268 of yacc.c */ +#line 32 "uparse.y" #include "amanda.h" #include "amrecover.h" +#define DATE_ALLOC_SIZE sizeof("YYYY-MM-DD-HH-MM-SS") /* includes null */ + void yyerror(char *s); extern int yylex(void); extern char * yytext; +/* Line 268 of yacc.c */ +#line 83 "uparse.c" /* Enabling traces. */ #ifndef YYDEBUG @@ -159,30 +99,118 @@ extern char * yytext; # define YYTOKEN_TABLE 0 #endif + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + LISTHOST = 258, + LISTDISK = 259, + LISTPROPERTY = 260, + SETHOST = 261, + SETDISK = 262, + SETDATE = 263, + SETTAPE = 264, + SETMODE = 265, + SETDEVICE = 266, + SETPROPERTY = 267, + CD = 268, + CDX = 269, + QUIT = 270, + DHIST = 271, + LS = 272, + ADD = 273, + ADDX = 274, + EXTRACT = 275, + DASH_H = 276, + LIST = 277, + DELETE = 278, + DELETEX = 279, + PWD = 280, + CLEAR = 281, + HELP = 282, + LCD = 283, + LPWD = 284, + MODE = 285, + SMB = 286, + TAR = 287, + APPEND = 288, + PRIORITY = 289, + SETTRANSLATE = 290, + NL = 291, + STRING = 292 + }; +#endif +/* Tokens. */ +#define LISTHOST 258 +#define LISTDISK 259 +#define LISTPROPERTY 260 +#define SETHOST 261 +#define SETDISK 262 +#define SETDATE 263 +#define SETTAPE 264 +#define SETMODE 265 +#define SETDEVICE 266 +#define SETPROPERTY 267 +#define CD 268 +#define CDX 269 +#define QUIT 270 +#define DHIST 271 +#define LS 272 +#define ADD 273 +#define ADDX 274 +#define EXTRACT 275 +#define DASH_H 276 +#define LIST 277 +#define DELETE 278 +#define DELETEX 279 +#define PWD 280 +#define CLEAR 281 +#define HELP 282 +#define LCD 283 +#define LPWD 284 +#define MODE 285 +#define SMB 286 +#define TAR 287 +#define APPEND 288 +#define PRIORITY 289 +#define SETTRANSLATE 290 +#define NL 291 +#define STRING 292 + + + + #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE -#line 42 "uparse.y" { + +/* Line 293 of yacc.c */ +#line 44 "uparse.y" + int intval; double floatval; char * strval; int subtok; -} -/* Line 187 of yacc.c. */ -#line 173 "uparse.c" - YYSTYPE; + + + +/* Line 293 of yacc.c */ +#line 202 "uparse.c" +} YYSTYPE; +# define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 -# define YYSTYPE_IS_TRIVIAL 1 #endif - /* Copy the second part of user declarations. */ -/* Line 216 of yacc.c. */ -#line 186 "uparse.c" +/* Line 343 of yacc.c */ +#line 214 "uparse.c" #ifdef short # undef short @@ -232,7 +260,7 @@ typedef short int yytype_int16; #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ -# if YYENABLE_NLS +# if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) @@ -257,14 +285,14 @@ typedef short int yytype_int16; #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int -YYID (int i) +YYID (int yyi) #else static int -YYID (i) - int i; +YYID (yyi) + int yyi; #endif { - return i; + return yyi; } #endif @@ -285,11 +313,11 @@ YYID (i) # define alloca _alloca # else # define YYSTACK_ALLOC alloca -# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ -# ifndef _STDLIB_H -# define _STDLIB_H 1 +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 # endif # endif # endif @@ -312,24 +340,24 @@ YYID (i) # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif -# if (defined __cplusplus && ! defined _STDLIB_H \ +# if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ -# ifndef _STDLIB_H -# define _STDLIB_H 1 +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc -# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free -# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif @@ -345,9 +373,9 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */ /* A type that is properly aligned for any stack member. */ union yyalloc { - yytype_int16 yyss; - YYSTYPE yyvs; - }; + yytype_int16 yyss_alloc; + YYSTYPE yyvs_alloc; +}; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) @@ -358,6 +386,27 @@ union yyalloc ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) +# define YYCOPY_NEEDED 1 + +/* Relocate STACK from its old location to the new one. The + local variables YYSIZE and YYSTACKSIZE give the old and new number of + elements in the stack, and YYPTR gives the new location of the + stack. Advance YYPTR to a properly aligned location for the next + stack. */ +# define YYSTACK_RELOCATE(Stack_alloc, Stack) \ + do \ + { \ + YYSIZE_T yynewbytes; \ + YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ + Stack = &yyptr->Stack_alloc; \ + yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ + yyptr += yynewbytes / sizeof (*yyptr); \ + } \ + while (YYID (0)) + +#endif + +#if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY @@ -375,42 +424,25 @@ union yyalloc while (YYID (0)) # endif # endif - -/* Relocate STACK from its old location to the new one. The - local variables YYSIZE and YYSTACKSIZE give the old and new number of - elements in the stack, and YYPTR gives the new location of the - stack. Advance YYPTR to a properly aligned location for the next - stack. */ -# define YYSTACK_RELOCATE(Stack) \ - do \ - { \ - YYSIZE_T yynewbytes; \ - YYCOPY (&yyptr->Stack, Stack, yysize); \ - Stack = &yyptr->Stack; \ - yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ - yyptr += yynewbytes / sizeof (*yyptr); \ - } \ - while (YYID (0)) - -#endif +#endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ -#define YYFINAL 55 +#define YYFINAL 107 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 45 +#define YYLAST 177 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 31 +#define YYNTOKENS 38 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 16 +#define YYNNTS 21 /* YYNRULES -- Number of rules. */ -#define YYNRULES 49 +#define YYNRULES 104 /* YYNRULES -- Number of states. */ -#define YYNSTATES 61 +#define YYNSTATES 166 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 -#define YYMAXUTOK 285 +#define YYMAXUTOK 292 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) @@ -446,46 +478,82 @@ static const yytype_uint8 yytranslate[] = 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30 + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ -static const yytype_uint8 yyprhs[] = +static const yytype_uint16 yyprhs[] = { 0, 0, 3, 5, 7, 9, 11, 13, 15, 17, - 19, 21, 23, 24, 26, 29, 31, 34, 37, 41, - 44, 47, 49, 52, 55, 58, 61, 63, 65, 68, - 70, 72, 74, 76, 78, 81, 84, 86, 89, 92, - 94, 97, 100, 102, 105, 108, 110, 112, 115, 117 + 19, 21, 23, 25, 27, 30, 33, 37, 40, 44, + 47, 50, 53, 58, 62, 66, 70, 73, 78, 82, + 87, 89, 93, 96, 100, 104, 110, 113, 117, 122, + 128, 132, 137, 142, 148, 151, 155, 159, 164, 168, + 172, 175, 179, 183, 186, 190, 194, 198, 202, 205, + 208, 212, 215, 219, 222, 225, 228, 231, 235, 238, + 242, 245, 248, 251, 254, 257, 260, 263, 266, 270, + 273, 275, 279, 282, 284, 288, 291, 293, 297, 300, + 302, 305, 308, 312, 316, 319, 322, 325, 328, 331, + 334, 337, 339, 342, 345 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int8 yyrhs[] = { - 32, 0, -1, 33, -1, 34, -1, 35, -1, 36, - -1, 38, -1, 40, -1, 42, -1, 44, -1, 45, - -1, 46, -1, -1, 3, -1, 4, 29, -1, 4, - -1, 7, 30, -1, 5, 29, -1, 6, 29, 29, - -1, 6, 29, -1, 8, 29, -1, 8, -1, 10, - 29, -1, 11, 29, -1, 9, 27, -1, 9, 28, - -1, 13, -1, 14, -1, 18, 29, -1, 18, -1, - 21, -1, 22, -1, 26, -1, 12, -1, 15, 37, - -1, 37, 29, -1, 29, -1, 16, 39, -1, 39, - 29, -1, 29, -1, 19, 41, -1, 41, 29, -1, - 29, -1, 20, 43, -1, 43, 29, -1, 29, -1, - 25, -1, 24, 29, -1, 23, -1, 17, -1 + 39, 0, -1, 40, -1, 41, -1, 42, -1, 43, + -1, 44, -1, 46, -1, 48, -1, 50, -1, 52, + -1, 53, -1, 54, -1, 55, -1, 3, 36, -1, + 3, 57, -1, 4, 37, 36, -1, 4, 36, -1, + 4, 37, 57, -1, 5, 36, -1, 5, 57, -1, + 35, 36, -1, 35, 37, 57, 36, -1, 35, 37, + 36, -1, 6, 37, 36, -1, 6, 37, 57, -1, + 6, 36, -1, 7, 37, 37, 36, -1, 7, 37, + 36, -1, 7, 37, 37, 57, -1, 7, -1, 9, + 37, 36, -1, 9, 36, -1, 9, 37, 57, -1, + 11, 37, 36, -1, 11, 21, 37, 37, 36, -1, + 11, 36, -1, 11, 37, 57, -1, 11, 21, 37, + 36, -1, 11, 21, 37, 37, 57, -1, 12, 37, + 56, -1, 12, 33, 37, 56, -1, 12, 34, 37, + 56, -1, 12, 33, 34, 37, 56, -1, 12, 36, + -1, 12, 33, 36, -1, 12, 34, 36, -1, 12, + 33, 34, 36, -1, 13, 37, 36, -1, 13, 37, + 57, -1, 13, 36, -1, 14, 37, 36, -1, 14, + 37, 57, -1, 14, 36, -1, 10, 31, 36, -1, + 10, 32, 36, -1, 10, 31, 57, -1, 10, 32, + 57, -1, 10, 57, -1, 10, 36, -1, 8, 37, + 36, -1, 8, 36, -1, 8, 37, 57, -1, 16, + 36, -1, 16, 57, -1, 17, 36, -1, 17, 57, + -1, 22, 37, 36, -1, 22, 36, -1, 22, 37, + 57, -1, 25, 36, -1, 25, 57, -1, 26, 36, + -1, 26, 57, -1, 30, 36, -1, 30, 57, -1, + 15, 36, -1, 15, 57, -1, 18, 45, 36, -1, + 45, 37, -1, 37, -1, 19, 47, 36, -1, 47, + 37, -1, 37, -1, 23, 49, 36, -1, 49, 37, + -1, 37, -1, 24, 51, 36, -1, 51, 37, -1, + 37, -1, 29, 36, -1, 29, 57, -1, 28, 37, + 36, -1, 28, 37, 57, -1, 28, 36, -1, 27, + 36, -1, 27, 57, -1, 20, 36, -1, 20, 57, + -1, 37, 58, -1, 37, 56, -1, 36, -1, 37, + 58, -1, 37, 58, -1, 36, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ -static const yytype_uint8 yyrline[] = +static const yytype_uint16 yyrline[] = { - 0, 65, 65, 66, 67, 68, 69, 70, 71, 72, - 73, 74, 75, 84, 85, 86, 87, 88, 89, 90, - 91, 92, 93, 94, 95, 100, 108, 109, 110, 111, - 112, 113, 114, 118, 122, 126, 127, 131, 135, 136, - 140, 144, 145, 149, 153, 154, 158, 159, 166, 170 + 0, 69, 69, 70, 71, 72, 73, 74, 75, 76, + 77, 78, 79, 80, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, + 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, + 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, + 133, 179, 180, 184, 185, 186, 187, 188, 189, 190, + 191, 192, 193, 194, 195, 196, 200, 201, 205, 209, + 210, 214, 218, 219, 223, 227, 228, 232, 236, 237, + 241, 242, 243, 247, 248, 252, 253, 257, 258, 262, + 271, 272, 276, 280, 281 }; #endif @@ -494,14 +562,17 @@ static const yytype_uint8 yyrline[] = First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { - "$end", "error", "$undefined", "LISTHOST", "LISTDISK", "SETHOST", - "SETDISK", "SETDATE", "SETTAPE", "SETMODE", "CD", "CDX", "QUIT", "DHIST", - "LS", "ADD", "ADDX", "EXTRACT", "LIST", "DELETE", "DELETEX", "PWD", - "CLEAR", "HELP", "LCD", "LPWD", "MODE", "SMB", "TAR", "PATH", "DATE", - "$accept", "ucommand", "set_command", "display_command", "quit_command", - "add_command", "add_path", "addx_command", "addx_path", "delete_command", - "delete_path", "deletex_command", "deletex_path", "local_command", - "help_command", "extract_command", 0 + "$end", "error", "$undefined", "LISTHOST", "LISTDISK", "LISTPROPERTY", + "SETHOST", "SETDISK", "SETDATE", "SETTAPE", "SETMODE", "SETDEVICE", + "SETPROPERTY", "CD", "CDX", "QUIT", "DHIST", "LS", "ADD", "ADDX", + "EXTRACT", "DASH_H", "LIST", "DELETE", "DELETEX", "PWD", "CLEAR", "HELP", + "LCD", "LPWD", "MODE", "SMB", "TAR", "APPEND", "PRIORITY", + "SETTRANSLATE", "NL", "STRING", "$accept", "ucommand", "set_command", + "setdate_command", "display_command", "quit_command", "add_command", + "add_path", "addx_command", "addx_path", "delete_command", "delete_path", + "deletex_command", "deletex_path", "local_command", "help_command", + "extract_command", "invalid_command", "property_value", "invalid_string", + "bogus_string", 0 }; #endif @@ -513,93 +584,158 @@ static const yytype_uint16 yytoknum[] = 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, - 285 + 285, 286, 287, 288, 289, 290, 291, 292 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { - 0, 31, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 33, 33, 33, 33, 33, 33, 33, - 33, 33, 33, 33, 33, 33, 34, 34, 34, 34, - 34, 34, 34, 35, 36, 37, 37, 38, 39, 39, - 40, 41, 41, 42, 43, 43, 44, 44, 45, 46 + 0, 38, 39, 39, 39, 39, 39, 39, 39, 39, + 39, 39, 39, 39, 40, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 41, 41, 41, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 43, 43, 44, 45, + 45, 46, 47, 47, 48, 49, 49, 50, 51, 51, + 52, 52, 52, 52, 52, 53, 53, 54, 54, 55, + 56, 56, 57, 58, 58 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 0, 1, 2, 1, 2, 2, 3, 2, - 2, 1, 2, 2, 2, 2, 1, 1, 2, 1, - 1, 1, 1, 1, 2, 2, 1, 2, 2, 1, - 2, 2, 1, 2, 2, 1, 1, 2, 1, 1 + 1, 1, 1, 1, 2, 2, 3, 2, 3, 2, + 2, 2, 4, 3, 3, 3, 2, 4, 3, 4, + 1, 3, 2, 3, 3, 5, 2, 3, 4, 5, + 3, 4, 4, 5, 2, 3, 3, 4, 3, 3, + 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, + 3, 2, 3, 2, 2, 2, 2, 3, 2, 3, + 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, + 1, 3, 2, 1, 3, 2, 1, 3, 2, 1, + 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, + 2, 1, 2, 2, 1 }; -/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state - STATE-NUM when YYTABLE doesn't specify something else to do. Zero +/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. + Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint8 yydefact[] = { - 12, 13, 15, 0, 0, 0, 21, 0, 0, 0, - 33, 26, 27, 0, 0, 49, 29, 0, 0, 30, - 31, 48, 0, 46, 32, 0, 2, 3, 4, 5, - 6, 7, 8, 9, 10, 11, 14, 17, 19, 16, - 20, 24, 25, 22, 23, 36, 34, 39, 37, 28, - 42, 40, 45, 43, 47, 1, 18, 35, 38, 41, - 44 + 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 13, 14, 0, 15, 17, 0, 19, 20, + 26, 0, 0, 61, 0, 32, 0, 0, 0, 59, + 58, 0, 36, 0, 0, 0, 44, 0, 50, 0, + 53, 0, 76, 77, 63, 64, 65, 66, 80, 0, + 83, 0, 97, 98, 68, 0, 86, 0, 89, 0, + 70, 71, 72, 73, 95, 96, 94, 0, 90, 91, + 74, 75, 21, 0, 104, 0, 99, 1, 102, 16, + 18, 24, 25, 28, 0, 60, 62, 31, 33, 54, + 56, 55, 57, 0, 34, 37, 0, 45, 0, 46, + 0, 101, 0, 40, 48, 49, 51, 52, 78, 79, + 81, 82, 67, 69, 84, 85, 87, 88, 92, 93, + 23, 0, 103, 27, 29, 38, 0, 47, 0, 41, + 42, 100, 22, 35, 39, 43 }; /* YYDEFGOTO[NTERM-NUM]. */ -static const yytype_int8 yydefgoto[] = +static const yytype_int16 yydefgoto[] = { - -1, 25, 26, 27, 28, 29, 46, 30, 48, 31, - 51, 32, 53, 33, 34, 35 + -1, 30, 31, 32, 33, 34, 35, 79, 36, 81, + 37, 87, 38, 89, 39, 40, 41, 42, 133, 45, + 106 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -6 -static const yytype_int8 yypact[] = +#define YYPACT_NINF -127 +static const yytype_int16 yypact[] = { - -3, -6, -5, -1, 0, 1, 3, -2, 4, 5, - -6, -6, -6, 6, 7, -6, 8, 9, 10, -6, - -6, -6, 11, -6, -6, 27, -6, -6, -6, -6, - -6, -6, -6, -6, -6, -6, -6, -6, 12, -6, - -6, -6, -6, -6, -6, -6, 13, -6, 14, -6, - -6, 15, -6, 16, -6, -6, -6, -6, -6, -6, - -6 + 109, -29, 2, 4, 6, -34, 9, 13, -6, -8, + 0, 20, 22, 27, 33, 35, -28, -19, 37, 39, + -15, -10, 41, 43, 47, 49, 51, 53, 55, 59, + 52, -127, -127, -127, -127, -127, -127, -127, -127, -127, + -127, -127, -127, -127, 59, -127, -127, 61, -127, -127, + -127, 65, 67, -127, 69, -127, 71, 73, 104, -127, + -127, -2, -127, 106, -20, 111, -127, 113, -127, 115, + -127, 118, -127, -127, -127, -127, -127, -127, -127, 120, + -127, 122, -127, -127, -127, 124, -127, 126, -127, 128, + -127, -127, -127, -127, -127, -127, -127, 130, -127, -127, + -127, -127, -127, 132, -127, 59, -127, -127, -127, -127, + -127, -127, -127, -127, 134, -127, -127, -127, -127, -127, + -127, -127, -127, 136, -127, -127, 138, -127, 113, -127, + 113, -127, 113, -127, -127, -127, -127, -127, -127, -127, + -127, -127, -127, -127, -127, -127, -127, -127, -127, -127, + -127, 11, -127, -127, -127, -127, 140, -127, 113, -127, + -127, -127, -127, -127, -127, -127 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int8 yypgoto[] = { - -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, - -6, -6, -6, -6, -6, -6 + -127, -127, -127, -127, -127, -127, -127, -127, -127, -127, + -127, -127, -127, -127, -127, -127, -127, -127, -126, -3, + -43 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which - number is the opposite. If zero, do what YYDEFACT says. - If YYTABLE_NINF, syntax error. */ + number is the opposite. If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -1 static const yytype_uint8 yytable[] = { - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, - 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 36, 41, 42, 55, 37, 38, - 0, 39, 40, 43, 44, 45, 47, 49, 50, 52, - 54, 56, 57, 58, 59, 60 + 49, 108, 159, 52, 160, 60, 161, 43, 44, 78, + 73, 75, 77, 61, 126, 83, 127, 128, 80, 91, + 93, 95, 86, 99, 101, 57, 58, 88, 62, 63, + 59, 44, 165, 64, 65, 123, 66, 67, 46, 47, + 48, 44, 50, 51, 110, 53, 54, 162, 112, 55, + 56, 116, 107, 118, 120, 122, 68, 69, 70, 71, + 125, 0, 152, 72, 44, 0, 135, 0, 137, 74, + 44, 76, 44, 82, 44, 84, 85, 90, 44, 92, + 44, 0, 143, 94, 44, 96, 97, 98, 44, 100, + 44, 102, 103, 0, 149, 104, 105, 109, 44, 0, + 151, 111, 44, 113, 114, 115, 44, 117, 44, 119, + 44, 154, 1, 2, 3, 4, 5, 6, 7, 8, + 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, + 0, 19, 20, 21, 22, 23, 24, 25, 26, 27, + 121, 44, 124, 44, 28, 0, 29, 129, 130, 131, + 132, 134, 44, 164, 136, 44, 138, 139, 140, 141, + 142, 44, 144, 145, 146, 147, 148, 44, 150, 44, + 153, 44, 155, 156, 157, 158, 163, 44 }; -static const yytype_int8 yycheck[] = +#define yypact_value_is_default(yystate) \ + ((yystate) == (-127)) + +#define yytable_value_is_error(yytable_value) \ + YYID (0) + +static const yytype_int16 yycheck[] = { - 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, - 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 29, 27, 28, 0, 29, 29, - -1, 30, 29, 29, 29, 29, 29, 29, 29, 29, - 29, 29, 29, 29, 29, 29 + 3, 44, 128, 37, 130, 8, 132, 36, 37, 37, + 13, 14, 15, 21, 34, 18, 36, 37, 37, 22, + 23, 24, 37, 26, 27, 31, 32, 37, 36, 37, + 36, 37, 158, 33, 34, 37, 36, 37, 36, 37, + 36, 37, 36, 37, 47, 36, 37, 36, 51, 36, + 37, 54, 0, 56, 57, 58, 36, 37, 36, 37, + 63, -1, 105, 36, 37, -1, 69, -1, 71, 36, + 37, 36, 37, 36, 37, 36, 37, 36, 37, 36, + 37, -1, 85, 36, 37, 36, 37, 36, 37, 36, + 37, 36, 37, -1, 97, 36, 37, 36, 37, -1, + 103, 36, 37, 36, 37, 36, 37, 36, 37, 36, + 37, 114, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + -1, 22, 23, 24, 25, 26, 27, 28, 29, 30, + 36, 37, 36, 37, 35, -1, 37, 36, 37, 36, + 37, 36, 37, 156, 36, 37, 36, 37, 36, 37, + 36, 37, 36, 37, 36, 37, 36, 37, 36, 37, + 36, 37, 36, 37, 36, 37, 36, 37 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -607,12 +743,22 @@ static const yytype_int8 yycheck[] = static const yytype_uint8 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, - 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 32, 33, 34, 35, 36, - 38, 40, 42, 44, 45, 46, 29, 29, 29, 30, - 29, 27, 28, 29, 29, 29, 37, 29, 39, 29, - 29, 41, 29, 43, 29, 0, 29, 29, 29, 29, - 29 + 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, + 23, 24, 25, 26, 27, 28, 29, 30, 35, 37, + 39, 40, 41, 42, 43, 44, 46, 48, 50, 52, + 53, 54, 55, 36, 37, 57, 36, 37, 36, 57, + 36, 37, 37, 36, 37, 36, 37, 31, 32, 36, + 57, 21, 36, 37, 33, 34, 36, 37, 36, 37, + 36, 37, 36, 57, 36, 57, 36, 57, 37, 45, + 37, 47, 36, 57, 36, 37, 37, 49, 37, 51, + 36, 57, 36, 57, 36, 57, 36, 37, 36, 57, + 36, 57, 36, 37, 36, 37, 58, 0, 58, 36, + 57, 36, 57, 36, 37, 36, 57, 36, 57, 36, + 57, 36, 57, 37, 36, 57, 34, 36, 37, 36, + 37, 36, 37, 56, 36, 57, 36, 57, 36, 37, + 36, 37, 36, 57, 36, 37, 36, 37, 36, 57, + 36, 57, 58, 36, 57, 36, 37, 36, 37, 56, + 56, 56, 36, 36, 57, 56 }; #define yyerrok (yyerrstatus = 0) @@ -627,9 +773,18 @@ static const yytype_uint8 yystos[] = /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. - Once GCC version 2 has supplanted version 1, this can go. */ + Once GCC version 2 has supplanted version 1, this can go. However, + YYFAIL appears to be in use. Nevertheless, it is formally deprecated + in Bison 2.4.2's NEWS entry, where a plan to phase it out is + discussed. */ #define YYFAIL goto yyerrlab +#if defined YYFAIL + /* This is here to suppress warnings from the GCC cpp's + -Wunused-macros. Normally we don't worry about that warning, but + some users do, and we want to make it easy for users to remove + YYFAIL uses, which will produce warnings from Bison 2.5. */ +#endif #define YYRECOVERING() (!!yyerrstatus) @@ -639,7 +794,6 @@ do \ { \ yychar = (Token); \ yylval = (Value); \ - yytoken = YYTRANSLATE (yychar); \ YYPOPSTACK (1); \ goto yybackup; \ } \ @@ -681,19 +835,10 @@ while (YYID (0)) #endif -/* YY_LOCATION_PRINT -- Print the location on the stream. - This macro was not mandated originally: define only if we know - we won't break user code: when these are the locations we know. */ +/* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT -# if YYLTYPE_IS_TRIVIAL -# define YY_LOCATION_PRINT(File, Loc) \ - fprintf (File, "%d.%d-%d.%d", \ - (Loc).first_line, (Loc).first_column, \ - (Loc).last_line, (Loc).last_column) -# else -# define YY_LOCATION_PRINT(File, Loc) ((void) 0) -# endif +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif @@ -797,17 +942,20 @@ yy_symbol_print (yyoutput, yytype, yyvaluep) #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void -yy_stack_print (yytype_int16 *bottom, yytype_int16 *top) +yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void -yy_stack_print (bottom, top) - yytype_int16 *bottom; - yytype_int16 *top; +yy_stack_print (yybottom, yytop) + yytype_int16 *yybottom; + yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); - for (; bottom <= top; ++bottom) - YYFPRINTF (stderr, " %d", *bottom); + for (; yybottom <= yytop; yybottom++) + { + int yybot = *yybottom; + YYFPRINTF (stderr, " %d", yybot); + } YYFPRINTF (stderr, "\n"); } @@ -841,11 +989,11 @@ yy_reduce_print (yyvsp, yyrule) /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { - fprintf (stderr, " $%d = ", yyi + 1); + YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); - fprintf (stderr, "\n"); + YYFPRINTF (stderr, "\n"); } } @@ -882,7 +1030,6 @@ int yydebug; # define YYMAXDEPTH 10000 #endif - #if YYERROR_VERBOSE @@ -985,115 +1132,142 @@ yytnamerr (char *yyres, const char *yystr) } # endif -/* Copy into YYRESULT an error message about the unexpected token - YYCHAR while in state YYSTATE. Return the number of bytes copied, - including the terminating null byte. If YYRESULT is null, do not - copy anything; just return the number of bytes that would be - copied. As a special case, return 0 if an ordinary "syntax error" - message will do. Return YYSIZE_MAXIMUM if overflow occurs during - size calculation. */ -static YYSIZE_T -yysyntax_error (char *yyresult, int yystate, int yychar) -{ - int yyn = yypact[yystate]; +/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message + about the unexpected token YYTOKEN for the state stack whose top is + YYSSP. - if (! (YYPACT_NINF < yyn && yyn <= YYLAST)) - return 0; - else + Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is + not large enough to hold the message. In that case, also set + *YYMSG_ALLOC to the required number of bytes. Return 2 if the + required number of bytes is too large to store. */ +static int +yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, + yytype_int16 *yyssp, int yytoken) +{ + YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); + YYSIZE_T yysize = yysize0; + YYSIZE_T yysize1; + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + /* Internationalized format string. */ + const char *yyformat = 0; + /* Arguments of yyformat. */ + char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + /* Number of reported tokens (one for the "unexpected", one per + "expected"). */ + int yycount = 0; + + /* There are many possibilities here to consider: + - Assume YYFAIL is not used. It's too flawed to consider. See + + for details. YYERROR is fine as it does not invoke this + function. + - If this state is a consistent state with a default action, then + the only way this function was invoked is if the default action + is an error action. In that case, don't check for expected + tokens because there are none. + - The only way there can be no lookahead present (in yychar) is if + this state is a consistent state with a default action. Thus, + detecting the absence of a lookahead is sufficient to determine + that there is no unexpected or expected token to report. In that + case, just report a simple "syntax error". + - Don't assume there isn't a lookahead just because this state is a + consistent state with a default action. There might have been a + previous inconsistent state, consistent state with a non-default + action, or user semantic action that manipulated yychar. + - Of course, the expected token list depends on states to have + correct lookahead information, and it depends on the parser not + to perform extra reductions after fetching a lookahead from the + scanner and before detecting a syntax error. Thus, state merging + (from LALR or IELR) and default reductions corrupt the expected + token list. However, the list is correct for canonical LR with + one exception: it will still contain any token that will not be + accepted due to an error action in a later state. + */ + if (yytoken != YYEMPTY) { - int yytype = YYTRANSLATE (yychar); - YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]); - YYSIZE_T yysize = yysize0; - YYSIZE_T yysize1; - int yysize_overflow = 0; - enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; - char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; - int yyx; - -# if 0 - /* This is so xgettext sees the translatable formats that are - constructed on the fly. */ - YY_("syntax error, unexpected %s"); - YY_("syntax error, unexpected %s, expecting %s"); - YY_("syntax error, unexpected %s, expecting %s or %s"); - YY_("syntax error, unexpected %s, expecting %s or %s or %s"); - YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"); -# endif - char *yyfmt; - char const *yyf; - static char const yyunexpected[] = "syntax error, unexpected %s"; - static char const yyexpecting[] = ", expecting %s"; - static char const yyor[] = " or %s"; - char yyformat[sizeof yyunexpected - + sizeof yyexpecting - 1 - + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2) - * (sizeof yyor - 1))]; - char const *yyprefix = yyexpecting; - - /* Start YYX at -YYN if negative to avoid negative indexes in - YYCHECK. */ - int yyxbegin = yyn < 0 ? -yyn : 0; - - /* Stay within bounds of both yycheck and yytname. */ - int yychecklim = YYLAST - yyn + 1; - int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; - int yycount = 1; - - yyarg[0] = yytname[yytype]; - yyfmt = yystpcpy (yyformat, yyunexpected); - - for (yyx = yyxbegin; yyx < yyxend; ++yyx) - if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) - { - if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) - { - yycount = 1; - yysize = yysize0; - yyformat[sizeof yyunexpected - 1] = '\0'; - break; - } - yyarg[yycount++] = yytname[yyx]; - yysize1 = yysize + yytnamerr (0, yytname[yyx]); - yysize_overflow |= (yysize1 < yysize); - yysize = yysize1; - yyfmt = yystpcpy (yyfmt, yyprefix); - yyprefix = yyor; - } + int yyn = yypact[*yyssp]; + yyarg[yycount++] = yytname[yytoken]; + if (!yypact_value_is_default (yyn)) + { + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. In other words, skip the first -YYN actions for + this state because they are default actions. */ + int yyxbegin = yyn < 0 ? -yyn : 0; + /* Stay within bounds of both yycheck and yytname. */ + int yychecklim = YYLAST - yyn + 1; + int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; + int yyx; + + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR + && !yytable_value_is_error (yytable[yyx + yyn])) + { + if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + yycount = 1; + yysize = yysize0; + break; + } + yyarg[yycount++] = yytname[yyx]; + yysize1 = yysize + yytnamerr (0, yytname[yyx]); + if (! (yysize <= yysize1 + && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) + return 2; + yysize = yysize1; + } + } + } - yyf = YY_(yyformat); - yysize1 = yysize + yystrlen (yyf); - yysize_overflow |= (yysize1 < yysize); - yysize = yysize1; + switch (yycount) + { +# define YYCASE_(N, S) \ + case N: \ + yyformat = S; \ + break + YYCASE_(0, YY_("syntax error")); + YYCASE_(1, YY_("syntax error, unexpected %s")); + YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); + YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); + YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); + YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); +# undef YYCASE_ + } - if (yysize_overflow) - return YYSIZE_MAXIMUM; + yysize1 = yysize + yystrlen (yyformat); + if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) + return 2; + yysize = yysize1; - if (yyresult) - { - /* Avoid sprintf, as that infringes on the user's name space. - Don't have undefined behavior even if the translation - produced a string with the wrong number of "%s"s. */ - char *yyp = yyresult; - int yyi = 0; - while ((*yyp = *yyf) != '\0') - { - if (*yyp == '%' && yyf[1] == 's' && yyi < yycount) - { - yyp += yytnamerr (yyp, yyarg[yyi++]); - yyf += 2; - } - else - { - yyp++; - yyf++; - } - } - } - return yysize; + if (*yymsg_alloc < yysize) + { + *yymsg_alloc = 2 * yysize; + if (! (yysize <= *yymsg_alloc + && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) + *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; + return 1; } + + /* Avoid sprintf, as that infringes on the user's name space. + Don't have undefined behavior even if the translation + produced a string with the wrong number of "%s"s. */ + { + char *yyp = *yymsg; + int yyi = 0; + while ((*yyp = *yyformat) != '\0') + if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) + { + yyp += yytnamerr (yyp, yyarg[yyi++]); + yyformat += 2; + } + else + { + yyp++; + yyformat++; + } + } + return 0; } #endif /* YYERROR_VERBOSE */ - /*-----------------------------------------------. | Release the memory associated to this symbol. | @@ -1125,10 +1299,9 @@ yydestruct (yymsg, yytype, yyvaluep) break; } } - -/* Prevent warnings from -Wmissing-prototypes. */ +/* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); @@ -1144,18 +1317,16 @@ int yyparse (); #endif /* ! YYPARSE_PARAM */ - -/* The look-ahead symbol. */ +/* The lookahead symbol. */ int yychar; -/* The semantic value of the look-ahead symbol. */ +/* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; - /*----------. | yyparse. | `----------*/ @@ -1182,66 +1353,66 @@ yyparse () #endif #endif { - - int yystate; - int yyn; - int yyresult; - /* Number of tokens to shift before error messages enabled. */ - int yyerrstatus; - /* Look-ahead token as an internal (translated) token number. */ - int yytoken = 0; -#if YYERROR_VERBOSE - /* Buffer for error messages, and its allocated size. */ - char yymsgbuf[128]; - char *yymsg = yymsgbuf; - YYSIZE_T yymsg_alloc = sizeof yymsgbuf; -#endif - - /* Three stacks and their tools: - `yyss': related to states, - `yyvs': related to semantic values, - `yyls': related to locations. + int yystate; + /* Number of tokens to shift before error messages enabled. */ + int yyerrstatus; - Refer to the stacks thru separate pointers, to allow yyoverflow - to reallocate them elsewhere. */ + /* The stacks and their tools: + `yyss': related to states. + `yyvs': related to semantic values. - /* The state stack. */ - yytype_int16 yyssa[YYINITDEPTH]; - yytype_int16 *yyss = yyssa; - yytype_int16 *yyssp; + Refer to the stacks thru separate pointers, to allow yyoverflow + to reallocate them elsewhere. */ - /* The semantic value stack. */ - YYSTYPE yyvsa[YYINITDEPTH]; - YYSTYPE *yyvs = yyvsa; - YYSTYPE *yyvsp; + /* The state stack. */ + yytype_int16 yyssa[YYINITDEPTH]; + yytype_int16 *yyss; + yytype_int16 *yyssp; + /* The semantic value stack. */ + YYSTYPE yyvsa[YYINITDEPTH]; + YYSTYPE *yyvs; + YYSTYPE *yyvsp; + YYSIZE_T yystacksize; -#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) - - YYSIZE_T yystacksize = YYINITDEPTH; - + int yyn; + int yyresult; + /* Lookahead token as an internal (translated) token number. */ + int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; +#if YYERROR_VERBOSE + /* Buffer for error messages, and its allocated size. */ + char yymsgbuf[128]; + char *yymsg = yymsgbuf; + YYSIZE_T yymsg_alloc = sizeof yymsgbuf; +#endif + +#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; + yytoken = 0; + yyss = yyssa; + yyvs = yyvsa; + yystacksize = YYINITDEPTH; + YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; - yychar = YYEMPTY; /* Cause a token to be read. */ + yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ - yyssp = yyss; yyvsp = yyvs; @@ -1271,7 +1442,6 @@ yyparse () YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; - /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might @@ -1279,7 +1449,6 @@ yyparse () yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), - &yystacksize); yyss = yyss1; @@ -1302,9 +1471,8 @@ yyparse () (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; - YYSTACK_RELOCATE (yyss); - YYSTACK_RELOCATE (yyvs); - + YYSTACK_RELOCATE (yyss_alloc, yyss); + YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); @@ -1315,7 +1483,6 @@ yyparse () yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; - YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); @@ -1325,6 +1492,9 @@ yyparse () YYDPRINTF ((stderr, "Entering state %d\n", yystate)); + if (yystate == YYFINAL) + YYACCEPT; + goto yybackup; /*-----------. @@ -1333,16 +1503,16 @@ yyparse () yybackup: /* Do appropriate processing given the current state. Read a - look-ahead token if we need one and don't already have one. */ + lookahead token if we need one and don't already have one. */ - /* First try to decide what to do without reference to look-ahead token. */ + /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; - if (yyn == YYPACT_NINF) + if (yypact_value_is_default (yyn)) goto yydefault; - /* Not known => get a look-ahead token if don't already have one. */ + /* Not known => get a lookahead token if don't already have one. */ - /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */ + /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); @@ -1368,26 +1538,22 @@ yybackup: yyn = yytable[yyn]; if (yyn <= 0) { - if (yyn == 0 || yyn == YYTABLE_NINF) - goto yyerrlab; + if (yytable_value_is_error (yyn)) + goto yyerrlab; yyn = -yyn; goto yyreduce; } - if (yyn == YYFINAL) - YYACCEPT; - /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; - /* Shift the look-ahead token. */ + /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); - /* Discard the shifted token unless it is eof. */ - if (yychar != YYEOF) - yychar = YYEMPTY; + /* Discard the shifted token. */ + yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; @@ -1426,197 +1592,685 @@ yyreduce: YY_REDUCE_PRINT (yyn); switch (yyn) { - case 12: -#line 75 "uparse.y" - { - char * errstr = vstralloc("Invalid command: ", yytext, NULL); - yyerror(errstr); - amfree(errstr); - YYERROR; - } - break; + case 14: - case 13: +/* Line 1806 of yacc.c */ #line 84 "uparse.y" { list_host(); } break; - case 14: + case 15: + +/* Line 1806 of yacc.c */ #line 85 "uparse.y" - { list_disk((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + { yyerror("Invalid argument"); } break; - case 15: + case 16: + +/* Line 1806 of yacc.c */ #line 86 "uparse.y" - { list_disk(NULL); } + { list_disk((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } break; - case 16: + case 17: + +/* Line 1806 of yacc.c */ #line 87 "uparse.y" - { set_date((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + { list_disk(NULL); } break; - case 17: + case 18: + +/* Line 1806 of yacc.c */ #line 88 "uparse.y" - { set_host((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (3)].strval)); } break; - case 18: + case 19: + +/* Line 1806 of yacc.c */ #line 89 "uparse.y" - { set_disk((yyvsp[(2) - (3)].strval), (yyvsp[(3) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(3) - (3)].strval)); } + { list_property(); } break; - case 19: + case 20: + +/* Line 1806 of yacc.c */ #line 90 "uparse.y" - { set_disk((yyvsp[(2) - (2)].strval), NULL); amfree((yyvsp[(2) - (2)].strval)); } + { yyerror("Invalid argument"); } break; - case 20: + case 21: + +/* Line 1806 of yacc.c */ #line 91 "uparse.y" - { set_tape((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + { set_translate(NULL); } break; - case 21: + case 22: + +/* Line 1806 of yacc.c */ #line 92 "uparse.y" - { set_tape(""); } + { yyerror("Invalid argument"); } break; - case 22: + case 23: + +/* Line 1806 of yacc.c */ #line 93 "uparse.y" - { cd_glob((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + { set_translate((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } break; - case 23: + case 24: + +/* Line 1806 of yacc.c */ #line 94 "uparse.y" - { cd_regex((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + { set_host((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } break; - case 24: + case 25: + +/* Line 1806 of yacc.c */ #line 95 "uparse.y" - { -#ifdef SAMBA_CLIENT - set_mode(SAMBA_SMBCLIENT); -#endif /* SAMBA_CLIENT */ - } + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (3)].strval)); } break; - case 25: + case 26: + +/* Line 1806 of yacc.c */ +#line 96 "uparse.y" + { yyerror("Argument required"); } + break; + + case 27: + +/* Line 1806 of yacc.c */ +#line 97 "uparse.y" + { set_disk((yyvsp[(2) - (4)].strval), (yyvsp[(3) - (4)].strval)); amfree((yyvsp[(2) - (4)].strval)); amfree((yyvsp[(3) - (4)].strval)); } + break; + + case 28: + +/* Line 1806 of yacc.c */ +#line 98 "uparse.y" + { set_disk((yyvsp[(2) - (3)].strval), NULL); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 29: + +/* Line 1806 of yacc.c */ +#line 99 "uparse.y" + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (4)].strval)); amfree((yyvsp[(3) - (4)].strval)); } + break; + + case 30: + +/* Line 1806 of yacc.c */ #line 100 "uparse.y" - { -#ifdef SAMBA_CLIENT - set_mode(SAMBA_TAR); -#endif /* SAMBA_CLIENT */ - } + { yyerror("Argument required"); } break; - case 26: + case 31: + +/* Line 1806 of yacc.c */ +#line 101 "uparse.y" + { set_tape((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 32: + +/* Line 1806 of yacc.c */ +#line 102 "uparse.y" + { set_tape("default"); } + break; + + case 33: + +/* Line 1806 of yacc.c */ +#line 103 "uparse.y" + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 34: + +/* Line 1806 of yacc.c */ +#line 104 "uparse.y" + { set_device(NULL, (yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 35: + +/* Line 1806 of yacc.c */ +#line 105 "uparse.y" + { set_device((yyvsp[(3) - (5)].strval), (yyvsp[(4) - (5)].strval)); amfree((yyvsp[(3) - (5)].strval)); amfree((yyvsp[(4) - (5)].strval)); } + break; + + case 36: + +/* Line 1806 of yacc.c */ +#line 106 "uparse.y" + { set_device(NULL, NULL); } + break; + + case 37: + +/* Line 1806 of yacc.c */ +#line 107 "uparse.y" + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 38: + +/* Line 1806 of yacc.c */ #line 108 "uparse.y" - { list_disk_history(); } + { yyerror("Invalid argument"); amfree((yyvsp[(3) - (4)].strval)); } break; - case 27: + case 39: + +/* Line 1806 of yacc.c */ #line 109 "uparse.y" - { list_directory(); } + { yyerror("Invalid argument"); amfree((yyvsp[(3) - (5)].strval)); amfree((yyvsp[(4) - (5)].strval)); } break; - case 28: + case 40: + +/* Line 1806 of yacc.c */ #line 110 "uparse.y" - { display_extract_list((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + { set_property_name((yyvsp[(2) - (3)].strval), 0); amfree((yyvsp[(2) - (3)].strval)); } break; - case 29: + case 41: + +/* Line 1806 of yacc.c */ #line 111 "uparse.y" - { display_extract_list(NULL); } + { set_property_name((yyvsp[(3) - (4)].strval), 1); amfree((yyvsp[(3) - (4)].strval)); } break; - case 30: + case 42: + +/* Line 1806 of yacc.c */ #line 112 "uparse.y" - { show_directory(); } + { set_property_name((yyvsp[(3) - (4)].strval), 0); amfree((yyvsp[(3) - (4)].strval)); } break; - case 31: + case 43: + +/* Line 1806 of yacc.c */ #line 113 "uparse.y" - { clear_extract_list(); } + { set_property_name((yyvsp[(4) - (5)].strval), 1); amfree((yyvsp[(4) - (5)].strval)); } break; - case 32: + case 44: + +/* Line 1806 of yacc.c */ #line 114 "uparse.y" - { show_mode (); } + { yyerror("Invalid argument"); } break; - case 33: + case 45: + +/* Line 1806 of yacc.c */ +#line 115 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 46: + +/* Line 1806 of yacc.c */ +#line 116 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 47: + +/* Line 1806 of yacc.c */ +#line 117 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 48: + +/* Line 1806 of yacc.c */ #line 118 "uparse.y" - { quit(); } + { cd_glob((yyvsp[(2) - (3)].strval), 1); amfree((yyvsp[(2) - (3)].strval)); } break; - case 35: + case 49: + +/* Line 1806 of yacc.c */ +#line 119 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 50: + +/* Line 1806 of yacc.c */ +#line 120 "uparse.y" + { yyerror("Argument required"); } + break; + + case 51: + +/* Line 1806 of yacc.c */ +#line 121 "uparse.y" + { cd_regex((yyvsp[(2) - (3)].strval), 1); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 52: + +/* Line 1806 of yacc.c */ +#line 122 "uparse.y" + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 53: + +/* Line 1806 of yacc.c */ +#line 123 "uparse.y" + { yyerror("Argument required"); } + break; + + case 54: + +/* Line 1806 of yacc.c */ +#line 124 "uparse.y" + { set_mode(SAMBA_SMBCLIENT); } + break; + + case 55: + +/* Line 1806 of yacc.c */ +#line 125 "uparse.y" + { set_mode(SAMBA_TAR); } + break; + + case 56: + +/* Line 1806 of yacc.c */ #line 126 "uparse.y" - { add_glob((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + { yyerror("Invalid argument"); } break; - case 36: + case 57: + +/* Line 1806 of yacc.c */ #line 127 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 58: + +/* Line 1806 of yacc.c */ +#line 128 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 59: + +/* Line 1806 of yacc.c */ +#line 129 "uparse.y" + { yyerror("Argument required"); } + break; + + case 60: + +/* Line 1806 of yacc.c */ +#line 133 "uparse.y" + { + time_t now; + struct tm *t; + int y=2000, m=0, d=1, h=0, mi=0, s=0; + int ret; + char *mydate = (yyvsp[(2) - (3)].strval); + + now = time((time_t *)NULL); + t = localtime(&now); + if (t) { + y = 1900+t->tm_year; + m = t->tm_mon+1; + d = t->tm_mday; + } + if (sscanf(mydate, "---%d", &d) == 1 || + sscanf(mydate, "--%d-%d", &m, &d) == 2 || + sscanf(mydate, "%d-%d-%d-%d-%d-%d", &y, &m, &d, &h, &mi, &s) >= 3) { + if (y < 70) { + y += 2000; + } else if (y < 100) { + y += 1900; + } + if(y < 1000 || y > 9999) { + printf("invalid year"); + } else if(m < 1 || m > 12) { + printf("invalid month"); + } else if(d < 1 || d > 31) { + printf("invalid day"); + } else if(h < 0 || h > 24) { + printf("invalid hour"); + } else if(mi < 0 || mi > 59) { + printf("invalid minute"); + } else if(s < 0 || s > 59) { + printf("invalid second"); + } else { + char result[DATE_ALLOC_SIZE]; + if (h == 0 && mi == 0 && s == 0) + g_snprintf(result, DATE_ALLOC_SIZE, "%04d-%02d-%02d", y, m, d); + else + g_snprintf(result, DATE_ALLOC_SIZE, "%04d-%02d-%02d-%02d-%02d-%02d", y, m, d, h, mi, s); + set_date(result); + } + } else { + printf("Invalid date: %s\n", mydate); + } + } + break; + + case 61: + +/* Line 1806 of yacc.c */ +#line 179 "uparse.y" + { yyerror("Argument required"); } + break; + + case 62: + +/* Line 1806 of yacc.c */ +#line 180 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 63: + +/* Line 1806 of yacc.c */ +#line 184 "uparse.y" + { list_disk_history(); } + break; + + case 64: + +/* Line 1806 of yacc.c */ +#line 185 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 65: + +/* Line 1806 of yacc.c */ +#line 186 "uparse.y" + { list_directory(); } + break; + + case 66: + +/* Line 1806 of yacc.c */ +#line 187 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 67: + +/* Line 1806 of yacc.c */ +#line 188 "uparse.y" + { display_extract_list((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 68: + +/* Line 1806 of yacc.c */ +#line 189 "uparse.y" + { display_extract_list(NULL); } + break; + + case 69: + +/* Line 1806 of yacc.c */ +#line 190 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 70: + +/* Line 1806 of yacc.c */ +#line 191 "uparse.y" + { show_directory(); } + break; + + case 71: + +/* Line 1806 of yacc.c */ +#line 192 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 72: + +/* Line 1806 of yacc.c */ +#line 193 "uparse.y" + { clear_extract_list(); } + break; + + case 73: + +/* Line 1806 of yacc.c */ +#line 194 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 74: + +/* Line 1806 of yacc.c */ +#line 195 "uparse.y" + { show_mode (); } + break; + + case 75: + +/* Line 1806 of yacc.c */ +#line 196 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 76: + +/* Line 1806 of yacc.c */ +#line 200 "uparse.y" + { quit(); } + break; + + case 77: + +/* Line 1806 of yacc.c */ +#line 201 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 79: + +/* Line 1806 of yacc.c */ +#line 209 "uparse.y" + { add_glob((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } + break; + + case 80: + +/* Line 1806 of yacc.c */ +#line 210 "uparse.y" { add_glob((yyvsp[(1) - (1)].strval)); amfree((yyvsp[(1) - (1)].strval)); } break; - case 38: -#line 135 "uparse.y" + case 82: + +/* Line 1806 of yacc.c */ +#line 218 "uparse.y" { add_regex((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } break; - case 39: -#line 136 "uparse.y" + case 83: + +/* Line 1806 of yacc.c */ +#line 219 "uparse.y" { add_regex((yyvsp[(1) - (1)].strval)); amfree((yyvsp[(1) - (1)].strval)); } break; - case 41: -#line 144 "uparse.y" + case 85: + +/* Line 1806 of yacc.c */ +#line 227 "uparse.y" { delete_glob((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } break; - case 42: -#line 145 "uparse.y" + case 86: + +/* Line 1806 of yacc.c */ +#line 228 "uparse.y" { delete_glob((yyvsp[(1) - (1)].strval)); amfree((yyvsp[(1) - (1)].strval)); } break; - case 44: -#line 153 "uparse.y" + case 88: + +/* Line 1806 of yacc.c */ +#line 236 "uparse.y" { delete_regex((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } break; - case 45: -#line 154 "uparse.y" + case 89: + +/* Line 1806 of yacc.c */ +#line 237 "uparse.y" { delete_regex((yyvsp[(1) - (1)].strval)); amfree((yyvsp[(1) - (1)].strval)); } break; - case 46: -#line 158 "uparse.y" - { char buf[STR_SIZE]; puts(getcwd(buf, sizeof(buf))); } + case 90: + +/* Line 1806 of yacc.c */ +#line 241 "uparse.y" + { char * buf= g_get_current_dir(); puts(buf); free(buf); } break; - case 47: -#line 159 "uparse.y" + case 91: + +/* Line 1806 of yacc.c */ +#line 242 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 92: + +/* Line 1806 of yacc.c */ +#line 243 "uparse.y" { - local_cd((yyvsp[(2) - (2)].strval)); - amfree((yyvsp[(2) - (2)].strval)); + local_cd((yyvsp[(2) - (3)].strval)); + amfree((yyvsp[(2) - (3)].strval)); } break; - case 48: -#line 166 "uparse.y" + case 93: + +/* Line 1806 of yacc.c */ +#line 247 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 94: + +/* Line 1806 of yacc.c */ +#line 248 "uparse.y" + { yyerror("Argument required"); } + break; + + case 95: + +/* Line 1806 of yacc.c */ +#line 252 "uparse.y" { help_list(); } break; - case 49: -#line 170 "uparse.y" + case 96: + +/* Line 1806 of yacc.c */ +#line 253 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 97: + +/* Line 1806 of yacc.c */ +#line 257 "uparse.y" { extract_files(); } break; + case 98: + +/* Line 1806 of yacc.c */ +#line 258 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 99: + +/* Line 1806 of yacc.c */ +#line 262 "uparse.y" + { + char * errstr = vstralloc("Invalid command: ", (yyvsp[(1) - (2)].strval), NULL); + yyerror(errstr); + amfree(errstr); + YYERROR; + } + break; + + case 100: + +/* Line 1806 of yacc.c */ +#line 271 "uparse.y" + { add_property_value((yyvsp[(1) - (2)].strval)); amfree( (yyvsp[(1) - (2)].strval)); } + break; + + case 101: + +/* Line 1806 of yacc.c */ +#line 272 "uparse.y" + { ; } + break; + + case 102: + +/* Line 1806 of yacc.c */ +#line 276 "uparse.y" + { amfree((yyvsp[(1) - (2)].strval)); } + break; + + case 103: + +/* Line 1806 of yacc.c */ +#line 280 "uparse.y" + { amfree((yyvsp[(1) - (2)].strval)); } + break; + + case 104: + +/* Line 1806 of yacc.c */ +#line 281 "uparse.y" + { ; } + break; + -/* Line 1267 of yacc.c. */ -#line 1618 "uparse.c" + +/* Line 1806 of yacc.c */ +#line 2261 "uparse.c" default: break; } + /* User semantic actions sometimes alter yychar, and that requires + that yytoken be updated with the new translation. We take the + approach of translating immediately before every use of yytoken. + One alternative is translating here after every semantic action, + but that translation would be missed if the semantic action invokes + YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or + if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an + incorrect destructor might then be invoked immediately. In the + case of YYERROR or YYBACKUP, subsequent parser actions might lead + to an incorrect destructor call or verbose syntax error message + before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); @@ -1625,7 +2279,6 @@ yyreduce: *++yyvsp = yyval; - /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ @@ -1645,6 +2298,10 @@ yyreduce: | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: + /* Make sure we have latest lookahead translation. See comments at + user semantic actions for why this is necessary. */ + yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); + /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { @@ -1652,37 +2309,36 @@ yyerrlab: #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else +# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ + yyssp, yytoken) { - YYSIZE_T yysize = yysyntax_error (0, yystate, yychar); - if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM) - { - YYSIZE_T yyalloc = 2 * yysize; - if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM)) - yyalloc = YYSTACK_ALLOC_MAXIMUM; - if (yymsg != yymsgbuf) - YYSTACK_FREE (yymsg); - yymsg = (char *) YYSTACK_ALLOC (yyalloc); - if (yymsg) - yymsg_alloc = yyalloc; - else - { - yymsg = yymsgbuf; - yymsg_alloc = sizeof yymsgbuf; - } - } - - if (0 < yysize && yysize <= yymsg_alloc) - { - (void) yysyntax_error (yymsg, yystate, yychar); - yyerror (yymsg); - } - else - { - yyerror (YY_("syntax error")); - if (yysize != 0) - goto yyexhaustedlab; - } + char const *yymsgp = YY_("syntax error"); + int yysyntax_error_status; + yysyntax_error_status = YYSYNTAX_ERROR; + if (yysyntax_error_status == 0) + yymsgp = yymsg; + else if (yysyntax_error_status == 1) + { + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); + yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); + if (!yymsg) + { + yymsg = yymsgbuf; + yymsg_alloc = sizeof yymsgbuf; + yysyntax_error_status = 2; + } + else + { + yysyntax_error_status = YYSYNTAX_ERROR; + yymsgp = yymsg; + } + } + yyerror (yymsgp); + if (yysyntax_error_status == 2) + goto yyexhaustedlab; } +# undef YYSYNTAX_ERROR #endif } @@ -1690,7 +2346,7 @@ yyerrlab: if (yyerrstatus == 3) { - /* If just tried and failed to reuse look-ahead token after an + /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) @@ -1707,7 +2363,7 @@ yyerrlab: } } - /* Else will try to reuse look-ahead token after shifting the error + /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; @@ -1741,7 +2397,7 @@ yyerrlab1: for (;;) { yyn = yypact[yystate]; - if (yyn != YYPACT_NINF) + if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) @@ -1764,9 +2420,6 @@ yyerrlab1: YY_STACK_PRINT (yyss, yyssp); } - if (yyn == YYFINAL) - YYACCEPT; - *++yyvsp = yylval; @@ -1791,7 +2444,7 @@ yyabortlab: yyresult = 1; goto yyreturn; -#ifndef yyoverflow +#if !defined(yyoverflow) || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ @@ -1802,9 +2455,14 @@ yyexhaustedlab: #endif yyreturn: - if (yychar != YYEOF && yychar != YYEMPTY) - yydestruct ("Cleanup: discarding lookahead", - yytoken, &yylval); + if (yychar != YYEMPTY) + { + /* Make sure we have latest lookahead translation. See comments at + user semantic actions for why this is necessary. */ + yytoken = YYTRANSLATE (yychar); + yydestruct ("Cleanup: discarding lookahead", + yytoken, &yylval); + } /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); @@ -1828,13 +2486,15 @@ yyreturn: } -#line 174 "uparse.y" + +/* Line 2067 of yacc.c */ +#line 284 "uparse.y" void yyerror( char * s) { - printf("%s\n", s); + g_printf("%s\n", s); }