X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=recover-src%2Fuparse.c;h=f74d65d6953bce2f98c279da119ce4ee313e2a1d;hb=d28952249e392eb31bc8eecc53f6c477f30c617b;hp=3d97a0d8117e0118a4dded6df8e8dfcea99a4ac6;hpb=3ab887b9bc819a846c75dd7f2ee5d41fac22b19f;p=debian%2Famanda diff --git a/recover-src/uparse.c b/recover-src/uparse.c index 3d97a0d..f74d65d 100644 --- a/recover-src/uparse.c +++ b/recover-src/uparse.c @@ -1,70 +1,454 @@ -/* A Bison parser, made from uparse.y - by GNU bison 1.35. */ - -#define YYBISON 1 /* Identify Bison output. */ - -# define LISTDISK 257 -# define SETHOST 258 -# define SETDISK 259 -# define SETDATE 260 -# define SETTAPE 261 -# define SETMODE 262 -# define CD 263 -# define CDX 264 -# define QUIT 265 -# define DHIST 266 -# define LS 267 -# define ADD 268 -# define ADDX 269 -# define EXTRACT 270 -# define LIST 271 -# define DELETE 272 -# define DELETEX 273 -# define PWD 274 -# define CLEAR 275 -# define HELP 276 -# define LCD 277 -# define LPWD 278 -# define MODE 279 -# define SMB 280 -# define TAR 281 -# define PATH 282 -# define DATE 283 - -#line 31 "uparse.y" +/* A Bison parser, made by GNU Bison 2.5. */ + +/* 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 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, 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 + under terms of your choice, so long as that work isn't itself a + parser generator using the skeleton or a modified version thereof + as a parser skeleton. Alternatively, if you modify or redistribute + the parser skeleton itself, you may (at your option) remove this + 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. */ + +/* C LALR(1) parser skeleton written by Richard Stallman, by + simplifying the original so-called "semantic" parser. */ + +/* All symbols defined below should begin with yy or YY, to avoid + infringing on user name space. This should be done even for local + variables, as they might otherwise be expanded by user macros. + There are some unavoidable exceptions within include files to + define necessary library symbols; they are noted "INFRINGES ON + USER NAME SPACE" below. */ + +/* Identify Bison output. */ +#define YYBISON 1 + +/* Bison version. */ +#define YYBISON_VERSION "2.5" + +/* Skeleton name. */ +#define YYSKELETON_NAME "yacc.c" + +/* Pure parsers. */ +#define YYPURE 0 + +/* Push parsers. */ +#define YYPUSH 0 + +/* Pull parsers. */ +#define YYPULL 1 + +/* Using locations. */ +#define YYLSP_NEEDED 0 + + + +/* Copy the first part of user declarations. */ + +/* Line 268 of yacc.c */ +#line 32 "uparse.y" #include "amanda.h" #include "amrecover.h" -void yyerror P((char *s)); -extern int yylex P((void)); - -#line 40 "uparse.y" -#ifndef YYSTYPE -typedef union { - int intval; - double floatval; - char *strval; - int subtok; -} yystype; -# define YYSTYPE yystype -# define YYSTYPE_IS_TRIVIAL 1 -#endif +#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 # define YYDEBUG 0 #endif +/* Enabling verbose error messages. */ +#ifdef YYERROR_VERBOSE +# undef YYERROR_VERBOSE +# define YYERROR_VERBOSE 1 +#else +# define YYERROR_VERBOSE 0 +#endif + +/* Enabling the token table. */ +#ifndef YYTOKEN_TABLE +# 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 293 of yacc.c */ +#line 44 "uparse.y" + + int intval; + double floatval; + char * strval; + int subtok; + + + +/* 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 +#endif + + +/* Copy the second part of user declarations. */ + + +/* Line 343 of yacc.c */ +#line 214 "uparse.c" + +#ifdef short +# undef short +#endif + +#ifdef YYTYPE_UINT8 +typedef YYTYPE_UINT8 yytype_uint8; +#else +typedef unsigned char yytype_uint8; +#endif + +#ifdef YYTYPE_INT8 +typedef YYTYPE_INT8 yytype_int8; +#elif (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +typedef signed char yytype_int8; +#else +typedef short int yytype_int8; +#endif + +#ifdef YYTYPE_UINT16 +typedef YYTYPE_UINT16 yytype_uint16; +#else +typedef unsigned short int yytype_uint16; +#endif + +#ifdef YYTYPE_INT16 +typedef YYTYPE_INT16 yytype_int16; +#else +typedef short int yytype_int16; +#endif + +#ifndef YYSIZE_T +# ifdef __SIZE_TYPE__ +# define YYSIZE_T __SIZE_TYPE__ +# elif defined size_t +# define YYSIZE_T size_t +# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include /* INFRINGES ON USER NAME SPACE */ +# define YYSIZE_T size_t +# else +# define YYSIZE_T unsigned int +# endif +#endif + +#define YYSIZE_MAXIMUM ((YYSIZE_T) -1) + +#ifndef YY_ +# if defined YYENABLE_NLS && YYENABLE_NLS +# if ENABLE_NLS +# include /* INFRINGES ON USER NAME SPACE */ +# define YY_(msgid) dgettext ("bison-runtime", msgid) +# endif +# endif +# ifndef YY_ +# define YY_(msgid) msgid +# endif +#endif + +/* Suppress unused-variable warnings by "using" E. */ +#if ! defined lint || defined __GNUC__ +# define YYUSE(e) ((void) (e)) +#else +# define YYUSE(e) /* empty */ +#endif + +/* Identity function, used to suppress warnings about constant conditions. */ +#ifndef lint +# define YYID(n) (n) +#else +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static int +YYID (int yyi) +#else +static int +YYID (yyi) + int yyi; +#endif +{ + return yyi; +} +#endif + +#if ! defined yyoverflow || YYERROR_VERBOSE + +/* The parser invokes alloca or malloc; define the necessary symbols. */ + +# ifdef YYSTACK_USE_ALLOCA +# if YYSTACK_USE_ALLOCA +# ifdef __GNUC__ +# define YYSTACK_ALLOC __builtin_alloca +# elif defined __BUILTIN_VA_ARG_INCR +# include /* INFRINGES ON USER NAME SPACE */ +# elif defined _AIX +# define YYSTACK_ALLOC __alloca +# elif defined _MSC_VER +# include /* INFRINGES ON USER NAME SPACE */ +# define alloca _alloca +# else +# define YYSTACK_ALLOC alloca +# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include /* INFRINGES ON USER NAME SPACE */ +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 +# endif +# endif +# endif +# endif +# endif + +# ifdef YYSTACK_ALLOC + /* Pacify GCC's `empty if-body' warning. */ +# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) +# ifndef YYSTACK_ALLOC_MAXIMUM + /* The OS might guarantee only one guard page at the bottom of the stack, + and a page size can be as small as 4096 bytes. So we cannot safely + invoke alloca (N) if N exceeds 4096. Use a slightly smaller number + to allow for a few compiler-allocated temporary stack slots. */ +# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ +# endif +# else +# define YYSTACK_ALLOC YYMALLOC +# define YYSTACK_FREE YYFREE +# ifndef YYSTACK_ALLOC_MAXIMUM +# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM +# endif +# if (defined __cplusplus && ! defined EXIT_SUCCESS \ + && ! ((defined YYMALLOC || defined malloc) \ + && (defined YYFREE || defined free))) +# include /* INFRINGES ON USER NAME SPACE */ +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 +# endif +# endif +# ifndef YYMALLOC +# define YYMALLOC malloc +# 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 EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void free (void *); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# endif +#endif /* ! defined yyoverflow || YYERROR_VERBOSE */ + +#if (! defined yyoverflow \ + && (! defined __cplusplus \ + || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) -#define YYFINAL 60 -#define YYFLAG -32768 -#define YYNTBASE 30 +/* A type that is properly aligned for any stack member. */ +union yyalloc +{ + 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) + +/* The size of an array large to enough to hold all stacks, each with + N elements. */ +# define YYSTACK_BYTES(N) \ + ((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)) -/* YYTRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */ -#define YYTRANSLATE(x) ((unsigned)(x) <= 283 ? yytranslate[x] : 45) +#endif -/* YYTRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX. */ -static const char yytranslate[] = +#if defined YYCOPY_NEEDED && YYCOPY_NEEDED +/* Copy COUNT objects from FROM to TO. The source and destination do + not overlap. */ +# ifndef YYCOPY +# if defined __GNUC__ && 1 < __GNUC__ +# define YYCOPY(To, From, Count) \ + __builtin_memcpy (To, From, (Count) * sizeof (*(From))) +# else +# define YYCOPY(To, From, Count) \ + do \ + { \ + YYSIZE_T yyi; \ + for (yyi = 0; yyi < (Count); yyi++) \ + (To)[yyi] = (From)[yyi]; \ + } \ + while (YYID (0)) +# endif +# endif +#endif /* !YYCOPY_NEEDED */ + +/* YYFINAL -- State number of the termination state. */ +#define YYFINAL 107 +/* YYLAST -- Last index in YYTABLE. */ +#define YYLAST 177 + +/* YYNTOKENS -- Number of terminals. */ +#define YYNTOKENS 38 +/* YYNNTS -- Number of nonterminals. */ +#define YYNNTS 21 +/* YYNRULES -- Number of rules. */ +#define YYNRULES 104 +/* YYNRULES -- Number of states. */ +#define YYNSTATES 166 + +/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ +#define YYUNDEFTOK 2 +#define YYMAXUTOK 292 + +#define YYTRANSLATE(YYX) \ + ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) + +/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ +static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -91,367 +475,380 @@ static const char yytranslate[] = 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 1, 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 + 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, 31, 32, 33, 34, + 35, 36, 37 }; #if YYDEBUG -static const short yyprhs[] = +/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in + YYRHS. */ +static const yytype_uint16 yyprhs[] = { - 0, 0, 2, 4, 6, 8, 10, 12, 14, 16, - 18, 20, 23, 25, 28, 31, 35, 38, 41, 43, - 46, 49, 52, 55, 57, 59, 62, 64, 66, 68, - 70, 72, 75, 78, 80, 83, 86, 88, 91, 94, - 96, 99, 102, 104, 106, 109, 111 + 0, 0, 3, 5, 7, 9, 11, 13, 15, 17, + 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 }; -static const short yyrhs[] = + +/* YYRHS -- A `-1'-separated list of the rules' RHS. */ +static const yytype_int8 yyrhs[] = { - 31, 0, 32, 0, 33, 0, 34, 0, 36, 0, - 38, 0, 40, 0, 42, 0, 43, 0, 44, 0, - 3, 28, 0, 3, 0, 6, 29, 0, 4, 28, - 0, 5, 28, 28, 0, 5, 28, 0, 7, 28, - 0, 7, 0, 9, 28, 0, 10, 28, 0, 8, - 26, 0, 8, 27, 0, 12, 0, 13, 0, 17, - 28, 0, 17, 0, 20, 0, 21, 0, 25, 0, - 11, 0, 14, 35, 0, 35, 28, 0, 28, 0, - 15, 37, 0, 37, 28, 0, 28, 0, 18, 39, - 0, 39, 28, 0, 28, 0, 19, 41, 0, 41, - 28, 0, 28, 0, 24, 0, 23, 28, 0, 22, - 0, 16, 0 + 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 }; -#endif - -#if YYDEBUG -/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ -static const short yyrline[] = +/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ +static const yytype_uint16 yyrline[] = { - 0, 62, 64, 65, 66, 67, 68, 69, 70, 71, - 72, 75, 77, 78, 79, 80, 81, 82, 83, 84, - 85, 86, 91, 98, 100, 101, 102, 103, 104, 105, - 108, 112, 116, 118, 121, 125, 127, 130, 134, 136, - 139, 143, 145, 148, 150, 158, 162 + 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 - -#if (YYDEBUG) || defined YYERROR_VERBOSE - -/* YYTNAME[TOKEN_NUM] -- String name of the token TOKEN_NUM. */ +#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE +/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. + First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { - "$", "error", "$undefined.", "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", "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 -/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ -static const short yyr1[] = +# ifdef YYPRINT +/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to + token YYLEX-NUM. */ +static const yytype_uint16 yytoknum[] = { - 0, 30, 30, 30, 30, 30, 30, 30, 30, 30, - 30, 31, 31, 31, 31, 31, 31, 31, 31, 31, - 31, 31, 31, 32, 32, 32, 32, 32, 32, 32, - 33, 34, 35, 35, 36, 37, 37, 38, 39, 39, - 40, 41, 41, 42, 42, 43, 44 + 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, 286, 287, 288, 289, 290, 291, 292 }; +# endif -/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ -static const short yyr2[] = +/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ +static const yytype_uint8 yyr1[] = { - 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 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 + 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 }; -/* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE - doesn't specify something else to do. Zero means the default is an - error. */ -static const short yydefact[] = +/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ +static const yytype_uint8 yyr2[] = { - 0, 12, 0, 0, 0, 18, 0, 0, 0, 30, - 23, 24, 0, 0, 46, 26, 0, 0, 27, 28, - 45, 0, 43, 29, 1, 2, 3, 4, 5, 6, - 7, 8, 9, 10, 11, 14, 16, 13, 17, 21, - 22, 19, 20, 33, 31, 36, 34, 25, 39, 37, - 42, 40, 44, 15, 32, 35, 38, 41, 0, 0, - 0 + 0, 2, 1, 1, 1, 1, 1, 1, 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 }; -static const short yydefgoto[] = +/* 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[] = { - 58, 24, 25, 26, 27, 44, 28, 46, 29, 49, - 30, 51, 31, 32, 33 + 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 }; -static const short yypact[] = +/* YYDEFGOTO[NTERM-NUM]. */ +static const yytype_int16 yydefgoto[] = { - -3, -5, -1, 0, 1, 3, -2, 4, 5,-32768, - -32768,-32768, 6, 7,-32768, 8, 9, 10,-32768,-32768, - -32768, 11,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, - -32768,-32768,-32768,-32768,-32768,-32768, 12,-32768,-32768,-32768, - -32768,-32768,-32768,-32768, 13,-32768, 14,-32768,-32768, 15, - -32768, 16,-32768,-32768,-32768,-32768,-32768,-32768, 26, 29, - -32768 + -1, 30, 31, 32, 33, 34, 35, 79, 36, 81, + 37, 87, 38, 89, 39, 40, 41, 42, 133, 45, + 106 }; -static const short yypgoto[] = +/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing + STATE-NUM. */ +#define YYPACT_NINF -127 +static const yytype_int16 yypact[] = { - -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, - -32768,-32768,-32768,-32768,-32768 + 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 }; - -#define YYLAST 44 - - -static const short yytable[] = +/* YYPGOTO[NTERM-NUM]. */ +static const yytype_int8 yypgoto[] = { - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, - 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 34, 39, 40, 59, 35, 36, 60, - 37, 38, 41, 42, 43, 45, 47, 48, 50, 52, - 53, 54, 55, 56, 57 + -127, -127, -127, -127, -127, -127, -127, -127, -127, -127, + -127, -127, -127, -127, -127, -127, -127, -127, -126, -3, + -43 }; -static const short yycheck[] = +/* 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 YYTABLE_NINF, syntax error. */ +#define YYTABLE_NINF -1 +static const yytype_uint8 yytable[] = { - 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, - 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 28, 26, 27, 0, 28, 28, 0, - 29, 28, 28, 28, 28, 28, 28, 28, 28, 28, - 28, 28, 28, 28, 28 + 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 }; -/* -*-C-*- Note some compilers choke on comments on `#line' lines. */ -#line 3 "/usr/share/bison/bison.simple" - -/* Skeleton output parser for bison, - - Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 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. - - 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., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ - -/* As a special exception, when this file is copied by Bison into a - Bison output file, you may use that output file without restriction. - This special exception was added by the Free Software Foundation - in version 1.24 of Bison. */ - -/* This is the parser code that is written into each bison parser when - the %semantic_parser declaration is not specified in the grammar. - It was written by Richard Stallman by simplifying the hairy parser - used when %semantic_parser is specified. */ - -/* All symbols defined below should begin with yy or YY, to avoid - infringing on user name space. This should be done even for local - variables, as they might otherwise be expanded by user macros. - There are some unavoidable exceptions within include files to - define necessary library symbols; they are noted "INFRINGES ON - USER NAME SPACE" below. */ - -#if ! defined (yyoverflow) || defined (YYERROR_VERBOSE) - -/* The parser invokes alloca or malloc; define the necessary symbols. */ - -# if YYSTACK_USE_ALLOCA -# define YYSTACK_ALLOC alloca -# else -# ifndef YYSTACK_USE_ALLOCA -# if defined (alloca) || defined (_ALLOCA_H) -# define YYSTACK_ALLOC alloca -# else -# ifdef __GNUC__ -# define YYSTACK_ALLOC __builtin_alloca -# endif -# endif -# endif -# endif - -# ifdef YYSTACK_ALLOC - /* Pacify GCC's `empty if-body' warning. */ -# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) -# else -# if defined (__STDC__) || defined (__cplusplus) -# include /* INFRINGES ON USER NAME SPACE */ -# define YYSIZE_T size_t -# endif -# define YYSTACK_ALLOC malloc -# define YYSTACK_FREE free -# endif -#endif /* ! defined (yyoverflow) || defined (YYERROR_VERBOSE) */ +#define yypact_value_is_default(yystate) \ + ((yystate) == (-127)) -#if (! defined (yyoverflow) \ - && (! defined (__cplusplus) \ - || (YYLTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) +#define yytable_value_is_error(yytable_value) \ + YYID (0) -/* A type that is properly aligned for any stack member. */ -union yyalloc +static const yytype_int16 yycheck[] = { - short yyss; - YYSTYPE yyvs; -# if YYLSP_NEEDED - YYLTYPE yyls; -# endif + 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 }; -/* The size of the maximum gap between one aligned stack and the next. */ -# define YYSTACK_GAP_MAX (sizeof (union yyalloc) - 1) - -/* The size of an array large to enough to hold all stacks, each with - N elements. */ -# if YYLSP_NEEDED -# define YYSTACK_BYTES(N) \ - ((N) * (sizeof (short) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \ - + 2 * YYSTACK_GAP_MAX) -# else -# define YYSTACK_BYTES(N) \ - ((N) * (sizeof (short) + sizeof (YYSTYPE)) \ - + YYSTACK_GAP_MAX) -# endif - -/* Copy COUNT objects from FROM to TO. The source and destination do - not overlap. */ -# ifndef YYCOPY -# if 1 < __GNUC__ -# define YYCOPY(To, From, Count) \ - __builtin_memcpy (To, From, (Count) * sizeof (*(From))) -# else -# define YYCOPY(To, From, Count) \ - do \ - { \ - register YYSIZE_T yyi; \ - for (yyi = 0; yyi < (Count); yyi++) \ - (To)[yyi] = (From)[yyi]; \ - } \ - while (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_MAX; \ - yyptr += yynewbytes / sizeof (*yyptr); \ - } \ - while (0) - -#endif - - -#if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__) -# define YYSIZE_T __SIZE_TYPE__ -#endif -#if ! defined (YYSIZE_T) && defined (size_t) -# define YYSIZE_T size_t -#endif -#if ! defined (YYSIZE_T) -# if defined (__STDC__) || defined (__cplusplus) -# include /* INFRINGES ON USER NAME SPACE */ -# define YYSIZE_T size_t -# endif -#endif -#if ! defined (YYSIZE_T) -# define YYSIZE_T unsigned int -#endif +/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing + symbol of state STATE-NUM. */ +static const yytype_uint8 yystos[] = +{ + 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 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) #define yyclearin (yychar = YYEMPTY) -#define YYEMPTY -2 +#define YYEMPTY (-2) #define YYEOF 0 + #define YYACCEPT goto yyacceptlab -#define YYABORT goto yyabortlab -#define YYERROR goto yyerrlab1 +#define YYABORT goto yyabortlab +#define YYERROR goto yyerrorlab + + /* 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) + #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ - yychar1 = YYTRANSLATE (yychar); \ - YYPOPSTACK; \ + YYPOPSTACK (1); \ goto yybackup; \ } \ else \ - { \ - yyerror ("syntax error: cannot back up"); \ + { \ + yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ -while (0) +while (YYID (0)) + #define YYTERROR 1 #define YYERRCODE 256 -/* YYLLOC_DEFAULT -- Compute the default location (before the actions - are run). - - When YYLLOC_DEFAULT is run, CURRENT is set the location of the - first token. By default, to implement support for ranges, extend - its range to the last symbol. */ +/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. + If N is 0, then set CURRENT to the empty location which ends + the previous symbol: RHS[0] (always defined). */ +#define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT -# define YYLLOC_DEFAULT(Current, Rhs, N) \ - Current.last_line = Rhs[N].last_line; \ - Current.last_column = Rhs[N].last_column; +# define YYLLOC_DEFAULT(Current, Rhs, N) \ + do \ + if (YYID (N)) \ + { \ + (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ + (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ + (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ + (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ + } \ + else \ + { \ + (Current).first_line = (Current).last_line = \ + YYRHSLOC (Rhs, 0).last_line; \ + (Current).first_column = (Current).last_column = \ + YYRHSLOC (Rhs, 0).last_column; \ + } \ + while (YYID (0)) #endif -/* YYLEX -- calling `yylex' with the right arguments. */ +/* This macro is provided for backward compatibility. */ + +#ifndef YY_LOCATION_PRINT +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +#endif -#if YYPURE -# if YYLSP_NEEDED -# ifdef YYLEX_PARAM -# define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM) -# else -# define YYLEX yylex (&yylval, &yylloc) -# endif -# else /* !YYLSP_NEEDED */ -# ifdef YYLEX_PARAM -# define YYLEX yylex (&yylval, YYLEX_PARAM) -# else -# define YYLEX yylex (&yylval) -# endif -# endif /* !YYLSP_NEEDED */ -#else /* !YYPURE */ -# define YYLEX yylex () -#endif /* !YYPURE */ +/* YYLEX -- calling `yylex' with the right arguments. */ + +#ifdef YYLEX_PARAM +# define YYLEX yylex (YYLEX_PARAM) +#else +# define YYLEX yylex () +#endif /* Enable debugging if requested. */ #if YYDEBUG @@ -465,14 +862,158 @@ while (0) do { \ if (yydebug) \ YYFPRINTF Args; \ -} while (0) +} while (YYID (0)) + +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ +do { \ + if (yydebug) \ + { \ + YYFPRINTF (stderr, "%s ", Title); \ + yy_symbol_print (stderr, \ + Type, Value); \ + YYFPRINTF (stderr, "\n"); \ + } \ +} while (YYID (0)) + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) +#else +static void +yy_symbol_value_print (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; +#endif +{ + if (!yyvaluep) + return; +# ifdef YYPRINT + if (yytype < YYNTOKENS) + YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); +# else + YYUSE (yyoutput); +# endif + switch (yytype) + { + default: + break; + } +} + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) +#else +static void +yy_symbol_print (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; +#endif +{ + if (yytype < YYNTOKENS) + YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); + else + YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); + + yy_symbol_value_print (yyoutput, yytype, yyvaluep); + YYFPRINTF (yyoutput, ")"); +} + +/*------------------------------------------------------------------. +| yy_stack_print -- Print the state stack from its BOTTOM up to its | +| TOP (included). | +`------------------------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) +#else +static void +yy_stack_print (yybottom, yytop) + yytype_int16 *yybottom; + yytype_int16 *yytop; +#endif +{ + YYFPRINTF (stderr, "Stack now"); + for (; yybottom <= yytop; yybottom++) + { + int yybot = *yybottom; + YYFPRINTF (stderr, " %d", yybot); + } + YYFPRINTF (stderr, "\n"); +} + +# define YY_STACK_PRINT(Bottom, Top) \ +do { \ + if (yydebug) \ + yy_stack_print ((Bottom), (Top)); \ +} while (YYID (0)) + + +/*------------------------------------------------. +| Report that the YYRULE is going to be reduced. | +`------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_reduce_print (YYSTYPE *yyvsp, int yyrule) +#else +static void +yy_reduce_print (yyvsp, yyrule) + YYSTYPE *yyvsp; + int yyrule; +#endif +{ + int yynrhs = yyr2[yyrule]; + int yyi; + unsigned long int yylno = yyrline[yyrule]; + YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", + yyrule - 1, yylno); + /* The symbols being reduced. */ + for (yyi = 0; yyi < yynrhs; yyi++) + { + YYFPRINTF (stderr, " $%d = ", yyi + 1); + yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], + &(yyvsp[(yyi + 1) - (yynrhs)]) + ); + YYFPRINTF (stderr, "\n"); + } +} + +# define YY_REDUCE_PRINT(Rule) \ +do { \ + if (yydebug) \ + yy_reduce_print (yyvsp, Rule); \ +} while (YYID (0)) + /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) +# define YY_STACK_PRINT(Bottom, Top) +# define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ + /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 @@ -482,59 +1023,58 @@ int yydebug; if the built-in stack extension method is used). Do not make this value too large; the results are undefined if - SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH) + YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ -#if YYMAXDEPTH == 0 -# undef YYMAXDEPTH -#endif - #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif - -#ifdef YYERROR_VERBOSE + + +#if YYERROR_VERBOSE # ifndef yystrlen -# if defined (__GLIBC__) && defined (_STRING_H) +# if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) static YYSIZE_T -# if defined (__STDC__) || defined (__cplusplus) yystrlen (const char *yystr) -# else +#else +static YYSIZE_T yystrlen (yystr) - const char *yystr; -# endif + const char *yystr; +#endif { - register const char *yys = yystr; - - while (*yys++ != '\0') + YYSIZE_T yylen; + for (yylen = 0; yystr[yylen]; yylen++) continue; - - return yys - yystr - 1; + return yylen; } # endif # endif # ifndef yystpcpy -# if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE) +# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) static char * -# if defined (__STDC__) || defined (__cplusplus) yystpcpy (char *yydest, const char *yysrc) -# else +#else +static char * yystpcpy (yydest, yysrc) - char *yydest; - const char *yysrc; -# endif + char *yydest; + const char *yysrc; +#endif { - register char *yyd = yydest; - register const char *yys = yysrc; + char *yyd = yydest; + const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; @@ -543,149 +1083,339 @@ yystpcpy (yydest, yysrc) } # endif # endif -#endif - -#line 315 "/usr/share/bison/bison.simple" +# ifndef yytnamerr +/* Copy to YYRES the contents of YYSTR after stripping away unnecessary + quotes and backslashes, so that it's suitable for yyerror. The + heuristic is that double-quoting is unnecessary unless the string + contains an apostrophe, a comma, or backslash (other than + backslash-backslash). YYSTR is taken from yytname. If YYRES is + null, do not copy; instead, return the length of what the result + would have been. */ +static YYSIZE_T +yytnamerr (char *yyres, const char *yystr) +{ + if (*yystr == '"') + { + YYSIZE_T yyn = 0; + char const *yyp = yystr; + + for (;;) + switch (*++yyp) + { + case '\'': + case ',': + goto do_not_strip_quotes; + + case '\\': + if (*++yyp != '\\') + goto do_not_strip_quotes; + /* Fall through. */ + default: + if (yyres) + yyres[yyn] = *yyp; + yyn++; + break; + + case '"': + if (yyres) + yyres[yyn] = '\0'; + return yyn; + } + do_not_strip_quotes: ; + } -/* The user can define YYPARSE_PARAM as the name of an argument to be passed - into yyparse. The argument should have type void *. - It should actually point to an object. - Grammar actions can access the variable by casting it - to the proper pointer type. */ + if (! yyres) + return yystrlen (yystr); -#ifdef YYPARSE_PARAM -# if defined (__STDC__) || defined (__cplusplus) -# define YYPARSE_PARAM_ARG void *YYPARSE_PARAM -# define YYPARSE_PARAM_DECL -# else -# define YYPARSE_PARAM_ARG YYPARSE_PARAM -# define YYPARSE_PARAM_DECL void *YYPARSE_PARAM; -# endif -#else /* !YYPARSE_PARAM */ -# define YYPARSE_PARAM_ARG -# define YYPARSE_PARAM_DECL -#endif /* !YYPARSE_PARAM */ - -/* Prevent warning if -Wstrict-prototypes. */ -#ifdef __GNUC__ -# ifdef YYPARSE_PARAM -int yyparse (void *); -# else -int yyparse (void); + return yystpcpy (yyres, yystr) - yyres; +} # endif -#endif -/* YY_DECL_VARIABLES -- depending whether we use a pure parser, - variables are global, or local to YYPARSE. */ - -#define YY_DECL_NON_LSP_VARIABLES \ -/* The lookahead symbol. */ \ -int yychar; \ - \ -/* The semantic value of the lookahead symbol. */ \ -YYSTYPE yylval; \ - \ -/* Number of parse errors so far. */ \ -int yynerrs; +/* 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. + + 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 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; + } + } + } + + 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_ + } + + yysize1 = yysize + yystrlen (yyformat); + if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) + return 2; + yysize = yysize1; + + if (*yymsg_alloc < yysize) + { + *yymsg_alloc = 2 * yysize; + if (! (yysize <= *yymsg_alloc + && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) + *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; + return 1; + } -#if YYLSP_NEEDED -# define YY_DECL_VARIABLES \ -YY_DECL_NON_LSP_VARIABLES \ - \ -/* Location data for the lookahead symbol. */ \ -YYLTYPE yylloc; + /* 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. | +`-----------------------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) #else -# define YY_DECL_VARIABLES \ -YY_DECL_NON_LSP_VARIABLES +static void +yydestruct (yymsg, yytype, yyvaluep) + const char *yymsg; + int yytype; + YYSTYPE *yyvaluep; #endif +{ + YYUSE (yyvaluep); + if (!yymsg) + yymsg = "Deleting"; + YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); -/* If nonreentrant, generate the variables here. */ + switch (yytype) + { -#if !YYPURE -YY_DECL_VARIABLES -#endif /* !YYPURE */ + default: + break; + } +} -int -yyparse (YYPARSE_PARAM_ARG) - YYPARSE_PARAM_DECL -{ - /* If reentrant, generate the variables here. */ -#if YYPURE - YY_DECL_VARIABLES -#endif /* !YYPURE */ - register int yystate; - register int yyn; - int yyresult; - /* Number of tokens to shift before error messages enabled. */ - int yyerrstatus; - /* Lookahead token as an internal (translated) token number. */ - int yychar1 = 0; - - /* Three stacks and their tools: - `yyss': related to states, - `yyvs': related to semantic values, - `yyls': related to locations. - - Refer to the stacks thru separate pointers, to allow yyoverflow - to reallocate them elsewhere. */ - - /* The state stack. */ - short yyssa[YYINITDEPTH]; - short *yyss = yyssa; - register short *yyssp; - - /* The semantic value stack. */ - YYSTYPE yyvsa[YYINITDEPTH]; - YYSTYPE *yyvs = yyvsa; - register YYSTYPE *yyvsp; - -#if YYLSP_NEEDED - /* The location stack. */ - YYLTYPE yylsa[YYINITDEPTH]; - YYLTYPE *yyls = yylsa; - YYLTYPE *yylsp; +/* Prevent warnings from -Wmissing-prototypes. */ +#ifdef YYPARSE_PARAM +#if defined __STDC__ || defined __cplusplus +int yyparse (void *YYPARSE_PARAM); +#else +int yyparse (); +#endif +#else /* ! YYPARSE_PARAM */ +#if defined __STDC__ || defined __cplusplus +int yyparse (void); +#else +int yyparse (); #endif +#endif /* ! YYPARSE_PARAM */ -#if YYLSP_NEEDED -# define YYPOPSTACK (yyvsp--, yyssp--, yylsp--) + +/* The lookahead symbol. */ +int yychar; + +/* The semantic value of the lookahead symbol. */ +YYSTYPE yylval; + +/* Number of syntax errors so far. */ +int yynerrs; + + +/*----------. +| yyparse. | +`----------*/ + +#ifdef YYPARSE_PARAM +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (void *YYPARSE_PARAM) +#else +int +yyparse (YYPARSE_PARAM) + void *YYPARSE_PARAM; +#endif +#else /* ! YYPARSE_PARAM */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (void) #else -# define YYPOPSTACK (yyvsp--, yyssp--) +int +yyparse () + +#endif #endif +{ + int yystate; + /* Number of tokens to shift before error messages enabled. */ + int yyerrstatus; - YYSIZE_T yystacksize = YYINITDEPTH; + /* The stacks and their tools: + `yyss': related to states. + `yyvs': related to semantic values. + Refer to the stacks thru separate pointers, to allow yyoverflow + to reallocate them elsewhere. */ + /* 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; + + 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 YYLSP_NEEDED - YYLTYPE yyloc; + +#if YYERROR_VERBOSE + /* Buffer for error messages, and its allocated size. */ + char yymsgbuf[128]; + char *yymsg = yymsgbuf; + YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif - /* When reducing, the number of symbols on the RHS of the reduced - rule. */ - int yylen; +#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; -#if YYLSP_NEEDED - yylsp = yyls; -#endif + goto yysetstate; /*------------------------------------------------------------. @@ -693,418 +1423,861 @@ yyparse (YYPARSE_PARAM_ARG) `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks - have just been pushed. so pushing a state here evens the stacks. - */ + have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; - if (yyssp >= yyss + yystacksize - 1) + if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { - /* Give user a chance to reallocate the stack. Use copies of + /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; - short *yyss1 = yyss; + yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the - data in use in that stack, in bytes. */ -# if YYLSP_NEEDED - YYLTYPE *yyls1 = yyls; - /* This used to be a conditional around just the two extra args, - but that might be undefined if yyoverflow is a macro. */ - yyoverflow ("parser stack overflow", + data in use in that stack, in bytes. This used to be a + conditional around just the two extra args, but that might + be undefined if yyoverflow is a macro. */ + yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), - &yyls1, yysize * sizeof (*yylsp), &yystacksize); - yyls = yyls1; -# else - yyoverflow ("parser stack overflow", - &yyss1, yysize * sizeof (*yyssp), - &yyvs1, yysize * sizeof (*yyvsp), - &yystacksize); -# endif + yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE - goto yyoverflowlab; + goto yyexhaustedlab; # else /* Extend the stack our own way. */ - if (yystacksize >= YYMAXDEPTH) - goto yyoverflowlab; + if (YYMAXDEPTH <= yystacksize) + goto yyexhaustedlab; yystacksize *= 2; - if (yystacksize > YYMAXDEPTH) + if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { - short *yyss1 = yyss; + yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) - goto yyoverflowlab; - YYSTACK_RELOCATE (yyss); - YYSTACK_RELOCATE (yyvs); -# if YYLSP_NEEDED - YYSTACK_RELOCATE (yyls); -# endif -# undef YYSTACK_RELOCATE + goto yyexhaustedlab; + YYSTACK_RELOCATE (yyss_alloc, yyss); + YYSTACK_RELOCATE (yyvs_alloc, yyvs); +# undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ - yyssp = yyss + yysize - 1; - yyvsp = yyvs + yysize - 1; -#if YYLSP_NEEDED - yylsp = yyls + yysize - 1; -#endif + yyssp = yyss + yysize - 1; + yyvsp = yyvs + yysize - 1; + + YYDPRINTF ((stderr, "Stack size increased to %lu\n", + (unsigned long int) yystacksize)); + + if (yyss + yystacksize - 1 <= yyssp) + YYABORT; + } + + YYDPRINTF ((stderr, "Entering state %d\n", yystate)); + + if (yystate == YYFINAL) + YYACCEPT; + + goto yybackup; + +/*-----------. +| yybackup. | +`-----------*/ +yybackup: + + /* Do appropriate processing given the current state. Read a + lookahead token if we need one and don't already have one. */ + + /* First try to decide what to do without reference to lookahead token. */ + yyn = yypact[yystate]; + if (yypact_value_is_default (yyn)) + goto yydefault; + + /* Not known => get a lookahead token if don't already have one. */ + + /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ + if (yychar == YYEMPTY) + { + YYDPRINTF ((stderr, "Reading a token: ")); + yychar = YYLEX; + } + + if (yychar <= YYEOF) + { + yychar = yytoken = YYEOF; + YYDPRINTF ((stderr, "Now at end of input.\n")); + } + else + { + yytoken = YYTRANSLATE (yychar); + YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); + } + + /* If the proper action on seeing token YYTOKEN is to reduce or to + detect an error, take that action. */ + yyn += yytoken; + if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) + goto yydefault; + yyn = yytable[yyn]; + if (yyn <= 0) + { + if (yytable_value_is_error (yyn)) + goto yyerrlab; + yyn = -yyn; + goto yyreduce; + } + + /* Count tokens shifted since error; after three, turn off error + status. */ + if (yyerrstatus) + yyerrstatus--; + + /* Shift the lookahead token. */ + YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); + + /* Discard the shifted token. */ + yychar = YYEMPTY; + + yystate = yyn; + *++yyvsp = yylval; + + goto yynewstate; + + +/*-----------------------------------------------------------. +| yydefault -- do the default action for the current state. | +`-----------------------------------------------------------*/ +yydefault: + yyn = yydefact[yystate]; + if (yyn == 0) + goto yyerrlab; + goto yyreduce; + + +/*-----------------------------. +| yyreduce -- Do a reduction. | +`-----------------------------*/ +yyreduce: + /* yyn is the number of a rule to reduce with. */ + yylen = yyr2[yyn]; + + /* If YYLEN is nonzero, implement the default value of the action: + `$$ = $1'. + + Otherwise, the following line sets YYVAL to garbage. + This behavior is undocumented and Bison + users should not rely upon it. Assigning to YYVAL + unconditionally makes the parser a bit smaller, and it avoids a + GCC warning that YYVAL may be used uninitialized. */ + yyval = yyvsp[1-yylen]; + + + YY_REDUCE_PRINT (yyn); + switch (yyn) + { + case 14: + +/* Line 1806 of yacc.c */ +#line 84 "uparse.y" + { list_host(); } + break; + + case 15: + +/* Line 1806 of yacc.c */ +#line 85 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 16: + +/* Line 1806 of yacc.c */ +#line 86 "uparse.y" + { list_disk((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 17: + +/* Line 1806 of yacc.c */ +#line 87 "uparse.y" + { list_disk(NULL); } + break; + + case 18: + +/* Line 1806 of yacc.c */ +#line 88 "uparse.y" + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 19: + +/* Line 1806 of yacc.c */ +#line 89 "uparse.y" + { list_property(); } + break; + + case 20: + +/* Line 1806 of yacc.c */ +#line 90 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 21: + +/* Line 1806 of yacc.c */ +#line 91 "uparse.y" + { set_translate(NULL); } + break; + + case 22: + +/* Line 1806 of yacc.c */ +#line 92 "uparse.y" + { yyerror("Invalid argument"); } + break; + + case 23: + +/* Line 1806 of yacc.c */ +#line 93 "uparse.y" + { set_translate((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 24: + +/* Line 1806 of yacc.c */ +#line 94 "uparse.y" + { set_host((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 25: + +/* Line 1806 of yacc.c */ +#line 95 "uparse.y" + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (3)].strval)); } + break; + + 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" + { yyerror("Argument required"); } + break; + + 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" + { yyerror("Invalid argument"); amfree((yyvsp[(3) - (4)].strval)); } + break; + + case 39: + +/* Line 1806 of yacc.c */ +#line 109 "uparse.y" + { yyerror("Invalid argument"); amfree((yyvsp[(3) - (5)].strval)); amfree((yyvsp[(4) - (5)].strval)); } + break; + + case 40: + +/* Line 1806 of yacc.c */ +#line 110 "uparse.y" + { set_property_name((yyvsp[(2) - (3)].strval), 0); amfree((yyvsp[(2) - (3)].strval)); } + break; + + case 41: + +/* Line 1806 of yacc.c */ +#line 111 "uparse.y" + { set_property_name((yyvsp[(3) - (4)].strval), 1); amfree((yyvsp[(3) - (4)].strval)); } + break; + + case 42: + +/* Line 1806 of yacc.c */ +#line 112 "uparse.y" + { set_property_name((yyvsp[(3) - (4)].strval), 0); amfree((yyvsp[(3) - (4)].strval)); } + break; + + case 43: + +/* Line 1806 of yacc.c */ +#line 113 "uparse.y" + { set_property_name((yyvsp[(4) - (5)].strval), 1); amfree((yyvsp[(4) - (5)].strval)); } + break; + + case 44: + +/* Line 1806 of yacc.c */ +#line 114 "uparse.y" + { yyerror("Invalid argument"); } + break; + + 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" + { cd_glob((yyvsp[(2) - (3)].strval), 1); amfree((yyvsp[(2) - (3)].strval)); } + break; - YYDPRINTF ((stderr, "Stack size increased to %lu\n", - (unsigned long int) yystacksize)); + case 49: - if (yyssp >= yyss + yystacksize - 1) - YYABORT; - } +/* Line 1806 of yacc.c */ +#line 119 "uparse.y" + { yyerror("Invalid argument"); } + break; - YYDPRINTF ((stderr, "Entering state %d\n", yystate)); + case 50: - goto yybackup; +/* Line 1806 of yacc.c */ +#line 120 "uparse.y" + { yyerror("Argument required"); } + break; + case 51: -/*-----------. -| yybackup. | -`-----------*/ -yybackup: +/* Line 1806 of yacc.c */ +#line 121 "uparse.y" + { cd_regex((yyvsp[(2) - (3)].strval), 1); amfree((yyvsp[(2) - (3)].strval)); } + break; -/* Do appropriate processing given the current state. */ -/* Read a lookahead token if we need one and don't already have one. */ -/* yyresume: */ + case 52: - /* First try to decide what to do without reference to lookahead token. */ +/* Line 1806 of yacc.c */ +#line 122 "uparse.y" + { yyerror("Invalid argument"); amfree((yyvsp[(2) - (3)].strval)); } + break; - yyn = yypact[yystate]; - if (yyn == YYFLAG) - goto yydefault; + case 53: - /* Not known => get a lookahead token if don't already have one. */ +/* Line 1806 of yacc.c */ +#line 123 "uparse.y" + { yyerror("Argument required"); } + break; - /* yychar is either YYEMPTY or YYEOF - or a valid token in external form. */ + case 54: - if (yychar == YYEMPTY) - { - YYDPRINTF ((stderr, "Reading a token: ")); - yychar = YYLEX; - } +/* Line 1806 of yacc.c */ +#line 124 "uparse.y" + { set_mode(SAMBA_SMBCLIENT); } + break; - /* Convert token to internal form (in yychar1) for indexing tables with */ + case 55: - if (yychar <= 0) /* This means end of input. */ - { - yychar1 = 0; - yychar = YYEOF; /* Don't call YYLEX any more */ +/* Line 1806 of yacc.c */ +#line 125 "uparse.y" + { set_mode(SAMBA_TAR); } + break; - YYDPRINTF ((stderr, "Now at end of input.\n")); - } - else - { - yychar1 = YYTRANSLATE (yychar); + case 56: -#if YYDEBUG - /* We have to keep this `#if YYDEBUG', since we use variables - which are defined only if `YYDEBUG' is set. */ - if (yydebug) - { - YYFPRINTF (stderr, "Next token is %d (%s", - yychar, yytname[yychar1]); - /* Give the individual parser a way to print the precise - meaning of a token, for further debugging info. */ -# ifdef YYPRINT - YYPRINT (stderr, yychar, yylval); -# endif - YYFPRINTF (stderr, ")\n"); - } -#endif - } +/* Line 1806 of yacc.c */ +#line 126 "uparse.y" + { yyerror("Invalid argument"); } + break; - yyn += yychar1; - if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1) - goto yydefault; + case 57: - yyn = yytable[yyn]; +/* 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; - /* yyn is what to do for this token type in this state. - Negative => reduce, -yyn is rule number. - Positive => shift, yyn is new state. - New state is final state => don't bother to shift, - just return success. - 0, or most negative number => error. */ + case 59: - if (yyn < 0) +/* Line 1806 of yacc.c */ +#line 129 "uparse.y" + { yyerror("Argument required"); } + break; + + case 60: + +/* Line 1806 of yacc.c */ +#line 133 "uparse.y" { - if (yyn == YYFLAG) - goto yyerrlab; - yyn = -yyn; - goto yyreduce; - } - else if (yyn == 0) - goto yyerrlab; + 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; - if (yyn == YYFINAL) - YYACCEPT; + case 61: - /* Shift the lookahead token. */ - YYDPRINTF ((stderr, "Shifting token %d (%s), ", - yychar, yytname[yychar1])); +/* Line 1806 of yacc.c */ +#line 179 "uparse.y" + { yyerror("Argument required"); } + break; - /* Discard the token being shifted unless it is eof. */ - if (yychar != YYEOF) - yychar = YYEMPTY; + case 62: - *++yyvsp = yylval; -#if YYLSP_NEEDED - *++yylsp = yylloc; -#endif +/* Line 1806 of yacc.c */ +#line 180 "uparse.y" + { yyerror("Invalid argument"); } + break; - /* Count tokens shifted since error; after three, turn off error - status. */ - if (yyerrstatus) - yyerrstatus--; + case 63: - yystate = yyn; - goto yynewstate; +/* Line 1806 of yacc.c */ +#line 184 "uparse.y" + { list_disk_history(); } + break; + case 64: -/*-----------------------------------------------------------. -| yydefault -- do the default action for the current state. | -`-----------------------------------------------------------*/ -yydefault: - yyn = yydefact[yystate]; - if (yyn == 0) - goto yyerrlab; - goto yyreduce; +/* Line 1806 of yacc.c */ +#line 185 "uparse.y" + { yyerror("Invalid argument"); } + break; + case 65: -/*-----------------------------. -| yyreduce -- Do a reduction. | -`-----------------------------*/ -yyreduce: - /* yyn is the number of a rule to reduce with. */ - yylen = yyr2[yyn]; +/* Line 1806 of yacc.c */ +#line 186 "uparse.y" + { list_directory(); } + break; - /* If YYLEN is nonzero, implement the default value of the action: - `$$ = $1'. + case 66: - Otherwise, the following line sets YYVAL to the semantic value of - the lookahead token. This behavior is undocumented and Bison - users should not rely upon it. Assigning to YYVAL - unconditionally makes the parser a bit smaller, and it avoids a - GCC warning that YYVAL may be used uninitialized. */ - yyval = yyvsp[1-yylen]; +/* Line 1806 of yacc.c */ +#line 187 "uparse.y" + { yyerror("Invalid argument"); } + break; -#if YYLSP_NEEDED - /* Similarly for the default location. Let the user run additional - commands if for instance locations are ranges. */ - yyloc = yylsp[1-yylen]; - YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen); -#endif + case 67: -#if YYDEBUG - /* We have to keep this `#if YYDEBUG', since we use variables which - are defined only if `YYDEBUG' is set. */ - if (yydebug) - { - int yyi; +/* Line 1806 of yacc.c */ +#line 188 "uparse.y" + { display_extract_list((yyvsp[(2) - (3)].strval)); amfree((yyvsp[(2) - (3)].strval)); } + break; - YYFPRINTF (stderr, "Reducing via rule %d (line %d), ", - yyn, yyrline[yyn]); + case 68: - /* Print the symbols being reduced, and their result. */ - for (yyi = yyprhs[yyn]; yyrhs[yyi] > 0; yyi++) - YYFPRINTF (stderr, "%s ", yytname[yyrhs[yyi]]); - YYFPRINTF (stderr, " -> %s\n", yytname[yyr1[yyn]]); - } -#endif +/* Line 1806 of yacc.c */ +#line 189 "uparse.y" + { display_extract_list(NULL); } + break; - switch (yyn) { + case 69: -case 11: -#line 76 "uparse.y" -{ list_disk(yyvsp[0].strval); amfree(yyvsp[0].strval); } +/* Line 1806 of yacc.c */ +#line 190 "uparse.y" + { yyerror("Invalid argument"); } break; -case 12: -#line 77 "uparse.y" -{ list_disk(NULL); } + + case 70: + +/* Line 1806 of yacc.c */ +#line 191 "uparse.y" + { show_directory(); } break; -case 13: -#line 78 "uparse.y" -{ set_date(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 71: + +/* Line 1806 of yacc.c */ +#line 192 "uparse.y" + { yyerror("Invalid argument"); } break; -case 14: -#line 79 "uparse.y" -{ set_host(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 72: + +/* Line 1806 of yacc.c */ +#line 193 "uparse.y" + { clear_extract_list(); } break; -case 15: -#line 80 "uparse.y" -{ set_disk(yyvsp[-1].strval, yyvsp[0].strval); amfree(yyvsp[-1].strval); amfree(yyvsp[0].strval); } + + case 73: + +/* Line 1806 of yacc.c */ +#line 194 "uparse.y" + { yyerror("Invalid argument"); } break; -case 16: -#line 81 "uparse.y" -{ set_disk(yyvsp[0].strval, NULL); amfree(yyvsp[0].strval); } + + case 74: + +/* Line 1806 of yacc.c */ +#line 195 "uparse.y" + { show_mode (); } break; -case 17: -#line 82 "uparse.y" -{ set_tape(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 75: + +/* Line 1806 of yacc.c */ +#line 196 "uparse.y" + { yyerror("Invalid argument"); } break; -case 18: -#line 83 "uparse.y" -{ set_tape(""); } + + case 76: + +/* Line 1806 of yacc.c */ +#line 200 "uparse.y" + { quit(); } break; -case 19: -#line 84 "uparse.y" -{ cd_glob(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 77: + +/* Line 1806 of yacc.c */ +#line 201 "uparse.y" + { yyerror("Invalid argument"); } break; -case 20: -#line 85 "uparse.y" -{ cd_regex(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 79: + +/* Line 1806 of yacc.c */ +#line 209 "uparse.y" + { add_glob((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } break; -case 21: -#line 86 "uparse.y" -{ -#ifdef SAMBA_CLIENT - set_mode(SAMBA_SMBCLIENT); -#endif /* SAMBA_CLIENT */ - } + + case 80: + +/* Line 1806 of yacc.c */ +#line 210 "uparse.y" + { add_glob((yyvsp[(1) - (1)].strval)); amfree((yyvsp[(1) - (1)].strval)); } break; -case 22: -#line 91 "uparse.y" -{ -#ifdef SAMBA_CLIENT - set_mode(SAMBA_TAR); -#endif /* SAMBA_CLIENT */ - } + + case 82: + +/* Line 1806 of yacc.c */ +#line 218 "uparse.y" + { add_regex((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } break; -case 23: -#line 99 "uparse.y" -{ list_disk_history(); } + + case 83: + +/* Line 1806 of yacc.c */ +#line 219 "uparse.y" + { add_regex((yyvsp[(1) - (1)].strval)); amfree((yyvsp[(1) - (1)].strval)); } break; -case 24: -#line 100 "uparse.y" -{ list_directory(); } + + case 85: + +/* Line 1806 of yacc.c */ +#line 227 "uparse.y" + { delete_glob((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } break; -case 25: -#line 101 "uparse.y" -{ display_extract_list(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 86: + +/* Line 1806 of yacc.c */ +#line 228 "uparse.y" + { delete_glob((yyvsp[(1) - (1)].strval)); amfree((yyvsp[(1) - (1)].strval)); } break; -case 26: -#line 102 "uparse.y" -{ display_extract_list(NULL); } + + case 88: + +/* Line 1806 of yacc.c */ +#line 236 "uparse.y" + { delete_regex((yyvsp[(2) - (2)].strval)); amfree((yyvsp[(2) - (2)].strval)); } break; -case 27: -#line 103 "uparse.y" -{ show_directory(); } + + case 89: + +/* Line 1806 of yacc.c */ +#line 237 "uparse.y" + { delete_regex((yyvsp[(1) - (1)].strval)); amfree((yyvsp[(1) - (1)].strval)); } break; -case 28: -#line 104 "uparse.y" -{ clear_extract_list(); } + + case 90: + +/* Line 1806 of yacc.c */ +#line 241 "uparse.y" + { char * buf= g_get_current_dir(); puts(buf); free(buf); } break; -case 29: -#line 105 "uparse.y" -{ show_mode (); } + + case 91: + +/* Line 1806 of yacc.c */ +#line 242 "uparse.y" + { yyerror("Invalid argument"); } break; -case 30: -#line 109 "uparse.y" -{ quit(); } + + case 92: + +/* Line 1806 of yacc.c */ +#line 243 "uparse.y" + { + local_cd((yyvsp[(2) - (3)].strval)); + amfree((yyvsp[(2) - (3)].strval)); + } break; -case 32: -#line 117 "uparse.y" -{ add_glob(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 93: + +/* Line 1806 of yacc.c */ +#line 247 "uparse.y" + { yyerror("Invalid argument"); } break; -case 33: -#line 118 "uparse.y" -{ add_glob(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 94: + +/* Line 1806 of yacc.c */ +#line 248 "uparse.y" + { yyerror("Argument required"); } break; -case 35: -#line 126 "uparse.y" -{ add_regex(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 95: + +/* Line 1806 of yacc.c */ +#line 252 "uparse.y" + { help_list(); } break; -case 36: -#line 127 "uparse.y" -{ add_regex(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 96: + +/* Line 1806 of yacc.c */ +#line 253 "uparse.y" + { yyerror("Invalid argument"); } break; -case 38: -#line 135 "uparse.y" -{ delete_glob(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 97: + +/* Line 1806 of yacc.c */ +#line 257 "uparse.y" + { extract_files(); } break; -case 39: -#line 136 "uparse.y" -{ delete_glob(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + case 98: + +/* Line 1806 of yacc.c */ +#line 258 "uparse.y" + { yyerror("Invalid argument"); } break; -case 41: -#line 144 "uparse.y" -{ delete_regex(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + 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 42: -#line 145 "uparse.y" -{ delete_regex(yyvsp[0].strval); amfree(yyvsp[0].strval); } + + 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 43: -#line 149 "uparse.y" -{ char buf[STR_SIZE]; puts(getcwd(buf, sizeof(buf))); } + + case 101: + +/* Line 1806 of yacc.c */ +#line 272 "uparse.y" + { ; } break; -case 44: -#line 150 "uparse.y" -{ - if (chdir(yyvsp[0].strval) == -1) { - perror(yyvsp[0].strval); - } - amfree(yyvsp[0].strval); - } + + case 102: + +/* Line 1806 of yacc.c */ +#line 276 "uparse.y" + { amfree((yyvsp[(1) - (2)].strval)); } break; -case 45: -#line 159 "uparse.y" -{ help_list(); } + + case 103: + +/* Line 1806 of yacc.c */ +#line 280 "uparse.y" + { amfree((yyvsp[(1) - (2)].strval)); } break; -case 46: -#line 163 "uparse.y" -{ extract_files(); } + + case 104: + +/* Line 1806 of yacc.c */ +#line 281 "uparse.y" + { ; } break; -} -#line 705 "/usr/share/bison/bison.simple" - - yyvsp -= yylen; - yyssp -= yylen; -#if YYLSP_NEEDED - yylsp -= yylen; -#endif -#if YYDEBUG - if (yydebug) - { - short *yyssp1 = yyss - 1; - YYFPRINTF (stderr, "state stack now"); - while (yyssp1 != yyssp) - YYFPRINTF (stderr, " %d", *++yyssp1); - YYFPRINTF (stderr, "\n"); +/* Line 1806 of yacc.c */ +#line 2261 "uparse.c" + default: break; } -#endif + /* 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); + yylen = 0; + YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; -#if YYLSP_NEEDED - *++yylsp = yyloc; -#endif /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule @@ -1112,11 +2285,11 @@ case 46: yyn = yyr1[yyn]; - yystate = yypgoto[yyn - YYNTBASE] + *yyssp; - if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp) + yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; + if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else - yystate = yydefgoto[yyn - YYNTBASE]; + yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; @@ -1125,159 +2298,133 @@ case 46: | 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) { ++yynerrs; - -#ifdef YYERROR_VERBOSE - yyn = yypact[yystate]; - - if (yyn > YYFLAG && yyn < YYLAST) - { - YYSIZE_T yysize = 0; - char *yymsg; - int yyx, yycount; - - yycount = 0; - /* Start YYX at -YYN if negative to avoid negative indexes in - YYCHECK. */ - for (yyx = yyn < 0 ? -yyn : 0; - yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++) - if (yycheck[yyx + yyn] == yyx) - yysize += yystrlen (yytname[yyx]) + 15, yycount++; - yysize += yystrlen ("parse error, unexpected ") + 1; - yysize += yystrlen (yytname[YYTRANSLATE (yychar)]); - yymsg = (char *) YYSTACK_ALLOC (yysize); - if (yymsg != 0) - { - char *yyp = yystpcpy (yymsg, "parse error, unexpected "); - yyp = yystpcpy (yyp, yytname[YYTRANSLATE (yychar)]); - - if (yycount < 5) - { - yycount = 0; - for (yyx = yyn < 0 ? -yyn : 0; - yyx < (int) (sizeof (yytname) / sizeof (char *)); - yyx++) - if (yycheck[yyx + yyn] == yyx) - { - const char *yyq = ! yycount ? ", expecting " : " or "; - yyp = yystpcpy (yyp, yyq); - yyp = yystpcpy (yyp, yytname[yyx]); - yycount++; - } - } - yyerror (yymsg); - YYSTACK_FREE (yymsg); - } - else - yyerror ("parse error; also virtual memory exhausted"); - } - else -#endif /* defined (YYERROR_VERBOSE) */ - yyerror ("parse error"); +#if ! YYERROR_VERBOSE + yyerror (YY_("syntax error")); +#else +# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ + yyssp, yytoken) + { + 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 } - goto yyerrlab1; -/*--------------------------------------------------. -| yyerrlab1 -- error raised explicitly by an action | -`--------------------------------------------------*/ -yyerrlab1: + if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ - /* return failure if at end of input */ - if (yychar == YYEOF) - YYABORT; - YYDPRINTF ((stderr, "Discarding token %d (%s).\n", - yychar, yytname[yychar1])); - yychar = YYEMPTY; + if (yychar <= YYEOF) + { + /* Return failure if at end of input. */ + if (yychar == YYEOF) + YYABORT; + } + else + { + yydestruct ("Error: discarding", + yytoken, &yylval); + yychar = YYEMPTY; + } } /* Else will try to reuse lookahead token after shifting the error token. */ + goto yyerrlab1; - yyerrstatus = 3; /* Each real token shifted decrements this */ - - goto yyerrhandle; +/*---------------------------------------------------. +| yyerrorlab -- error raised explicitly by YYERROR. | +`---------------------------------------------------*/ +yyerrorlab: -/*-------------------------------------------------------------------. -| yyerrdefault -- current state does not do anything special for the | -| error token. | -`-------------------------------------------------------------------*/ -yyerrdefault: -#if 0 - /* This is wrong; only states that explicitly want error tokens - should shift them. */ + /* Pacify compilers like GCC when the user code never invokes + YYERROR and the label yyerrorlab therefore never appears in user + code. */ + if (/*CONSTCOND*/ 0) + goto yyerrorlab; - /* If its default is to accept any token, ok. Otherwise pop it. */ - yyn = yydefact[yystate]; - if (yyn) - goto yydefault; -#endif + /* Do not reclaim the symbols of the rule which action triggered + this YYERROR. */ + YYPOPSTACK (yylen); + yylen = 0; + YY_STACK_PRINT (yyss, yyssp); + yystate = *yyssp; + goto yyerrlab1; -/*---------------------------------------------------------------. -| yyerrpop -- pop the current state because it cannot handle the | -| error token | -`---------------------------------------------------------------*/ -yyerrpop: - if (yyssp == yyss) - YYABORT; - yyvsp--; - yystate = *--yyssp; -#if YYLSP_NEEDED - yylsp--; -#endif +/*-------------------------------------------------------------. +| yyerrlab1 -- common code for both syntax error and YYERROR. | +`-------------------------------------------------------------*/ +yyerrlab1: + yyerrstatus = 3; /* Each real token shifted decrements this. */ -#if YYDEBUG - if (yydebug) + for (;;) { - short *yyssp1 = yyss - 1; - YYFPRINTF (stderr, "Error: state stack now"); - while (yyssp1 != yyssp) - YYFPRINTF (stderr, " %d", *++yyssp1); - YYFPRINTF (stderr, "\n"); - } -#endif + yyn = yypact[yystate]; + if (!yypact_value_is_default (yyn)) + { + yyn += YYTERROR; + if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) + { + yyn = yytable[yyn]; + if (0 < yyn) + break; + } + } -/*--------------. -| yyerrhandle. | -`--------------*/ -yyerrhandle: - yyn = yypact[yystate]; - if (yyn == YYFLAG) - goto yyerrdefault; + /* Pop the current state because it cannot handle the error token. */ + if (yyssp == yyss) + YYABORT; - yyn += YYTERROR; - if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR) - goto yyerrdefault; - yyn = yytable[yyn]; - if (yyn < 0) - { - if (yyn == YYFLAG) - goto yyerrpop; - yyn = -yyn; - goto yyreduce; + yydestruct ("Error: popping", + yystos[yystate], yyvsp); + YYPOPSTACK (1); + yystate = *yyssp; + YY_STACK_PRINT (yyss, yyssp); } - else if (yyn == 0) - goto yyerrpop; - if (yyn == YYFINAL) - YYACCEPT; + *++yyvsp = yylval; - YYDPRINTF ((stderr, "Shifting error token, ")); - *++yyvsp = yylval; -#if YYLSP_NEEDED - *++yylsp = yylloc; -#endif + /* Shift the error token. */ + YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; @@ -1297,28 +2444,57 @@ yyabortlab: yyresult = 1; goto yyreturn; -/*---------------------------------------------. -| yyoverflowab -- parser overflow comes here. | -`---------------------------------------------*/ -yyoverflowlab: - yyerror ("parser stack overflow"); +#if !defined(yyoverflow) || YYERROR_VERBOSE +/*-------------------------------------------------. +| yyexhaustedlab -- memory exhaustion comes here. | +`-------------------------------------------------*/ +yyexhaustedlab: + yyerror (YY_("memory exhausted")); yyresult = 2; /* Fall through. */ +#endif yyreturn: + 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); + YY_STACK_PRINT (yyss, yyssp); + while (yyssp != yyss) + { + yydestruct ("Cleanup: popping", + yystos[*yyssp], yyvsp); + YYPOPSTACK (1); + } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif - return yyresult; +#if YYERROR_VERBOSE + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); +#endif + /* Make sure YYID is used. */ + return YYID (yyresult); } -#line 167 "uparse.y" -void yyerror(s) -char *s; + +/* Line 2067 of yacc.c */ +#line 284 "uparse.y" + + +void +yyerror( + char * s) { - printf("Invalid command - %s\n", s); + g_printf("%s\n", s); } -