%{ /* * R : A Computer Langage for Statistical Data Analysis * Copyright (C) 1995, 1996, 1997 Robert Gentleman and Ross Ihaka * Copyright (C) 1997--2010 The R Core Team * Copyright (C) 2010 Duncan Murdoch * * 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 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, a copy is available at * http://www.r-project.org/Licenses/ */ #ifdef HAVE_CONFIG_H #include #endif #include #include #define STRICT_R_HEADERS #include /* for R_chk_* allocation */ #include /* bison creates a non-static symbol yylloc in both gramLatex.o and gramRd.o, so remap */ #define yylloc yyllocL #define DEBUGVALS 0 /* 1 causes detailed internal state output to R console */ #define DEBUGMODE 0 /* 1 causes Bison output of parse state, to stdout or stderr */ #define YYERROR_VERBOSE 1 static void yyerror(const char *); static int yylex(); static int yyparse(void); #define yyconst const typedef struct yyltype { int first_line; int first_column; int first_byte; int last_line; int last_column; int last_byte; } yyltype; # define YYLTYPE yyltype # 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).first_byte = YYRHSLOC (Rhs, 1).first_byte; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ (Current).last_byte = YYRHSLOC (Rhs, N).last_byte; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ (Current).first_byte = (Current).last_byte = \ YYRHSLOC (Rhs, 0).last_byte; \ } \ while (YYID (0)) /* Useful defines so editors don't get confused ... */ #define LBRACE '{' #define RBRACE '}' /* Functions used in the parsing process */ static SEXP GrowList(SEXP, SEXP); static int KeywordLookup(const char *); static SEXP NewList(void); static SEXP makeSrcref(YYLTYPE *, SEXP); /* Internal lexer / parser state variables */ static int xxgetc(); static int xxungetc(int); static int xxlineno, xxbyteno, xxcolno; static int xxDebugTokens; /* non-zero causes debug output to R console */ static SEXP Value; static int xxinitvalue; static char const yyunknown[] = "unknown macro"; /* our message, not bison's */ static SEXP xxInVerbEnv; /* Are we currently in a verbatim environment? If so, this is the string to end it. If not, this is NULL */ static SEXP xxVerbatimList;/* A STRSXP containing all the verbatim environment names */ static SEXP SrcFile; /* parseLatex will *always* supply a srcfile */ /* Routines used to build the parse tree */ static SEXP xxnewlist(SEXP); static SEXP xxlist(SEXP, SEXP); static void xxsavevalue(SEXP, YYLTYPE *); static SEXP xxtag(SEXP, int, YYLTYPE *); static SEXP xxenv(SEXP, SEXP, SEXP, YYLTYPE *); static SEXP xxmath(SEXP, YYLTYPE *); static SEXP xxblock(SEXP, YYLTYPE *); static void xxSetInVerbEnv(SEXP); static int mkMarkup(int); static int mkText(int); static int mkComment(int); static int mkVerb(int); static int mkVerbEnv(); #define YYSTYPE SEXP %} %token END_OF_INPUT ERROR %token MACRO %token TEXT COMMENT %token BEGIN END VERB /* Recent bison has <> to represent all of the destructors below, but we don't assume it */ /* I think we need to list everything here which occurs before the last item in a pattern, just in case the last item is unmatched and we need to back out. But it is safe to list more, so we do. */ %destructor { UNPROTECT_PTR($$); } MACRO TEXT COMMENT BEGIN END %% Init: Items END_OF_INPUT { xxsavevalue($1, &@$); return 0; } | END_OF_INPUT { xxsavevalue(NULL, &@$); return 0; } | error { PROTECT(Value = R_NilValue); YYABORT; } ; Items: Item { $$ = xxnewlist($1); } | math { $$ = xxnewlist($1); } | Items Item { $$ = xxlist($1, $2); } | Items math { $$ = xxlist($1, $2); } nonMath: Item { $$ = xxnewlist($1); } | nonMath Item { $$ = xxlist($1, $2); } Item: TEXT { $$ = xxtag($1, TEXT, &@$); } | COMMENT { $$ = xxtag($1, COMMENT, &@$); } | MACRO { $$ = xxtag($1, MACRO, &@$); } | VERB { $$ = xxtag($1, VERB, &@$); } | environment { $$ = $1; } | block { $$ = $1; } environment: BEGIN '{' TEXT '}' { xxSetInVerbEnv($3); } Items END '{' TEXT '}' { $$ = xxenv($3, $6, $9, &@$); UNPROTECT_PTR($1); UNPROTECT_PTR($7); } math: '$' nonMath '$' { $$ = xxmath($2, &@$); } block: '{' Items '}' { $$ = xxblock($2, &@$); } | '{' '}' { $$ = xxblock(NULL, &@$); } %% static SEXP xxnewlist(SEXP item) { SEXP ans, tmp; #if DEBUGVALS Rprintf("xxnewlist(item=%p)", item); #endif PROTECT(tmp = NewList()); if (item) { PROTECT(ans = GrowList(tmp, item)); UNPROTECT_PTR(tmp); UNPROTECT_PTR(item); } else ans = tmp; #if DEBUGVALS Rprintf(" result: %p is length %d\n", ans, length(ans)); #endif return ans; } static SEXP xxlist(SEXP oldlist, SEXP item) { SEXP ans; #if DEBUGVALS Rprintf("xxlist(oldlist=%p, item=%p)", oldlist, item); #endif PROTECT(ans = GrowList(oldlist, item)); UNPROTECT_PTR(item); UNPROTECT_PTR(oldlist); #if DEBUGVALS Rprintf(" result: %p is length %d\n", ans, length(ans)); #endif return ans; } static SEXP xxenv(SEXP begin, SEXP body, SEXP end, YYLTYPE *lloc) { SEXP ans; #if DEBUGVALS Rprintf("xxenv(begin=%p, body=%p, end=%p)", begin, body, end); #endif PROTECT(ans = allocVector(VECSXP, 2)); SET_VECTOR_ELT(ans, 0, begin); UNPROTECT_PTR(begin); if (!isNull(body)) { SET_VECTOR_ELT(ans, 1, PairToVectorList(CDR(body))); UNPROTECT_PTR(body); } /* FIXME: check that begin and end match */ setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile)); setAttrib(ans, install("latex_tag"), mkString("ENVIRONMENT")); if (!isNull(end)) UNPROTECT_PTR(end); #if DEBUGVALS Rprintf(" result: %p\n", ans); #endif return ans; } static SEXP xxmath(SEXP body, YYLTYPE *lloc) { SEXP ans; #if DEBUGVALS Rprintf("xxmath(body=%p)", body); #endif PROTECT(ans = PairToVectorList(CDR(body))); UNPROTECT_PTR(body); setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile)); setAttrib(ans, install("latex_tag"), mkString("MATH")); #if DEBUGVALS Rprintf(" result: %p\n", ans); #endif return ans; } static SEXP xxblock(SEXP body, YYLTYPE *lloc) { SEXP ans; #if DEBUGVALS Rprintf("xxblock(body=%p)", body); #endif if (!body) PROTECT(ans = allocVector(VECSXP, 0)); else { PROTECT(ans = PairToVectorList(CDR(body))); UNPROTECT_PTR(body); } setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile)); setAttrib(ans, install("latex_tag"), mkString("BLOCK")); #if DEBUGVALS Rprintf(" result: %p\n", ans); #endif return ans; } static int VerbatimLookup(const char *s) { int i; for (i = 0; i < length(xxVerbatimList); i++) { if (strcmp(s, CHAR(STRING_ELT(xxVerbatimList, i))) == 0) return TRUE; } return FALSE; } static void xxSetInVerbEnv(SEXP envname) { char buffer[256]; if (VerbatimLookup(CHAR(STRING_ELT(envname, 0)))) { snprintf(buffer, sizeof(buffer), "\\end{%s}", CHAR(STRING_ELT(envname, 0))); PROTECT(xxInVerbEnv = ScalarString(mkChar(buffer))); } else xxInVerbEnv = NULL; } static void xxsavevalue(SEXP items, YYLTYPE *lloc) { if (items) { PROTECT(Value = PairToVectorList(CDR(items))); UNPROTECT_PTR(items); } else { PROTECT(Value = allocVector(VECSXP, 1)); SET_VECTOR_ELT(Value, 0, ScalarString(mkChar(""))); setAttrib(VECTOR_ELT(Value, 0), install("latex_tag"), mkString("TEXT")); } if (!isNull(Value)) { setAttrib(Value, R_ClassSymbol, mkString("LaTeX")); setAttrib(Value, R_SrcrefSymbol, makeSrcref(lloc, SrcFile)); } } static SEXP xxtag(SEXP item, int type, YYLTYPE *lloc) { setAttrib(item, install("latex_tag"), mkString(yytname[YYTRANSLATE(type)])); setAttrib(item, R_SrcrefSymbol, makeSrcref(lloc, SrcFile)); return item; } /*----------------------------------------------------------------------------*/ static int (*ptr_getc)(void); /* Private pushback, since file ungetc only guarantees one byte. We need up to one MBCS-worth */ #define PUSHBACK_BUFSIZE 30 static int pushback[PUSHBACK_BUFSIZE]; static unsigned int npush = 0; static int prevpos = 0; static int prevlines[PUSHBACK_BUFSIZE]; static int prevcols[PUSHBACK_BUFSIZE]; static int prevbytes[PUSHBACK_BUFSIZE]; static int xxgetc(void) { int c, oldpos; if(npush) c = pushback[--npush]; else c = ptr_getc(); oldpos = prevpos; prevpos = (prevpos + 1) % PUSHBACK_BUFSIZE; prevbytes[prevpos] = xxbyteno; prevlines[prevpos] = xxlineno; /* We only advance the column for the 1st byte in UTF-8, so handle later bytes specially */ if (0x80 <= (unsigned char)c && (unsigned char)c <= 0xBF) { xxcolno--; prevcols[prevpos] = prevcols[oldpos]; } else prevcols[prevpos] = xxcolno; if (c == EOF) return R_EOF; R_ParseContextLast = (R_ParseContextLast + 1) % PARSE_CONTEXT_SIZE; R_ParseContext[R_ParseContextLast] = c; if (c == '\n') { xxlineno += 1; xxcolno = 1; xxbyteno = 1; } else { xxcolno++; xxbyteno++; } if (c == '\t') xxcolno = ((xxcolno + 6) & ~7) + 1; R_ParseContextLine = xxlineno; return c; } static int xxungetc(int c) { /* this assumes that c was the result of xxgetc; if not, some edits will be needed */ xxlineno = prevlines[prevpos]; xxbyteno = prevbytes[prevpos]; xxcolno = prevcols[prevpos]; prevpos = (prevpos + PUSHBACK_BUFSIZE - 1) % PUSHBACK_BUFSIZE; R_ParseContextLine = xxlineno; R_ParseContext[R_ParseContextLast] = '\0'; /* Mac OS X requires us to keep this non-negative */ R_ParseContextLast = (R_ParseContextLast + PARSE_CONTEXT_SIZE - 1) % PARSE_CONTEXT_SIZE; if(npush >= PUSHBACK_BUFSIZE - 2) return R_EOF; pushback[npush++] = c; return c; } static SEXP makeSrcref(YYLTYPE *lloc, SEXP srcfile) { SEXP val; PROTECT(val = allocVector(INTSXP, 6)); INTEGER(val)[0] = lloc->first_line; INTEGER(val)[1] = lloc->first_byte; INTEGER(val)[2] = lloc->last_line; INTEGER(val)[3] = lloc->last_byte; INTEGER(val)[4] = lloc->first_column; INTEGER(val)[5] = lloc->last_column; setAttrib(val, R_SrcfileSymbol, srcfile); setAttrib(val, R_ClassSymbol, mkString("srcref")); UNPROTECT(1); return val; } static SEXP mkString2(const char *s, int len) { SEXP t; cetype_t enc = CE_UTF8; PROTECT(t = allocVector(STRSXP, 1)); SET_STRING_ELT(t, 0, mkCharLenCE(s, len, enc)); UNPROTECT(1); return t; } /* Stretchy List Structures : Lists are created and grown using a special */ /* dotted pair. The CAR of the list points to the last cons-cell in the */ /* list and the CDR points to the first. The list can be extracted from */ /* the pair by taking its CDR, while the CAR gives fast access to the end */ /* of the list. */ /* Create a stretchy-list dotted pair */ static SEXP NewList(void) { SEXP s = CONS(R_NilValue, R_NilValue); SETCAR(s, s); return s; } /* Add a new element at the end of a stretchy list */ static SEXP GrowList(SEXP l, SEXP s) { SEXP tmp; PROTECT(s); tmp = CONS(s, R_NilValue); UNPROTECT(1); SETCDR(CAR(l), tmp); SETCAR(l, tmp); return l; } /*--------------------------------------------------------------------------*/ static SEXP ParseLatex(ParseStatus *status, SEXP srcfile) { R_ParseContextLast = 0; R_ParseContext[0] = '\0'; xxInVerbEnv = NULL; xxlineno = 1; xxcolno = 1; xxbyteno = 1; SrcFile = srcfile; npush = 0; Value = R_NilValue; if (yyparse()) *status = PARSE_ERROR; else *status = PARSE_OK; #if DEBUGVALS Rprintf("ParseRd result: %p\n", Value); #endif UNPROTECT_PTR(Value); return Value; } static const char * nextchar_parse; /* need to handle incomplete last line */ static int char_getc(void) { int c; c = *nextchar_parse++; if (!c) { c = R_EOF; nextchar_parse--; } return (c); } static SEXP R_ParseLatex(SEXP text, ParseStatus *status, SEXP srcfile) { nextchar_parse = CHAR(STRING_ELT(text, 0)); ptr_getc = char_getc; return ParseLatex(status, srcfile); } /*---------------------------------------------------------------------------- * * The Lexical Analyzer: * * Basic lexical analysis is performed by the following * routines. * * The function yylex() scans the input, breaking it into * tokens which are then passed to the parser. * */ /* Special Symbols */ /* Section and R code headers */ struct { char *name; int token; } static keywords[] = { /* These sections contain Latex-like text */ { "\\begin", BEGIN }, { "\\end", END }, { "\\verb", VERB }, { 0, 0 } /* All other markup macros are rejected. */ }; /* Record the longest # directive here */ #define DIRECTIVE_LEN 7 static int KeywordLookup(const char *s) { int i; for (i = 0; keywords[i].name; i++) { if (strcmp(keywords[i].name, s) == 0) return keywords[i].token; } return MACRO; } static void yyerror(const char *s) { static const char *const yytname_translations[] = { /* the left column are strings coming from bison, the right column are translations for users. The first YYENGLISH from the right column are English to be translated, the rest are to be copied literally. The #if 0 block below allows xgettext to see these. */ #define YYENGLISH 3 "$undefined", "input", "LATEXMACRO", "macro", "ESCAPE", "macro", 0, 0 }; static char const yyunexpected[] = "syntax error, unexpected "; static char const yyexpecting[] = ", expecting "; static char const yyshortunexpected[] = "unexpected %s"; static char const yylongunexpected[] = "unexpected %s '%s'"; char *expecting; char ParseErrorMsg[PARSE_ERROR_SIZE]; SEXP filename; char ParseErrorFilename[PARSE_ERROR_SIZE]; #if 0 /* these are just here to trigger the internationalization */ _("input"); _("macro"); #endif if (!strncmp(s, yyunexpected, sizeof yyunexpected -1)) { int i, translated = FALSE; /* Edit the error message */ expecting = strstr(s + sizeof yyunexpected -1, yyexpecting); if (expecting) *expecting = '\0'; for (i = 0; yytname_translations[i]; i += 2) { if (!strcmp(s + sizeof yyunexpected - 1, yytname_translations[i])) { if (yychar < 256) sprintf(ParseErrorMsg, _(yyshortunexpected), i/2 < YYENGLISH ? _(yytname_translations[i+1]) : yytname_translations[i+1]); else sprintf(ParseErrorMsg, _(yylongunexpected), i/2 < YYENGLISH ? _(yytname_translations[i+1]) : yytname_translations[i+1], CHAR(STRING_ELT(yylval, 0))); translated = TRUE; break; } } if (!translated) { if (yychar < 256) sprintf(ParseErrorMsg, _(yyshortunexpected), s + sizeof yyunexpected - 1); else sprintf(ParseErrorMsg, _(yylongunexpected), s + sizeof yyunexpected - 1, CHAR(STRING_ELT(yylval, 0))); } if (expecting) { translated = FALSE; for (i = 0; yytname_translations[i]; i += 2) { if (!strcmp(expecting + sizeof yyexpecting - 1, yytname_translations[i])) { strcat(ParseErrorMsg, _(yyexpecting)); strcat(ParseErrorMsg, i/2 < YYENGLISH ? _(yytname_translations[i+1]) : yytname_translations[i+1]); translated = TRUE; break; } } if (!translated) { strcat(ParseErrorMsg, _(yyexpecting)); strcat(ParseErrorMsg, expecting + sizeof yyexpecting - 1); } } } else if (!strncmp(s, yyunknown, sizeof yyunknown-1)) { sprintf(ParseErrorMsg, "%s '%s'", s, CHAR(STRING_ELT(yylval, 0))); } else { sprintf(ParseErrorMsg, "%s", s); } filename = findVar(install("filename"), SrcFile); if (isString(filename) && length(filename)) strncpy(ParseErrorFilename, CHAR(STRING_ELT(filename, 0)), PARSE_ERROR_SIZE - 1); else ParseErrorFilename[0] = '\0'; if (yylloc.first_line != yylloc.last_line) warning("%s:%d-%d: %s", ParseErrorFilename, yylloc.first_line, yylloc.last_line, ParseErrorMsg); else warning("%s:%d: %s", ParseErrorFilename, yylloc.first_line, ParseErrorMsg); } #define TEXT_PUSH(c) do { \ unsigned int nc = bp - stext; \ if (nc >= nstext - 1) { \ char *old = stext; \ nstext *= 2; \ stext = malloc(nstext); \ if(!stext) error(_("unable to allocate buffer for long string at line %d"), xxlineno);\ memmove(stext, old, nc); \ if(old != st0) free(old); \ bp = stext+nc; } \ *bp++ = (c); \ } while(0) static void setfirstloc(void) { yylloc.first_line = xxlineno; yylloc.first_column = xxcolno; yylloc.first_byte = xxbyteno; } static void setlastloc(void) { yylloc.last_line = prevlines[prevpos]; yylloc.last_column = prevcols[prevpos]; yylloc.last_byte = prevbytes[prevpos]; } /* Split the input stream into tokens. */ /* This is the lowest of the parsing levels. */ static int token(void) { int c; if (xxinitvalue) { yylloc.first_line = 0; yylloc.first_column = 0; yylloc.first_byte = 0; yylloc.last_line = 0; yylloc.last_column = 0; yylloc.last_byte = 0; PROTECT(yylval = mkString("")); c = xxinitvalue; xxinitvalue = 0; return(c); } setfirstloc(); if (xxInVerbEnv) return mkVerbEnv(); c = xxgetc(); switch (c) { case '%': return mkComment(c); case '\\':return mkMarkup(c); case R_EOF:return END_OF_INPUT; case LBRACE:return c; case RBRACE:return c; case '$': return c; } return mkText(c); } #define INITBUFSIZE 128 static int mkText(int c) { char st0[INITBUFSIZE]; unsigned int nstext = INITBUFSIZE; char *stext = st0, *bp = st0; while(1) { switch (c) { case '\\': case '%': case LBRACE: case RBRACE: case '$': case R_EOF: goto stop; } TEXT_PUSH(c); c = xxgetc(); }; stop: xxungetc(c); PROTECT(yylval = mkString2(stext, bp - stext)); if(stext != st0) free(stext); return TEXT; } static int mkComment(int c) { char st0[INITBUFSIZE]; unsigned int nstext = INITBUFSIZE; char *stext = st0, *bp = st0; do TEXT_PUSH(c); while ((c = xxgetc()) != '\n' && c != R_EOF); if (c == R_EOF) xxungetc(c); else TEXT_PUSH(c); PROTECT(yylval = mkString2(stext, bp - stext)); if(stext != st0) free(stext); return COMMENT; } static int mkMarkup(int c) { char st0[INITBUFSIZE]; unsigned int nstext = INITBUFSIZE; char *stext = st0, *bp = st0; int retval = 0; TEXT_PUSH(c); while (isalpha((c = xxgetc()))) TEXT_PUSH(c); /* One non-alpha allowed */ if (bp - stext == 1) { TEXT_PUSH(c); TEXT_PUSH('\0'); retval = MACRO; } else { TEXT_PUSH('\0'); retval = KeywordLookup(stext); if (retval == VERB) retval = mkVerb(c); /* This makes the yylval */ else if (c != ' ') /* Eat a space, but keep other terminators */ xxungetc(c); } if (retval != VERB) { PROTECT(yylval = mkString(stext)); } if(stext != st0) free(stext); return retval; } static int mkVerb(int c) { char st0[INITBUFSIZE]; unsigned int nstext = INITBUFSIZE; char *stext = st0, *bp = st0; int delim = c; TEXT_PUSH('\\'); TEXT_PUSH('v'); TEXT_PUSH('e'); TEXT_PUSH('r'); TEXT_PUSH('b'); TEXT_PUSH(c); while ((c = xxgetc()) != delim) TEXT_PUSH(c); TEXT_PUSH(c); PROTECT(yylval = mkString2(stext, bp - stext)); if(stext != st0) free(stext); return VERB; } static int mkVerbEnv() { char st0[INITBUFSIZE]; unsigned int nstext = INITBUFSIZE; char *stext = st0, *bp = st0; int matched = 0, i; int c; while ((c = xxgetc()) != R_EOF && CHAR(STRING_ELT(xxInVerbEnv, 0))[matched]) { TEXT_PUSH(c); if (c == CHAR(STRING_ELT(xxInVerbEnv, 0))[matched]) matched++; else matched = 0; } if ( !CHAR(STRING_ELT(xxInVerbEnv, 0))[matched] ) { for (i = matched-1; i >= 0; i--) xxungetc(*(--bp)); UNPROTECT_PTR(xxInVerbEnv); xxInVerbEnv = NULL; } PROTECT(yylval = mkString2(stext, bp - stext)); if (stext != st0) free(stext); return VERB; } static int yylex(void) { int tok = token(); if (xxDebugTokens) { Rprintf("%d:%d: %s", yylloc.first_line, yylloc.first_column, yytname[YYTRANSLATE(tok)]); if (tok > 255 && tok != END_OF_INPUT) Rprintf(": %s", CHAR(STRING_ELT(yylval, 0))); Rprintf("\n"); } setlastloc(); return tok; } /* "do_parseRd" .Internal( parseLatex(file, srcfile, verbose, basename, warningCalls) ) If there is text then that is read and the other arguments are ignored. */ SEXP attribute_hidden do_parseLatex(SEXP call, SEXP op, SEXP args, SEXP env) { SEXP s = R_NilValue, source, text; ParseStatus status; #if DEBUGMODE yydebug = 1; #endif checkArity(op, args); R_ParseError = 0; R_ParseErrorMsg[0] = '\0'; text = CAR(args); args = CDR(args); source = CAR(args); args = CDR(args); if(!isLogical(CAR(args)) || LENGTH(CAR(args)) != 1) error(_("invalid '%s' value"), "verbose"); xxDebugTokens = asInteger(CAR(args)); args = CDR(args); xxVerbatimList = CAR(args); args = CDR(args); s = R_ParseLatex(text, &status, source); if (status != PARSE_OK) parseError(call, R_ParseError); return s; }