📄 getdate.y
字号:
%{/*** Originally written by Steven M. Bellovin <smb@research.att.com> while** at the University of North Carolina at Chapel Hill. Later tweaked by** a couple of people on Usenet. Completely overhauled by Rich $alz** <rsalz@bbn.com> and Jim Berets <jberets@bbn.com> in August, 1990.**** This code is in the public domain and has no copyright.*/#include "setup.h"# ifdef HAVE_ALLOCA_H# include <alloca.h># endif# ifdef HAVE_TIME_H# include <time.h># endif#ifndef YYDEBUG /* to satisfy gcc -Wundef, we set this to 0 */#define YYDEBUG 0#endif/* Since the code of getdate.y is not included in the Emacs executable itself, there is no need to #define static in this file. Even if the code were included in the Emacs executable, it probably wouldn't do any harm to #undef it here; this will only cause problems if we try to write to a static variable, which I don't think this code needs to do. */#ifdef emacs# undef static#endif#ifdef __APPLE__#include <sys/types.h>#include <sys/malloc.h>#else#endif#include <string.h>#include <stdio.h>#include <ctype.h>#if HAVE_STDLIB_H# include <stdlib.h> /* for `free'; used by Bison 1.27 */#else#ifdef HAVE_MALLOC_H#include <malloc.h>#endif#endif#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))# define IN_CTYPE_DOMAIN(c) 1#else# define IN_CTYPE_DOMAIN(c) isascii(c)#endif#define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))#define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))#define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))#define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))/* ISDIGIT differs from ISDIGIT_LOCALE, as follows: - Its arg may be any int or unsigned int; it need not be an unsigned char. - It's guaranteed to evaluate its argument exactly once. - It's typically faster. Posix 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that only '0' through '9' are digits. Prefer ISDIGIT to ISDIGIT_LOCALE unless it's important to use the locale's definition of `digit' even when the host does not conform to Posix. */#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)#if defined (STDC_HEADERS) || defined (USG)# include <string.h>#endif/* The last #include file should be: */#ifdef MALLOCDEBUG#include "memdebug.h"#endif#ifndef YYMAXDEPTH#define YYMAXDEPTH 0#endif#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)# define __attribute__(x)#endif#ifndef ATTRIBUTE_UNUSED# define ATTRIBUTE_UNUSED __attribute__ ((__unused__))#endif/* Some old versions of bison generate parsers that use bcopy. That loses on systems that don't provide the function, so we have to redefine it here. */#if !defined (HAVE_BCOPY) && defined (HAVE_MEMCPY) && !defined (bcopy)# define bcopy(from, to, len) memcpy ((to), (from), (len))#endif/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc), as well as gratuitiously global symbol names, so we can have multiple yacc generated parsers in the same program. Note that these are only the variables produced by yacc. If other parser generators (bison, byacc, etc) produce additional global names that conflict at link time, then those parser generators need to be fixed instead of adding those names to this list. */#define yymaxdepth Curl_gd_maxdepth#define yyparse Curl_gd_parse#define yylex Curl_gd_lex#define yyerror Curl_gd_error#define yylval Curl_gd_lval#define yychar Curl_gd_char#define yydebug Curl_gd_debug#define yypact Curl_gd_pact#define yyr1 Curl_gd_r1#define yyr2 Curl_gd_r2#define yydef Curl_gd_def#define yychk Curl_gd_chk#define yypgo Curl_gd_pgo#define yyact Curl_gd_act#define yyexca Curl_gd_exca#define yyerrflag Curl_gd_errflag#define yynerrs Curl_gd_nerrs#define yyps Curl_gd_ps#define yypv Curl_gd_pv#define yys Curl_gd_s#define yy_yys Curl_gd_yys#define yystate Curl_gd_state#define yytmp Curl_gd_tmp#define yyv Curl_gd_v#define yy_yyv Curl_gd_yyv#define yyval Curl_gd_val#define yylloc Curl_gd_lloc#define yyreds Curl_gd_reds /* With YYDEBUG defined */#define yytoks Curl_gd_toks /* With YYDEBUG defined */#define yylhs Curl_gd_yylhs#define yylen Curl_gd_yylen#define yydefred Curl_gd_yydefred#define yydgoto Curl_gd_yydgoto#define yysindex Curl_gd_yysindex#define yyrindex Curl_gd_yyrindex#define yygindex Curl_gd_yygindex#define yytable Curl_gd_yytable#define yycheck Curl_gd_yycheckstatic int yylex ();static int yyerror ();#define EPOCH 1970#define HOUR(x) ((x) * 60)#define MAX_BUFF_LEN 128 /* size of buffer to read the date into *//*** An entry in the lexical lookup table.*/typedef struct _TABLE { const char *name; int type; int value;} TABLE;/*** Meridian: am, pm, or 24-hour style.*/typedef enum _MERIDIAN { MERam, MERpm, MER24} MERIDIAN;/* parse results and input string */typedef struct _CURL_CONTEXT { const char *yyInput; int yyDayOrdinal; int yyDayNumber; int yyHaveDate; int yyHaveDay; int yyHaveRel; int yyHaveTime; int yyHaveZone; int yyTimezone; int yyDay; int yyHour; int yyMinutes; int yyMonth; int yySeconds; int yyYear; MERIDIAN yyMeridian; int yyRelDay; int yyRelHour; int yyRelMinutes; int yyRelMonth; int yyRelSeconds; int yyRelYear;} CURL_CONTEXT;/* enable use of extra argument to yyparse and yylex which can be used to pass** in a user defined value (CURL_CONTEXT struct in our case)*/#define YYPARSE_PARAM cookie#define YYLEX_PARAM cookie#define context ((CURL_CONTEXT *) cookie)%}/* This grammar has 13 shift/reduce conflicts. */%expect 13/* turn global variables into locals, additionally enable extra arguments** for yylex (pointer to yylval and user defined value)*/%pure_parser%union { int Number; enum _MERIDIAN Meridian;}%token tAGO tDAY tDAY_UNIT tDAYZONE tDST tHOUR_UNIT tID%token tMERIDIAN tMINUTE_UNIT tMONTH tMONTH_UNIT%token tSEC_UNIT tSNUMBER tUNUMBER tYEAR_UNIT tZONE%type <Number> tDAY tDAY_UNIT tDAYZONE tHOUR_UNIT tMINUTE_UNIT%type <Number> tMONTH tMONTH_UNIT%type <Number> tSEC_UNIT tSNUMBER tUNUMBER tYEAR_UNIT tZONE%type <Meridian> tMERIDIAN o_merid%%spec : /* NULL */ | spec item ;item : time { context->yyHaveTime++; } | zone { context->yyHaveZone++; } | date { context->yyHaveDate++; } | day { context->yyHaveDay++; } | rel { context->yyHaveRel++; } | number ;time : tUNUMBER tMERIDIAN { context->yyHour = $1; context->yyMinutes = 0; context->yySeconds = 0; context->yyMeridian = $2; } | tUNUMBER ':' tUNUMBER o_merid { context->yyHour = $1; context->yyMinutes = $3; context->yySeconds = 0; context->yyMeridian = $4; } | tUNUMBER ':' tUNUMBER tSNUMBER { context->yyHour = $1; context->yyMinutes = $3; context->yyMeridian = MER24; context->yyHaveZone++; context->yyTimezone = ($4 < 0 ? -$4 % 100 + (-$4 / 100) * 60 : - ($4 % 100 + ($4 / 100) * 60)); } | tUNUMBER ':' tUNUMBER ':' tUNUMBER o_merid { context->yyHour = $1; context->yyMinutes = $3; context->yySeconds = $5; context->yyMeridian = $6; } | tUNUMBER ':' tUNUMBER ':' tUNUMBER tSNUMBER { context->yyHour = $1; context->yyMinutes = $3; context->yySeconds = $5; context->yyMeridian = MER24; context->yyHaveZone++; context->yyTimezone = ($6 < 0 ? -$6 % 100 + (-$6 / 100) * 60 : - ($6 % 100 + ($6 / 100) * 60)); } ;zone : tZONE { context->yyTimezone = $1; } | tDAYZONE { context->yyTimezone = $1 - 60; } | tZONE tDST { context->yyTimezone = $1 - 60; } ;day : tDAY { context->yyDayOrdinal = 1; context->yyDayNumber = $1; } | tDAY ',' { context->yyDayOrdinal = 1; context->yyDayNumber = $1; } | tUNUMBER tDAY { context->yyDayOrdinal = $1; context->yyDayNumber = $2; } ;date : tUNUMBER '/' tUNUMBER { context->yyMonth = $1; context->yyDay = $3; } | tUNUMBER '/' tUNUMBER '/' tUNUMBER { /* Interpret as YYYY/MM/DD if $1 >= 1000, otherwise as MM/DD/YY. The goal in recognizing YYYY/MM/DD is solely to support legacy machine-generated dates like those in an RCS log listing. If you want portability, use the ISO 8601 format. */ if ($1 >= 1000) { context->yyYear = $1; context->yyMonth = $3; context->yyDay = $5; } else { context->yyMonth = $1; context->yyDay = $3; context->yyYear = $5; } } | tUNUMBER tSNUMBER tSNUMBER { /* ISO 8601 format. yyyy-mm-dd. */ context->yyYear = $1; context->yyMonth = -$2; context->yyDay = -$3; } | tUNUMBER tMONTH tSNUMBER { /* e.g. 17-JUN-1992. */ context->yyDay = $1; context->yyMonth = $2; context->yyYear = -$3; } | tMONTH tUNUMBER { context->yyMonth = $1; context->yyDay = $2; } | tMONTH tUNUMBER ',' tUNUMBER { context->yyMonth = $1; context->yyDay = $2; context->yyYear = $4; } | tUNUMBER tMONTH { context->yyMonth = $2; context->yyDay = $1; } | tUNUMBER tMONTH tUNUMBER { context->yyMonth = $2; context->yyDay = $1; context->yyYear = $3; } ;rel : relunit tAGO { context->yyRelSeconds = -context->yyRelSeconds; context->yyRelMinutes = -context->yyRelMinutes; context->yyRelHour = -context->yyRelHour; context->yyRelDay = -context->yyRelDay; context->yyRelMonth = -context->yyRelMonth; context->yyRelYear = -context->yyRelYear; } | relunit ;relunit : tUNUMBER tYEAR_UNIT { context->yyRelYear += $1 * $2; } | tSNUMBER tYEAR_UNIT { context->yyRelYear += $1 * $2; } | tYEAR_UNIT { context->yyRelYear += $1; } | tUNUMBER tMONTH_UNIT { context->yyRelMonth += $1 * $2; } | tSNUMBER tMONTH_UNIT { context->yyRelMonth += $1 * $2; } | tMONTH_UNIT { context->yyRelMonth += $1; } | tUNUMBER tDAY_UNIT { context->yyRelDay += $1 * $2; } | tSNUMBER tDAY_UNIT { context->yyRelDay += $1 * $2; } | tDAY_UNIT { context->yyRelDay += $1; } | tUNUMBER tHOUR_UNIT { context->yyRelHour += $1 * $2; } | tSNUMBER tHOUR_UNIT { context->yyRelHour += $1 * $2; } | tHOUR_UNIT { context->yyRelHour += $1; } | tUNUMBER tMINUTE_UNIT { context->yyRelMinutes += $1 * $2; } | tSNUMBER tMINUTE_UNIT { context->yyRelMinutes += $1 * $2; } | tMINUTE_UNIT { context->yyRelMinutes += $1; } | tUNUMBER tSEC_UNIT { context->yyRelSeconds += $1 * $2; } | tSNUMBER tSEC_UNIT { context->yyRelSeconds += $1 * $2; } | tSEC_UNIT { context->yyRelSeconds += $1; } ;number : tUNUMBER { if (context->yyHaveTime && context->yyHaveDate && !context->yyHaveRel) context->yyYear = $1; else { if ($1>10000) { context->yyHaveDate++; context->yyDay= ($1)%100; context->yyMonth= ($1/100)%100; context->yyYear = $1/10000; } else { context->yyHaveTime++; if ($1 < 100) { context->yyHour = $1; context->yyMinutes = 0; } else { context->yyHour = $1 / 100; context->yyMinutes = $1 % 100; } context->yySeconds = 0; context->yyMeridian = MER24; } } } ;o_merid : /* NULL */ { $$ = MER24; } | tMERIDIAN { $$ = $1; } ;%%/* Include this file down here because bison inserts code above which may define-away `const'. We want the prototype for get_date to have the same signature as the function definition does. */#include "getdate.h"#ifndef WIN32 /* the windows dudes don't need these, does anyone really? */extern struct tm *gmtime ();extern struct tm *localtime ();extern time_t mktime ();#endif/* Month and day table. */static TABLE const MonthDayTable[] = { { "january", tMONTH, 1 }, { "february", tMONTH, 2 }, { "march", tMONTH, 3 }, { "april", tMONTH, 4 }, { "may", tMONTH, 5 }, { "june", tMONTH, 6 }, { "july", tMONTH, 7 }, { "august", tMONTH, 8 }, { "september", tMONTH, 9 }, { "sept", tMONTH, 9 }, { "october", tMONTH, 10 }, { "november", tMONTH, 11 }, { "december", tMONTH, 12 }, { "sunday", tDAY, 0 }, { "monday", tDAY, 1 }, { "tuesday", tDAY, 2 }, { "tues", tDAY, 2 }, { "wednesday", tDAY, 3 }, { "wednes", tDAY, 3 }, { "thursday", tDAY, 4 }, { "thur", tDAY, 4 }, { "thurs", tDAY, 4 }, { "friday", tDAY, 5 }, { "saturday", tDAY, 6 }, { NULL, 0, 0 }};/* Time units table. */static TABLE const UnitsTable[] = { { "year", tYEAR_UNIT, 1 }, { "month", tMONTH_UNIT, 1 }, { "fortnight", tDAY_UNIT, 14 }, { "week", tDAY_UNIT, 7 }, { "day", tDAY_UNIT, 1 }, { "hour", tHOUR_UNIT, 1 }, { "minute", tMINUTE_UNIT, 1 }, { "min", tMINUTE_UNIT, 1 }, { "second", tSEC_UNIT, 1 }, { "sec", tSEC_UNIT, 1 }, { NULL, 0, 0 }};/* Assorted relative-time words. */static TABLE const OtherTable[] = { { "tomorrow", tMINUTE_UNIT, 1 * 24 * 60 }, { "yesterday", tMINUTE_UNIT, -1 * 24 * 60 }, { "today", tMINUTE_UNIT, 0 }, { "now", tMINUTE_UNIT, 0 }, { "last", tUNUMBER, -1 }, { "this", tMINUTE_UNIT, 0 }, { "next", tUNUMBER, 1 }, { "first", tUNUMBER, 1 },/* { "second", tUNUMBER, 2 }, */ { "third", tUNUMBER, 3 },
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -