⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getdate.c

📁 gnu tar 源码包。 tar 软件是 Unix 系统下的一个打包软件
💻 C
📖 第 1 页 / 共 5 页
字号:
/*ARGSUSED*/#if (defined __STDC__ || defined __C99__FUNC__ \     || defined __cplusplus || defined _MSC_VER)static voidyydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, parser_control *pc)#elsestatic voidyydestruct (yymsg, yytype, yyvaluep, pc)    const char *yymsg;    int yytype;    YYSTYPE *yyvaluep;    parser_control *pc;#endif{  YYUSE (yyvaluep);  YYUSE (pc);  if (!yymsg)    yymsg = "Deleting";  YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);  switch (yytype)    {      default:	break;    }}/* Prevent warnings from -Wmissing-prototypes.  */#ifdef YYPARSE_PARAM#if defined __STDC__ || defined __cplusplusint yyparse (void *YYPARSE_PARAM);#elseint yyparse ();#endif#else /* ! YYPARSE_PARAM */#if defined __STDC__ || defined __cplusplusint yyparse (parser_control *pc);#elseint yyparse ();#endif#endif /* ! YYPARSE_PARAM *//*----------.| yyparse.  |`----------*/#ifdef YYPARSE_PARAM#if (defined __STDC__ || defined __C99__FUNC__ \     || defined __cplusplus || defined _MSC_VER)intyyparse (void *YYPARSE_PARAM)#elseintyyparse (YYPARSE_PARAM)    void *YYPARSE_PARAM;#endif#else /* ! YYPARSE_PARAM */#if (defined __STDC__ || defined __C99__FUNC__ \     || defined __cplusplus || defined _MSC_VER)intyyparse (parser_control *pc)#elseintyyparse (pc)    parser_control *pc;#endif#endif{  /* The look-ahead symbol.  */int yychar;/* The semantic value of the look-ahead symbol.  */YYSTYPE yylval;/* Number of syntax errors so far.  */int yynerrs;  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.     Refer to the stacks thru separate pointers, to allow yyoverflow     to reallocate them elsewhere.  */  /* The state stack.  */  yytype_int16 yyssa[YYINITDEPTH];  yytype_int16 *yyss = yyssa;  yytype_int16 *yyssp;  /* The semantic value stack.  */  YYSTYPE yyvsa[YYINITDEPTH];  YYSTYPE *yyvs = yyvsa;  YYSTYPE *yyvsp;#define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))  YYSIZE_T yystacksize = YYINITDEPTH;  /* The variables used to return semantic value and location from the     action routines.  */  YYSTYPE yyval;  /* The number of symbols on the RHS of the reduced rule.     Keep to zero when no symbol should be popped.  */  int yylen = 0;  YYDPRINTF ((stderr, "Starting parse\n"));  yystate = 0;  yyerrstatus = 0;  yynerrs = 0;  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;  goto yysetstate;/*------------------------------------------------------------.| yynewstate -- Push a new state, which is found in yystate.  |`------------------------------------------------------------*/ 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.  */  yyssp++; yysetstate:  *yyssp = yystate;  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	   these so that the &'s don't force the real ones into	   memory.  */	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	   be undefined if yyoverflow is a macro.  */	yyoverflow (YY_("memory exhausted"),		    &yyss1, yysize * sizeof (*yyssp),		    &yyvs1, yysize * sizeof (*yyvsp),		    &yystacksize);	yyss = yyss1;	yyvs = yyvs1;      }#else /* no yyoverflow */# ifndef YYSTACK_RELOCATE      goto yyexhaustedlab;# else      /* Extend the stack our own way.  */      if (YYMAXDEPTH <= yystacksize)	goto yyexhaustedlab;      yystacksize *= 2;      if (YYMAXDEPTH < yystacksize)	yystacksize = YYMAXDEPTH;      {	yytype_int16 *yyss1 = yyss;	union yyalloc *yyptr =	  (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));	if (! yyptr)	  goto yyexhaustedlab;	YYSTACK_RELOCATE (yyss);	YYSTACK_RELOCATE (yyvs);#  undef YYSTACK_RELOCATE	if (yyss1 != yyssa)	  YYSTACK_FREE (yyss1);      }# endif#endif /* no yyoverflow */      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));  goto yybackup;/*-----------.| yybackup.  |`-----------*/yybackup:  /* Do appropriate processing given the current state.  Read a     look-ahead token if we need one and don't already have one.  */  /* First try to decide what to do without reference to look-ahead token.  */  yyn = yypact[yystate];  if (yyn == YYPACT_NINF)    goto yydefault;  /* Not known => get a look-ahead token if don't already have one.  */  /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead 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 (yyn == 0 || yyn == YYTABLE_NINF)	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.  */  YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);  /* Discard the shifted token unless it is eof.  */  if (yychar != YYEOF)    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 4:#line 293 "getdate.y"    {	pc->seconds = (yyvsp[(2) - (2)].timespec);	pc->timespec_seen = true;      }    break;  case 7:#line 306 "getdate.y"    { pc->times_seen++; }    break;  case 8:#line 308 "getdate.y"    { pc->local_zones_seen++; }    break;  case 9:#line 310 "getdate.y"    { pc->zones_seen++; }    break;  case 10:#line 312 "getdate.y"    { pc->dates_seen++; }    break;  case 11:#line 314 "getdate.y"    { pc->days_seen++; }    break;  case 12:#line 316 "getdate.y"    { pc->rels_seen = true; }    break;  case 15:#line 323 "getdate.y"    {	pc->hour = (yyvsp[(1) - (2)].textintval).value;	pc->minutes = 0;	pc->seconds.tv_sec = 0;	pc->seconds.tv_nsec = 0;	pc->meridian = (yyvsp[(2) - (2)].intval);      }    break;  case 16:#line 331 "getdate.y"    {	pc->hour = (yyvsp[(1) - (4)].textintval).value;	pc->minutes = (yyvsp[(3) - (4)].textintval).value;	pc->seconds.tv_sec = 0;	pc->seconds.tv_nsec = 0;	pc->meridian = (yyvsp[(4) - (4)].intval);      }    break;  case 17:#line 339 "getdate.y"    {	pc->hour = (yyvsp[(1) - (5)].textintval).value;	pc->minutes = (yyvsp[(3) - (5)].textintval).value;	pc->seconds.tv_sec = 0;	pc->seconds.tv_nsec = 0;	pc->meridian = MER24;	pc->zones_seen++;	pc->time_zone = time_zone_hhmm ((yyvsp[(4) - (5)].textintval), (yyvsp[(5) - (5)].intval));      }    break;  case 18:#line 349 "getdate.y"    {	pc->hour = (yyvsp[(1) - (6)].textintval).value;	pc->minutes = (yyvsp[(3) - (6)].textintval).value;	pc->seconds = (yyvsp[(5) - (6)].timespec);	pc->meridian = (yyvsp[(6) - (6)].intval);      }    break;  case 19:#line 356 "getdate.y"    {	pc->hour = (yyvsp[(1) - (7)].textintval).value;	pc->minutes = (yyvsp[(3) - (7)].textintval).value;	pc->seconds = (yyvsp[(5) - (7)].timespec);	pc->meridian = MER24;	pc->zones_seen++;	pc->time_zone = time_zone_hhmm ((yyvsp[(6) - (7)].textintval), (yyvsp[(7) - (7)].intval));      }    break;  case 20:#line 368 "getdate.y"    {	pc->local_isdst = (yyvsp[(1) - (1)].intval);	pc->dsts_seen += (0 < (yyvsp[(1) - (1)].intval));      }    break;  case 21:#line 373 "getdate.y"    {	pc->local_isdst = 1;	pc->dsts_seen += (0 < (yyvsp[(1) - (2)].intval)) + 1;      }    break;  case 22:#line 381 "getdate.y"    { pc->time_zone = (yyvsp[(1) - (1)].intval); }    break;  case 23:#line 383 "getdate.y"    { pc->time_zone = (yyvsp[(1) - (2)].intval);	pc->rel.ns += (yyvsp[(2) - (2)].rel).ns;	pc->rel.seconds += (yyvsp[(2) - (2)].rel).seconds;	pc->rel.minutes += (yyvsp[(2) - (2)].rel).minutes;	pc->rel.hour += (yyvsp[(2) - (2)].rel).hour;	pc->rel.day += (yyvsp[(2) - (2)].rel).day;	pc->rel.month += (yyvsp[(2) - (2)].rel).month;	pc->rel.year += (yyvsp[(2) - (2)].rel).year;        pc->rels_seen = true; }    break;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -