From 50643bb25f0acb083da1927b8aef36229936d7d3 Mon Sep 17 00:00:00 2001 From: Gasol Wu Date: Thu, 9 Oct 2014 01:20:28 +0800 Subject: [PATCH] Add missing files from Pux --- php/r3/annotation/annot.h | 40 + php/r3/annotation/base.c | 441 +++ php/r3/annotation/lemon | Bin 0 -> 60896 bytes php/r3/annotation/lemon.c | 4564 ++++++++++++++++++++++++++++++++ php/r3/annotation/lempar.c | 687 +++++ php/r3/annotation/parser.c | 1621 ++++++++++++ php/r3/annotation/parser.h | 17 + php/r3/annotation/parser.lemon | 335 +++ php/r3/annotation/parser.out | 478 ++++ php/r3/annotation/scanner.c | 605 +++++ php/r3/annotation/scanner.h | 83 + php/r3/annotation/scanner.re | 193 ++ 12 files changed, 9064 insertions(+) create mode 100644 php/r3/annotation/annot.h create mode 100644 php/r3/annotation/base.c create mode 100755 php/r3/annotation/lemon create mode 100644 php/r3/annotation/lemon.c create mode 100644 php/r3/annotation/lempar.c create mode 100644 php/r3/annotation/parser.c create mode 100644 php/r3/annotation/parser.h create mode 100644 php/r3/annotation/parser.lemon create mode 100644 php/r3/annotation/parser.out create mode 100644 php/r3/annotation/scanner.c create mode 100644 php/r3/annotation/scanner.h create mode 100644 php/r3/annotation/scanner.re diff --git a/php/r3/annotation/annot.h b/php/r3/annotation/annot.h new file mode 100644 index 0000000..34d5896 --- /dev/null +++ b/php/r3/annotation/annot.h @@ -0,0 +1,40 @@ + +/* + +------------------------------------------------------------------------+ + | Phalcon Framework | + +------------------------------------------------------------------------+ + | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | + +------------------------------------------------------------------------+ + | This source file is subject to the New BSD License that is bundled | + | with this package in the file docs/LICENSE.txt. | + | | + | If you did not receive a copy of the license and are unable to | + | obtain it through the world-wide-web, please send an email | + | to license@phalconphp.com so we can send you a copy immediately. | + +------------------------------------------------------------------------+ + | Authors: Andres Gutierrez | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +typedef struct _phannot_parser_token { + char *token; + int opcode; + int token_len; + int free_flag; +} phannot_parser_token; + +typedef struct _phannot_parser_status { + zval *ret; + phannot_scanner_state *scanner_state; + phannot_scanner_token *token; + int status; + zend_uint syntax_error_len; + char *syntax_error; +} phannot_parser_status; + +#define PHANNOT_PARSING_OK 1 +#define PHANNOT_PARSING_FAILED 0 + +extern int phannot_parse_annotations(zval *result, zval *view_code, zval *template_path, zval *line TSRMLS_DC); +int phannot_internal_parse_annotations(zval **result, zval *view_code, zval *template_path, zval *line, zval **error_msg TSRMLS_DC); diff --git a/php/r3/annotation/base.c b/php/r3/annotation/base.c new file mode 100644 index 0000000..cb6eb03 --- /dev/null +++ b/php/r3/annotation/base.c @@ -0,0 +1,441 @@ + +/* + +------------------------------------------------------------------------+ + | Phalcon Framework | + +------------------------------------------------------------------------+ + | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | + +------------------------------------------------------------------------+ + | This source file is subject to the New BSD License that is bundled | + | with this package in the file docs/LICENSE.txt. | + | | + | If you did not receive a copy of the license and are unable to | + | obtain it through the world-wide-web, please send an email | + | to license@phalconphp.com so we can send you a copy immediately. | + +------------------------------------------------------------------------+ + | Authors: Andres Gutierrez | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +const phannot_token_names phannot_tokens[] = +{ + { "INTEGER", PHANNOT_T_INTEGER }, + { "DOUBLE", PHANNOT_T_DOUBLE }, + { "STRING", PHANNOT_T_STRING }, + { "IDENTIFIER", PHANNOT_T_IDENTIFIER }, + { "@", PHANNOT_T_AT }, + { ",", PHANNOT_T_COMMA }, + { "=", PHANNOT_T_EQUALS }, + { ":", PHANNOT_T_COLON }, + { "(", PHANNOT_T_PARENTHESES_OPEN }, + { ")", PHANNOT_T_PARENTHESES_CLOSE }, + { "{", PHANNOT_T_BRACKET_OPEN }, + { "}", PHANNOT_T_BRACKET_CLOSE }, + { "[", PHANNOT_T_SBRACKET_OPEN }, + { "]", PHANNOT_T_SBRACKET_CLOSE }, + { "ARBITRARY TEXT", PHANNOT_T_ARBITRARY_TEXT }, + { NULL, 0 } +}; + +/** + * Wrapper to alloc memory within the parser + */ +static void *phannot_wrapper_alloc(size_t bytes){ + return emalloc(bytes); +} + +/** + * Wrapper to free memory within the parser + */ +static void phannot_wrapper_free(void *pointer){ + efree(pointer); +} + +/** + * Creates a parser_token to be passed to the parser + */ +static void phannot_parse_with_token(void* phannot_parser, int opcode, int parsercode, phannot_scanner_token *token, phannot_parser_status *parser_status){ + + phannot_parser_token *pToken; + + pToken = emalloc(sizeof(phannot_parser_token)); + pToken->opcode = opcode; + pToken->token = token->value; + pToken->token_len = token->len; + pToken->free_flag = 1; + + phannot_(phannot_parser, parsercode, pToken, parser_status); + + token->value = NULL; + token->len = 0; +} + +/** + * Creates an error message when it's triggered by the scanner + */ +static void phannot_scanner_error_msg(phannot_parser_status *parser_status, zval **error_msg TSRMLS_DC){ + + int error_length; + char *error, *error_part; + phannot_scanner_state *state = parser_status->scanner_state; + + ALLOC_INIT_ZVAL(*error_msg); + if (state->start) { + error_length = 128 + state->start_length + Z_STRLEN_P(state->active_file); + error = emalloc(sizeof(char) * error_length); + if (state->start_length > 16) { + error_part = estrndup(state->start, 16); + snprintf(error, 64 + state->start_length, "Scanning error before '%s...' in %s on line %d", error_part, Z_STRVAL_P(state->active_file), state->active_line); + efree(error_part); + } else { + snprintf(error, error_length - 1, "Scanning error before '%s' in %s on line %d", state->start, Z_STRVAL_P(state->active_file), state->active_line); + } + error[error_length - 1] = '\0'; + ZVAL_STRING(*error_msg, error, 1); + } else { + error_length = sizeof(char) * (64 + Z_STRLEN_P(state->active_file)); + error = emalloc(error_length); + snprintf(error, error_length - 1, "Scanning error near to EOF in %s", Z_STRVAL_P(state->active_file)); + ZVAL_STRING(*error_msg, error, 1); + error[error_length - 1] = '\0'; + } + efree(error); +} + +/** + * Receives the comment tokenizes and parses it + */ +int phannot_parse_annotations(zval *result, zval *comment, zval *file_path, zval *line TSRMLS_DC){ + + zval *error_msg = NULL; + + ZVAL_NULL(result); + + if (Z_TYPE_P(comment) != IS_STRING) { + zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), ZEND_STRL("Comment must be a string"), 0 TSRMLS_CC); + return FAILURE; + } + + if(phannot_internal_parse_annotations(&result, comment, file_path, line, &error_msg TSRMLS_CC) == FAILURE){ + if (error_msg != NULL) { + // phalcon_throw_exception_string(phalcon_annotations_exception_ce, Z_STRVAL_P(error_msg), Z_STRLEN_P(error_msg), 1 TSRMLS_CC); + zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), Z_STRVAL_P(error_msg), Z_STRLEN_P(error_msg) , 0 TSRMLS_CC); + } + else { + // phalcon_throw_exception_string(phalcon_annotations_exception_ce, ZEND_STRL("There was an error parsing annotation"), 1 TSRMLS_CC); + zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), ZEND_STRL("There was an error parsing annotation") , 0 TSRMLS_CC); + } + + return FAILURE; + } + + return SUCCESS; +} + +/** + * Remove comment separators from a docblock + */ +void phannot_remove_comment_separators(zval *return_value, char *comment, int length, int *start_lines) { + + int start_mode = 1, j, i, open_parentheses; + smart_str processed_str = {0}; + char ch; + + (*start_lines) = 0; + + for (i = 0; i < length; i++) { + + ch = comment[i]; + + if (start_mode) { + if (ch == ' ' || ch == '*' || ch == '/' || ch == '\t' || ch == 11) { + continue; + } + start_mode = 0; + } + + if (ch == '@') { + + smart_str_appendc(&processed_str, ch); + i++; + + open_parentheses = 0; + for (j = i; j < length; j++) { + + ch = comment[j]; + + if (start_mode) { + if (ch == ' ' || ch == '*' || ch == '/' || ch == '\t' || ch == 11) { + continue; + } + start_mode = 0; + } + + if (open_parentheses == 0) { + + if (isalnum(ch) || '_' == ch || '\\' == ch) { + smart_str_appendc(&processed_str, ch); + continue; + } + + if (ch == '(') { + smart_str_appendc(&processed_str, ch); + open_parentheses++; + continue; + } + + } else { + + smart_str_appendc(&processed_str, ch); + + if (ch == '(') { + open_parentheses++; + } else if (ch == ')') { + open_parentheses--; + } else if (ch == '\n') { + (*start_lines)++; + start_mode = 1; + } + + if (open_parentheses > 0) { + continue; + } + } + + i = j; + smart_str_appendc(&processed_str, ' '); + break; + } + } + + if (ch == '\n') { + (*start_lines)++; + start_mode = 1; + } + } + + smart_str_0(&processed_str); + + if (processed_str.len) { + RETURN_STRINGL(processed_str.c, processed_str.len, 0); + } else { + RETURN_EMPTY_STRING(); + } +} + +/** + * Parses a comment returning an intermediate array representation + */ +int phannot_internal_parse_annotations(zval **result, zval *comment, zval *file_path, zval *line, zval **error_msg TSRMLS_DC) { + + char *error; + phannot_scanner_state *state; + phannot_scanner_token token; + int scanner_status, status = SUCCESS, start_lines, error_length; + phannot_parser_status *parser_status = NULL; + void* phannot_parser; + zval processed_comment; + + /** + * Check if the comment has content + */ + if (!Z_STRVAL_P(comment)) { + ZVAL_BOOL(*result, 0); + return FAILURE; + } + + if (Z_STRLEN_P(comment) < 2) { + ZVAL_BOOL(*result, 0); + return SUCCESS; + } + + /** + * Remove comment separators + */ + phannot_remove_comment_separators(&processed_comment, Z_STRVAL_P(comment), Z_STRLEN_P(comment), &start_lines); + + if (Z_STRLEN(processed_comment) < 2) { + ZVAL_BOOL(*result, 0); + efree(Z_STRVAL(processed_comment)); + return SUCCESS; + } + + /** + * Start the reentrant parser + */ + phannot_parser = phannot_Alloc(phannot_wrapper_alloc); + + parser_status = emalloc(sizeof(phannot_parser_status)); + state = emalloc(sizeof(phannot_scanner_state)); + + parser_status->status = PHANNOT_PARSING_OK; + parser_status->scanner_state = state; + parser_status->ret = NULL; + parser_status->token = &token; + parser_status->syntax_error = NULL; + + /** + * Initialize the scanner state + */ + state->active_token = 0; + state->start = Z_STRVAL(processed_comment); + state->start_length = 0; + state->mode = PHANNOT_MODE_RAW; + state->active_file = file_path; + + token.value = NULL; + token.len = 0; + + /** + * Possible start line + */ + if (Z_TYPE_P(line) == IS_LONG) { + state->active_line = Z_LVAL_P(line) - start_lines; + } else { + state->active_line = 1; + } + + state->end = state->start; + + while(0 <= (scanner_status = phannot_get_token(state, &token))) { + + state->active_token = token.opcode; + + state->start_length = (Z_STRVAL(processed_comment) + Z_STRLEN(processed_comment) - state->start); + + switch (token.opcode) { + + case PHANNOT_T_IGNORE: + break; + + case PHANNOT_T_AT: + phannot_(phannot_parser, PHANNOT_AT, NULL, parser_status); + break; + case PHANNOT_T_COMMA: + phannot_(phannot_parser, PHANNOT_COMMA, NULL, parser_status); + break; + case PHANNOT_T_EQUALS: + phannot_(phannot_parser, PHANNOT_EQUALS, NULL, parser_status); + break; + case PHANNOT_T_COLON: + phannot_(phannot_parser, PHANNOT_COLON, NULL, parser_status); + break; + + case PHANNOT_T_PARENTHESES_OPEN: + phannot_(phannot_parser, PHANNOT_PARENTHESES_OPEN, NULL, parser_status); + break; + case PHANNOT_T_PARENTHESES_CLOSE: + phannot_(phannot_parser, PHANNOT_PARENTHESES_CLOSE, NULL, parser_status); + break; + + case PHANNOT_T_BRACKET_OPEN: + phannot_(phannot_parser, PHANNOT_BRACKET_OPEN, NULL, parser_status); + break; + case PHANNOT_T_BRACKET_CLOSE: + phannot_(phannot_parser, PHANNOT_BRACKET_CLOSE, NULL, parser_status); + break; + + case PHANNOT_T_SBRACKET_OPEN: + phannot_(phannot_parser, PHANNOT_SBRACKET_OPEN, NULL, parser_status); + break; + case PHANNOT_T_SBRACKET_CLOSE: + phannot_(phannot_parser, PHANNOT_SBRACKET_CLOSE, NULL, parser_status); + break; + + case PHANNOT_T_NULL: + phannot_(phannot_parser, PHANNOT_NULL, NULL, parser_status); + break; + case PHANNOT_T_TRUE: + phannot_(phannot_parser, PHANNOT_TRUE, NULL, parser_status); + break; + case PHANNOT_T_FALSE: + phannot_(phannot_parser, PHANNOT_FALSE, NULL, parser_status); + break; + + case PHANNOT_T_INTEGER: + phannot_parse_with_token(phannot_parser, PHANNOT_T_INTEGER, PHANNOT_INTEGER, &token, parser_status); + break; + case PHANNOT_T_DOUBLE: + phannot_parse_with_token(phannot_parser, PHANNOT_T_DOUBLE, PHANNOT_DOUBLE, &token, parser_status); + break; + case PHANNOT_T_STRING: + phannot_parse_with_token(phannot_parser, PHANNOT_T_STRING, PHANNOT_STRING, &token, parser_status); + break; + case PHANNOT_T_IDENTIFIER: + phannot_parse_with_token(phannot_parser, PHANNOT_T_IDENTIFIER, PHANNOT_IDENTIFIER, &token, parser_status); + break; + /*case PHANNOT_T_ARBITRARY_TEXT: + phannot_parse_with_token(phannot_parser, PHANNOT_T_ARBITRARY_TEXT, PHANNOT_ARBITRARY_TEXT, &token, parser_status); + break;*/ + + default: + parser_status->status = PHANNOT_PARSING_FAILED; + if (!*error_msg) { + error_length = sizeof(char) * (48 + Z_STRLEN_P(state->active_file)); + error = emalloc(error_length); + snprintf(error, error_length - 1, "Scanner: unknown opcode %d on in %s line %d", token.opcode, Z_STRVAL_P(state->active_file), state->active_line); + error[error_length - 1] = '\0'; + ALLOC_INIT_ZVAL(*error_msg); + ZVAL_STRING(*error_msg, error, 1); + efree(error); + } + break; + } + + if (parser_status->status != PHANNOT_PARSING_OK) { + status = FAILURE; + break; + } + + state->end = state->start; + } + + if (status != FAILURE) { + switch (scanner_status) { + case PHANNOT_SCANNER_RETCODE_ERR: + case PHANNOT_SCANNER_RETCODE_IMPOSSIBLE: + if (!*error_msg) { + phannot_scanner_error_msg(parser_status, error_msg TSRMLS_CC); + } + status = FAILURE; + break; + default: + phannot_(phannot_parser, 0, NULL, parser_status); + } + } + + state->active_token = 0; + state->start = NULL; + + if (parser_status->status != PHANNOT_PARSING_OK) { + status = FAILURE; + if (parser_status->syntax_error) { + if (!*error_msg) { + ALLOC_INIT_ZVAL(*error_msg); + ZVAL_STRING(*error_msg, parser_status->syntax_error, 1); + } + efree(parser_status->syntax_error); + } + } + + phannot_Free(phannot_parser, phannot_wrapper_free); + + if (status != FAILURE) { + if (parser_status->status == PHANNOT_PARSING_OK) { + if (parser_status->ret) { + ZVAL_ZVAL(*result, parser_status->ret, 0, 0); + ZVAL_NULL(parser_status->ret); + zval_ptr_dtor(&parser_status->ret); + } else { + array_init(*result); + } + } + } + + efree(Z_STRVAL(processed_comment)); + + efree(parser_status); + efree(state); + + return status; +} diff --git a/php/r3/annotation/lemon b/php/r3/annotation/lemon new file mode 100755 index 0000000000000000000000000000000000000000..b1f971d4015f91fd653d5f5c73336612ed720e40 GIT binary patch literal 60896 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 literal 0 HcmV?d00001 diff --git a/php/r3/annotation/lemon.c b/php/r3/annotation/lemon.c new file mode 100644 index 0000000..5bc629a --- /dev/null +++ b/php/r3/annotation/lemon.c @@ -0,0 +1,4564 @@ +/* +** This file contains all sources (including headers) to the LEMON +** LALR(1) parser generator. The sources have been combined into a +** single file to make it easy to include LEMON in the source tree +** and Makefile of another program. +** +** The author of this program disclaims copyright. +*/ +#include +#include +#include +#include +#include + +#ifndef __WIN32__ +# if defined(_WIN32) || defined(WIN32) +# define __WIN32__ +# endif +#endif + +/* #define PRIVATE static */ +#define PRIVATE + +#ifdef TEST +#define MAXRHS 5 /* Set low to exercise exception code */ +#else +#define MAXRHS 1000 +#endif + +char *msort(); +extern void *malloc(); + +/******** From the file "action.h" *************************************/ +struct action *Action_new(); +struct action *Action_sort(); + +/********* From the file "assert.h" ************************************/ +void myassert(); +#ifndef NDEBUG +# define assert(X) if(!(X))myassert(__FILE__,__LINE__) +#else +# define assert(X) +#endif + +/********** From the file "build.h" ************************************/ +void FindRulePrecedences(); +void FindFirstSets(); +void FindStates(); +void FindLinks(); +void FindFollowSets(); +void FindActions(); + +/********* From the file "configlist.h" *********************************/ +void Configlist_init(/* void */); +struct config *Configlist_add(/* struct rule *, int */); +struct config *Configlist_addbasis(/* struct rule *, int */); +void Configlist_closure(/* void */); +void Configlist_sort(/* void */); +void Configlist_sortbasis(/* void */); +struct config *Configlist_return(/* void */); +struct config *Configlist_basis(/* void */); +void Configlist_eat(/* struct config * */); +void Configlist_reset(/* void */); + +/********* From the file "error.h" ***************************************/ +void ErrorMsg(const char *, int,const char *, ...); + +/****** From the file "option.h" ******************************************/ +struct s_options { + enum { OPT_FLAG=1, OPT_INT, OPT_DBL, OPT_STR, + OPT_FFLAG, OPT_FINT, OPT_FDBL, OPT_FSTR} type; + char *label; + char *arg; + char *message; +}; +int OptInit(/* char**,struct s_options*,FILE* */); +int OptNArgs(/* void */); +char *OptArg(/* int */); +void OptErr(/* int */); +void OptPrint(/* void */); + +/******** From the file "parse.h" *****************************************/ +void Parse(/* struct lemon *lemp */); + +/********* From the file "plink.h" ***************************************/ +struct plink *Plink_new(/* void */); +void Plink_add(/* struct plink **, struct config * */); +void Plink_copy(/* struct plink **, struct plink * */); +void Plink_delete(/* struct plink * */); + +/********** From the file "report.h" *************************************/ +void Reprint(/* struct lemon * */); +void ReportOutput(/* struct lemon * */); +void ReportTable(/* struct lemon * */); +void ReportHeader(/* struct lemon * */); +void CompressTables(/* struct lemon * */); + +/********** From the file "set.h" ****************************************/ +void SetSize(/* int N */); /* All sets will be of size N */ +char *SetNew(/* void */); /* A new set for element 0..N */ +void SetFree(/* char* */); /* Deallocate a set */ + +int SetAdd(/* char*,int */); /* Add element to a set */ +int SetUnion(/* char *A,char *B */); /* A <- A U B, thru element N */ + +#define SetFind(X,Y) (X[Y]) /* True if Y is in set X */ + +/********** From the file "struct.h" *************************************/ +/* +** Principal data structures for the LEMON parser generator. +*/ + +typedef enum {B_FALSE=0, B_TRUE} Boolean; + +/* Symbols (terminals and nonterminals) of the grammar are stored +** in the following: */ +struct symbol { + char *name; /* Name of the symbol */ + int index; /* Index number for this symbol */ + enum { + TERMINAL, + NONTERMINAL + } type; /* Symbols are all either TERMINALS or NTs */ + struct rule *rule; /* Linked list of rules of this (if an NT) */ + struct symbol *fallback; /* fallback token in case this token doesn't parse */ + int prec; /* Precedence if defined (-1 otherwise) */ + enum e_assoc { + LEFT, + RIGHT, + NONE, + UNK + } assoc; /* Associativity if predecence is defined */ + char *firstset; /* First-set for all rules of this symbol */ + Boolean lambda; /* True if NT and can generate an empty string */ + char *destructor; /* Code which executes whenever this symbol is + ** popped from the stack during error processing */ + int destructorln; /* Line number of destructor code */ + char *datatype; /* The data type of information held by this + ** object. Only used if type==NONTERMINAL */ + int dtnum; /* The data type number. In the parser, the value + ** stack is a union. The .yy%d element of this + ** union is the correct data type for this object */ +}; + +/* Each production rule in the grammar is stored in the following +** structure. */ +struct rule { + struct symbol *lhs; /* Left-hand side of the rule */ + char *lhsalias; /* Alias for the LHS (NULL if none) */ + int ruleline; /* Line number for the rule */ + int nrhs; /* Number of RHS symbols */ + struct symbol **rhs; /* The RHS symbols */ + char **rhsalias; /* An alias for each RHS symbol (NULL if none) */ + int line; /* Line number at which code begins */ + char *code; /* The code executed when this rule is reduced */ + struct symbol *precsym; /* Precedence symbol for this rule */ + int index; /* An index number for this rule */ + Boolean canReduce; /* True if this rule is ever reduced */ + struct rule *nextlhs; /* Next rule with the same LHS */ + struct rule *next; /* Next rule in the global list */ +}; + +/* A configuration is a production rule of the grammar together with +** a mark (dot) showing how much of that rule has been processed so far. +** Configurations also contain a follow-set which is a list of terminal +** symbols which are allowed to immediately follow the end of the rule. +** Every configuration is recorded as an instance of the following: */ +struct config { + struct rule *rp; /* The rule upon which the configuration is based */ + int dot; /* The parse point */ + char *fws; /* Follow-set for this configuration only */ + struct plink *fplp; /* Follow-set forward propagation links */ + struct plink *bplp; /* Follow-set backwards propagation links */ + struct state *stp; /* Pointer to state which contains this */ + enum { + COMPLETE, /* The status is used during followset and */ + INCOMPLETE /* shift computations */ + } status; + struct config *next; /* Next configuration in the state */ + struct config *bp; /* The next basis configuration */ +}; + +/* Every shift or reduce operation is stored as one of the following */ +struct action { + struct symbol *sp; /* The look-ahead symbol */ + enum e_action { + SHIFT, + ACCEPT, + REDUCE, + ERROR, + CONFLICT, /* Was a reduce, but part of a conflict */ + SH_RESOLVED, /* Was a shift. Precedence resolved conflict */ + RD_RESOLVED, /* Was reduce. Precedence resolved conflict */ + NOT_USED /* Deleted by compression */ + } type; + union { + struct state *stp; /* The new state, if a shift */ + struct rule *rp; /* The rule, if a reduce */ + } x; + struct action *next; /* Next action for this state */ + struct action *collide; /* Next action with the same hash */ +}; + +/* Each state of the generated parser's finite state machine +** is encoded as an instance of the following structure. */ +struct state { + struct config *bp; /* The basis configurations for this state */ + struct config *cfp; /* All configurations in this set */ + int index; /* Sequencial number for this state */ + struct action *ap; /* Array of actions for this state */ + int nTknAct, nNtAct; /* Number of actions on terminals and nonterminals */ + int iTknOfst, iNtOfst; /* yy_action[] offset for terminals and nonterms */ + int iDflt; /* Default action */ +}; +#define NO_OFFSET (-2147483647) + +/* A followset propagation link indicates that the contents of one +** configuration followset should be propagated to another whenever +** the first changes. */ +struct plink { + struct config *cfp; /* The configuration to which linked */ + struct plink *next; /* The next propagate link */ +}; + +/* The state vector for the entire parser generator is recorded as +** follows. (LEMON uses no global variables and makes little use of +** static variables. Fields in the following structure can be thought +** of as begin global variables in the program.) */ +struct lemon { + struct state **sorted; /* Table of states sorted by state number */ + struct rule *rule; /* List of all rules */ + int nstate; /* Number of states */ + int nrule; /* Number of rules */ + int nsymbol; /* Number of terminal and nonterminal symbols */ + int nterminal; /* Number of terminal symbols */ + struct symbol **symbols; /* Sorted array of pointers to symbols */ + int errorcnt; /* Number of errors */ + struct symbol *errsym; /* The error symbol */ + char *name; /* Name of the generated parser */ + char *arg; /* Declaration of the 3th argument to parser */ + char *tokentype; /* Type of terminal symbols in the parser stack */ + char *vartype; /* The default type of non-terminal symbols */ + char *start; /* Name of the start symbol for the grammar */ + char *stacksize; /* Size of the parser stack */ + char *include; /* Code to put at the start of the C file */ + int includeln; /* Line number for start of include code */ + char *error; /* Code to execute when an error is seen */ + int errorln; /* Line number for start of error code */ + char *overflow; /* Code to execute on a stack overflow */ + int overflowln; /* Line number for start of overflow code */ + char *failure; /* Code to execute on parser failure */ + int failureln; /* Line number for start of failure code */ + char *accept; /* Code to execute when the parser excepts */ + int acceptln; /* Line number for the start of accept code */ + char *extracode; /* Code appended to the generated file */ + int extracodeln; /* Line number for the start of the extra code */ + char *tokendest; /* Code to execute to destroy token data */ + int tokendestln; /* Line number for token destroyer code */ + char *vardest; /* Code for the default non-terminal destructor */ + int vardestln; /* Line number for default non-term destructor code*/ + char *filename; /* Name of the input file */ + char *outname; /* Name of the current output file */ + char *tokenprefix; /* A prefix added to token names in the .h file */ + int nconflict; /* Number of parsing conflicts */ + int tablesize; /* Size of the parse tables */ + int basisflag; /* Print only basis configurations */ + int has_fallback; /* True if any %fallback is seen in the grammer */ + char *argv0; /* Name of the program */ +}; + +#define MemoryCheck(X) if((X)==0){ \ + extern void memory_error(); \ + memory_error(); \ +} + +/**************** From the file "table.h" *********************************/ +/* +** All code in this file has been automatically generated +** from a specification in the file +** "table.q" +** by the associative array code building program "aagen". +** Do not edit this file! Instead, edit the specification +** file, then rerun aagen. +*/ +/* +** Code for processing tables in the LEMON parser generator. +*/ + +/* Routines for handling a strings */ + +char *Strsafe(); + +void Strsafe_init(/* void */); +int Strsafe_insert(/* char * */); +char *Strsafe_find(/* char * */); + +/* Routines for handling symbols of the grammar */ + +struct symbol *Symbol_new(); +int Symbolcmpp(/* struct symbol **, struct symbol ** */); +void Symbol_init(/* void */); +int Symbol_insert(/* struct symbol *, char * */); +struct symbol *Symbol_find(/* char * */); +struct symbol *Symbol_Nth(/* int */); +int Symbol_count(/* */); +struct symbol **Symbol_arrayof(/* */); + +/* Routines to manage the state table */ + +int Configcmp(/* struct config *, struct config * */); +struct state *State_new(); +void State_init(/* void */); +int State_insert(/* struct state *, struct config * */); +struct state *State_find(/* struct config * */); +struct state **State_arrayof(/* */); + +/* Routines used for efficiency in Configlist_add */ + +void Configtable_init(/* void */); +int Configtable_insert(/* struct config * */); +struct config *Configtable_find(/* struct config * */); +void Configtable_clear(/* int(*)(struct config *) */); +/****************** From the file "action.c" *******************************/ +/* +** Routines processing parser actions in the LEMON parser generator. +*/ + +/* Allocate a new parser action */ +struct action *Action_new(){ + static struct action *freelist = 0; + struct action *new; + + if( freelist==0 ){ + int i; + int amt = 100; + freelist = (struct action *)malloc( sizeof(struct action)*amt ); + if( freelist==0 ){ + fprintf(stderr,"Unable to allocate memory for a new parser action."); + exit(1); + } + for(i=0; inext; + return new; +} + +/* Compare two actions */ +static int actioncmp(ap1,ap2) +struct action *ap1; +struct action *ap2; +{ + int rc; + rc = ap1->sp->index - ap2->sp->index; + if( rc==0 ) rc = (int)ap1->type - (int)ap2->type; + if( rc==0 ){ + assert( ap1->type==REDUCE || ap1->type==RD_RESOLVED || ap1->type==CONFLICT); + assert( ap2->type==REDUCE || ap2->type==RD_RESOLVED || ap2->type==CONFLICT); + rc = ap1->x.rp->index - ap2->x.rp->index; + } + return rc; +} + +/* Sort parser actions */ +struct action *Action_sort(ap) +struct action *ap; +{ + ap = (struct action *)msort((char *)ap,(char **)&ap->next,actioncmp); + return ap; +} + +void Action_add(app,type,sp,arg) +struct action **app; +enum e_action type; +struct symbol *sp; +char *arg; +{ + struct action *new; + new = Action_new(); + new->next = *app; + *app = new; + new->type = type; + new->sp = sp; + if( type==SHIFT ){ + new->x.stp = (struct state *)arg; + }else{ + new->x.rp = (struct rule *)arg; + } +} +/********************** New code to implement the "acttab" module ***********/ +/* +** This module implements routines use to construct the yy_action[] table. +*/ + +/* +** The state of the yy_action table under construction is an instance of +** the following structure +*/ +typedef struct acttab acttab; +struct acttab { + int nAction; /* Number of used slots in aAction[] */ + int nActionAlloc; /* Slots allocated for aAction[] */ + struct { + int lookahead; /* Value of the lookahead token */ + int action; /* Action to take on the given lookahead */ + } *aAction, /* The yy_action[] table under construction */ + *aLookahead; /* A single new transaction set */ + int mnLookahead; /* Minimum aLookahead[].lookahead */ + int mnAction; /* Action associated with mnLookahead */ + int mxLookahead; /* Maximum aLookahead[].lookahead */ + int nLookahead; /* Used slots in aLookahead[] */ + int nLookaheadAlloc; /* Slots allocated in aLookahead[] */ +}; + +/* Return the number of entries in the yy_action table */ +#define acttab_size(X) ((X)->nAction) + +/* The value for the N-th entry in yy_action */ +#define acttab_yyaction(X,N) ((X)->aAction[N].action) + +/* The value for the N-th entry in yy_lookahead */ +#define acttab_yylookahead(X,N) ((X)->aAction[N].lookahead) + +/* Free all memory associated with the given acttab */ +void acttab_free(acttab *p){ + free( p->aAction ); + free( p->aLookahead ); + free( p ); +} + +/* Allocate a new acttab structure */ +acttab *acttab_alloc(void){ + acttab *p = malloc( sizeof(*p) ); + if( p==0 ){ + fprintf(stderr,"Unable to allocate memory for a new acttab."); + exit(1); + } + memset(p, 0, sizeof(*p)); + return p; +} + +/* Add a new action to the current transaction set +*/ +void acttab_action(acttab *p, int lookahead, int action){ + if( p->nLookahead>=p->nLookaheadAlloc ){ + p->nLookaheadAlloc += 25; + p->aLookahead = realloc( p->aLookahead, + sizeof(p->aLookahead[0])*p->nLookaheadAlloc ); + if( p->aLookahead==0 ){ + fprintf(stderr,"malloc failed\n"); + exit(1); + } + } + if( p->nLookahead==0 ){ + p->mxLookahead = lookahead; + p->mnLookahead = lookahead; + p->mnAction = action; + }else{ + if( p->mxLookaheadmxLookahead = lookahead; + if( p->mnLookahead>lookahead ){ + p->mnLookahead = lookahead; + p->mnAction = action; + } + } + p->aLookahead[p->nLookahead].lookahead = lookahead; + p->aLookahead[p->nLookahead].action = action; + p->nLookahead++; +} + +/* +** Add the transaction set built up with prior calls to acttab_action() +** into the current action table. Then reset the transaction set back +** to an empty set in preparation for a new round of acttab_action() calls. +** +** Return the offset into the action table of the new transaction. +*/ +int acttab_insert(acttab *p){ + int i, j, k, n; + assert( p->nLookahead>0 ); + + /* Make sure we have enough space to hold the expanded action table + ** in the worst case. The worst case occurs if the transaction set + ** must be appended to the current action table + */ + n = p->mxLookahead + 1; + if( p->nAction + n >= p->nActionAlloc ){ + int oldAlloc = p->nActionAlloc; + p->nActionAlloc = p->nAction + n + p->nActionAlloc + 20; + p->aAction = realloc( p->aAction, + sizeof(p->aAction[0])*p->nActionAlloc); + if( p->aAction==0 ){ + fprintf(stderr,"malloc failed\n"); + exit(1); + } + for(i=oldAlloc; inActionAlloc; i++){ + p->aAction[i].lookahead = -1; + p->aAction[i].action = -1; + } + } + + /* Scan the existing action table looking for an offset where we can + ** insert the current transaction set. Fall out of the loop when that + ** offset is found. In the worst case, we fall out of the loop when + ** i reaches p->nAction, which means we append the new transaction set. + ** + ** i is the index in p->aAction[] where p->mnLookahead is inserted. + */ + for(i=0; inAction+p->mnLookahead; i++){ + if( p->aAction[i].lookahead<0 ){ + for(j=0; jnLookahead; j++){ + k = p->aLookahead[j].lookahead - p->mnLookahead + i; + if( k<0 ) break; + if( p->aAction[k].lookahead>=0 ) break; + } + if( jnLookahead ) continue; + for(j=0; jnAction; j++){ + if( p->aAction[j].lookahead==j+p->mnLookahead-i ) break; + } + if( j==p->nAction ){ + break; /* Fits in empty slots */ + } + }else if( p->aAction[i].lookahead==p->mnLookahead ){ + if( p->aAction[i].action!=p->mnAction ) continue; + for(j=0; jnLookahead; j++){ + k = p->aLookahead[j].lookahead - p->mnLookahead + i; + if( k<0 || k>=p->nAction ) break; + if( p->aLookahead[j].lookahead!=p->aAction[k].lookahead ) break; + if( p->aLookahead[j].action!=p->aAction[k].action ) break; + } + if( jnLookahead ) continue; + n = 0; + for(j=0; jnAction; j++){ + if( p->aAction[j].lookahead<0 ) continue; + if( p->aAction[j].lookahead==j+p->mnLookahead-i ) n++; + } + if( n==p->nLookahead ){ + break; /* Same as a prior transaction set */ + } + } + } + /* Insert transaction set at index i. */ + for(j=0; jnLookahead; j++){ + k = p->aLookahead[j].lookahead - p->mnLookahead + i; + p->aAction[k] = p->aLookahead[j]; + if( k>=p->nAction ) p->nAction = k+1; + } + p->nLookahead = 0; + + /* Return the offset that is added to the lookahead in order to get the + ** index into yy_action of the action */ + return i - p->mnLookahead; +} + +/********************** From the file "assert.c" ****************************/ +/* +** A more efficient way of handling assertions. +*/ +void myassert(file,line) +char *file; +int line; +{ + fprintf(stderr,"Assertion failed on line %d of file \"%s\"\n",line,file); + exit(1); +} +/********************** From the file "build.c" *****************************/ +/* +** Routines to construction the finite state machine for the LEMON +** parser generator. +*/ + +/* Find a precedence symbol of every rule in the grammar. +** +** Those rules which have a precedence symbol coded in the input +** grammar using the "[symbol]" construct will already have the +** rp->precsym field filled. Other rules take as their precedence +** symbol the first RHS symbol with a defined precedence. If there +** are not RHS symbols with a defined precedence, the precedence +** symbol field is left blank. +*/ +void FindRulePrecedences(xp) +struct lemon *xp; +{ + struct rule *rp; + for(rp=xp->rule; rp; rp=rp->next){ + if( rp->precsym==0 ){ + int i; + for(i=0; inrhs; i++){ + if( rp->rhs[i]->prec>=0 ){ + rp->precsym = rp->rhs[i]; + break; + } + } + } + } + return; +} + +/* Find all nonterminals which will generate the empty string. +** Then go back and compute the first sets of every nonterminal. +** The first set is the set of all terminal symbols which can begin +** a string generated by that nonterminal. +*/ +void FindFirstSets(lemp) +struct lemon *lemp; +{ + int i; + struct rule *rp; + int progress; + + for(i=0; insymbol; i++){ + lemp->symbols[i]->lambda = B_FALSE; + } + for(i=lemp->nterminal; insymbol; i++){ + lemp->symbols[i]->firstset = SetNew(); + } + + /* First compute all lambdas */ + do{ + progress = 0; + for(rp=lemp->rule; rp; rp=rp->next){ + if( rp->lhs->lambda ) continue; + for(i=0; inrhs; i++){ + if( rp->rhs[i]->lambda==B_FALSE ) break; + } + if( i==rp->nrhs ){ + rp->lhs->lambda = B_TRUE; + progress = 1; + } + } + }while( progress ); + + /* Now compute all first sets */ + do{ + struct symbol *s1, *s2; + progress = 0; + for(rp=lemp->rule; rp; rp=rp->next){ + s1 = rp->lhs; + for(i=0; inrhs; i++){ + s2 = rp->rhs[i]; + if( s2->type==TERMINAL ){ + progress += SetAdd(s1->firstset,s2->index); + break; + }else if( s1==s2 ){ + if( s1->lambda==B_FALSE ) break; + }else{ + progress += SetUnion(s1->firstset,s2->firstset); + if( s2->lambda==B_FALSE ) break; + } + } + } + }while( progress ); + return; +} + +/* Compute all LR(0) states for the grammar. Links +** are added to between some states so that the LR(1) follow sets +** can be computed later. +*/ +PRIVATE struct state *getstate(/* struct lemon * */); /* forward reference */ +void FindStates(lemp) +struct lemon *lemp; +{ + struct symbol *sp; + struct rule *rp; + + Configlist_init(); + + /* Find the start symbol */ + if( lemp->start ){ + sp = Symbol_find(lemp->start); + if( sp==0 ){ + ErrorMsg(lemp->filename,0, +"The specified start symbol \"%s\" is not \ +in a nonterminal of the grammar. \"%s\" will be used as the start \ +symbol instead.",lemp->start,lemp->rule->lhs->name); + lemp->errorcnt++; + sp = lemp->rule->lhs; + } + }else{ + sp = lemp->rule->lhs; + } + + /* Make sure the start symbol doesn't occur on the right-hand side of + ** any rule. Report an error if it does. (YACC would generate a new + ** start symbol in this case.) */ + for(rp=lemp->rule; rp; rp=rp->next){ + int i; + for(i=0; inrhs; i++){ + if( rp->rhs[i]==sp ){ + ErrorMsg(lemp->filename,0, +"The start symbol \"%s\" occurs on the \ +right-hand side of a rule. This will result in a parser which \ +does not work properly.",sp->name); + lemp->errorcnt++; + } + } + } + + /* The basis configuration set for the first state + ** is all rules which have the start symbol as their + ** left-hand side */ + for(rp=sp->rule; rp; rp=rp->nextlhs){ + struct config *newcfp; + newcfp = Configlist_addbasis(rp,0); + SetAdd(newcfp->fws,0); + } + + /* Compute the first state. All other states will be + ** computed automatically during the computation of the first one. + ** The returned pointer to the first state is not used. */ + (void)getstate(lemp); + return; +} + +/* Return a pointer to a state which is described by the configuration +** list which has been built from calls to Configlist_add. +*/ +PRIVATE void buildshifts(/* struct lemon *, struct state * */); /* Forwd ref */ +PRIVATE struct state *getstate(lemp) +struct lemon *lemp; +{ + struct config *cfp, *bp; + struct state *stp; + + /* Extract the sorted basis of the new state. The basis was constructed + ** by prior calls to "Configlist_addbasis()". */ + Configlist_sortbasis(); + bp = Configlist_basis(); + + /* Get a state with the same basis */ + stp = State_find(bp); + if( stp ){ + /* A state with the same basis already exists! Copy all the follow-set + ** propagation links from the state under construction into the + ** preexisting state, then return a pointer to the preexisting state */ + struct config *x, *y; + for(x=bp, y=stp->bp; x && y; x=x->bp, y=y->bp){ + Plink_copy(&y->bplp,x->bplp); + Plink_delete(x->fplp); + x->fplp = x->bplp = 0; + } + cfp = Configlist_return(); + Configlist_eat(cfp); + }else{ + /* This really is a new state. Construct all the details */ + Configlist_closure(lemp); /* Compute the configuration closure */ + Configlist_sort(); /* Sort the configuration closure */ + cfp = Configlist_return(); /* Get a pointer to the config list */ + stp = State_new(); /* A new state structure */ + MemoryCheck(stp); + stp->bp = bp; /* Remember the configuration basis */ + stp->cfp = cfp; /* Remember the configuration closure */ + stp->index = lemp->nstate++; /* Every state gets a sequence number */ + stp->ap = 0; /* No actions, yet. */ + State_insert(stp,stp->bp); /* Add to the state table */ + buildshifts(lemp,stp); /* Recursively compute successor states */ + } + return stp; +} + +/* Construct all successor states to the given state. A "successor" +** state is any state which can be reached by a shift action. +*/ +PRIVATE void buildshifts(lemp,stp) +struct lemon *lemp; +struct state *stp; /* The state from which successors are computed */ +{ + struct config *cfp; /* For looping thru the config closure of "stp" */ + struct config *bcfp; /* For the inner loop on config closure of "stp" */ + struct config *new; /* */ + struct symbol *sp; /* Symbol following the dot in configuration "cfp" */ + struct symbol *bsp; /* Symbol following the dot in configuration "bcfp" */ + struct state *newstp; /* A pointer to a successor state */ + + /* Each configuration becomes complete after it contibutes to a successor + ** state. Initially, all configurations are incomplete */ + for(cfp=stp->cfp; cfp; cfp=cfp->next) cfp->status = INCOMPLETE; + + /* Loop through all configurations of the state "stp" */ + for(cfp=stp->cfp; cfp; cfp=cfp->next){ + if( cfp->status==COMPLETE ) continue; /* Already used by inner loop */ + if( cfp->dot>=cfp->rp->nrhs ) continue; /* Can't shift this config */ + Configlist_reset(); /* Reset the new config set */ + sp = cfp->rp->rhs[cfp->dot]; /* Symbol after the dot */ + + /* For every configuration in the state "stp" which has the symbol "sp" + ** following its dot, add the same configuration to the basis set under + ** construction but with the dot shifted one symbol to the right. */ + for(bcfp=cfp; bcfp; bcfp=bcfp->next){ + if( bcfp->status==COMPLETE ) continue; /* Already used */ + if( bcfp->dot>=bcfp->rp->nrhs ) continue; /* Can't shift this one */ + bsp = bcfp->rp->rhs[bcfp->dot]; /* Get symbol after dot */ + if( bsp!=sp ) continue; /* Must be same as for "cfp" */ + bcfp->status = COMPLETE; /* Mark this config as used */ + new = Configlist_addbasis(bcfp->rp,bcfp->dot+1); + Plink_add(&new->bplp,bcfp); + } + + /* Get a pointer to the state described by the basis configuration set + ** constructed in the preceding loop */ + newstp = getstate(lemp); + + /* The state "newstp" is reached from the state "stp" by a shift action + ** on the symbol "sp" */ + Action_add(&stp->ap,SHIFT,sp,(char *)newstp); + } +} + +/* +** Construct the propagation links +*/ +void FindLinks(lemp) +struct lemon *lemp; +{ + int i; + struct config *cfp, *other; + struct state *stp; + struct plink *plp; + + /* Housekeeping detail: + ** Add to every propagate link a pointer back to the state to + ** which the link is attached. */ + for(i=0; instate; i++){ + stp = lemp->sorted[i]; + for(cfp=stp->cfp; cfp; cfp=cfp->next){ + cfp->stp = stp; + } + } + + /* Convert all backlinks into forward links. Only the forward + ** links are used in the follow-set computation. */ + for(i=0; instate; i++){ + stp = lemp->sorted[i]; + for(cfp=stp->cfp; cfp; cfp=cfp->next){ + for(plp=cfp->bplp; plp; plp=plp->next){ + other = plp->cfp; + Plink_add(&other->fplp,cfp); + } + } + } +} + +/* Compute all followsets. +** +** A followset is the set of all symbols which can come immediately +** after a configuration. +*/ +void FindFollowSets(lemp) +struct lemon *lemp; +{ + int i; + struct config *cfp; + struct plink *plp; + int progress; + int change; + + for(i=0; instate; i++){ + for(cfp=lemp->sorted[i]->cfp; cfp; cfp=cfp->next){ + cfp->status = INCOMPLETE; + } + } + + do{ + progress = 0; + for(i=0; instate; i++){ + for(cfp=lemp->sorted[i]->cfp; cfp; cfp=cfp->next){ + if( cfp->status==COMPLETE ) continue; + for(plp=cfp->fplp; plp; plp=plp->next){ + change = SetUnion(plp->cfp->fws,cfp->fws); + if( change ){ + plp->cfp->status = INCOMPLETE; + progress = 1; + } + } + cfp->status = COMPLETE; + } + } + }while( progress ); +} + +static int resolve_conflict(); + +/* Compute the reduce actions, and resolve conflicts. +*/ +void FindActions(lemp) +struct lemon *lemp; +{ + int i,j; + struct config *cfp; + struct state *stp; + struct symbol *sp; + struct rule *rp; + + /* Add all of the reduce actions + ** A reduce action is added for each element of the followset of + ** a configuration which has its dot at the extreme right. + */ + for(i=0; instate; i++){ /* Loop over all states */ + stp = lemp->sorted[i]; + for(cfp=stp->cfp; cfp; cfp=cfp->next){ /* Loop over all configurations */ + if( cfp->rp->nrhs==cfp->dot ){ /* Is dot at extreme right? */ + for(j=0; jnterminal; j++){ + if( SetFind(cfp->fws,j) ){ + /* Add a reduce action to the state "stp" which will reduce by the + ** rule "cfp->rp" if the lookahead symbol is "lemp->symbols[j]" */ + Action_add(&stp->ap,REDUCE,lemp->symbols[j],(char *)cfp->rp); + } + } + } + } + } + + /* Add the accepting token */ + if( lemp->start ){ + sp = Symbol_find(lemp->start); + if( sp==0 ) sp = lemp->rule->lhs; + }else{ + sp = lemp->rule->lhs; + } + /* Add to the first state (which is always the starting state of the + ** finite state machine) an action to ACCEPT if the lookahead is the + ** start nonterminal. */ + Action_add(&lemp->sorted[0]->ap,ACCEPT,sp,0); + + /* Resolve conflicts */ + for(i=0; instate; i++){ + struct action *ap, *nap; + struct state *stp; + stp = lemp->sorted[i]; + assert( stp->ap ); + stp->ap = Action_sort(stp->ap); + for(ap=stp->ap; ap && ap->next; ap=ap->next){ + for(nap=ap->next; nap && nap->sp==ap->sp; nap=nap->next){ + /* The two actions "ap" and "nap" have the same lookahead. + ** Figure out which one should be used */ + lemp->nconflict += resolve_conflict(ap,nap,lemp->errsym); + } + } + } + + /* Report an error for each rule that can never be reduced. */ + for(rp=lemp->rule; rp; rp=rp->next) rp->canReduce = B_FALSE; + for(i=0; instate; i++){ + struct action *ap; + for(ap=lemp->sorted[i]->ap; ap; ap=ap->next){ + if( ap->type==REDUCE ) ap->x.rp->canReduce = B_TRUE; + } + } + for(rp=lemp->rule; rp; rp=rp->next){ + if( rp->canReduce ) continue; + ErrorMsg(lemp->filename,rp->ruleline,"This rule can not be reduced.\n"); + lemp->errorcnt++; + } +} + +/* Resolve a conflict between the two given actions. If the +** conflict can't be resolve, return non-zero. +** +** NO LONGER TRUE: +** To resolve a conflict, first look to see if either action +** is on an error rule. In that case, take the action which +** is not associated with the error rule. If neither or both +** actions are associated with an error rule, then try to +** use precedence to resolve the conflict. +** +** If either action is a SHIFT, then it must be apx. This +** function won't work if apx->type==REDUCE and apy->type==SHIFT. +*/ +static int resolve_conflict(apx,apy,errsym) +struct action *apx; +struct action *apy; +struct symbol *errsym; /* The error symbol (if defined. NULL otherwise) */ +{ + struct symbol *spx, *spy; + int errcnt = 0; + assert( apx->sp==apy->sp ); /* Otherwise there would be no conflict */ + if( apx->type==SHIFT && apy->type==REDUCE ){ + spx = apx->sp; + spy = apy->x.rp->precsym; + if( spy==0 || spx->prec<0 || spy->prec<0 ){ + /* Not enough precedence information. */ + fprintf(stderr, "Not enough precedence: %s\n", errsym->name); + apy->type = CONFLICT; + errcnt++; + }else if( spx->prec>spy->prec ){ /* Lower precedence wins */ + apy->type = RD_RESOLVED; + }else if( spx->precprec ){ + apx->type = SH_RESOLVED; + }else if( spx->prec==spy->prec && spx->assoc==RIGHT ){ /* Use operator */ + apy->type = RD_RESOLVED; /* associativity */ + }else if( spx->prec==spy->prec && spx->assoc==LEFT ){ /* to break tie */ + apx->type = SH_RESOLVED; + }else{ + assert( spx->prec==spy->prec && spx->assoc==NONE ); + fprintf(stderr, "Not enough precedence: %s\n", errsym->name); + apy->type = CONFLICT; + errcnt++; + } + }else if( apx->type==REDUCE && apy->type==REDUCE ){ + spx = apx->x.rp->precsym; + spy = apy->x.rp->precsym; + if( spx==0 || spy==0 || spx->prec<0 || spy->prec<0 || spx->prec==spy->prec ){ + fprintf(stderr, "Not enough precedence: %s\n", errsym->name); + apy->type = CONFLICT; + errcnt++; + }else if( spx->prec>spy->prec ){ + apy->type = RD_RESOLVED; + }else if( spx->precprec ){ + apx->type = RD_RESOLVED; + } + }else{ + assert( + apx->type==SH_RESOLVED || + apx->type==RD_RESOLVED || + apx->type==CONFLICT || + apy->type==SH_RESOLVED || + apy->type==RD_RESOLVED || + apy->type==CONFLICT + ); + /* The REDUCE/SHIFT case cannot happen because SHIFTs come before + ** REDUCEs on the list. If we reach this point it must be because + ** the parser conflict had already been resolved. */ + } + return errcnt; +} +/********************* From the file "configlist.c" *************************/ +/* +** Routines to processing a configuration list and building a state +** in the LEMON parser generator. +*/ + +static struct config *freelist = 0; /* List of free configurations */ +static struct config *current = 0; /* Top of list of configurations */ +static struct config **currentend = 0; /* Last on list of configs */ +static struct config *basis = 0; /* Top of list of basis configs */ +static struct config **basisend = 0; /* End of list of basis configs */ + +/* Return a pointer to a new configuration */ +PRIVATE struct config *newconfig(){ + struct config *new; + if( freelist==0 ){ + int i; + int amt = 3; + freelist = (struct config *)malloc( sizeof(struct config)*amt ); + if( freelist==0 ){ + fprintf(stderr,"Unable to allocate memory for a new configuration."); + exit(1); + } + for(i=0; inext; + return new; +} + +/* The configuration "old" is no longer used */ +PRIVATE void deleteconfig(old) +struct config *old; +{ + old->next = freelist; + freelist = old; +} + +/* Initialized the configuration list builder */ +void Configlist_init(){ + current = 0; + currentend = ¤t; + basis = 0; + basisend = &basis; + Configtable_init(); + return; +} + +/* Initialized the configuration list builder */ +void Configlist_reset(){ + current = 0; + currentend = ¤t; + basis = 0; + basisend = &basis; + Configtable_clear(0); + return; +} + +/* Add another configuration to the configuration list */ +struct config *Configlist_add(rp,dot) +struct rule *rp; /* The rule */ +int dot; /* Index into the RHS of the rule where the dot goes */ +{ + struct config *cfp, model; + + assert( currentend!=0 ); + model.rp = rp; + model.dot = dot; + cfp = Configtable_find(&model); + if( cfp==0 ){ + cfp = newconfig(); + cfp->rp = rp; + cfp->dot = dot; + cfp->fws = SetNew(); + cfp->stp = 0; + cfp->fplp = cfp->bplp = 0; + cfp->next = 0; + cfp->bp = 0; + *currentend = cfp; + currentend = &cfp->next; + Configtable_insert(cfp); + } + return cfp; +} + +/* Add a basis configuration to the configuration list */ +struct config *Configlist_addbasis(rp,dot) +struct rule *rp; +int dot; +{ + struct config *cfp, model; + + assert( basisend!=0 ); + assert( currentend!=0 ); + model.rp = rp; + model.dot = dot; + cfp = Configtable_find(&model); + if( cfp==0 ){ + cfp = newconfig(); + cfp->rp = rp; + cfp->dot = dot; + cfp->fws = SetNew(); + cfp->stp = 0; + cfp->fplp = cfp->bplp = 0; + cfp->next = 0; + cfp->bp = 0; + *currentend = cfp; + currentend = &cfp->next; + *basisend = cfp; + basisend = &cfp->bp; + Configtable_insert(cfp); + } + return cfp; +} + +/* Compute the closure of the configuration list */ +void Configlist_closure(lemp) +struct lemon *lemp; +{ + struct config *cfp, *newcfp; + struct rule *rp, *newrp; + struct symbol *sp, *xsp; + int i, dot; + + assert( currentend!=0 ); + for(cfp=current; cfp; cfp=cfp->next){ + rp = cfp->rp; + dot = cfp->dot; + if( dot>=rp->nrhs ) continue; + sp = rp->rhs[dot]; + if( sp->type==NONTERMINAL ){ + if( sp->rule==0 && sp!=lemp->errsym ){ + ErrorMsg(lemp->filename,rp->line,"Nonterminal \"%s\" has no rules.", + sp->name); + lemp->errorcnt++; + } + for(newrp=sp->rule; newrp; newrp=newrp->nextlhs){ + newcfp = Configlist_add(newrp,0); + for(i=dot+1; inrhs; i++){ + xsp = rp->rhs[i]; + if( xsp->type==TERMINAL ){ + SetAdd(newcfp->fws,xsp->index); + break; + }else{ + SetUnion(newcfp->fws,xsp->firstset); + if( xsp->lambda==B_FALSE ) break; + } + } + if( i==rp->nrhs ) Plink_add(&cfp->fplp,newcfp); + } + } + } + return; +} + +/* Sort the configuration list */ +void Configlist_sort(){ + current = (struct config *)msort((char *)current,(char **)&(current->next),Configcmp); + currentend = 0; + return; +} + +/* Sort the basis configuration list */ +void Configlist_sortbasis(){ + basis = (struct config *)msort((char *)current,(char **)&(current->bp),Configcmp); + basisend = 0; + return; +} + +/* Return a pointer to the head of the configuration list and +** reset the list */ +struct config *Configlist_return(){ + struct config *old; + old = current; + current = 0; + currentend = 0; + return old; +} + +/* Return a pointer to the head of the configuration list and +** reset the list */ +struct config *Configlist_basis(){ + struct config *old; + old = basis; + basis = 0; + basisend = 0; + return old; +} + +/* Free all elements of the given configuration list */ +void Configlist_eat(cfp) +struct config *cfp; +{ + struct config *nextcfp; + for(; cfp; cfp=nextcfp){ + nextcfp = cfp->next; + assert( cfp->fplp==0 ); + assert( cfp->bplp==0 ); + if( cfp->fws ) SetFree(cfp->fws); + deleteconfig(cfp); + } + return; +} +/***************** From the file "error.c" *********************************/ +/* +** Code for printing error message. +*/ + +/* Find a good place to break "msg" so that its length is at least "min" +** but no more than "max". Make the point as close to max as possible. +*/ +static int findbreak(msg,min,max) +char *msg; +int min; +int max; +{ + int i,spot; + char c; + for(i=spot=min; i<=max; i++){ + c = msg[i]; + if( c=='\t' ) msg[i] = ' '; + if( c=='\n' ){ msg[i] = ' '; spot = i; break; } + if( c==0 ){ spot = i; break; } + if( c=='-' && i0 ){ + sprintf(prefix,"%.*s:%d: ",PREFIXLIMIT-10,filename,lineno); + }else{ + sprintf(prefix,"%.*s: ",PREFIXLIMIT-10,filename); + } + prefixsize = strlen(prefix); + availablewidth = LINEWIDTH - prefixsize; + + /* Generate the error message */ + vsprintf(errmsg,format,ap); + va_end(ap); + errmsgsize = strlen(errmsg); + /* Remove trailing '\n's from the error message. */ + while( errmsgsize>0 && errmsg[errmsgsize-1]=='\n' ){ + errmsg[--errmsgsize] = 0; + } + + /* Print the error message */ + base = 0; + while( errmsg[base]!=0 ){ + end = restart = findbreak(&errmsg[base],0,availablewidth); + restart += base; + while( errmsg[restart]==' ' ) restart++; + fprintf(stdout,"%s%.*s\n",prefix,end,&errmsg[base]); + base = restart; + } +} +/**************** From the file "main.c" ************************************/ +/* +** Main program file for the LEMON parser generator. +*/ + +/* Report an out-of-memory condition and abort. This function +** is used mostly by the "MemoryCheck" macro in struct.h +*/ +void memory_error(){ + fprintf(stderr,"Out of memory. Aborting...\n"); + exit(1); +} + +static int nDefine = 0; /* Number of -D options on the command line */ +static char **azDefine = 0; /* Name of the -D macros */ + +/* This routine is called with the argument to each -D command-line option. +** Add the macro defined to the azDefine array. +*/ +static void handle_D_option(char *z){ + char **paz; + nDefine++; + azDefine = realloc(azDefine, sizeof(azDefine[0])*nDefine); + if( azDefine==0 ){ + fprintf(stderr,"out of memory\n"); + exit(1); + } + paz = &azDefine[nDefine-1]; + *paz = malloc( strlen(z)+1 ); + if( *paz==0 ){ + fprintf(stderr,"out of memory\n"); + exit(1); + } + strcpy(*paz, z); + for(z=*paz; *z && *z!='='; z++){} + *z = 0; +} + + +/* The main program. Parse the command line and do it... */ +int main(argc,argv) +int argc; +char **argv; +{ + static int version = 0; + static int rpflag = 0; + static int basisflag = 0; + static int compress = 0; + static int quiet = 0; + static int statistics = 0; + static int mhflag = 0; + static struct s_options options[] = { + {OPT_FLAG, "b", (char*)&basisflag, "Print only the basis in report."}, + {OPT_FLAG, "c", (char*)&compress, "Don't compress the action table."}, + {OPT_FSTR, "D", (char*)handle_D_option, "Define an %ifdef macro."}, + {OPT_FLAG, "g", (char*)&rpflag, "Print grammar without actions."}, + {OPT_FLAG, "m", (char*)&mhflag, "Output a makeheaders compatible file"}, + {OPT_FLAG, "q", (char*)&quiet, "(Quiet) Don't print the report file."}, + {OPT_FLAG, "s", (char*)&statistics, + "Print parser stats to standard output."}, + {OPT_FLAG, "x", (char*)&version, "Print the version number."}, + {OPT_FLAG,0,0,0} + }; + int i; + struct lemon lem; + + OptInit(argv,options,stderr); + if( version ){ + printf("Lemon version 1.0\n"); + exit(0); + } + if( OptNArgs()!=1 ){ + fprintf(stderr,"Exactly one filename argument is required.\n"); + exit(1); + } + lem.errorcnt = 0; + + /* Initialize the machine */ + Strsafe_init(); + Symbol_init(); + State_init(); + lem.argv0 = argv[0]; + lem.filename = OptArg(0); + lem.basisflag = basisflag; + lem.has_fallback = 0; + lem.nconflict = 0; + lem.name = lem.include = lem.arg = lem.tokentype = lem.start = 0; + lem.vartype = 0; + lem.stacksize = 0; + lem.error = lem.overflow = lem.failure = lem.accept = lem.tokendest = + lem.tokenprefix = lem.outname = lem.extracode = 0; + lem.vardest = 0; + lem.tablesize = 0; + Symbol_new("$"); + lem.errsym = Symbol_new("error"); + + /* Parse the input file */ + Parse(&lem); + if( lem.errorcnt ) exit(lem.errorcnt); + if( lem.rule==0 ){ + fprintf(stderr,"Empty grammar.\n"); + exit(1); + } + + /* Count and index the symbols of the grammar */ + lem.nsymbol = Symbol_count(); + Symbol_new("{default}"); + lem.symbols = Symbol_arrayof(); + for(i=0; i<=lem.nsymbol; i++) lem.symbols[i]->index = i; + qsort(lem.symbols,lem.nsymbol+1,sizeof(struct symbol*), + (int(*)())Symbolcmpp); + for(i=0; i<=lem.nsymbol; i++) lem.symbols[i]->index = i; + for(i=1; isupper(lem.symbols[i]->name[0]); i++); + lem.nterminal = i; + + /* Generate a reprint of the grammar, if requested on the command line */ + if( rpflag ){ + Reprint(&lem); + }else{ + /* Initialize the size for all follow and first sets */ + SetSize(lem.nterminal); + + /* Find the precedence for every production rule (that has one) */ + FindRulePrecedences(&lem); + + /* Compute the lambda-nonterminals and the first-sets for every + ** nonterminal */ + FindFirstSets(&lem); + + /* Compute all LR(0) states. Also record follow-set propagation + ** links so that the follow-set can be computed later */ + lem.nstate = 0; + FindStates(&lem); + lem.sorted = State_arrayof(); + + /* Tie up loose ends on the propagation links */ + FindLinks(&lem); + + /* Compute the follow set of every reducible configuration */ + FindFollowSets(&lem); + + /* Compute the action tables */ + FindActions(&lem); + + /* Compress the action tables */ + if( compress==0 ) CompressTables(&lem); + + /* Generate a report of the parser generated. (the "y.output" file) */ + if( !quiet ) ReportOutput(&lem); + + /* Generate the source code for the parser */ + ReportTable(&lem, mhflag); + + /* Produce a header file for use by the scanner. (This step is + ** omitted if the "-m" option is used because makeheaders will + ** generate the file for us.) */ + if( !mhflag ) ReportHeader(&lem); + } + if( statistics ){ + printf("Parser statistics: %d terminals, %d nonterminals, %d rules\n", + lem.nterminal, lem.nsymbol - lem.nterminal, lem.nrule); + printf(" %d states, %d parser table entries, %d conflicts\n", + lem.nstate, lem.tablesize, lem.nconflict); + } + if( lem.nconflict ){ + fprintf(stderr,"%d parsing conflicts.\n",lem.nconflict); + } + exit(lem.errorcnt + lem.nconflict); + return (lem.errorcnt + lem.nconflict); +} +/******************** From the file "msort.c" *******************************/ +/* +** A generic merge-sort program. +** +** USAGE: +** Let "ptr" be a pointer to some structure which is at the head of +** a null-terminated list. Then to sort the list call: +** +** ptr = msort(ptr,&(ptr->next),cmpfnc); +** +** In the above, "cmpfnc" is a pointer to a function which compares +** two instances of the structure and returns an integer, as in +** strcmp. The second argument is a pointer to the pointer to the +** second element of the linked list. This address is used to compute +** the offset to the "next" field within the structure. The offset to +** the "next" field must be constant for all structures in the list. +** +** The function returns a new pointer which is the head of the list +** after sorting. +** +** ALGORITHM: +** Merge-sort. +*/ + +/* +** Return a pointer to the next structure in the linked list. +*/ +#define NEXT(A) (*(char**)(((unsigned long)A)+offset)) + +/* +** Inputs: +** a: A sorted, null-terminated linked list. (May be null). +** b: A sorted, null-terminated linked list. (May be null). +** cmp: A pointer to the comparison function. +** offset: Offset in the structure to the "next" field. +** +** Return Value: +** A pointer to the head of a sorted list containing the elements +** of both a and b. +** +** Side effects: +** The "next" pointers for elements in the lists a and b are +** changed. +*/ +static char *merge(a,b,cmp,offset) +char *a; +char *b; +int (*cmp)(); +int offset; +{ + char *ptr, *head; + + if( a==0 ){ + head = b; + }else if( b==0 ){ + head = a; + }else{ + if( (*cmp)(a,b)<0 ){ + ptr = a; + a = NEXT(a); + }else{ + ptr = b; + b = NEXT(b); + } + head = ptr; + while( a && b ){ + if( (*cmp)(a,b)<0 ){ + NEXT(ptr) = a; + ptr = a; + a = NEXT(a); + }else{ + NEXT(ptr) = b; + ptr = b; + b = NEXT(b); + } + } + if( a ) NEXT(ptr) = a; + else NEXT(ptr) = b; + } + return head; +} + +/* +** Inputs: +** list: Pointer to a singly-linked list of structures. +** next: Pointer to pointer to the second element of the list. +** cmp: A comparison function. +** +** Return Value: +** A pointer to the head of a sorted list containing the elements +** orginally in list. +** +** Side effects: +** The "next" pointers for elements in list are changed. +*/ +#define LISTSIZE 30 +char *msort(list,next,cmp) +char *list; +char **next; +int (*cmp)(); +{ + unsigned long offset; + char *ep; + char *set[LISTSIZE]; + int i; + offset = (unsigned long)next - (unsigned long)list; + for(i=0; istate = WAITING_FOR_DECL_KEYWORD; + }else if( islower(x[0]) ){ + psp->lhs = Symbol_new(x); + psp->nrhs = 0; + psp->lhsalias = 0; + psp->state = WAITING_FOR_ARROW; + }else if( x[0]=='{' ){ + if( psp->prevrule==0 ){ + ErrorMsg(psp->filename,psp->tokenlineno, +"There is not prior rule opon which to attach the code \ +fragment which begins on this line."); + psp->errorcnt++; + }else if( psp->prevrule->code!=0 ){ + ErrorMsg(psp->filename,psp->tokenlineno, +"Code fragment beginning on this line is not the first \ +to follow the previous rule."); + psp->errorcnt++; + }else{ + psp->prevrule->line = psp->tokenlineno; + psp->prevrule->code = &x[1]; + } + }else if( x[0]=='[' ){ + psp->state = PRECEDENCE_MARK_1; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Token \"%s\" should be either \"%%\" or a nonterminal name.", + x); + psp->errorcnt++; + } + break; + case PRECEDENCE_MARK_1: + if( !isupper(x[0]) ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "The precedence symbol must be a terminal."); + psp->errorcnt++; + }else if( psp->prevrule==0 ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "There is no prior rule to assign precedence \"[%s]\".",x); + psp->errorcnt++; + }else if( psp->prevrule->precsym!=0 ){ + ErrorMsg(psp->filename,psp->tokenlineno, +"Precedence mark on this line is not the first \ +to follow the previous rule."); + psp->errorcnt++; + }else{ + psp->prevrule->precsym = Symbol_new(x); + } + psp->state = PRECEDENCE_MARK_2; + break; + case PRECEDENCE_MARK_2: + if( x[0]!=']' ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "Missing \"]\" on precedence mark."); + psp->errorcnt++; + } + psp->state = WAITING_FOR_DECL_OR_RULE; + break; + case WAITING_FOR_ARROW: + if( x[0]==':' && x[1]==':' && x[2]=='=' ){ + psp->state = IN_RHS; + }else if( x[0]=='(' ){ + psp->state = LHS_ALIAS_1; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Expected to see a \":\" following the LHS symbol \"%s\".", + psp->lhs->name); + psp->errorcnt++; + psp->state = RESYNC_AFTER_RULE_ERROR; + } + break; + case LHS_ALIAS_1: + if( isalpha(x[0]) ){ + psp->lhsalias = x; + psp->state = LHS_ALIAS_2; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "\"%s\" is not a valid alias for the LHS \"%s\"\n", + x,psp->lhs->name); + psp->errorcnt++; + psp->state = RESYNC_AFTER_RULE_ERROR; + } + break; + case LHS_ALIAS_2: + if( x[0]==')' ){ + psp->state = LHS_ALIAS_3; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Missing \")\" following LHS alias name \"%s\".",psp->lhsalias); + psp->errorcnt++; + psp->state = RESYNC_AFTER_RULE_ERROR; + } + break; + case LHS_ALIAS_3: + if( x[0]==':' && x[1]==':' && x[2]=='=' ){ + psp->state = IN_RHS; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Missing \"->\" following: \"%s(%s)\".", + psp->lhs->name,psp->lhsalias); + psp->errorcnt++; + psp->state = RESYNC_AFTER_RULE_ERROR; + } + break; + case IN_RHS: + if( x[0]=='.' ){ + struct rule *rp; + rp = (struct rule *)malloc( sizeof(struct rule) + + sizeof(struct symbol*)*psp->nrhs + sizeof(char*)*psp->nrhs ); + if( rp==0 ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "Can't allocate enough memory for this rule."); + psp->errorcnt++; + psp->prevrule = 0; + }else{ + int i; + rp->ruleline = psp->tokenlineno; + rp->rhs = (struct symbol**)&rp[1]; + rp->rhsalias = (char**)&(rp->rhs[psp->nrhs]); + for(i=0; inrhs; i++){ + rp->rhs[i] = psp->rhs[i]; + rp->rhsalias[i] = psp->alias[i]; + } + rp->lhs = psp->lhs; + rp->lhsalias = psp->lhsalias; + rp->nrhs = psp->nrhs; + rp->code = 0; + rp->precsym = 0; + rp->index = psp->gp->nrule++; + rp->nextlhs = rp->lhs->rule; + rp->lhs->rule = rp; + rp->next = 0; + if( psp->firstrule==0 ){ + psp->firstrule = psp->lastrule = rp; + }else{ + psp->lastrule->next = rp; + psp->lastrule = rp; + } + psp->prevrule = rp; + } + psp->state = WAITING_FOR_DECL_OR_RULE; + }else if( isalpha(x[0]) ){ + if( psp->nrhs>=MAXRHS ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "Too many symbol on RHS or rule beginning at \"%s\".", + x); + psp->errorcnt++; + psp->state = RESYNC_AFTER_RULE_ERROR; + }else{ + psp->rhs[psp->nrhs] = Symbol_new(x); + psp->alias[psp->nrhs] = 0; + psp->nrhs++; + } + }else if( x[0]=='(' && psp->nrhs>0 ){ + psp->state = RHS_ALIAS_1; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Illegal character on RHS of rule: \"%s\".",x); + psp->errorcnt++; + psp->state = RESYNC_AFTER_RULE_ERROR; + } + break; + case RHS_ALIAS_1: + if( isalpha(x[0]) ){ + psp->alias[psp->nrhs-1] = x; + psp->state = RHS_ALIAS_2; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "\"%s\" is not a valid alias for the RHS symbol \"%s\"\n", + x,psp->rhs[psp->nrhs-1]->name); + psp->errorcnt++; + psp->state = RESYNC_AFTER_RULE_ERROR; + } + break; + case RHS_ALIAS_2: + if( x[0]==')' ){ + psp->state = IN_RHS; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Missing \")\" following LHS alias name \"%s\".",psp->lhsalias); + psp->errorcnt++; + psp->state = RESYNC_AFTER_RULE_ERROR; + } + break; + case WAITING_FOR_DECL_KEYWORD: + if( isalpha(x[0]) ){ + psp->declkeyword = x; + psp->declargslot = 0; + psp->decllnslot = 0; + psp->state = WAITING_FOR_DECL_ARG; + if( strcmp(x,"name")==0 ){ + psp->declargslot = &(psp->gp->name); + }else if( strcmp(x,"include")==0 ){ + psp->declargslot = &(psp->gp->include); + psp->decllnslot = &psp->gp->includeln; + }else if( strcmp(x,"code")==0 ){ + psp->declargslot = &(psp->gp->extracode); + psp->decllnslot = &psp->gp->extracodeln; + }else if( strcmp(x,"token_destructor")==0 ){ + psp->declargslot = &psp->gp->tokendest; + psp->decllnslot = &psp->gp->tokendestln; + }else if( strcmp(x,"default_destructor")==0 ){ + psp->declargslot = &psp->gp->vardest; + psp->decllnslot = &psp->gp->vardestln; + }else if( strcmp(x,"token_prefix")==0 ){ + psp->declargslot = &psp->gp->tokenprefix; + }else if( strcmp(x,"syntax_error")==0 ){ + psp->declargslot = &(psp->gp->error); + psp->decllnslot = &psp->gp->errorln; + }else if( strcmp(x,"parse_accept")==0 ){ + psp->declargslot = &(psp->gp->accept); + psp->decllnslot = &psp->gp->acceptln; + }else if( strcmp(x,"parse_failure")==0 ){ + psp->declargslot = &(psp->gp->failure); + psp->decllnslot = &psp->gp->failureln; + }else if( strcmp(x,"stack_overflow")==0 ){ + psp->declargslot = &(psp->gp->overflow); + psp->decllnslot = &psp->gp->overflowln; + }else if( strcmp(x,"extra_argument")==0 ){ + psp->declargslot = &(psp->gp->arg); + }else if( strcmp(x,"token_type")==0 ){ + psp->declargslot = &(psp->gp->tokentype); + }else if( strcmp(x,"default_type")==0 ){ + psp->declargslot = &(psp->gp->vartype); + }else if( strcmp(x,"stack_size")==0 ){ + psp->declargslot = &(psp->gp->stacksize); + }else if( strcmp(x,"start_symbol")==0 ){ + psp->declargslot = &(psp->gp->start); + }else if( strcmp(x,"left")==0 ){ + psp->preccounter++; + psp->declassoc = LEFT; + psp->state = WAITING_FOR_PRECEDENCE_SYMBOL; + }else if( strcmp(x,"right")==0 ){ + psp->preccounter++; + psp->declassoc = RIGHT; + psp->state = WAITING_FOR_PRECEDENCE_SYMBOL; + }else if( strcmp(x,"nonassoc")==0 ){ + psp->preccounter++; + psp->declassoc = NONE; + psp->state = WAITING_FOR_PRECEDENCE_SYMBOL; + }else if( strcmp(x,"destructor")==0 ){ + psp->state = WAITING_FOR_DESTRUCTOR_SYMBOL; + }else if( strcmp(x,"type")==0 ){ + psp->state = WAITING_FOR_DATATYPE_SYMBOL; + }else if( strcmp(x,"fallback")==0 ){ + psp->fallback = 0; + psp->state = WAITING_FOR_FALLBACK_ID; + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Unknown declaration keyword: \"%%%s\".",x); + psp->errorcnt++; + psp->state = RESYNC_AFTER_DECL_ERROR; + } + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Illegal declaration keyword: \"%s\".",x); + psp->errorcnt++; + psp->state = RESYNC_AFTER_DECL_ERROR; + } + break; + case WAITING_FOR_DESTRUCTOR_SYMBOL: + if( !isalpha(x[0]) ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "Symbol name missing after %destructor keyword"); + psp->errorcnt++; + psp->state = RESYNC_AFTER_DECL_ERROR; + }else{ + struct symbol *sp = Symbol_new(x); + psp->declargslot = &sp->destructor; + psp->decllnslot = &sp->destructorln; + psp->state = WAITING_FOR_DECL_ARG; + } + break; + case WAITING_FOR_DATATYPE_SYMBOL: + if( !isalpha(x[0]) ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "Symbol name missing after %destructor keyword"); + psp->errorcnt++; + psp->state = RESYNC_AFTER_DECL_ERROR; + }else{ + struct symbol *sp = Symbol_new(x); + psp->declargslot = &sp->datatype; + psp->decllnslot = 0; + psp->state = WAITING_FOR_DECL_ARG; + } + break; + case WAITING_FOR_PRECEDENCE_SYMBOL: + if( x[0]=='.' ){ + psp->state = WAITING_FOR_DECL_OR_RULE; + }else if( isupper(x[0]) ){ + struct symbol *sp; + sp = Symbol_new(x); + if( sp->prec>=0 ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "Symbol \"%s\" has already be given a precedence.",x); + psp->errorcnt++; + }else{ + sp->prec = psp->preccounter; + sp->assoc = psp->declassoc; + } + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Can't assign a precedence to \"%s\".",x); + psp->errorcnt++; + } + break; + case WAITING_FOR_DECL_ARG: + if( (x[0]=='{' || x[0]=='\"' || isalnum(x[0])) ){ + if( *(psp->declargslot)!=0 ){ + ErrorMsg(psp->filename,psp->tokenlineno, + "The argument \"%s\" to declaration \"%%%s\" is not the first.", + x[0]=='\"' ? &x[1] : x,psp->declkeyword); + psp->errorcnt++; + psp->state = RESYNC_AFTER_DECL_ERROR; + }else{ + *(psp->declargslot) = (x[0]=='\"' || x[0]=='{') ? &x[1] : x; + if( psp->decllnslot ) *psp->decllnslot = psp->tokenlineno; + psp->state = WAITING_FOR_DECL_OR_RULE; + } + }else{ + ErrorMsg(psp->filename,psp->tokenlineno, + "Illegal argument to %%%s: %s",psp->declkeyword,x); + psp->errorcnt++; + psp->state = RESYNC_AFTER_DECL_ERROR; + } + break; + case WAITING_FOR_FALLBACK_ID: + if( x[0]=='.' ){ + psp->state = WAITING_FOR_DECL_OR_RULE; + }else if( !isupper(x[0]) ){ + ErrorMsg(psp->filename, psp->tokenlineno, + "%%fallback argument \"%s\" should be a token", x); + psp->errorcnt++; + }else{ + struct symbol *sp = Symbol_new(x); + if( psp->fallback==0 ){ + psp->fallback = sp; + }else if( sp->fallback ){ + ErrorMsg(psp->filename, psp->tokenlineno, + "More than one fallback assigned to token %s", x); + psp->errorcnt++; + }else{ + sp->fallback = psp->fallback; + psp->gp->has_fallback = 1; + } + } + break; + case RESYNC_AFTER_RULE_ERROR: +/* if( x[0]=='.' ) psp->state = WAITING_FOR_DECL_OR_RULE; +** break; */ + case RESYNC_AFTER_DECL_ERROR: + if( x[0]=='.' ) psp->state = WAITING_FOR_DECL_OR_RULE; + if( x[0]=='%' ) psp->state = WAITING_FOR_DECL_KEYWORD; + break; + } +} + +/* Run the proprocessor over the input file text. The global variables +** azDefine[0] through azDefine[nDefine-1] contains the names of all defined +** macros. This routine looks for "%ifdef" and "%ifndef" and "%endif" and +** comments them out. Text in between is also commented out as appropriate. +*/ +static preprocess_input(char *z){ + int i, j, k, n; + int exclude = 0; + int start; + int lineno = 1; + int start_lineno; + for(i=0; z[i]; i++){ + if( z[i]=='\n' ) lineno++; + if( z[i]!='%' || (i>0 && z[i-1]!='\n') ) continue; + if( strncmp(&z[i],"%endif",6)==0 && isspace(z[i+6]) ){ + if( exclude ){ + exclude--; + if( exclude==0 ){ + for(j=start; jfilename; + ps.errorcnt = 0; + ps.state = INITIALIZE; + + /* Begin by reading the input file */ + fp = fopen(ps.filename,"rb"); + if( fp==0 ){ + ErrorMsg(ps.filename,0,"Can't open this file for reading."); + gp->errorcnt++; + return; + } + fseek(fp,0,2); + filesize = ftell(fp); + rewind(fp); + filebuf = (char *)malloc( filesize+1 ); + if( filebuf==0 ){ + ErrorMsg(ps.filename,0,"Can't allocate %d of memory to hold this file.", + filesize+1); + gp->errorcnt++; + return; + } + if( fread(filebuf,1,filesize,fp)!=filesize ){ + ErrorMsg(ps.filename,0,"Can't read in all %d bytes of this file.", + filesize); + free(filebuf); + gp->errorcnt++; + return; + } + fclose(fp); + filebuf[filesize] = 0; + + /* Make an initial pass through the file to handle %ifdef and %ifndef */ + preprocess_input(filebuf); + + /* Now scan the text of the input file */ + lineno = 1; + for(cp=filebuf; (c= *cp)!=0; ){ + if( c=='\n' ) lineno++; /* Keep track of the line number */ + if( isspace(c) ){ cp++; continue; } /* Skip all white space */ + if( c=='/' && cp[1]=='/' ){ /* Skip C++ style comments */ + cp+=2; + while( (c= *cp)!=0 && c!='\n' ) cp++; + continue; + } + if( c=='/' && cp[1]=='*' ){ /* Skip C style comments */ + cp+=2; + while( (c= *cp)!=0 && (c!='/' || cp[-1]!='*') ){ + if( c=='\n' ) lineno++; + cp++; + } + if( c ) cp++; + continue; + } + ps.tokenstart = cp; /* Mark the beginning of the token */ + ps.tokenlineno = lineno; /* Linenumber on which token begins */ + if( c=='\"' ){ /* String literals */ + cp++; + while( (c= *cp)!=0 && c!='\"' ){ + if( c=='\n' ) lineno++; + cp++; + } + if( c==0 ){ + ErrorMsg(ps.filename,startline, +"String starting on this line is not terminated before the end of the file."); + ps.errorcnt++; + nextcp = cp; + }else{ + nextcp = cp+1; + } + }else if( c=='{' ){ /* A block of C code */ + int level; + cp++; + for(level=1; (c= *cp)!=0 && (level>1 || c!='}'); cp++){ + if( c=='\n' ) lineno++; + else if( c=='{' ) level++; + else if( c=='}' ) level--; + else if( c=='/' && cp[1]=='*' ){ /* Skip comments */ + int prevc; + cp = &cp[2]; + prevc = 0; + while( (c= *cp)!=0 && (c!='/' || prevc!='*') ){ + if( c=='\n' ) lineno++; + prevc = c; + cp++; + } + }else if( c=='/' && cp[1]=='/' ){ /* Skip C++ style comments too */ + cp = &cp[2]; + while( (c= *cp)!=0 && c!='\n' ) cp++; + if( c ) lineno++; + }else if( c=='\'' || c=='\"' ){ /* String a character literals */ + int startchar, prevc; + startchar = c; + prevc = 0; + for(cp++; (c= *cp)!=0 && (c!=startchar || prevc=='\\'); cp++){ + if( c=='\n' ) lineno++; + if( prevc=='\\' ) prevc = 0; + else prevc = c; + } + } + } + if( c==0 ){ + ErrorMsg(ps.filename,ps.tokenlineno, +"C code starting on this line is not terminated before the end of the file."); + ps.errorcnt++; + nextcp = cp; + }else{ + nextcp = cp+1; + } + }else if( isalnum(c) ){ /* Identifiers */ + while( (c= *cp)!=0 && (isalnum(c) || c=='_') ) cp++; + nextcp = cp; + }else if( c==':' && cp[1]==':' && cp[2]=='=' ){ /* The operator "::=" */ + cp += 3; + nextcp = cp; + }else{ /* All other (one character) operators */ + cp++; + nextcp = cp; + } + c = *cp; + *cp = 0; /* Null terminate the token */ + parseonetoken(&ps); /* Parse the token */ + *cp = c; /* Restore the buffer */ + cp = nextcp; + } + free(filebuf); /* Release the buffer after parsing */ + gp->rule = ps.firstrule; + gp->errorcnt = ps.errorcnt; +} +/*************************** From the file "plink.c" *********************/ +/* +** Routines processing configuration follow-set propagation links +** in the LEMON parser generator. +*/ +static struct plink *plink_freelist = 0; + +/* Allocate a new plink */ +struct plink *Plink_new(){ + struct plink *new; + + if( plink_freelist==0 ){ + int i; + int amt = 100; + plink_freelist = (struct plink *)malloc( sizeof(struct plink)*amt ); + if( plink_freelist==0 ){ + fprintf(stderr, + "Unable to allocate memory for a new follow-set propagation link.\n"); + exit(1); + } + for(i=0; inext; + return new; +} + +/* Add a plink to a plink list */ +void Plink_add(plpp,cfp) +struct plink **plpp; +struct config *cfp; +{ + struct plink *new; + new = Plink_new(); + new->next = *plpp; + *plpp = new; + new->cfp = cfp; +} + +/* Transfer every plink on the list "from" to the list "to" */ +void Plink_copy(to,from) +struct plink **to; +struct plink *from; +{ + struct plink *nextpl; + while( from ){ + nextpl = from->next; + from->next = *to; + *to = from; + from = nextpl; + } +} + +/* Delete every plink on the list */ +void Plink_delete(plp) +struct plink *plp; +{ + struct plink *nextpl; + + while( plp ){ + nextpl = plp->next; + plp->next = plink_freelist; + plink_freelist = plp; + plp = nextpl; + } +} +/*********************** From the file "report.c" **************************/ +/* +** Procedures for generating reports and tables in the LEMON parser generator. +*/ + +/* Generate a filename with the given suffix. Space to hold the +** name comes from malloc() and must be freed by the calling +** function. +*/ +PRIVATE char *file_makename(lemp,suffix) +struct lemon *lemp; +char *suffix; +{ + char *name; + char *cp; + + name = malloc( strlen(lemp->filename) + strlen(suffix) + 5 ); + if( name==0 ){ + fprintf(stderr,"Can't allocate space for a filename.\n"); + exit(1); + } + strcpy(name,lemp->filename); + cp = strrchr(name,'.'); + if( cp ) *cp = 0; + strcat(name,suffix); + return name; +} + +/* Open a file with a name based on the name of the input file, +** but with a different (specified) suffix, and return a pointer +** to the stream */ +PRIVATE FILE *file_open(lemp,suffix,mode) +struct lemon *lemp; +char *suffix; +char *mode; +{ + FILE *fp; + + if( lemp->outname ) free(lemp->outname); + lemp->outname = file_makename(lemp, suffix); + fp = fopen(lemp->outname,mode); + if( fp==0 && *mode=='w' ){ + fprintf(stderr,"Can't open file \"%s\".\n",lemp->outname); + lemp->errorcnt++; + return 0; + } + return fp; +} + +/* Duplicate the input file without comments and without actions +** on rules */ +void Reprint(lemp) +struct lemon *lemp; +{ + struct rule *rp; + struct symbol *sp; + int i, j, maxlen, len, ncolumns, skip; + printf("// Reprint of input file \"%s\".\n// Symbols:\n",lemp->filename); + maxlen = 10; + for(i=0; insymbol; i++){ + sp = lemp->symbols[i]; + len = strlen(sp->name); + if( len>maxlen ) maxlen = len; + } + ncolumns = 76/(maxlen+5); + if( ncolumns<1 ) ncolumns = 1; + skip = (lemp->nsymbol + ncolumns - 1)/ncolumns; + for(i=0; insymbol; j+=skip){ + sp = lemp->symbols[j]; + assert( sp->index==j ); + printf(" %3d %-*.*s",j,maxlen,maxlen,sp->name); + } + printf("\n"); + } + for(rp=lemp->rule; rp; rp=rp->next){ + printf("%s",rp->lhs->name); +/* if( rp->lhsalias ) printf("(%s)",rp->lhsalias); */ + printf(" ::="); + for(i=0; inrhs; i++){ + printf(" %s",rp->rhs[i]->name); +/* if( rp->rhsalias[i] ) printf("(%s)",rp->rhsalias[i]); */ + } + printf("."); + if( rp->precsym ) printf(" [%s]",rp->precsym->name); +/* if( rp->code ) printf("\n %s",rp->code); */ + printf("\n"); + } +} + +void ConfigPrint(fp,cfp) +FILE *fp; +struct config *cfp; +{ + struct rule *rp; + int i; + rp = cfp->rp; + fprintf(fp,"%s ::=",rp->lhs->name); + for(i=0; i<=rp->nrhs; i++){ + if( i==cfp->dot ) fprintf(fp," *"); + if( i==rp->nrhs ) break; + fprintf(fp," %s",rp->rhs[i]->name); + } +} + +/* #define TEST */ +#ifdef TEST +/* Print a set */ +PRIVATE void SetPrint(out,set,lemp) +FILE *out; +char *set; +struct lemon *lemp; +{ + int i; + char *spacer; + spacer = ""; + fprintf(out,"%12s[",""); + for(i=0; interminal; i++){ + if( SetFind(set,i) ){ + fprintf(out,"%s%s",spacer,lemp->symbols[i]->name); + spacer = " "; + } + } + fprintf(out,"]\n"); +} + +/* Print a plink chain */ +PRIVATE void PlinkPrint(out,plp,tag) +FILE *out; +struct plink *plp; +char *tag; +{ + while( plp ){ + fprintf(out,"%12s%s (state %2d) ","",tag,plp->cfp->stp->index); + ConfigPrint(out,plp->cfp); + fprintf(out,"\n"); + plp = plp->next; + } +} +#endif + +/* Print an action to the given file descriptor. Return FALSE if +** nothing was actually printed. +*/ +int PrintAction(struct action *ap, FILE *fp, int indent){ + int result = 1; + switch( ap->type ){ + case SHIFT: + fprintf(fp,"%*s shift %d",indent,ap->sp->name,ap->x.stp->index); + break; + case REDUCE: + fprintf(fp,"%*s reduce %d",indent,ap->sp->name,ap->x.rp->index); + break; + case ACCEPT: + fprintf(fp,"%*s accept",indent,ap->sp->name); + break; + case ERROR: + fprintf(fp,"%*s error",indent,ap->sp->name); + break; + case CONFLICT: + fprintf(fp,"%*s reduce %-3d ** Parsing conflict **", + indent,ap->sp->name,ap->x.rp->index); + break; + case SH_RESOLVED: + case RD_RESOLVED: + case NOT_USED: + result = 0; + break; + } + return result; +} + +/* Generate the "y.output" log file */ +void ReportOutput(lemp) +struct lemon *lemp; +{ + int i; + struct state *stp; + struct config *cfp; + struct action *ap; + FILE *fp; + + fp = file_open(lemp,".out","w"); + if( fp==0 ) return; + fprintf(fp," \b"); + for(i=0; instate; i++){ + stp = lemp->sorted[i]; + fprintf(fp,"State %d:\n",stp->index); + if( lemp->basisflag ) cfp=stp->bp; + else cfp=stp->cfp; + while( cfp ){ + char buf[20]; + if( cfp->dot==cfp->rp->nrhs ){ + sprintf(buf,"(%d)",cfp->rp->index); + fprintf(fp," %5s ",buf); + }else{ + fprintf(fp," "); + } + ConfigPrint(fp,cfp); + fprintf(fp,"\n"); +#ifdef TEST + SetPrint(fp,cfp->fws,lemp); + PlinkPrint(fp,cfp->fplp,"To "); + PlinkPrint(fp,cfp->bplp,"From"); +#endif + if( lemp->basisflag ) cfp=cfp->bp; + else cfp=cfp->next; + } + fprintf(fp,"\n"); + for(ap=stp->ap; ap; ap=ap->next){ + if( PrintAction(ap,fp,30) ) fprintf(fp,"\n"); + } + fprintf(fp,"\n"); + } + fclose(fp); + return; +} + +/* Search for the file "name" which is in the same directory as +** the exacutable */ +PRIVATE char *pathsearch(argv0,name,modemask) +char *argv0; +char *name; +int modemask; +{ + char *pathlist; + char *path,*cp; + char c; + extern int access(); + +#ifdef __WIN32__ + cp = strrchr(argv0,'\\'); +#else + cp = strrchr(argv0,'/'); +#endif + if( cp ){ + c = *cp; + *cp = 0; + path = (char *)malloc( strlen(argv0) + strlen(name) + 2 ); + if( path ) sprintf(path,"%s/%s",argv0,name); + *cp = c; + }else{ + extern char *getenv(); + pathlist = getenv("PATH"); + if( pathlist==0 ) pathlist = ".:/bin:/usr/bin"; + path = (char *)malloc( strlen(pathlist)+strlen(name)+2 ); + if( path!=0 ){ + while( *pathlist ){ + cp = strchr(pathlist,':'); + if( cp==0 ) cp = &pathlist[strlen(pathlist)]; + c = *cp; + *cp = 0; + sprintf(path,"%s/%s",pathlist,name); + *cp = c; + if( c==0 ) pathlist = ""; + else pathlist = &cp[1]; + if( access(path,modemask)==0 ) break; + } + } + } + return path; +} + +/* Given an action, compute the integer value for that action +** which is to be put in the action table of the generated machine. +** Return negative if no action should be generated. +*/ +PRIVATE int compute_action(lemp,ap) +struct lemon *lemp; +struct action *ap; +{ + int act; + switch( ap->type ){ + case SHIFT: act = ap->x.stp->index; break; + case REDUCE: act = ap->x.rp->index + lemp->nstate; break; + case ERROR: act = lemp->nstate + lemp->nrule; break; + case ACCEPT: act = lemp->nstate + lemp->nrule + 1; break; + default: act = -1; break; + } + return act; +} + +#define LINESIZE 1000 +/* The next cluster of routines are for reading the template file +** and writing the results to the generated parser */ +/* The first function transfers data from "in" to "out" until +** a line is seen which begins with "%%". The line number is +** tracked. +** +** if name!=0, then any word that begin with "Parse" is changed to +** begin with *name instead. +*/ +PRIVATE void tplt_xfer(name,in,out,lineno) +char *name; +FILE *in; +FILE *out; +int *lineno; +{ + int i, iStart; + char line[LINESIZE]; + while( fgets(line,LINESIZE,in) && (line[0]!='%' || line[1]!='%') ){ + (*lineno)++; + iStart = 0; + if( name ){ + for(i=0; line[i]; i++){ + if( line[i]=='P' && strncmp(&line[i],"Parse",5)==0 + && (i==0 || !isalpha(line[i-1])) + ){ + if( i>iStart ) fprintf(out,"%.*s",i-iStart,&line[iStart]); + fprintf(out,"%s",name); + i += 4; + iStart = i+1; + } + } + } + fprintf(out,"%s",&line[iStart]); + } +} + +/* The next function finds the template file and opens it, returning +** a pointer to the opened file. */ +PRIVATE FILE *tplt_open(lemp) +struct lemon *lemp; +{ + static char templatename[] = "lempar.c"; + char buf[1000]; + FILE *in; + char *tpltname; + char *cp; + + cp = strrchr(lemp->filename,'.'); + if( cp ){ + sprintf(buf,"%.*s.lt",(int)(cp-lemp->filename),lemp->filename); + }else{ + sprintf(buf,"%s.lt",lemp->filename); + } + if( access(buf,004)==0 ){ + tpltname = buf; + }else if( access(templatename,004)==0 ){ + tpltname = templatename; + }else{ + tpltname = pathsearch(lemp->argv0,templatename,0); + } + if( tpltname==0 ){ + fprintf(stderr,"Can't find the parser driver template file \"%s\".\n", + templatename); + lemp->errorcnt++; + return 0; + } + in = fopen(tpltname,"r"); + if( in==0 ){ + fprintf(stderr,"Can't open the template file \"%s\".\n",templatename); + lemp->errorcnt++; + return 0; + } + return in; +} + +/* Print a string to the file and keep the linenumber up to date */ +PRIVATE void tplt_print(out,lemp,str,strln,lineno) +FILE *out; +struct lemon *lemp; +char *str; +int strln; +int *lineno; +{ + if( str==0 ) return; + fprintf(out,"#line %d \"%s\"\n",strln,lemp->filename); (*lineno)++; + while( *str ){ + if( *str=='\n' ) (*lineno)++; + putc(*str,out); + str++; + } + fprintf(out,"\n#line %d \"%s\"\n",*lineno+2,lemp->outname); (*lineno)+=2; + return; +} + +/* +** The following routine emits code for the destructor for the +** symbol sp +*/ +void emit_destructor_code(out,sp,lemp,lineno) +FILE *out; +struct symbol *sp; +struct lemon *lemp; +int *lineno; +{ + char *cp = 0; + + int linecnt = 0; + if( sp->type==TERMINAL ){ + cp = lemp->tokendest; + if( cp==0 ) return; + fprintf(out,"#line %d \"%s\"\n{",lemp->tokendestln,lemp->filename); + }else if( sp->destructor ){ + cp = sp->destructor; + fprintf(out,"#line %d \"%s\"\n{",sp->destructorln,lemp->filename); + }else if( lemp->vardest ){ + cp = lemp->vardest; + if( cp==0 ) return; + fprintf(out,"#line %d \"%s\"\n{",lemp->vardestln,lemp->filename); + }else{ + assert( 0 ); /* Cannot happen */ + } + for(; *cp; cp++){ + if( *cp=='$' && cp[1]=='$' ){ + fprintf(out,"(yypminor->yy%d)",sp->dtnum); + cp++; + continue; + } + if( *cp=='\n' ) linecnt++; + fputc(*cp,out); + } + (*lineno) += 3 + linecnt; + fprintf(out,"}\n#line %d \"%s\"\n",*lineno,lemp->outname); + return; +} + +/* +** Return TRUE (non-zero) if the given symbol has a destructor. +*/ +int has_destructor(sp, lemp) +struct symbol *sp; +struct lemon *lemp; +{ + int ret; + if( sp->type==TERMINAL ){ + ret = lemp->tokendest!=0; + }else{ + ret = lemp->vardest!=0 || sp->destructor!=0; + } + return ret; +} + +/* +** Append text to a dynamically allocated string. If zText is 0 then +** reset the string to be empty again. Always return the complete text +** of the string (which is overwritten with each call). +** +** n bytes of zText are stored. If n==0 then all of zText up to the first +** \000 terminator is stored. zText can contain up to two instances of +** %d. The values of p1 and p2 are written into the first and second +** %d. +** +** If n==-1, then the previous character is overwritten. +*/ +PRIVATE char *append_str(char *zText, int n, int p1, int p2){ + static char *z = 0; + static int alloced = 0; + static int used = 0; + int i, c; + char zInt[40]; + + if( zText==0 ){ + used = 0; + return z; + } + if( n<=0 ){ + if( n<0 ){ + used += n; + assert( used>=0 ); + } + n = strlen(zText); + } + if( n+sizeof(zInt)*2+used >= alloced ){ + alloced = n + sizeof(zInt)*2 + used + 200; + z = realloc(z, alloced); + } + if( z==0 ) return ""; + while( n-- > 0 ){ + c = *(zText++); + if( c=='%' && zText[0]=='d' ){ + sprintf(zInt, "%d", p1); + p1 = p2; + strcpy(&z[used], zInt); + used += strlen(&z[used]); + zText++; + n--; + }else{ + z[used++] = c; + } + } + z[used] = 0; + return z; +} + +/* +** zCode is a string that is the action associated with a rule. Expand +** the symbols in this string so that the refer to elements of the parser +** stack. Return a new string stored in space obtained from malloc. +*/ +PRIVATE char *translate_code(struct lemon *lemp, struct rule *rp){ + char *cp, *xp; + int i; + char lhsused = 0; /* True if the LHS element has been used */ + char used[MAXRHS]; /* True for each RHS element which is used */ + + for(i=0; inrhs; i++) used[i] = 0; + lhsused = 0; + + append_str(0,0,0,0); + for(cp=rp->code; *cp; cp++){ + if( isalpha(*cp) && (cp==rp->code || (!isalnum(cp[-1]) && cp[-1]!='_')) ){ + char saved; + for(xp= &cp[1]; isalnum(*xp) || *xp=='_'; xp++); + saved = *xp; + *xp = 0; + if( rp->lhsalias && strcmp(cp,rp->lhsalias)==0 ){ + append_str("yygotominor.yy%d",0,rp->lhs->dtnum,0); + cp = xp; + lhsused = 1; + }else{ + for(i=0; inrhs; i++){ + if( rp->rhsalias[i] && strcmp(cp,rp->rhsalias[i])==0 ){ + if( cp!=rp->code && cp[-1]=='@' ){ + /* If the argument is of the form @X then substituted + ** the token number of X, not the value of X */ + append_str("yymsp[%d].major",-1,i-rp->nrhs+1,0); + }else{ + append_str("yymsp[%d].minor.yy%d",0, + i-rp->nrhs+1,rp->rhs[i]->dtnum); + } + cp = xp; + used[i] = 1; + break; + } + } + } + *xp = saved; + } + append_str(cp, 1, 0, 0); + } /* End loop */ + + /* Check to make sure the LHS has been used */ + if( rp->lhsalias && !lhsused ){ + ErrorMsg(lemp->filename,rp->ruleline, + "Label \"%s\" for \"%s(%s)\" is never used.", + rp->lhsalias,rp->lhs->name,rp->lhsalias); + lemp->errorcnt++; + } + + /* Generate destructor code for RHS symbols which are not used in the + ** reduce code */ + for(i=0; inrhs; i++){ + if( rp->rhsalias[i] && !used[i] ){ + ErrorMsg(lemp->filename,rp->ruleline, + "Label %s for \"%s(%s)\" is never used.", + rp->rhsalias[i],rp->rhs[i]->name,rp->rhsalias[i]); + lemp->errorcnt++; + }else if( rp->rhsalias[i]==0 ){ + if( has_destructor(rp->rhs[i],lemp) ){ + append_str(" yy_destructor(%d,&yymsp[%d].minor);\n", 0, + rp->rhs[i]->index,i-rp->nrhs+1); + }else{ + /* No destructor defined for this term */ + } + } + } + cp = append_str(0,0,0,0); + rp->code = Strsafe(cp); +} + +/* +** Generate code which executes when the rule "rp" is reduced. Write +** the code to "out". Make sure lineno stays up-to-date. +*/ +PRIVATE void emit_code(out,rp,lemp,lineno) +FILE *out; +struct rule *rp; +struct lemon *lemp; +int *lineno; +{ + char *cp; + int linecnt = 0; + + /* Generate code to do the reduce action */ + if( rp->code ){ + fprintf(out,"#line %d \"%s\"\n{",rp->line,lemp->filename); + fprintf(out,"%s",rp->code); + for(cp=rp->code; *cp; cp++){ + if( *cp=='\n' ) linecnt++; + } /* End loop */ + (*lineno) += 3 + linecnt; + fprintf(out,"}\n#line %d \"%s\"\n",*lineno,lemp->outname); + } /* End if( rp->code ) */ + + return; +} + +/* +** Print the definition of the union used for the parser's data stack. +** This union contains fields for every possible data type for tokens +** and nonterminals. In the process of computing and printing this +** union, also set the ".dtnum" field of every terminal and nonterminal +** symbol. +*/ +void print_stack_union(out,lemp,plineno,mhflag) +FILE *out; /* The output stream */ +struct lemon *lemp; /* The main info structure for this parser */ +int *plineno; /* Pointer to the line number */ +int mhflag; /* True if generating makeheaders output */ +{ + int lineno = *plineno; /* The line number of the output */ + char **types; /* A hash table of datatypes */ + int arraysize; /* Size of the "types" array */ + int maxdtlength; /* Maximum length of any ".datatype" field. */ + char *stddt; /* Standardized name for a datatype */ + int i,j; /* Loop counters */ + int hash; /* For hashing the name of a type */ + char *name; /* Name of the parser */ + + /* Allocate and initialize types[] and allocate stddt[] */ + arraysize = lemp->nsymbol * 2; + types = (char**)malloc( arraysize * sizeof(char*) ); + for(i=0; ivartype ){ + maxdtlength = strlen(lemp->vartype); + } + for(i=0; insymbol; i++){ + int len; + struct symbol *sp = lemp->symbols[i]; + if( sp->datatype==0 ) continue; + len = strlen(sp->datatype); + if( len>maxdtlength ) maxdtlength = len; + } + stddt = (char*)malloc( maxdtlength*2 + 1 ); + if( types==0 || stddt==0 ){ + fprintf(stderr,"Out of memory.\n"); + exit(1); + } + + /* Build a hash table of datatypes. The ".dtnum" field of each symbol + ** is filled in with the hash index plus 1. A ".dtnum" value of 0 is + ** used for terminal symbols. If there is no %default_type defined then + ** 0 is also used as the .dtnum value for nonterminals which do not specify + ** a datatype using the %type directive. + */ + for(i=0; insymbol; i++){ + struct symbol *sp = lemp->symbols[i]; + char *cp; + if( sp==lemp->errsym ){ + sp->dtnum = arraysize+1; + continue; + } + if( sp->type!=NONTERMINAL || (sp->datatype==0 && lemp->vartype==0) ){ + sp->dtnum = 0; + continue; + } + cp = sp->datatype; + if( cp==0 ) cp = lemp->vartype; + j = 0; + while( isspace(*cp) ) cp++; + while( *cp ) stddt[j++] = *cp++; + while( j>0 && isspace(stddt[j-1]) ) j--; + stddt[j] = 0; + hash = 0; + for(j=0; stddt[j]; j++){ + hash = hash*53 + stddt[j]; + } + hash = (hash & 0x7fffffff)%arraysize; + while( types[hash] ){ + if( strcmp(types[hash],stddt)==0 ){ + sp->dtnum = hash + 1; + break; + } + hash++; + if( hash>=arraysize ) hash = 0; + } + if( types[hash]==0 ){ + sp->dtnum = hash + 1; + types[hash] = (char*)malloc( strlen(stddt)+1 ); + if( types[hash]==0 ){ + fprintf(stderr,"Out of memory.\n"); + exit(1); + } + strcpy(types[hash],stddt); + } + } + + /* Print out the definition of YYTOKENTYPE and YYMINORTYPE */ + name = lemp->name ? lemp->name : "Parse"; + lineno = *plineno; + if( mhflag ){ fprintf(out,"#if INTERFACE\n"); lineno++; } + fprintf(out,"#define %sTOKENTYPE %s\n",name, + lemp->tokentype?lemp->tokentype:"void*"); lineno++; + if( mhflag ){ fprintf(out,"#endif\n"); lineno++; } + fprintf(out,"typedef union {\n"); lineno++; + fprintf(out," %sTOKENTYPE yy0;\n",name); lineno++; + for(i=0; ierrsym->dtnum); lineno++; + free(stddt); + free(types); + fprintf(out,"} YYMINORTYPE;\n"); lineno++; + *plineno = lineno; +} + +/* +** Return the name of a C datatype able to represent values between +** lwr and upr, inclusive. +*/ +static const char *minimum_size_type(int lwr, int upr){ + if( lwr>=0 ){ + if( upr<=255 ){ + return "unsigned char"; + }else if( upr<65535 ){ + return "unsigned short int"; + }else{ + return "unsigned int"; + } + }else if( lwr>=-127 && upr<=127 ){ + return "signed char"; + }else if( lwr>=-32767 && upr<32767 ){ + return "short"; + }else{ + return "int"; + } +} + +/* +** Each state contains a set of token transaction and a set of +** nonterminal transactions. Each of these sets makes an instance +** of the following structure. An array of these structures is used +** to order the creation of entries in the yy_action[] table. +*/ +struct axset { + struct state *stp; /* A pointer to a state */ + int isTkn; /* True to use tokens. False for non-terminals */ + int nAction; /* Number of actions */ +}; + +/* +** Compare to axset structures for sorting purposes +*/ +static int axset_compare(const void *a, const void *b){ + struct axset *p1 = (struct axset*)a; + struct axset *p2 = (struct axset*)b; + return p2->nAction - p1->nAction; +} + +/* Generate C source code for the parser */ +void ReportTable(lemp, mhflag) +struct lemon *lemp; +int mhflag; /* Output in makeheaders format if true */ +{ + FILE *out, *in; + char line[LINESIZE]; + int lineno; + struct state *stp; + struct action *ap; + struct rule *rp; + struct acttab *pActtab; + int i, j, n; + char *name; + int mnTknOfst, mxTknOfst; + int mnNtOfst, mxNtOfst; + struct axset *ax; + + in = tplt_open(lemp); + if( in==0 ) return; + out = file_open(lemp,".c","w"); + if( out==0 ){ + fclose(in); + return; + } + lineno = 1; + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate the include code, if any */ + tplt_print(out,lemp,lemp->include,lemp->includeln,&lineno); + if( mhflag ){ + char *name = file_makename(lemp, ".h"); + fprintf(out,"#include \"%s\"\n", name); lineno++; + free(name); + } + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate #defines for all tokens */ + if( mhflag ){ + char *prefix; + fprintf(out,"#if INTERFACE\n"); lineno++; + if( lemp->tokenprefix ) prefix = lemp->tokenprefix; + else prefix = ""; + for(i=1; interminal; i++){ + fprintf(out,"#define %s%-30s %2d\n",prefix,lemp->symbols[i]->name,i); + lineno++; + } + fprintf(out,"#endif\n"); lineno++; + } + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate the defines */ + fprintf(out,"#define YYCODETYPE %s\n", + minimum_size_type(0, lemp->nsymbol+5)); lineno++; + fprintf(out,"#define YYNOCODE %d\n",lemp->nsymbol+1); lineno++; + fprintf(out,"#define YYACTIONTYPE %s\n", + minimum_size_type(0, lemp->nstate+lemp->nrule+5)); lineno++; + print_stack_union(out,lemp,&lineno,mhflag); + if( lemp->stacksize ){ + if( atoi(lemp->stacksize)<=0 ){ + ErrorMsg(lemp->filename,0, +"Illegal stack size: [%s]. The stack size should be an integer constant.", + lemp->stacksize); + lemp->errorcnt++; + lemp->stacksize = "100"; + } + fprintf(out,"#define YYSTACKDEPTH %s\n",lemp->stacksize); lineno++; + }else{ + fprintf(out,"#define YYSTACKDEPTH 100\n"); lineno++; + } + if( mhflag ){ + fprintf(out,"#if INTERFACE\n"); lineno++; + } + name = lemp->name ? lemp->name : "Parse"; + if( lemp->arg && lemp->arg[0] ){ + int i; + i = strlen(lemp->arg); + while( i>=1 && isspace(lemp->arg[i-1]) ) i--; + while( i>=1 && (isalnum(lemp->arg[i-1]) || lemp->arg[i-1]=='_') ) i--; + fprintf(out,"#define %sARG_SDECL %s;\n",name,lemp->arg); lineno++; + fprintf(out,"#define %sARG_PDECL ,%s\n",name,lemp->arg); lineno++; + fprintf(out,"#define %sARG_FETCH %s = yypParser->%s\n", + name,lemp->arg,&lemp->arg[i]); lineno++; + fprintf(out,"#define %sARG_STORE yypParser->%s = %s\n", + name,&lemp->arg[i],&lemp->arg[i]); lineno++; + }else{ + fprintf(out,"#define %sARG_SDECL\n",name); lineno++; + fprintf(out,"#define %sARG_PDECL\n",name); lineno++; + fprintf(out,"#define %sARG_FETCH\n",name); lineno++; + fprintf(out,"#define %sARG_STORE\n",name); lineno++; + } + if( mhflag ){ + fprintf(out,"#endif\n"); lineno++; + } + fprintf(out,"#define YYNSTATE %d\n",lemp->nstate); lineno++; + fprintf(out,"#define YYNRULE %d\n",lemp->nrule); lineno++; + fprintf(out,"#define YYERRORSYMBOL %d\n",lemp->errsym->index); lineno++; + fprintf(out,"#define YYERRSYMDT yy%d\n",lemp->errsym->dtnum); lineno++; + if( lemp->has_fallback ){ + fprintf(out,"#define YYFALLBACK 1\n"); lineno++; + } + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate the action table and its associates: + ** + ** yy_action[] A single table containing all actions. + ** yy_lookahead[] A table containing the lookahead for each entry in + ** yy_action. Used to detect hash collisions. + ** yy_shift_ofst[] For each state, the offset into yy_action for + ** shifting terminals. + ** yy_reduce_ofst[] For each state, the offset into yy_action for + ** shifting non-terminals after a reduce. + ** yy_default[] Default action for each state. + */ + + /* Compute the actions on all states and count them up */ + ax = malloc( sizeof(ax[0])*lemp->nstate*2 ); + if( ax==0 ){ + fprintf(stderr,"malloc failed\n"); + exit(1); + } + for(i=0; instate; i++){ + stp = lemp->sorted[i]; + stp->nTknAct = stp->nNtAct = 0; + stp->iDflt = lemp->nstate + lemp->nrule; + stp->iTknOfst = NO_OFFSET; + stp->iNtOfst = NO_OFFSET; + for(ap=stp->ap; ap; ap=ap->next){ + if( compute_action(lemp,ap)>=0 ){ + if( ap->sp->indexnterminal ){ + stp->nTknAct++; + }else if( ap->sp->indexnsymbol ){ + stp->nNtAct++; + }else{ + stp->iDflt = compute_action(lemp, ap); + } + } + } + ax[i*2].stp = stp; + ax[i*2].isTkn = 1; + ax[i*2].nAction = stp->nTknAct; + ax[i*2+1].stp = stp; + ax[i*2+1].isTkn = 0; + ax[i*2+1].nAction = stp->nNtAct; + } + mxTknOfst = mnTknOfst = 0; + mxNtOfst = mnNtOfst = 0; + + /* Compute the action table. In order to try to keep the size of the + ** action table to a minimum, the heuristic of placing the largest action + ** sets first is used. + */ + qsort(ax, lemp->nstate*2, sizeof(ax[0]), axset_compare); + pActtab = acttab_alloc(); + for(i=0; instate*2 && ax[i].nAction>0; i++){ + stp = ax[i].stp; + if( ax[i].isTkn ){ + for(ap=stp->ap; ap; ap=ap->next){ + int action; + if( ap->sp->index>=lemp->nterminal ) continue; + action = compute_action(lemp, ap); + if( action<0 ) continue; + acttab_action(pActtab, ap->sp->index, action); + } + stp->iTknOfst = acttab_insert(pActtab); + if( stp->iTknOfstiTknOfst; + if( stp->iTknOfst>mxTknOfst ) mxTknOfst = stp->iTknOfst; + }else{ + for(ap=stp->ap; ap; ap=ap->next){ + int action; + if( ap->sp->indexnterminal ) continue; + if( ap->sp->index==lemp->nsymbol ) continue; + action = compute_action(lemp, ap); + if( action<0 ) continue; + acttab_action(pActtab, ap->sp->index, action); + } + stp->iNtOfst = acttab_insert(pActtab); + if( stp->iNtOfstiNtOfst; + if( stp->iNtOfst>mxNtOfst ) mxNtOfst = stp->iNtOfst; + } + } + free(ax); + + /* Output the yy_action table */ + fprintf(out,"static YYACTIONTYPE yy_action[] = {\n"); lineno++; + n = acttab_size(pActtab); + for(i=j=0; insymbol + lemp->nrule + 2; + if( j==0 ) fprintf(out," /* %5d */ ", i); + fprintf(out, " %4d,", action); + if( j==9 || i==n-1 ){ + fprintf(out, "\n"); lineno++; + j = 0; + }else{ + j++; + } + } + fprintf(out, "};\n"); lineno++; + + /* Output the yy_lookahead table */ + fprintf(out,"static YYCODETYPE yy_lookahead[] = {\n"); lineno++; + for(i=j=0; insymbol; + if( j==0 ) fprintf(out," /* %5d */ ", i); + fprintf(out, " %4d,", la); + if( j==9 || i==n-1 ){ + fprintf(out, "\n"); lineno++; + j = 0; + }else{ + j++; + } + } + fprintf(out, "};\n"); lineno++; + + /* Output the yy_shift_ofst[] table */ + fprintf(out, "#define YY_SHIFT_USE_DFLT (%d)\n", mnTknOfst-1); lineno++; + fprintf(out, "static %s yy_shift_ofst[] = {\n", + minimum_size_type(mnTknOfst-1, mxTknOfst)); lineno++; + n = lemp->nstate; + for(i=j=0; isorted[i]; + ofst = stp->iTknOfst; + if( ofst==NO_OFFSET ) ofst = mnTknOfst - 1; + if( j==0 ) fprintf(out," /* %5d */ ", i); + fprintf(out, " %4d,", ofst); + if( j==9 || i==n-1 ){ + fprintf(out, "\n"); lineno++; + j = 0; + }else{ + j++; + } + } + fprintf(out, "};\n"); lineno++; + + /* Output the yy_reduce_ofst[] table */ + fprintf(out, "#define YY_REDUCE_USE_DFLT (%d)\n", mnNtOfst-1); lineno++; + fprintf(out, "static %s yy_reduce_ofst[] = {\n", + minimum_size_type(mnNtOfst-1, mxNtOfst)); lineno++; + n = lemp->nstate; + for(i=j=0; isorted[i]; + ofst = stp->iNtOfst; + if( ofst==NO_OFFSET ) ofst = mnNtOfst - 1; + if( j==0 ) fprintf(out," /* %5d */ ", i); + fprintf(out, " %4d,", ofst); + if( j==9 || i==n-1 ){ + fprintf(out, "\n"); lineno++; + j = 0; + }else{ + j++; + } + } + fprintf(out, "};\n"); lineno++; + + /* Output the default action table */ + fprintf(out, "static YYACTIONTYPE yy_default[] = {\n"); lineno++; + n = lemp->nstate; + for(i=j=0; isorted[i]; + if( j==0 ) fprintf(out," /* %5d */ ", i); + fprintf(out, " %4d,", stp->iDflt); + if( j==9 || i==n-1 ){ + fprintf(out, "\n"); lineno++; + j = 0; + }else{ + j++; + } + } + fprintf(out, "};\n"); lineno++; + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate the table of fallback tokens. + */ + if( lemp->has_fallback ){ + for(i=0; interminal; i++){ + struct symbol *p = lemp->symbols[i]; + if( p->fallback==0 ){ + fprintf(out, " 0, /* %10s => nothing */\n", p->name); + }else{ + fprintf(out, " %3d, /* %10s => %s */\n", p->fallback->index, + p->name, p->fallback->name); + } + lineno++; + } + } + tplt_xfer(lemp->name, in, out, &lineno); + + /* Generate a table containing the symbolic name of every symbol + */ + for(i=0; insymbol; i++){ + sprintf(line,"\"%s\",",lemp->symbols[i]->name); + fprintf(out," %-15s",line); + if( (i&3)==3 ){ fprintf(out,"\n"); lineno++; } + } + if( (i&3)!=0 ){ fprintf(out,"\n"); lineno++; } + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate a table containing a text string that describes every + ** rule in the rule set of the grammer. This information is used + ** when tracing REDUCE actions. + */ + for(i=0, rp=lemp->rule; rp; rp=rp->next, i++){ + assert( rp->index==i ); + fprintf(out," /* %3d */ \"%s ::=", i, rp->lhs->name); + for(j=0; jnrhs; j++) fprintf(out," %s",rp->rhs[j]->name); + fprintf(out,"\",\n"); lineno++; + } + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate code which executes every time a symbol is popped from + ** the stack while processing errors or while destroying the parser. + ** (In other words, generate the %destructor actions) + */ + if( lemp->tokendest ){ + for(i=0; insymbol; i++){ + struct symbol *sp = lemp->symbols[i]; + if( sp==0 || sp->type!=TERMINAL ) continue; + fprintf(out," case %d:\n",sp->index); lineno++; + } + for(i=0; insymbol && lemp->symbols[i]->type!=TERMINAL; i++); + if( insymbol ){ + emit_destructor_code(out,lemp->symbols[i],lemp,&lineno); + fprintf(out," break;\n"); lineno++; + } + } + for(i=0; insymbol; i++){ + struct symbol *sp = lemp->symbols[i]; + if( sp==0 || sp->type==TERMINAL || sp->destructor==0 ) continue; + fprintf(out," case %d:\n",sp->index); lineno++; + + /* Combine duplicate destructors into a single case */ + for(j=i+1; jnsymbol; j++){ + struct symbol *sp2 = lemp->symbols[j]; + if( sp2 && sp2->type!=TERMINAL && sp2->destructor + && sp2->dtnum==sp->dtnum + && strcmp(sp->destructor,sp2->destructor)==0 ){ + fprintf(out," case %d:\n",sp2->index); lineno++; + sp2->destructor = 0; + } + } + + emit_destructor_code(out,lemp->symbols[i],lemp,&lineno); + fprintf(out," break;\n"); lineno++; + } + if( lemp->vardest ){ + struct symbol *dflt_sp = 0; + for(i=0; insymbol; i++){ + struct symbol *sp = lemp->symbols[i]; + if( sp==0 || sp->type==TERMINAL || + sp->index<=0 || sp->destructor!=0 ) continue; + fprintf(out," case %d:\n",sp->index); lineno++; + dflt_sp = sp; + } + if( dflt_sp!=0 ){ + emit_destructor_code(out,dflt_sp,lemp,&lineno); + fprintf(out," break;\n"); lineno++; + } + } + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate code which executes whenever the parser stack overflows */ + tplt_print(out,lemp,lemp->overflow,lemp->overflowln,&lineno); + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate the table of rule information + ** + ** Note: This code depends on the fact that rules are number + ** sequentually beginning with 0. + */ + for(rp=lemp->rule; rp; rp=rp->next){ + fprintf(out," { %d, %d },\n",rp->lhs->index,rp->nrhs); lineno++; + } + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate code which execution during each REDUCE action */ + for(rp=lemp->rule; rp; rp=rp->next){ + if( rp->code ) translate_code(lemp, rp); + } + for(rp=lemp->rule; rp; rp=rp->next){ + struct rule *rp2; + if( rp->code==0 ) continue; + fprintf(out," case %d:\n",rp->index); lineno++; + for(rp2=rp->next; rp2; rp2=rp2->next){ + if( rp2->code==rp->code ){ + fprintf(out," case %d:\n",rp2->index); lineno++; + rp2->code = 0; + } + } + emit_code(out,rp,lemp,&lineno); + fprintf(out," break;\n"); lineno++; + } + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate code which executes if a parse fails */ + tplt_print(out,lemp,lemp->failure,lemp->failureln,&lineno); + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate code which executes when a syntax error occurs */ + tplt_print(out,lemp,lemp->error,lemp->errorln,&lineno); + tplt_xfer(lemp->name,in,out,&lineno); + + /* Generate code which executes when the parser accepts its input */ + tplt_print(out,lemp,lemp->accept,lemp->acceptln,&lineno); + tplt_xfer(lemp->name,in,out,&lineno); + + /* Append any addition code the user desires */ + tplt_print(out,lemp,lemp->extracode,lemp->extracodeln,&lineno); + + fclose(in); + fclose(out); + return; +} + +/* Generate a header file for the parser */ +void ReportHeader(lemp) +struct lemon *lemp; +{ + FILE *out, *in; + char *prefix; + char line[LINESIZE]; + char pattern[LINESIZE]; + int i; + + if( lemp->tokenprefix ) prefix = lemp->tokenprefix; + else prefix = ""; + in = file_open(lemp,".h","r"); + if( in ){ + for(i=1; interminal && fgets(line,LINESIZE,in); i++){ + sprintf(pattern,"#define %s%-30s %2d\n",prefix,lemp->symbols[i]->name,i); + if( strcmp(line,pattern) ) break; + } + fclose(in); + if( i==lemp->nterminal ){ + /* No change in the file. Don't rewrite it. */ + return; + } + } + out = file_open(lemp,".h","w"); + if( out ){ + for(i=1; interminal; i++){ + fprintf(out,"#define %s%-30s %2d\n",prefix,lemp->symbols[i]->name,i); + } + fclose(out); + } + return; +} + +/* Reduce the size of the action tables, if possible, by making use +** of defaults. +** +** In this version, we take the most frequent REDUCE action and make +** it the default. Only default a reduce if there are more than one. +*/ +void CompressTables(lemp) +struct lemon *lemp; +{ + struct state *stp; + struct action *ap, *ap2; + struct rule *rp, *rp2, *rbest; + int nbest, n; + int i; + + for(i=0; instate; i++){ + stp = lemp->sorted[i]; + nbest = 0; + rbest = 0; + + for(ap=stp->ap; ap; ap=ap->next){ + if( ap->type!=REDUCE ) continue; + rp = ap->x.rp; + if( rp==rbest ) continue; + n = 1; + for(ap2=ap->next; ap2; ap2=ap2->next){ + if( ap2->type!=REDUCE ) continue; + rp2 = ap2->x.rp; + if( rp2==rbest ) continue; + if( rp2==rp ) n++; + } + if( n>nbest ){ + nbest = n; + rbest = rp; + } + } + + /* Do not make a default if the number of rules to default + ** is not at least 2 */ + if( nbest<2 ) continue; + + + /* Combine matching REDUCE actions into a single default */ + for(ap=stp->ap; ap; ap=ap->next){ + if( ap->type==REDUCE && ap->x.rp==rbest ) break; + } + assert( ap ); + ap->sp = Symbol_new("{default}"); + for(ap=ap->next; ap; ap=ap->next){ + if( ap->type==REDUCE && ap->x.rp==rbest ) ap->type = NOT_USED; + } + stp->ap = Action_sort(stp->ap); + } +} + +/***************** From the file "set.c" ************************************/ +/* +** Set manipulation routines for the LEMON parser generator. +*/ + +static int size = 0; + +/* Set the set size */ +void SetSize(n) +int n; +{ + size = n+1; +} + +/* Allocate a new set */ +char *SetNew(){ + char *s; + int i; + s = (char*)malloc( size ); + if( s==0 ){ + extern void memory_error(); + memory_error(); + } + for(i=0; isize = 1024; + x1a->count = 0; + x1a->tbl = (x1node*)malloc( + (sizeof(x1node) + sizeof(x1node*))*1024 ); + if( x1a->tbl==0 ){ + free(x1a); + x1a = 0; + }else{ + int i; + x1a->ht = (x1node**)&(x1a->tbl[1024]); + for(i=0; i<1024; i++) x1a->ht[i] = 0; + } + } +} +/* Insert a new record into the array. Return TRUE if successful. +** Prior data with the same key is NOT overwritten */ +int Strsafe_insert(data) +char *data; +{ + x1node *np; + int h; + int ph; + + if( x1a==0 ) return 0; + ph = strhash(data); + h = ph & (x1a->size-1); + np = x1a->ht[h]; + while( np ){ + if( strcmp(np->data,data)==0 ){ + /* An existing entry with the same key is found. */ + /* Fail because overwrite is not allows. */ + return 0; + } + np = np->next; + } + if( x1a->count>=x1a->size ){ + /* Need to make the hash table bigger */ + int i,size; + struct s_x1 array; + array.size = size = x1a->size*2; + array.count = x1a->count; + array.tbl = (x1node*)malloc( + (sizeof(x1node) + sizeof(x1node*))*size ); + if( array.tbl==0 ) return 0; /* Fail due to malloc failure */ + array.ht = (x1node**)&(array.tbl[size]); + for(i=0; icount; i++){ + x1node *oldnp, *newnp; + oldnp = &(x1a->tbl[i]); + h = strhash(oldnp->data) & (size-1); + newnp = &(array.tbl[i]); + if( array.ht[h] ) array.ht[h]->from = &(newnp->next); + newnp->next = array.ht[h]; + newnp->data = oldnp->data; + newnp->from = &(array.ht[h]); + array.ht[h] = newnp; + } + free(x1a->tbl); + *x1a = array; + } + /* Insert the new data */ + h = ph & (x1a->size-1); + np = &(x1a->tbl[x1a->count++]); + np->data = data; + if( x1a->ht[h] ) x1a->ht[h]->from = &(np->next); + np->next = x1a->ht[h]; + x1a->ht[h] = np; + np->from = &(x1a->ht[h]); + return 1; +} + +/* Return a pointer to data assigned to the given key. Return NULL +** if no such key. */ +char *Strsafe_find(key) +char *key; +{ + int h; + x1node *np; + + if( x1a==0 ) return 0; + h = strhash(key) & (x1a->size-1); + np = x1a->ht[h]; + while( np ){ + if( strcmp(np->data,key)==0 ) break; + np = np->next; + } + return np ? np->data : 0; +} + +/* Return a pointer to the (terminal or nonterminal) symbol "x". +** Create a new symbol if this is the first time "x" has been seen. +*/ +struct symbol *Symbol_new(x) +char *x; +{ + struct symbol *sp; + + sp = Symbol_find(x); + if( sp==0 ){ + sp = (struct symbol *)malloc( sizeof(struct symbol) ); + MemoryCheck(sp); + sp->name = Strsafe(x); + sp->type = isupper(*x) ? TERMINAL : NONTERMINAL; + sp->rule = 0; + sp->fallback = 0; + sp->prec = -1; + sp->assoc = UNK; + sp->firstset = 0; + sp->lambda = B_FALSE; + sp->destructor = 0; + sp->datatype = 0; + Symbol_insert(sp,sp->name); + } + return sp; +} + +/* Compare two symbols for working purposes +** +** Symbols that begin with upper case letters (terminals or tokens) +** must sort before symbols that begin with lower case letters +** (non-terminals). Other than that, the order does not matter. +** +** We find experimentally that leaving the symbols in their original +** order (the order they appeared in the grammar file) gives the +** smallest parser tables in SQLite. +*/ +int Symbolcmpp(struct symbol **a, struct symbol **b){ + int i1 = (**a).index + 10000000*((**a).name[0]>'Z'); + int i2 = (**b).index + 10000000*((**b).name[0]>'Z'); + return i1-i2; +} + +/* There is one instance of the following structure for each +** associative array of type "x2". +*/ +struct s_x2 { + int size; /* The number of available slots. */ + /* Must be a power of 2 greater than or */ + /* equal to 1 */ + int count; /* Number of currently slots filled */ + struct s_x2node *tbl; /* The data stored here */ + struct s_x2node **ht; /* Hash table for lookups */ +}; + +/* There is one instance of this structure for every data element +** in an associative array of type "x2". +*/ +typedef struct s_x2node { + struct symbol *data; /* The data */ + char *key; /* The key */ + struct s_x2node *next; /* Next entry with the same hash */ + struct s_x2node **from; /* Previous link */ +} x2node; + +/* There is only one instance of the array, which is the following */ +static struct s_x2 *x2a; + +/* Allocate a new associative array */ +void Symbol_init(){ + if( x2a ) return; + x2a = (struct s_x2*)malloc( sizeof(struct s_x2) ); + if( x2a ){ + x2a->size = 128; + x2a->count = 0; + x2a->tbl = (x2node*)malloc( + (sizeof(x2node) + sizeof(x2node*))*128 ); + if( x2a->tbl==0 ){ + free(x2a); + x2a = 0; + }else{ + int i; + x2a->ht = (x2node**)&(x2a->tbl[128]); + for(i=0; i<128; i++) x2a->ht[i] = 0; + } + } +} +/* Insert a new record into the array. Return TRUE if successful. +** Prior data with the same key is NOT overwritten */ +int Symbol_insert(data,key) +struct symbol *data; +char *key; +{ + x2node *np; + int h; + int ph; + + if( x2a==0 ) return 0; + ph = strhash(key); + h = ph & (x2a->size-1); + np = x2a->ht[h]; + while( np ){ + if( strcmp(np->key,key)==0 ){ + /* An existing entry with the same key is found. */ + /* Fail because overwrite is not allows. */ + return 0; + } + np = np->next; + } + if( x2a->count>=x2a->size ){ + /* Need to make the hash table bigger */ + int i,size; + struct s_x2 array; + array.size = size = x2a->size*2; + array.count = x2a->count; + array.tbl = (x2node*)malloc( + (sizeof(x2node) + sizeof(x2node*))*size ); + if( array.tbl==0 ) return 0; /* Fail due to malloc failure */ + array.ht = (x2node**)&(array.tbl[size]); + for(i=0; icount; i++){ + x2node *oldnp, *newnp; + oldnp = &(x2a->tbl[i]); + h = strhash(oldnp->key) & (size-1); + newnp = &(array.tbl[i]); + if( array.ht[h] ) array.ht[h]->from = &(newnp->next); + newnp->next = array.ht[h]; + newnp->key = oldnp->key; + newnp->data = oldnp->data; + newnp->from = &(array.ht[h]); + array.ht[h] = newnp; + } + free(x2a->tbl); + *x2a = array; + } + /* Insert the new data */ + h = ph & (x2a->size-1); + np = &(x2a->tbl[x2a->count++]); + np->key = key; + np->data = data; + if( x2a->ht[h] ) x2a->ht[h]->from = &(np->next); + np->next = x2a->ht[h]; + x2a->ht[h] = np; + np->from = &(x2a->ht[h]); + return 1; +} + +/* Return a pointer to data assigned to the given key. Return NULL +** if no such key. */ +struct symbol *Symbol_find(key) +char *key; +{ + int h; + x2node *np; + + if( x2a==0 ) return 0; + h = strhash(key) & (x2a->size-1); + np = x2a->ht[h]; + while( np ){ + if( strcmp(np->key,key)==0 ) break; + np = np->next; + } + return np ? np->data : 0; +} + +/* Return the n-th data. Return NULL if n is out of range. */ +struct symbol *Symbol_Nth(n) +int n; +{ + struct symbol *data; + if( x2a && n>0 && n<=x2a->count ){ + data = x2a->tbl[n-1].data; + }else{ + data = 0; + } + return data; +} + +/* Return the size of the array */ +int Symbol_count() +{ + return x2a ? x2a->count : 0; +} + +/* Return an array of pointers to all data in the table. +** The array is obtained from malloc. Return NULL if memory allocation +** problems, or if the array is empty. */ +struct symbol **Symbol_arrayof() +{ + struct symbol **array; + int i,size; + if( x2a==0 ) return 0; + size = x2a->count; + array = (struct symbol **)malloc( sizeof(struct symbol *)*size ); + if( array ){ + for(i=0; itbl[i].data; + } + return array; +} + +/* Compare two configurations */ +int Configcmp(a,b) +struct config *a; +struct config *b; +{ + int x; + x = a->rp->index - b->rp->index; + if( x==0 ) x = a->dot - b->dot; + return x; +} + +/* Compare two states */ +PRIVATE int statecmp(a,b) +struct config *a; +struct config *b; +{ + int rc; + for(rc=0; rc==0 && a && b; a=a->bp, b=b->bp){ + rc = a->rp->index - b->rp->index; + if( rc==0 ) rc = a->dot - b->dot; + } + if( rc==0 ){ + if( a ) rc = 1; + if( b ) rc = -1; + } + return rc; +} + +/* Hash a state */ +PRIVATE int statehash(a) +struct config *a; +{ + int h=0; + while( a ){ + h = h*571 + a->rp->index*37 + a->dot; + a = a->bp; + } + return h; +} + +/* Allocate a new state structure */ +struct state *State_new() +{ + struct state *new; + new = (struct state *)malloc( sizeof(struct state) ); + MemoryCheck(new); + return new; +} + +/* There is one instance of the following structure for each +** associative array of type "x3". +*/ +struct s_x3 { + int size; /* The number of available slots. */ + /* Must be a power of 2 greater than or */ + /* equal to 1 */ + int count; /* Number of currently slots filled */ + struct s_x3node *tbl; /* The data stored here */ + struct s_x3node **ht; /* Hash table for lookups */ +}; + +/* There is one instance of this structure for every data element +** in an associative array of type "x3". +*/ +typedef struct s_x3node { + struct state *data; /* The data */ + struct config *key; /* The key */ + struct s_x3node *next; /* Next entry with the same hash */ + struct s_x3node **from; /* Previous link */ +} x3node; + +/* There is only one instance of the array, which is the following */ +static struct s_x3 *x3a; + +/* Allocate a new associative array */ +void State_init(){ + if( x3a ) return; + x3a = (struct s_x3*)malloc( sizeof(struct s_x3) ); + if( x3a ){ + x3a->size = 128; + x3a->count = 0; + x3a->tbl = (x3node*)malloc( + (sizeof(x3node) + sizeof(x3node*))*128 ); + if( x3a->tbl==0 ){ + free(x3a); + x3a = 0; + }else{ + int i; + x3a->ht = (x3node**)&(x3a->tbl[128]); + for(i=0; i<128; i++) x3a->ht[i] = 0; + } + } +} +/* Insert a new record into the array. Return TRUE if successful. +** Prior data with the same key is NOT overwritten */ +int State_insert(data,key) +struct state *data; +struct config *key; +{ + x3node *np; + int h; + int ph; + + if( x3a==0 ) return 0; + ph = statehash(key); + h = ph & (x3a->size-1); + np = x3a->ht[h]; + while( np ){ + if( statecmp(np->key,key)==0 ){ + /* An existing entry with the same key is found. */ + /* Fail because overwrite is not allows. */ + return 0; + } + np = np->next; + } + if( x3a->count>=x3a->size ){ + /* Need to make the hash table bigger */ + int i,size; + struct s_x3 array; + array.size = size = x3a->size*2; + array.count = x3a->count; + array.tbl = (x3node*)malloc( + (sizeof(x3node) + sizeof(x3node*))*size ); + if( array.tbl==0 ) return 0; /* Fail due to malloc failure */ + array.ht = (x3node**)&(array.tbl[size]); + for(i=0; icount; i++){ + x3node *oldnp, *newnp; + oldnp = &(x3a->tbl[i]); + h = statehash(oldnp->key) & (size-1); + newnp = &(array.tbl[i]); + if( array.ht[h] ) array.ht[h]->from = &(newnp->next); + newnp->next = array.ht[h]; + newnp->key = oldnp->key; + newnp->data = oldnp->data; + newnp->from = &(array.ht[h]); + array.ht[h] = newnp; + } + free(x3a->tbl); + *x3a = array; + } + /* Insert the new data */ + h = ph & (x3a->size-1); + np = &(x3a->tbl[x3a->count++]); + np->key = key; + np->data = data; + if( x3a->ht[h] ) x3a->ht[h]->from = &(np->next); + np->next = x3a->ht[h]; + x3a->ht[h] = np; + np->from = &(x3a->ht[h]); + return 1; +} + +/* Return a pointer to data assigned to the given key. Return NULL +** if no such key. */ +struct state *State_find(key) +struct config *key; +{ + int h; + x3node *np; + + if( x3a==0 ) return 0; + h = statehash(key) & (x3a->size-1); + np = x3a->ht[h]; + while( np ){ + if( statecmp(np->key,key)==0 ) break; + np = np->next; + } + return np ? np->data : 0; +} + +/* Return an array of pointers to all data in the table. +** The array is obtained from malloc. Return NULL if memory allocation +** problems, or if the array is empty. */ +struct state **State_arrayof() +{ + struct state **array; + int i,size; + if( x3a==0 ) return 0; + size = x3a->count; + array = (struct state **)malloc( sizeof(struct state *)*size ); + if( array ){ + for(i=0; itbl[i].data; + } + return array; +} + +/* Hash a configuration */ +PRIVATE int confighash(a) +struct config *a; +{ + int h=0; + h = h*571 + a->rp->index*37 + a->dot; + return h; +} + +/* There is one instance of the following structure for each +** associative array of type "x4". +*/ +struct s_x4 { + int size; /* The number of available slots. */ + /* Must be a power of 2 greater than or */ + /* equal to 1 */ + int count; /* Number of currently slots filled */ + struct s_x4node *tbl; /* The data stored here */ + struct s_x4node **ht; /* Hash table for lookups */ +}; + +/* There is one instance of this structure for every data element +** in an associative array of type "x4". +*/ +typedef struct s_x4node { + struct config *data; /* The data */ + struct s_x4node *next; /* Next entry with the same hash */ + struct s_x4node **from; /* Previous link */ +} x4node; + +/* There is only one instance of the array, which is the following */ +static struct s_x4 *x4a; + +/* Allocate a new associative array */ +void Configtable_init(){ + if( x4a ) return; + x4a = (struct s_x4*)malloc( sizeof(struct s_x4) ); + if( x4a ){ + x4a->size = 64; + x4a->count = 0; + x4a->tbl = (x4node*)malloc( + (sizeof(x4node) + sizeof(x4node*))*64 ); + if( x4a->tbl==0 ){ + free(x4a); + x4a = 0; + }else{ + int i; + x4a->ht = (x4node**)&(x4a->tbl[64]); + for(i=0; i<64; i++) x4a->ht[i] = 0; + } + } +} +/* Insert a new record into the array. Return TRUE if successful. +** Prior data with the same key is NOT overwritten */ +int Configtable_insert(data) +struct config *data; +{ + x4node *np; + int h; + int ph; + + if( x4a==0 ) return 0; + ph = confighash(data); + h = ph & (x4a->size-1); + np = x4a->ht[h]; + while( np ){ + if( Configcmp(np->data,data)==0 ){ + /* An existing entry with the same key is found. */ + /* Fail because overwrite is not allows. */ + return 0; + } + np = np->next; + } + if( x4a->count>=x4a->size ){ + /* Need to make the hash table bigger */ + int i,size; + struct s_x4 array; + array.size = size = x4a->size*2; + array.count = x4a->count; + array.tbl = (x4node*)malloc( + (sizeof(x4node) + sizeof(x4node*))*size ); + if( array.tbl==0 ) return 0; /* Fail due to malloc failure */ + array.ht = (x4node**)&(array.tbl[size]); + for(i=0; icount; i++){ + x4node *oldnp, *newnp; + oldnp = &(x4a->tbl[i]); + h = confighash(oldnp->data) & (size-1); + newnp = &(array.tbl[i]); + if( array.ht[h] ) array.ht[h]->from = &(newnp->next); + newnp->next = array.ht[h]; + newnp->data = oldnp->data; + newnp->from = &(array.ht[h]); + array.ht[h] = newnp; + } + free(x4a->tbl); + *x4a = array; + } + /* Insert the new data */ + h = ph & (x4a->size-1); + np = &(x4a->tbl[x4a->count++]); + np->data = data; + if( x4a->ht[h] ) x4a->ht[h]->from = &(np->next); + np->next = x4a->ht[h]; + x4a->ht[h] = np; + np->from = &(x4a->ht[h]); + return 1; +} + +/* Return a pointer to data assigned to the given key. Return NULL +** if no such key. */ +struct config *Configtable_find(key) +struct config *key; +{ + int h; + x4node *np; + + if( x4a==0 ) return 0; + h = confighash(key) & (x4a->size-1); + np = x4a->ht[h]; + while( np ){ + if( Configcmp(np->data,key)==0 ) break; + np = np->next; + } + return np ? np->data : 0; +} + +/* Remove all data from the table. Pass each data to the function "f" +** as it is removed. ("f" may be null to avoid this step.) */ +void Configtable_clear(f) +int(*f)(/* struct config * */); +{ + int i; + if( x4a==0 || x4a->count==0 ) return; + if( f ) for(i=0; icount; i++) (*f)(x4a->tbl[i].data); + for(i=0; isize; i++) x4a->ht[i] = 0; + x4a->count = 0; + return; +} diff --git a/php/r3/annotation/lempar.c b/php/r3/annotation/lempar.c new file mode 100644 index 0000000..ee1edbf --- /dev/null +++ b/php/r3/annotation/lempar.c @@ -0,0 +1,687 @@ +/* Driver template for the LEMON parser generator. +** The author disclaims copyright to this source code. +*/ +/* First off, code is include which follows the "include" declaration +** in the input file. */ +#include +%% +/* Next is all token values, in a form suitable for use by makeheaders. +** This section will be null unless lemon is run with the -m switch. +*/ +/* +** These constants (all generated automatically by the parser generator) +** specify the various kinds of tokens (terminals) that the parser +** understands. +** +** Each symbol here is a terminal symbol in the grammar. +*/ +%% +/* Make sure the INTERFACE macro is defined. +*/ +#ifndef INTERFACE +# define INTERFACE 1 +#endif +/* The next thing included is series of defines which control +** various aspects of the generated parser. +** YYCODETYPE is the data type used for storing terminal +** and nonterminal numbers. "unsigned char" is +** used if there are fewer than 250 terminals +** and nonterminals. "int" is used otherwise. +** YYNOCODE is a number of type YYCODETYPE which corresponds +** to no legal terminal or nonterminal number. This +** number is used to fill in empty slots of the hash +** table. +** YYFALLBACK If defined, this indicates that one or more tokens +** have fall-back values which should be used if the +** original value of the token will not parse. +** YYACTIONTYPE is the data type used for storing terminal +** and nonterminal numbers. "unsigned char" is +** used if there are fewer than 250 rules and +** states combined. "int" is used otherwise. +** ParseTOKENTYPE is the data type used for minor tokens given +** directly to the parser from the tokenizer. +** YYMINORTYPE is the data type used for all minor tokens. +** This is typically a union of many types, one of +** which is ParseTOKENTYPE. The entry in the union +** for base tokens is called "yy0". +** YYSTACKDEPTH is the maximum depth of the parser's stack. +** ParseARG_SDECL A static variable declaration for the %extra_argument +** ParseARG_PDECL A parameter declaration for the %extra_argument +** ParseARG_STORE Code to store %extra_argument into yypParser +** ParseARG_FETCH Code to extract %extra_argument from yypParser +** YYNSTATE the combined number of states. +** YYNRULE the number of rules in the grammar +** YYERRORSYMBOL is the code number of the error symbol. If not +** defined, then do no error processing. +*/ +%% +#define YY_NO_ACTION (YYNSTATE+YYNRULE+2) +#define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1) +#define YY_ERROR_ACTION (YYNSTATE+YYNRULE) + +/* Next are that tables used to determine what action to take based on the +** current state and lookahead token. These tables are used to implement +** functions that take a state number and lookahead value and return an +** action integer. +** +** Suppose the action integer is N. Then the action is determined as +** follows +** +** 0 <= N < YYNSTATE Shift N. That is, push the lookahead +** token onto the stack and goto state N. +** +** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE. +** +** N == YYNSTATE+YYNRULE A syntax error has occurred. +** +** N == YYNSTATE+YYNRULE+1 The parser accepts its input. +** +** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused +** slots in the yy_action[] table. +** +** The action table is constructed as a single large table named yy_action[]. +** Given state S and lookahead X, the action is computed as +** +** yy_action[ yy_shift_ofst[S] + X ] +** +** If the index value yy_shift_ofst[S]+X is out of range or if the value +** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S] +** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table +** and that yy_default[S] should be used instead. +** +** The formula above is for computing the action when the lookahead is +** a terminal symbol. If the lookahead is a non-terminal (as occurs after +** a reduce action) then the yy_reduce_ofst[] array is used in place of +** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of +** YY_SHIFT_USE_DFLT. +** +** The following are the tables generated in this section: +** +** yy_action[] A single table containing all actions. +** yy_lookahead[] A table containing the lookahead for each entry in +** yy_action. Used to detect hash collisions. +** yy_shift_ofst[] For each state, the offset into yy_action for +** shifting terminals. +** yy_reduce_ofst[] For each state, the offset into yy_action for +** shifting non-terminals after a reduce. +** yy_default[] Default action for each state. +*/ +%% +#define YY_SZ_ACTTAB (sizeof(yy_action)/sizeof(yy_action[0])) + +/* The next table maps tokens into fallback tokens. If a construct +** like the following: +** +** %fallback ID X Y Z. +** +** appears in the grammer, then ID becomes a fallback token for X, Y, +** and Z. Whenever one of the tokens X, Y, or Z is input to the parser +** but it does not parse, the type of the token is changed to ID and +** the parse is retried before an error is thrown. +*/ +#ifdef YYFALLBACK +static const YYCODETYPE yyFallback[] = { +%% +}; +#endif /* YYFALLBACK */ + +/* The following structure represents a single element of the +** parser's stack. Information stored includes: +** +** + The state number for the parser at this level of the stack. +** +** + The value of the token stored at this level of the stack. +** (In other words, the "major" token.) +** +** + The semantic value stored at this level of the stack. This is +** the information used by the action routines in the grammar. +** It is sometimes called the "minor" token. +*/ +struct yyStackEntry { + int stateno; /* The state-number */ + int major; /* The major token value. This is the code + ** number for the token at this stack level */ + YYMINORTYPE minor; /* The user-supplied minor token value. This + ** is the value of the token */ +}; +typedef struct yyStackEntry yyStackEntry; + +/* The state of the parser is completely contained in an instance of +** the following structure */ +struct yyParser { + int yyidx; /* Index of top element in stack */ + int yyerrcnt; /* Shifts left before out of the error */ + ParseARG_SDECL /* A place to hold %extra_argument */ + yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ +}; +typedef struct yyParser yyParser; + +#ifndef NDEBUG +#include +static FILE *yyTraceFILE = 0; +static char *yyTracePrompt = 0; +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* +** Turn parser tracing on by giving a stream to which to write the trace +** and a prompt to preface each trace message. Tracing is turned off +** by making either argument NULL +** +** Inputs: +**
    +**
  • A FILE* to which trace output should be written. +** If NULL, then tracing is turned off. +**
  • A prefix string written at the beginning of every +** line of trace output. If NULL, then tracing is +** turned off. +**
+** +** Outputs: +** None. +*/ +void ParseTrace(FILE *TraceFILE, char *zTracePrompt){ + yyTraceFILE = TraceFILE; + yyTracePrompt = zTracePrompt; + if( yyTraceFILE==0 ) yyTracePrompt = 0; + else if( yyTracePrompt==0 ) yyTraceFILE = 0; +} +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* For tracing shifts, the names of all terminals and nonterminals +** are required. The following table supplies these names */ +static const char *yyTokenName[] = { +%% +}; +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* For tracing reduce actions, the names of all rules are required. +*/ +static const char *yyRuleName[] = { +%% +}; +#endif /* NDEBUG */ + +/* +** This function returns the symbolic name associated with a token +** value. +*/ +const char *ParseTokenName(int tokenType){ +#ifndef NDEBUG + if( tokenType>0 && tokenType<(sizeof(yyTokenName)/sizeof(yyTokenName[0])) ){ + return yyTokenName[tokenType]; + }else{ + return "Unknown"; + } +#else + return ""; +#endif +} + +/* +** This function allocates a new parser. +** The only argument is a pointer to a function which works like +** malloc. +** +** Inputs: +** A pointer to the function used to allocate memory. +** +** Outputs: +** A pointer to a parser. This pointer is used in subsequent calls +** to Parse and ParseFree. +*/ +void *ParseAlloc(void *(*mallocProc)(size_t)){ + yyParser *pParser; + pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) ); + if( pParser ){ + pParser->yyidx = -1; + } + return pParser; +} + +/* The following function deletes the value associated with a +** symbol. The symbol can be either a terminal or nonterminal. +** "yymajor" is the symbol code, and "yypminor" is a pointer to +** the value. +*/ +static void yy_destructor(YYCODETYPE yymajor, YYMINORTYPE *yypminor){ + switch( yymajor ){ + /* Here is inserted the actions which take place when a + ** terminal or non-terminal is destroyed. This can happen + ** when the symbol is popped from the stack during a + ** reduce or during error processing or when a parser is + ** being destroyed before it is finished parsing. + ** + ** Note: during a reduce, the only symbols destroyed are those + ** which appear on the RHS of the rule, but which are not used + ** inside the C code. + */ +%% + default: break; /* If no destructor action specified: do nothing */ + } +} + +/* +** Pop the parser's stack once. +** +** If there is a destructor routine associated with the token which +** is popped from the stack, then call it. +** +** Return the major token number for the symbol popped. +*/ +static int yy_pop_parser_stack(yyParser *pParser){ + YYCODETYPE yymajor; + yyStackEntry *yytos = &pParser->yystack[pParser->yyidx]; + + if( pParser->yyidx<0 ) return 0; +#ifndef NDEBUG + if( yyTraceFILE && pParser->yyidx>=0 ){ + fprintf(yyTraceFILE,"%sPopping %s\n", + yyTracePrompt, + yyTokenName[yytos->major]); + } +#endif + yymajor = yytos->major; + yy_destructor( yymajor, &yytos->minor); + pParser->yyidx--; + return yymajor; +} + +/* +** Deallocate and destroy a parser. Destructors are all called for +** all stack elements before shutting the parser down. +** +** Inputs: +**
    +**
  • A pointer to the parser. This should be a pointer +** obtained from ParseAlloc. +**
  • A pointer to a function used to reclaim memory obtained +** from malloc. +**
+*/ +void ParseFree( + void *p, /* The parser to be deleted */ + void (*freeProc)(void*) /* Function used to reclaim memory */ +){ + yyParser *pParser = (yyParser*)p; + if( pParser==0 ) return; + while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser); + (*freeProc)((void*)pParser); +} + +/* +** Find the appropriate action for a parser given the terminal +** look-ahead token iLookAhead. +** +** If the look-ahead token is YYNOCODE, then check to see if the action is +** independent of the look-ahead. If it is, return the action, otherwise +** return YY_NO_ACTION. +*/ +static int yy_find_shift_action( + yyParser *pParser, /* The parser */ + int iLookAhead /* The look-ahead token */ +){ + int i; + int stateno = pParser->yystack[pParser->yyidx].stateno; + + /* if( pParser->yyidx<0 ) return YY_NO_ACTION; */ + i = yy_shift_ofst[stateno]; + if( i==YY_SHIFT_USE_DFLT ){ + return yy_default[stateno]; + } + if( iLookAhead==YYNOCODE ){ + return YY_NO_ACTION; + } + i += iLookAhead; + if( i<0 || i>=YY_SZ_ACTTAB || yy_lookahead[i]!=iLookAhead ){ +#ifdef YYFALLBACK + int iFallback; /* Fallback token */ + if( iLookAhead %s\n", + yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]); + } +#endif + return yy_find_shift_action(pParser, iFallback); + } +#endif + return yy_default[stateno]; + }else{ + return yy_action[i]; + } +} + +/* +** Find the appropriate action for a parser given the non-terminal +** look-ahead token iLookAhead. +** +** If the look-ahead token is YYNOCODE, then check to see if the action is +** independent of the look-ahead. If it is, return the action, otherwise +** return YY_NO_ACTION. +*/ +static int yy_find_reduce_action( + yyParser *pParser, /* The parser */ + int iLookAhead /* The look-ahead token */ +){ + int i; + int stateno = pParser->yystack[pParser->yyidx].stateno; + + i = yy_reduce_ofst[stateno]; + if( i==YY_REDUCE_USE_DFLT ){ + return yy_default[stateno]; + } + if( iLookAhead==YYNOCODE ){ + return YY_NO_ACTION; + } + i += iLookAhead; + if( i<0 || i>=YY_SZ_ACTTAB || yy_lookahead[i]!=iLookAhead ){ + return yy_default[stateno]; + }else{ + return yy_action[i]; + } +} + +/* +** Perform a shift action. +*/ +static void yy_shift( + yyParser *yypParser, /* The parser to be shifted */ + int yyNewState, /* The new state to shift in */ + int yyMajor, /* The major token to shift in */ + YYMINORTYPE *yypMinor /* Pointer ot the minor token to shift in */ +){ + yyStackEntry *yytos; + yypParser->yyidx++; + if( yypParser->yyidx>=YYSTACKDEPTH ){ + ParseARG_FETCH; + yypParser->yyidx--; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will execute if the parser + ** stack every overflows */ +%% + ParseARG_STORE; /* Suppress warning about unused %extra_argument var */ + return; + } + yytos = &yypParser->yystack[yypParser->yyidx]; + yytos->stateno = yyNewState; + yytos->major = yyMajor; + yytos->minor = *yypMinor; +#ifndef NDEBUG + if( yyTraceFILE && yypParser->yyidx>0 ){ + int i; + fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState); + fprintf(yyTraceFILE,"%sStack:",yyTracePrompt); + for(i=1; i<=yypParser->yyidx; i++) + fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); + fprintf(yyTraceFILE,"\n"); + } +#endif +} + +/* The following table contains information about every rule that +** is used during the reduce. +*/ +static struct { + YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ + unsigned char nrhs; /* Number of right-hand side symbols in the rule */ +} yyRuleInfo[] = { +%% +}; + +static void yy_accept(yyParser*); /* Forward Declaration */ + +/* +** Perform a reduce action and the shift that must immediately +** follow the reduce. +*/ +static void yy_reduce( + yyParser *yypParser, /* The parser */ + int yyruleno /* Number of the rule by which to reduce */ +){ + int yygoto; /* The next state */ + int yyact; /* The next action */ + YYMINORTYPE yygotominor; /* The LHS of the rule reduced */ + yyStackEntry *yymsp; /* The top of the parser's stack */ + int yysize; /* Amount to pop the stack */ + ParseARG_FETCH; + yymsp = &yypParser->yystack[yypParser->yyidx]; +#ifndef NDEBUG + if( yyTraceFILE && yyruleno>=0 + && yyruleno + ** { ... } // User supplied code + ** #line + ** break; + */ +%% + }; + yygoto = yyRuleInfo[yyruleno].lhs; + yysize = yyRuleInfo[yyruleno].nrhs; + yypParser->yyidx -= yysize; + yyact = yy_find_reduce_action(yypParser,yygoto); + if( yyact < YYNSTATE ){ + yy_shift(yypParser,yyact,yygoto,&yygotominor); + }else if( yyact == YYNSTATE + YYNRULE + 1 ){ + yy_accept(yypParser); + } +} + +/* +** The following code executes when the parse fails +*/ +static void yy_parse_failed( + yyParser *yypParser /* The parser */ +){ + ParseARG_FETCH; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will be executed whenever the + ** parser fails */ +%% + ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} + +/* +** The following code executes when a syntax error first occurs. +*/ +static void yy_syntax_error( + yyParser *yypParser, /* The parser */ + int yymajor, /* The major type of the error token */ + YYMINORTYPE yyminor /* The minor type of the error token */ +){ + ParseARG_FETCH; +#define TOKEN (yyminor.yy0) +%% + ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} + +/* +** The following is executed when the parser accepts +*/ +static void yy_accept( + yyParser *yypParser /* The parser */ +){ + ParseARG_FETCH; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will be executed whenever the + ** parser accepts */ +%% + ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} + +/* The main parser program. +** The first argument is a pointer to a structure obtained from +** "ParseAlloc" which describes the current state of the parser. +** The second argument is the major token number. The third is +** the minor token. The fourth optional argument is whatever the +** user wants (and specified in the grammar) and is available for +** use by the action routines. +** +** Inputs: +**
    +**
  • A pointer to the parser (an opaque structure.) +**
  • The major token number. +**
  • The minor token number. +**
  • An option argument of a grammar-specified type. +**
+** +** Outputs: +** None. +*/ +void Parse( + void *yyp, /* The parser */ + int yymajor, /* The major token code number */ + ParseTOKENTYPE yyminor /* The value for the token */ + ParseARG_PDECL /* Optional %extra_argument parameter */ +){ + YYMINORTYPE yyminorunion; + int yyact; /* The parser action. */ + int yyendofinput; /* True if we are at the end of input */ + int yyerrorhit = 0; /* True if yymajor has invoked an error */ + yyParser *yypParser; /* The parser */ + + /* (re)initialize the parser, if necessary */ + yypParser = (yyParser*)yyp; + if( yypParser->yyidx<0 ){ + if( yymajor==0 ) return; + yypParser->yyidx = 0; + yypParser->yyerrcnt = -1; + yypParser->yystack[0].stateno = 0; + yypParser->yystack[0].major = 0; + } + yyminorunion.yy0 = yyminor; + yyendofinput = (yymajor==0); + ParseARG_STORE; + +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]); + } +#endif + + do{ + yyact = yy_find_shift_action(yypParser,yymajor); + if( yyactyyerrcnt--; + if( yyendofinput && yypParser->yyidx>=0 ){ + yymajor = 0; + }else{ + yymajor = YYNOCODE; + } + }else if( yyact < YYNSTATE + YYNRULE ){ + yy_reduce(yypParser,yyact-YYNSTATE); + }else if( yyact == YY_ERROR_ACTION ){ + int yymx; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt); + } +#endif +#ifdef YYERRORSYMBOL + /* A syntax error has occurred. + ** The response to an error depends upon whether or not the + ** grammar defines an error token "ERROR". + ** + ** This is what we do if the grammar does define ERROR: + ** + ** * Call the %syntax_error function. + ** + ** * Begin popping the stack until we enter a state where + ** it is legal to shift the error symbol, then shift + ** the error symbol. + ** + ** * Set the error count to three. + ** + ** * Begin accepting and shifting new tokens. No new error + ** processing will occur until three tokens have been + ** shifted successfully. + ** + */ + if( yypParser->yyerrcnt<0 ){ + yy_syntax_error(yypParser,yymajor,yyminorunion); + } + yymx = yypParser->yystack[yypParser->yyidx].major; + if( yymx==YYERRORSYMBOL || yyerrorhit ){ +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sDiscard input token %s\n", + yyTracePrompt,yyTokenName[yymajor]); + } +#endif + yy_destructor(yymajor,&yyminorunion); + yymajor = YYNOCODE; + }else{ + while( + yypParser->yyidx >= 0 && + yymx != YYERRORSYMBOL && + (yyact = yy_find_shift_action(yypParser,YYERRORSYMBOL)) >= YYNSTATE + ){ + yy_pop_parser_stack(yypParser); + } + if( yypParser->yyidx < 0 || yymajor==0 ){ + yy_destructor(yymajor,&yyminorunion); + yy_parse_failed(yypParser); + yymajor = YYNOCODE; + }else if( yymx!=YYERRORSYMBOL ){ + YYMINORTYPE u2; + u2.YYERRSYMDT = 0; + yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2); + } + } + yypParser->yyerrcnt = 3; + yyerrorhit = 1; +#else /* YYERRORSYMBOL is not defined */ + /* This is what we do if the grammar does not define ERROR: + ** + ** * Report an error message, and throw away the input token. + ** + ** * If the input token is $, then fail the parse. + ** + ** As before, subsequent error messages are suppressed until + ** three input tokens have been successfully shifted. + */ + if( yypParser->yyerrcnt<=0 ){ + yy_syntax_error(yypParser,yymajor,yyminorunion); + } + yypParser->yyerrcnt = 3; + yy_destructor(yymajor,&yyminorunion); + if( yyendofinput ){ + yy_parse_failed(yypParser); + } + yymajor = YYNOCODE; +#endif + }else{ + yy_accept(yypParser); + yymajor = YYNOCODE; + } + }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); + return; +} diff --git a/php/r3/annotation/parser.c b/php/r3/annotation/parser.c new file mode 100644 index 0000000..29cb76c --- /dev/null +++ b/php/r3/annotation/parser.c @@ -0,0 +1,1621 @@ +/* Driver template for the LEMON parser generator. +** The author disclaims copyright to this source code. +*/ +/* First off, code is include which follows the "include" declaration +** in the input file. */ +#include +#line 27 "parser.lemon" + + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "php.h" +#include "ext/standard/php_smart_str.h" +#include "Zend/zend_exceptions.h" + +#include "parser.h" +#include "scanner.h" +#include "annot.h" + +static zval *phannot_ret_literal_zval(int type, phannot_parser_token *T) +{ + zval *ret; + + MAKE_STD_ZVAL(ret); + array_init(ret); + add_assoc_long(ret, "type", type); + if (T) { + add_assoc_stringl(ret, "value", T->token, T->token_len, 0); + efree(T); + } + + return ret; +} + +static zval *phannot_ret_array(zval *items) +{ + zval *ret; + + MAKE_STD_ZVAL(ret); + array_init(ret); + add_assoc_long(ret, "type", PHANNOT_T_ARRAY); + + if (items) { + add_assoc_zval(ret, "items", items); + } + + return ret; +} + +static zval *phannot_ret_zval_list(zval *list_left, zval *right_list) +{ + + zval *ret; + HashPosition pos; + HashTable *list; + + MAKE_STD_ZVAL(ret); + array_init(ret); + + if (list_left) { + + list = Z_ARRVAL_P(list_left); + if (zend_hash_index_exists(list, 0)) { + zend_hash_internal_pointer_reset_ex(list, &pos); + for (;; zend_hash_move_forward_ex(list, &pos)) { + + zval ** item; + + if (zend_hash_get_current_data_ex(list, (void**) &item, &pos) == FAILURE) { + break; + } + + Z_ADDREF_PP(item); + add_next_index_zval(ret, *item); + + } + zval_ptr_dtor(&list_left); + } else { + add_next_index_zval(ret, list_left); + } + } + + add_next_index_zval(ret, right_list); + + return ret; +} + +static zval *phannot_ret_named_item(phannot_parser_token *name, zval *expr) +{ + zval *ret; + + MAKE_STD_ZVAL(ret); + array_init(ret); + add_assoc_zval(ret, "expr", expr); + if (name != NULL) { + add_assoc_stringl(ret, "name", name->token, name->token_len, 0); + efree(name); + } + + return ret; +} + +static zval *phannot_ret_annotation(phannot_parser_token *name, zval *arguments, phannot_scanner_state *state) +{ + + zval *ret; + + MAKE_STD_ZVAL(ret); + array_init(ret); + + add_assoc_long(ret, "type", PHANNOT_T_ANNOTATION); + + if (name) { + add_assoc_stringl(ret, "name", name->token, name->token_len, 0); + efree(name); + } + + if (arguments) { + add_assoc_zval(ret, "arguments", arguments); + } + + Z_ADDREF_P(state->active_file); + add_assoc_zval(ret, "file", state->active_file); + add_assoc_long(ret, "line", state->active_line); + + return ret; +} + + +#line 132 "parser.c" +/* Next is all token values, in a form suitable for use by makeheaders. +** This section will be null unless lemon is run with the -m switch. +*/ +/* +** These constants (all generated automatically by the parser generator) +** specify the various kinds of tokens (terminals) that the parser +** understands. +** +** Each symbol here is a terminal symbol in the grammar. +*/ +/* Make sure the INTERFACE macro is defined. +*/ +#ifndef INTERFACE +# define INTERFACE 1 +#endif +/* The next thing included is series of defines which control +** various aspects of the generated parser. +** YYCODETYPE is the data type used for storing terminal +** and nonterminal numbers. "unsigned char" is +** used if there are fewer than 250 terminals +** and nonterminals. "int" is used otherwise. +** YYNOCODE is a number of type YYCODETYPE which corresponds +** to no legal terminal or nonterminal number. This +** number is used to fill in empty slots of the hash +** table. +** YYFALLBACK If defined, this indicates that one or more tokens +** have fall-back values which should be used if the +** original value of the token will not parse. +** YYACTIONTYPE is the data type used for storing terminal +** and nonterminal numbers. "unsigned char" is +** used if there are fewer than 250 rules and +** states combined. "int" is used otherwise. +** phannot_TOKENTYPE is the data type used for minor tokens given +** directly to the parser from the tokenizer. +** YYMINORTYPE is the data type used for all minor tokens. +** This is typically a union of many types, one of +** which is phannot_TOKENTYPE. The entry in the union +** for base tokens is called "yy0". +** YYSTACKDEPTH is the maximum depth of the parser's stack. +** phannot_ARG_SDECL A static variable declaration for the %extra_argument +** phannot_ARG_PDECL A parameter declaration for the %extra_argument +** phannot_ARG_STORE Code to store %extra_argument into yypParser +** phannot_ARG_FETCH Code to extract %extra_argument from yypParser +** YYNSTATE the combined number of states. +** YYNRULE the number of rules in the grammar +** YYERRORSYMBOL is the code number of the error symbol. If not +** defined, then do no error processing. +*/ +#define YYCODETYPE unsigned char +#define YYNOCODE 28 +#define YYACTIONTYPE unsigned char +#define phannot_TOKENTYPE phannot_parser_token* +typedef union { + phannot_TOKENTYPE yy0; + zval* yy36; + int yy55; +} YYMINORTYPE; +#define YYSTACKDEPTH 100 +#define phannot_ARG_SDECL phannot_parser_status *status; +#define phannot_ARG_PDECL ,phannot_parser_status *status +#define phannot_ARG_FETCH phannot_parser_status *status = yypParser->status +#define phannot_ARG_STORE yypParser->status = status +#define YYNSTATE 40 +#define YYNRULE 25 +#define YYERRORSYMBOL 18 +#define YYERRSYMDT yy55 +#define YY_NO_ACTION (YYNSTATE+YYNRULE+2) +#define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1) +#define YY_ERROR_ACTION (YYNSTATE+YYNRULE) + +/* Next are that tables used to determine what action to take based on the +** current state and lookahead token. These tables are used to implement +** functions that take a state number and lookahead value and return an +** action integer. +** +** Suppose the action integer is N. Then the action is determined as +** follows +** +** 0 <= N < YYNSTATE Shift N. That is, push the lookahead +** token onto the stack and goto state N. +** +** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE. +** +** N == YYNSTATE+YYNRULE A syntax error has occurred. +** +** N == YYNSTATE+YYNRULE+1 The parser accepts its input. +** +** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused +** slots in the yy_action[] table. +** +** The action table is constructed as a single large table named yy_action[]. +** Given state S and lookahead X, the action is computed as +** +** yy_action[ yy_shift_ofst[S] + X ] +** +** If the index value yy_shift_ofst[S]+X is out of range or if the value +** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S] +** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table +** and that yy_default[S] should be used instead. +** +** The formula above is for computing the action when the lookahead is +** a terminal symbol. If the lookahead is a non-terminal (as occurs after +** a reduce action) then the yy_reduce_ofst[] array is used in place of +** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of +** YY_SHIFT_USE_DFLT. +** +** The following are the tables generated in this section: +** +** yy_action[] A single table containing all actions. +** yy_lookahead[] A table containing the lookahead for each entry in +** yy_action. Used to detect hash collisions. +** yy_shift_ofst[] For each state, the offset into yy_action for +** shifting terminals. +** yy_reduce_ofst[] For each state, the offset into yy_action for +** shifting non-terminals after a reduce. +** yy_default[] Default action for each state. +*/ +static YYACTIONTYPE yy_action[] = { + /* 0 */ 4, 28, 15, 38, 12, 37, 16, 18, 20, 21, + /* 10 */ 22, 23, 24, 4, 31, 4, 17, 15, 40, 19, + /* 20 */ 35, 16, 18, 20, 21, 22, 23, 24, 3, 31, + /* 30 */ 4, 28, 15, 6, 12, 30, 16, 18, 20, 21, + /* 40 */ 22, 23, 24, 54, 31, 15, 25, 27, 11, 16, + /* 50 */ 13, 36, 15, 7, 27, 11, 16, 15, 32, 27, + /* 60 */ 11, 16, 15, 9, 10, 11, 16, 66, 1, 2, + /* 70 */ 39, 15, 9, 5, 14, 16, 41, 26, 4, 9, + /* 80 */ 29, 34, 54, 8, 54, 54, 54, 54, 33, +}; +static YYCODETYPE yy_lookahead[] = { + /* 0 */ 2, 3, 22, 5, 6, 25, 26, 9, 10, 11, + /* 10 */ 12, 13, 14, 2, 16, 2, 3, 22, 0, 6, + /* 20 */ 25, 26, 9, 10, 11, 12, 13, 14, 22, 16, + /* 30 */ 2, 3, 22, 4, 6, 25, 26, 9, 10, 11, + /* 40 */ 12, 13, 14, 27, 16, 22, 23, 24, 25, 26, + /* 50 */ 7, 8, 22, 23, 24, 25, 26, 22, 23, 24, + /* 60 */ 25, 26, 22, 1, 24, 25, 26, 19, 20, 21, + /* 70 */ 22, 22, 1, 3, 25, 26, 0, 15, 2, 1, + /* 80 */ 7, 8, 27, 5, 27, 27, 27, 27, 17, +}; +#define YY_SHIFT_USE_DFLT (-3) +static signed char yy_shift_ofst[] = { + /* 0 */ 11, 18, 76, -3, 70, 29, -2, 78, -3, 28, + /* 10 */ -3, -3, 43, 13, -3, -3, -3, -3, -3, -3, + /* 20 */ -3, -3, -3, -3, 28, 62, -3, -3, 73, 13, + /* 30 */ -3, 28, 71, -3, 13, -3, 13, -3, -3, -3, +}; +#define YY_REDUCE_USE_DFLT (-21) +static signed char yy_reduce_ofst[] = { + /* 0 */ 48, -21, 6, -21, -21, -21, 30, -21, -21, 40, + /* 10 */ -21, -21, -21, 49, -21, -21, -21, -21, -21, -21, + /* 20 */ -21, -21, -21, -21, 23, -21, -21, -21, -21, 10, + /* 30 */ -21, 35, -21, -21, -5, -21, -20, -21, -21, -21, +}; +static YYACTIONTYPE yy_default[] = { + /* 0 */ 65, 65, 65, 42, 65, 46, 65, 65, 44, 65, + /* 10 */ 47, 49, 58, 65, 50, 54, 55, 56, 57, 58, + /* 20 */ 59, 60, 61, 62, 65, 65, 63, 48, 56, 65, + /* 30 */ 52, 65, 65, 64, 65, 53, 65, 51, 45, 43, +}; +#define YY_SZ_ACTTAB (sizeof(yy_action)/sizeof(yy_action[0])) + +/* The next table maps tokens into fallback tokens. If a construct +** like the following: +** +** %fallback ID X Y Z. +** +** appears in the grammer, then ID becomes a fallback token for X, Y, +** and Z. Whenever one of the tokens X, Y, or Z is input to the parser +** but it does not parse, the type of the token is changed to ID and +** the parse is retried before an error is thrown. +*/ +#ifdef YYFALLBACK +static const YYCODETYPE yyFallback[] = { +}; +#endif /* YYFALLBACK */ + +/* The following structure represents a single element of the +** parser's stack. Information stored includes: +** +** + The state number for the parser at this level of the stack. +** +** + The value of the token stored at this level of the stack. +** (In other words, the "major" token.) +** +** + The semantic value stored at this level of the stack. This is +** the information used by the action routines in the grammar. +** It is sometimes called the "minor" token. +*/ +struct yyStackEntry { + int stateno; /* The state-number */ + int major; /* The major token value. This is the code + ** number for the token at this stack level */ + YYMINORTYPE minor; /* The user-supplied minor token value. This + ** is the value of the token */ +}; +typedef struct yyStackEntry yyStackEntry; + +/* The state of the parser is completely contained in an instance of +** the following structure */ +struct yyParser { + int yyidx; /* Index of top element in stack */ + int yyerrcnt; /* Shifts left before out of the error */ + phannot_ARG_SDECL /* A place to hold %extra_argument */ + yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ +}; +typedef struct yyParser yyParser; + +#ifndef NDEBUG +#include +static FILE *yyTraceFILE = 0; +static char *yyTracePrompt = 0; +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* +** Turn parser tracing on by giving a stream to which to write the trace +** and a prompt to preface each trace message. Tracing is turned off +** by making either argument NULL +** +** Inputs: +**
    +**
  • A FILE* to which trace output should be written. +** If NULL, then tracing is turned off. +**
  • A prefix string written at the beginning of every +** line of trace output. If NULL, then tracing is +** turned off. +**
+** +** Outputs: +** None. +*/ +void phannot_Trace(FILE *TraceFILE, char *zTracePrompt){ + yyTraceFILE = TraceFILE; + yyTracePrompt = zTracePrompt; + if( yyTraceFILE==0 ) yyTracePrompt = 0; + else if( yyTracePrompt==0 ) yyTraceFILE = 0; +} +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* For tracing shifts, the names of all terminals and nonterminals +** are required. The following table supplies these names */ +static const char *yyTokenName[] = { + "$", "COMMA", "AT", "IDENTIFIER", + "PARENTHESES_OPEN", "PARENTHESES_CLOSE", "STRING", "EQUALS", + "COLON", "INTEGER", "DOUBLE", "NULL", + "FALSE", "TRUE", "BRACKET_OPEN", "BRACKET_CLOSE", + "SBRACKET_OPEN", "SBRACKET_CLOSE", "error", "program", + "annotation_language", "annotation_list", "annotation", "argument_list", + "argument_item", "expr", "array", +}; +#endif /* NDEBUG */ + +#ifndef NDEBUG +/* For tracing reduce actions, the names of all rules are required. +*/ +static const char *yyRuleName[] = { + /* 0 */ "program ::= annotation_language", + /* 1 */ "annotation_language ::= annotation_list", + /* 2 */ "annotation_list ::= annotation_list annotation", + /* 3 */ "annotation_list ::= annotation", + /* 4 */ "annotation ::= AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE", + /* 5 */ "annotation ::= AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE", + /* 6 */ "annotation ::= AT IDENTIFIER", + /* 7 */ "argument_list ::= argument_list COMMA argument_item", + /* 8 */ "argument_list ::= argument_item", + /* 9 */ "argument_item ::= expr", + /* 10 */ "argument_item ::= STRING EQUALS expr", + /* 11 */ "argument_item ::= STRING COLON expr", + /* 12 */ "argument_item ::= IDENTIFIER EQUALS expr", + /* 13 */ "argument_item ::= IDENTIFIER COLON expr", + /* 14 */ "expr ::= annotation", + /* 15 */ "expr ::= array", + /* 16 */ "expr ::= IDENTIFIER", + /* 17 */ "expr ::= INTEGER", + /* 18 */ "expr ::= STRING", + /* 19 */ "expr ::= DOUBLE", + /* 20 */ "expr ::= NULL", + /* 21 */ "expr ::= FALSE", + /* 22 */ "expr ::= TRUE", + /* 23 */ "array ::= BRACKET_OPEN argument_list BRACKET_CLOSE", + /* 24 */ "array ::= SBRACKET_OPEN argument_list SBRACKET_CLOSE", +}; +#endif /* NDEBUG */ + +/* +** This function returns the symbolic name associated with a token +** value. +*/ +const char *phannot_TokenName(int tokenType){ +#ifndef NDEBUG + if( tokenType>0 && tokenType<(sizeof(yyTokenName)/sizeof(yyTokenName[0])) ){ + return yyTokenName[tokenType]; + }else{ + return "Unknown"; + } +#else + return ""; +#endif +} + +/* +** This function allocates a new parser. +** The only argument is a pointer to a function which works like +** malloc. +** +** Inputs: +** A pointer to the function used to allocate memory. +** +** Outputs: +** A pointer to a parser. This pointer is used in subsequent calls +** to phannot_ and phannot_Free. +*/ +void *phannot_Alloc(void *(*mallocProc)(size_t)){ + yyParser *pParser; + pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) ); + if( pParser ){ + pParser->yyidx = -1; + } + return pParser; +} + +/* The following function deletes the value associated with a +** symbol. The symbol can be either a terminal or nonterminal. +** "yymajor" is the symbol code, and "yypminor" is a pointer to +** the value. +*/ +static void yy_destructor(YYCODETYPE yymajor, YYMINORTYPE *yypminor){ + switch( yymajor ){ + /* Here is inserted the actions which take place when a + ** terminal or non-terminal is destroyed. This can happen + ** when the symbol is popped from the stack during a + ** reduce or during error processing or when a parser is + ** being destroyed before it is finished parsing. + ** + ** Note: during a reduce, the only symbols destroyed are those + ** which appear on the RHS of the rule, but which are not used + ** inside the C code. + */ + case 1: + case 2: + case 3: + case 4: + case 5: + case 6: + case 7: + case 8: + case 9: + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + case 17: +#line 214 "parser.lemon" +{ + if ((yypminor->yy0)) { + if ((yypminor->yy0)->free_flag) { + efree((yypminor->yy0)->token); + } + efree((yypminor->yy0)); + } +} +#line 498 "parser.c" + break; + case 20: + case 21: + case 22: + case 23: + case 24: + case 25: +#line 227 "parser.lemon" +{ zval_ptr_dtor(&(yypminor->yy36)); } +#line 508 "parser.c" + break; + default: break; /* If no destructor action specified: do nothing */ + } +} + +/* +** Pop the parser's stack once. +** +** If there is a destructor routine associated with the token which +** is popped from the stack, then call it. +** +** Return the major token number for the symbol popped. +*/ +static int yy_pop_parser_stack(yyParser *pParser){ + YYCODETYPE yymajor; + yyStackEntry *yytos = &pParser->yystack[pParser->yyidx]; + + if( pParser->yyidx<0 ) return 0; +#ifndef NDEBUG + if( yyTraceFILE && pParser->yyidx>=0 ){ + fprintf(yyTraceFILE,"%sPopping %s\n", + yyTracePrompt, + yyTokenName[yytos->major]); + } +#endif + yymajor = yytos->major; + yy_destructor( yymajor, &yytos->minor); + pParser->yyidx--; + return yymajor; +} + +/* +** Deallocate and destroy a parser. Destructors are all called for +** all stack elements before shutting the parser down. +** +** Inputs: +**
    +**
  • A pointer to the parser. This should be a pointer +** obtained from phannot_Alloc. +**
  • A pointer to a function used to reclaim memory obtained +** from malloc. +**
+*/ +void phannot_Free( + void *p, /* The parser to be deleted */ + void (*freeProc)(void*) /* Function used to reclaim memory */ +){ + yyParser *pParser = (yyParser*)p; + if( pParser==0 ) return; + while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser); + (*freeProc)((void*)pParser); +} + +/* +** Find the appropriate action for a parser given the terminal +** look-ahead token iLookAhead. +** +** If the look-ahead token is YYNOCODE, then check to see if the action is +** independent of the look-ahead. If it is, return the action, otherwise +** return YY_NO_ACTION. +*/ +static int yy_find_shift_action( + yyParser *pParser, /* The parser */ + int iLookAhead /* The look-ahead token */ +){ + int i; + int stateno = pParser->yystack[pParser->yyidx].stateno; + + /* if( pParser->yyidx<0 ) return YY_NO_ACTION; */ + i = yy_shift_ofst[stateno]; + if( i==YY_SHIFT_USE_DFLT ){ + return yy_default[stateno]; + } + if( iLookAhead==YYNOCODE ){ + return YY_NO_ACTION; + } + i += iLookAhead; + if( i<0 || i>=YY_SZ_ACTTAB || yy_lookahead[i]!=iLookAhead ){ +#ifdef YYFALLBACK + int iFallback; /* Fallback token */ + if( iLookAhead %s\n", + yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]); + } +#endif + return yy_find_shift_action(pParser, iFallback); + } +#endif + return yy_default[stateno]; + }else{ + return yy_action[i]; + } +} + +/* +** Find the appropriate action for a parser given the non-terminal +** look-ahead token iLookAhead. +** +** If the look-ahead token is YYNOCODE, then check to see if the action is +** independent of the look-ahead. If it is, return the action, otherwise +** return YY_NO_ACTION. +*/ +static int yy_find_reduce_action( + yyParser *pParser, /* The parser */ + int iLookAhead /* The look-ahead token */ +){ + int i; + int stateno = pParser->yystack[pParser->yyidx].stateno; + + i = yy_reduce_ofst[stateno]; + if( i==YY_REDUCE_USE_DFLT ){ + return yy_default[stateno]; + } + if( iLookAhead==YYNOCODE ){ + return YY_NO_ACTION; + } + i += iLookAhead; + if( i<0 || i>=YY_SZ_ACTTAB || yy_lookahead[i]!=iLookAhead ){ + return yy_default[stateno]; + }else{ + return yy_action[i]; + } +} + +/* +** Perform a shift action. +*/ +static void yy_shift( + yyParser *yypParser, /* The parser to be shifted */ + int yyNewState, /* The new state to shift in */ + int yyMajor, /* The major token to shift in */ + YYMINORTYPE *yypMinor /* Pointer ot the minor token to shift in */ +){ + yyStackEntry *yytos; + yypParser->yyidx++; + if( yypParser->yyidx>=YYSTACKDEPTH ){ + phannot_ARG_FETCH; + yypParser->yyidx--; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will execute if the parser + ** stack every overflows */ + phannot_ARG_STORE; /* Suppress warning about unused %extra_argument var */ + return; + } + yytos = &yypParser->yystack[yypParser->yyidx]; + yytos->stateno = yyNewState; + yytos->major = yyMajor; + yytos->minor = *yypMinor; +#ifndef NDEBUG + if( yyTraceFILE && yypParser->yyidx>0 ){ + int i; + fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState); + fprintf(yyTraceFILE,"%sStack:",yyTracePrompt); + for(i=1; i<=yypParser->yyidx; i++) + fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); + fprintf(yyTraceFILE,"\n"); + } +#endif +} + +/* The following table contains information about every rule that +** is used during the reduce. +*/ +static struct { + YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ + unsigned char nrhs; /* Number of right-hand side symbols in the rule */ +} yyRuleInfo[] = { + { 19, 1 }, + { 20, 1 }, + { 21, 2 }, + { 21, 1 }, + { 22, 5 }, + { 22, 4 }, + { 22, 2 }, + { 23, 3 }, + { 23, 1 }, + { 24, 1 }, + { 24, 3 }, + { 24, 3 }, + { 24, 3 }, + { 24, 3 }, + { 25, 1 }, + { 25, 1 }, + { 25, 1 }, + { 25, 1 }, + { 25, 1 }, + { 25, 1 }, + { 25, 1 }, + { 25, 1 }, + { 25, 1 }, + { 26, 3 }, + { 26, 3 }, +}; + +static void yy_accept(yyParser*); /* Forward Declaration */ + +/* +** Perform a reduce action and the shift that must immediately +** follow the reduce. +*/ +static void yy_reduce( + yyParser *yypParser, /* The parser */ + int yyruleno /* Number of the rule by which to reduce */ +){ + int yygoto; /* The next state */ + int yyact; /* The next action */ + YYMINORTYPE yygotominor; /* The LHS of the rule reduced */ + yyStackEntry *yymsp; /* The top of the parser's stack */ + int yysize; /* Amount to pop the stack */ + phannot_ARG_FETCH; + yymsp = &yypParser->yystack[yypParser->yyidx]; +#ifndef NDEBUG + if( yyTraceFILE && yyruleno>=0 + && yyruleno + ** { ... } // User supplied code + ** #line + ** break; + */ + case 0: +#line 223 "parser.lemon" +{ + status->ret = yymsp[0].minor.yy36; +} +#line 750 "parser.c" + break; + case 1: + case 14: + case 15: +#line 229 "parser.lemon" +{ + yygotominor.yy36 = yymsp[0].minor.yy36; +} +#line 759 "parser.c" + break; + case 2: +#line 235 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_zval_list(yymsp[-1].minor.yy36, yymsp[0].minor.yy36); +} +#line 766 "parser.c" + break; + case 3: + case 8: +#line 239 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_zval_list(NULL, yymsp[0].minor.yy36); +} +#line 774 "parser.c" + break; + case 4: +#line 246 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_annotation(yymsp[-3].minor.yy0, yymsp[-1].minor.yy36, status->scanner_state); + yy_destructor(2,&yymsp[-4].minor); + yy_destructor(4,&yymsp[-2].minor); + yy_destructor(5,&yymsp[0].minor); +} +#line 784 "parser.c" + break; + case 5: +#line 250 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_annotation(yymsp[-2].minor.yy0, NULL, status->scanner_state); + yy_destructor(2,&yymsp[-3].minor); + yy_destructor(4,&yymsp[-1].minor); + yy_destructor(5,&yymsp[0].minor); +} +#line 794 "parser.c" + break; + case 6: +#line 254 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_annotation(yymsp[0].minor.yy0, NULL, status->scanner_state); + yy_destructor(2,&yymsp[-1].minor); +} +#line 802 "parser.c" + break; + case 7: +#line 260 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_zval_list(yymsp[-2].minor.yy36, yymsp[0].minor.yy36); + yy_destructor(1,&yymsp[-1].minor); +} +#line 810 "parser.c" + break; + case 9: +#line 270 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_named_item(NULL, yymsp[0].minor.yy36); +} +#line 817 "parser.c" + break; + case 10: + case 12: +#line 274 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_named_item(yymsp[-2].minor.yy0, yymsp[0].minor.yy36); + yy_destructor(7,&yymsp[-1].minor); +} +#line 826 "parser.c" + break; + case 11: + case 13: +#line 278 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_named_item(yymsp[-2].minor.yy0, yymsp[0].minor.yy36); + yy_destructor(8,&yymsp[-1].minor); +} +#line 835 "parser.c" + break; + case 16: +#line 300 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_literal_zval(PHANNOT_T_IDENTIFIER, yymsp[0].minor.yy0); +} +#line 842 "parser.c" + break; + case 17: +#line 304 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_literal_zval(PHANNOT_T_INTEGER, yymsp[0].minor.yy0); +} +#line 849 "parser.c" + break; + case 18: +#line 308 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_literal_zval(PHANNOT_T_STRING, yymsp[0].minor.yy0); +} +#line 856 "parser.c" + break; + case 19: +#line 312 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_literal_zval(PHANNOT_T_DOUBLE, yymsp[0].minor.yy0); +} +#line 863 "parser.c" + break; + case 20: +#line 316 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_literal_zval(PHANNOT_T_NULL, NULL); + yy_destructor(11,&yymsp[0].minor); +} +#line 871 "parser.c" + break; + case 21: +#line 320 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_literal_zval(PHANNOT_T_FALSE, NULL); + yy_destructor(12,&yymsp[0].minor); +} +#line 879 "parser.c" + break; + case 22: +#line 324 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_literal_zval(PHANNOT_T_TRUE, NULL); + yy_destructor(13,&yymsp[0].minor); +} +#line 887 "parser.c" + break; + case 23: +#line 328 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_array(yymsp[-1].minor.yy36); + yy_destructor(14,&yymsp[-2].minor); + yy_destructor(15,&yymsp[0].minor); +} +#line 896 "parser.c" + break; + case 24: +#line 332 "parser.lemon" +{ + yygotominor.yy36 = phannot_ret_array(yymsp[-1].minor.yy36); + yy_destructor(16,&yymsp[-2].minor); + yy_destructor(17,&yymsp[0].minor); +} +#line 905 "parser.c" + break; + }; + yygoto = yyRuleInfo[yyruleno].lhs; + yysize = yyRuleInfo[yyruleno].nrhs; + yypParser->yyidx -= yysize; + yyact = yy_find_reduce_action(yypParser,yygoto); + if( yyact < YYNSTATE ){ + yy_shift(yypParser,yyact,yygoto,&yygotominor); + }else if( yyact == YYNSTATE + YYNRULE + 1 ){ + yy_accept(yypParser); + } +} + +/* +** The following code executes when the parse fails +*/ +static void yy_parse_failed( + yyParser *yypParser /* The parser */ +){ + phannot_ARG_FETCH; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will be executed whenever the + ** parser fails */ + phannot_ARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} + +/* +** The following code executes when a syntax error first occurs. +*/ +static void yy_syntax_error( + yyParser *yypParser, /* The parser */ + int yymajor, /* The major type of the error token */ + YYMINORTYPE yyminor /* The minor type of the error token */ +){ + phannot_ARG_FETCH; +#define TOKEN (yyminor.yy0) +#line 151 "parser.lemon" + + if (status->scanner_state->start_length) { + { + + char *token_name = NULL; + const phannot_token_names *tokens = phannot_tokens; + int token_found = 0; + int active_token = status->scanner_state->active_token; + int near_length = status->scanner_state->start_length; + + if (active_token) { + do { + if (tokens->code == active_token) { + token_found = 1; + token_name = tokens->name; + break; + } + ++tokens; + } while (tokens[0].code != 0); + } + + if (!token_name) { + token_found = 0; + token_name = estrndup("UNKNOWN", strlen("UNKNOWN")); + } + + status->syntax_error_len = 128 + strlen(token_name) + Z_STRLEN_P(status->scanner_state->active_file); + status->syntax_error = emalloc(sizeof(char) * status->syntax_error_len); + + if (near_length > 0) { + if (status->token->value) { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected token %s(%s), near to '%s' in %s on line %d", token_name, status->token->value, status->scanner_state->start, Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } else { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected token %s, near to '%s' in %s on line %d", token_name, status->scanner_state->start, Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } + } else { + if (active_token != PHANNOT_T_IGNORE) { + if (status->token->value) { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected token %s(%s), at the end of docblock in %s on line %d", token_name, status->token->value, Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } else { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected token %s, at the end of docblock in %s on line %d", token_name, Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } + } else { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected EOF, at the end of docblock in %s on line %d", Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } + status->syntax_error[status->syntax_error_len-1] = '\0'; + } + + if (!token_found) { + if (token_name) { + efree(token_name); + } + } + } + } else { + status->syntax_error_len = 48 + Z_STRLEN_P(status->scanner_state->active_file); + status->syntax_error = emalloc(sizeof(char) * status->syntax_error_len); + sprintf(status->syntax_error, "Syntax error, unexpected EOF in %s", Z_STRVAL_P(status->scanner_state->active_file)); + } + + status->status = PHANNOT_PARSING_FAILED; + +#line 1010 "parser.c" + phannot_ARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} + +/* +** The following is executed when the parser accepts +*/ +static void yy_accept( + yyParser *yypParser /* The parser */ +){ + phannot_ARG_FETCH; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); + } +#endif + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + /* Here code is inserted which will be executed whenever the + ** parser accepts */ + phannot_ARG_STORE; /* Suppress warning about unused %extra_argument variable */ +} + +/* The main parser program. +** The first argument is a pointer to a structure obtained from +** "phannot_Alloc" which describes the current state of the parser. +** The second argument is the major token number. The third is +** the minor token. The fourth optional argument is whatever the +** user wants (and specified in the grammar) and is available for +** use by the action routines. +** +** Inputs: +**
    +**
  • A pointer to the parser (an opaque structure.) +**
  • The major token number. +**
  • The minor token number. +**
  • An option argument of a grammar-specified type. +**
+** +** Outputs: +** None. +*/ +void phannot_( + void *yyp, /* The parser */ + int yymajor, /* The major token code number */ + phannot_TOKENTYPE yyminor /* The value for the token */ + phannot_ARG_PDECL /* Optional %extra_argument parameter */ +){ + YYMINORTYPE yyminorunion; + int yyact; /* The parser action. */ + int yyendofinput; /* True if we are at the end of input */ + int yyerrorhit = 0; /* True if yymajor has invoked an error */ + yyParser *yypParser; /* The parser */ + + /* (re)initialize the parser, if necessary */ + yypParser = (yyParser*)yyp; + if( yypParser->yyidx<0 ){ + if( yymajor==0 ) return; + yypParser->yyidx = 0; + yypParser->yyerrcnt = -1; + yypParser->yystack[0].stateno = 0; + yypParser->yystack[0].major = 0; + } + yyminorunion.yy0 = yyminor; + yyendofinput = (yymajor==0); + phannot_ARG_STORE; + +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]); + } +#endif + + do{ + yyact = yy_find_shift_action(yypParser,yymajor); + if( yyactyyerrcnt--; + if( yyendofinput && yypParser->yyidx>=0 ){ + yymajor = 0; + }else{ + yymajor = YYNOCODE; + } + }else if( yyact < YYNSTATE + YYNRULE ){ + yy_reduce(yypParser,yyact-YYNSTATE); + }else if( yyact == YY_ERROR_ACTION ){ + int yymx; +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt); + } +#endif +#ifdef YYERRORSYMBOL + /* A syntax error has occurred. + ** The response to an error depends upon whether or not the + ** grammar defines an error token "ERROR". + ** + ** This is what we do if the grammar does define ERROR: + ** + ** * Call the %syntax_error function. + ** + ** * Begin popping the stack until we enter a state where + ** it is legal to shift the error symbol, then shift + ** the error symbol. + ** + ** * Set the error count to three. + ** + ** * Begin accepting and shifting new tokens. No new error + ** processing will occur until three tokens have been + ** shifted successfully. + ** + */ + if( yypParser->yyerrcnt<0 ){ + yy_syntax_error(yypParser,yymajor,yyminorunion); + } + yymx = yypParser->yystack[yypParser->yyidx].major; + if( yymx==YYERRORSYMBOL || yyerrorhit ){ +#ifndef NDEBUG + if( yyTraceFILE ){ + fprintf(yyTraceFILE,"%sDiscard input token %s\n", + yyTracePrompt,yyTokenName[yymajor]); + } +#endif + yy_destructor(yymajor,&yyminorunion); + yymajor = YYNOCODE; + }else{ + while( + yypParser->yyidx >= 0 && + yymx != YYERRORSYMBOL && + (yyact = yy_find_shift_action(yypParser,YYERRORSYMBOL)) >= YYNSTATE + ){ + yy_pop_parser_stack(yypParser); + } + if( yypParser->yyidx < 0 || yymajor==0 ){ + yy_destructor(yymajor,&yyminorunion); + yy_parse_failed(yypParser); + yymajor = YYNOCODE; + }else if( yymx!=YYERRORSYMBOL ){ + YYMINORTYPE u2; + u2.YYERRSYMDT = 0; + yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2); + } + } + yypParser->yyerrcnt = 3; + yyerrorhit = 1; +#else /* YYERRORSYMBOL is not defined */ + /* This is what we do if the grammar does not define ERROR: + ** + ** * Report an error message, and throw away the input token. + ** + ** * If the input token is $, then fail the parse. + ** + ** As before, subsequent error messages are suppressed until + ** three input tokens have been successfully shifted. + */ + if( yypParser->yyerrcnt<=0 ){ + yy_syntax_error(yypParser,yymajor,yyminorunion); + } + yypParser->yyerrcnt = 3; + yy_destructor(yymajor,&yyminorunion); + if( yyendofinput ){ + yy_parse_failed(yypParser); + } + yymajor = YYNOCODE; +#endif + }else{ + yy_accept(yypParser); + yymajor = YYNOCODE; + } + }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); + return; +} + +/* + +------------------------------------------------------------------------+ + | Phalcon Framework | + +------------------------------------------------------------------------+ + | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | + +------------------------------------------------------------------------+ + | This source file is subject to the New BSD License that is bundled | + | with this package in the file docs/LICENSE.txt. | + | | + | If you did not receive a copy of the license and are unable to | + | obtain it through the world-wide-web, please send an email | + | to license@phalconphp.com so we can send you a copy immediately. | + +------------------------------------------------------------------------+ + | Authors: Andres Gutierrez | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +const phannot_token_names phannot_tokens[] = +{ + { "INTEGER", PHANNOT_T_INTEGER }, + { "DOUBLE", PHANNOT_T_DOUBLE }, + { "STRING", PHANNOT_T_STRING }, + { "IDENTIFIER", PHANNOT_T_IDENTIFIER }, + { "@", PHANNOT_T_AT }, + { ",", PHANNOT_T_COMMA }, + { "=", PHANNOT_T_EQUALS }, + { ":", PHANNOT_T_COLON }, + { "(", PHANNOT_T_PARENTHESES_OPEN }, + { ")", PHANNOT_T_PARENTHESES_CLOSE }, + { "{", PHANNOT_T_BRACKET_OPEN }, + { "}", PHANNOT_T_BRACKET_CLOSE }, + { "[", PHANNOT_T_SBRACKET_OPEN }, + { "]", PHANNOT_T_SBRACKET_CLOSE }, + { "ARBITRARY TEXT", PHANNOT_T_ARBITRARY_TEXT }, + { NULL, 0 } +}; + +/** + * Wrapper to alloc memory within the parser + */ +static void *phannot_wrapper_alloc(size_t bytes){ + return emalloc(bytes); +} + +/** + * Wrapper to free memory within the parser + */ +static void phannot_wrapper_free(void *pointer){ + efree(pointer); +} + +/** + * Creates a parser_token to be passed to the parser + */ +static void phannot_parse_with_token(void* phannot_parser, int opcode, int parsercode, phannot_scanner_token *token, phannot_parser_status *parser_status){ + + phannot_parser_token *pToken; + + pToken = emalloc(sizeof(phannot_parser_token)); + pToken->opcode = opcode; + pToken->token = token->value; + pToken->token_len = token->len; + pToken->free_flag = 1; + + phannot_(phannot_parser, parsercode, pToken, parser_status); + + token->value = NULL; + token->len = 0; +} + +/** + * Creates an error message when it's triggered by the scanner + */ +static void phannot_scanner_error_msg(phannot_parser_status *parser_status, zval **error_msg TSRMLS_DC){ + + int error_length; + char *error, *error_part; + phannot_scanner_state *state = parser_status->scanner_state; + + ALLOC_INIT_ZVAL(*error_msg); + if (state->start) { + error_length = 128 + state->start_length + Z_STRLEN_P(state->active_file); + error = emalloc(sizeof(char) * error_length); + if (state->start_length > 16) { + error_part = estrndup(state->start, 16); + snprintf(error, 64 + state->start_length, "Scanning error before '%s...' in %s on line %d", error_part, Z_STRVAL_P(state->active_file), state->active_line); + efree(error_part); + } else { + snprintf(error, error_length - 1, "Scanning error before '%s' in %s on line %d", state->start, Z_STRVAL_P(state->active_file), state->active_line); + } + error[error_length - 1] = '\0'; + ZVAL_STRING(*error_msg, error, 1); + } else { + error_length = sizeof(char) * (64 + Z_STRLEN_P(state->active_file)); + error = emalloc(error_length); + snprintf(error, error_length - 1, "Scanning error near to EOF in %s", Z_STRVAL_P(state->active_file)); + ZVAL_STRING(*error_msg, error, 1); + error[error_length - 1] = '\0'; + } + efree(error); +} + +/** + * Receives the comment tokenizes and parses it + */ +int phannot_parse_annotations(zval *result, zval *comment, zval *file_path, zval *line TSRMLS_DC){ + + zval *error_msg = NULL; + + ZVAL_NULL(result); + + if (Z_TYPE_P(comment) != IS_STRING) { + zend_throw_exception(zend_exception_get_default(TSRMLS_C), "Comment must be a string", 0 TSRMLS_CC); + return FAILURE; + } + + if(phannot_internal_parse_annotations(&result, comment, file_path, line, &error_msg TSRMLS_CC) == FAILURE){ + if (error_msg != NULL) { + // phalcon_throw_exception_string(phalcon_annotations_exception_ce, Z_STRVAL_P(error_msg), Z_STRLEN_P(error_msg), 1 TSRMLS_CC); + zend_throw_exception(zend_exception_get_default(TSRMLS_C), Z_STRVAL_P(error_msg) , 0 TSRMLS_CC); + } + else { + // phalcon_throw_exception_string(phalcon_annotations_exception_ce, ZEND_STRL("There was an error parsing annotation"), 1 TSRMLS_CC); + zend_throw_exception(zend_exception_get_default(TSRMLS_C), "There was an error parsing annotation" , 0 TSRMLS_CC); + } + + return FAILURE; + } + + return SUCCESS; +} + +/** + * Remove comment separators from a docblock + */ +void phannot_remove_comment_separators(zval *return_value, char *comment, int length, int *start_lines) { + + int start_mode = 1, j, i, open_parentheses; + smart_str processed_str = {0}; + char ch; + + (*start_lines) = 0; + + for (i = 0; i < length; i++) { + + ch = comment[i]; + + if (start_mode) { + if (ch == ' ' || ch == '*' || ch == '/' || ch == '\t' || ch == 11) { + continue; + } + start_mode = 0; + } + + if (ch == '@') { + + smart_str_appendc(&processed_str, ch); + i++; + + open_parentheses = 0; + for (j = i; j < length; j++) { + + ch = comment[j]; + + if (start_mode) { + if (ch == ' ' || ch == '*' || ch == '/' || ch == '\t' || ch == 11) { + continue; + } + start_mode = 0; + } + + if (open_parentheses == 0) { + + if (isalnum(ch) || '_' == ch || '\\' == ch) { + smart_str_appendc(&processed_str, ch); + continue; + } + + if (ch == '(') { + smart_str_appendc(&processed_str, ch); + open_parentheses++; + continue; + } + + } else { + + smart_str_appendc(&processed_str, ch); + + if (ch == '(') { + open_parentheses++; + } else if (ch == ')') { + open_parentheses--; + } else if (ch == '\n') { + (*start_lines)++; + start_mode = 1; + } + + if (open_parentheses > 0) { + continue; + } + } + + i = j; + smart_str_appendc(&processed_str, ' '); + break; + } + } + + if (ch == '\n') { + (*start_lines)++; + start_mode = 1; + } + } + + smart_str_0(&processed_str); + + if (processed_str.len) { + RETURN_STRINGL(processed_str.c, processed_str.len, 0); + } else { + RETURN_EMPTY_STRING(); + } +} + +/** + * Parses a comment returning an intermediate array representation + */ +int phannot_internal_parse_annotations(zval **result, zval *comment, zval *file_path, zval *line, zval **error_msg TSRMLS_DC) { + + char *error; + phannot_scanner_state *state; + phannot_scanner_token token; + int scanner_status, status = SUCCESS, start_lines, error_length; + phannot_parser_status *parser_status = NULL; + void* phannot_parser; + zval processed_comment; + + /** + * Check if the comment has content + */ + if (!Z_STRVAL_P(comment)) { + ZVAL_BOOL(*result, 0); + return FAILURE; + } + + if (Z_STRLEN_P(comment) < 2) { + ZVAL_BOOL(*result, 0); + return SUCCESS; + } + + /** + * Remove comment separators + */ + phannot_remove_comment_separators(&processed_comment, Z_STRVAL_P(comment), Z_STRLEN_P(comment), &start_lines); + + if (Z_STRLEN(processed_comment) < 2) { + ZVAL_BOOL(*result, 0); + efree(Z_STRVAL(processed_comment)); + return SUCCESS; + } + + /** + * Start the reentrant parser + */ + phannot_parser = phannot_Alloc(phannot_wrapper_alloc); + + parser_status = emalloc(sizeof(phannot_parser_status)); + state = emalloc(sizeof(phannot_scanner_state)); + + parser_status->status = PHANNOT_PARSING_OK; + parser_status->scanner_state = state; + parser_status->ret = NULL; + parser_status->token = &token; + parser_status->syntax_error = NULL; + + /** + * Initialize the scanner state + */ + state->active_token = 0; + state->start = Z_STRVAL(processed_comment); + state->start_length = 0; + state->mode = PHANNOT_MODE_RAW; + state->active_file = file_path; + + token.value = NULL; + token.len = 0; + + /** + * Possible start line + */ + if (Z_TYPE_P(line) == IS_LONG) { + state->active_line = Z_LVAL_P(line) - start_lines; + } else { + state->active_line = 1; + } + + state->end = state->start; + + while(0 <= (scanner_status = phannot_get_token(state, &token))) { + + state->active_token = token.opcode; + + state->start_length = (Z_STRVAL(processed_comment) + Z_STRLEN(processed_comment) - state->start); + + switch (token.opcode) { + + case PHANNOT_T_IGNORE: + break; + + case PHANNOT_T_AT: + phannot_(phannot_parser, PHANNOT_AT, NULL, parser_status); + break; + case PHANNOT_T_COMMA: + phannot_(phannot_parser, PHANNOT_COMMA, NULL, parser_status); + break; + case PHANNOT_T_EQUALS: + phannot_(phannot_parser, PHANNOT_EQUALS, NULL, parser_status); + break; + case PHANNOT_T_COLON: + phannot_(phannot_parser, PHANNOT_COLON, NULL, parser_status); + break; + + case PHANNOT_T_PARENTHESES_OPEN: + phannot_(phannot_parser, PHANNOT_PARENTHESES_OPEN, NULL, parser_status); + break; + case PHANNOT_T_PARENTHESES_CLOSE: + phannot_(phannot_parser, PHANNOT_PARENTHESES_CLOSE, NULL, parser_status); + break; + + case PHANNOT_T_BRACKET_OPEN: + phannot_(phannot_parser, PHANNOT_BRACKET_OPEN, NULL, parser_status); + break; + case PHANNOT_T_BRACKET_CLOSE: + phannot_(phannot_parser, PHANNOT_BRACKET_CLOSE, NULL, parser_status); + break; + + case PHANNOT_T_SBRACKET_OPEN: + phannot_(phannot_parser, PHANNOT_SBRACKET_OPEN, NULL, parser_status); + break; + case PHANNOT_T_SBRACKET_CLOSE: + phannot_(phannot_parser, PHANNOT_SBRACKET_CLOSE, NULL, parser_status); + break; + + case PHANNOT_T_NULL: + phannot_(phannot_parser, PHANNOT_NULL, NULL, parser_status); + break; + case PHANNOT_T_TRUE: + phannot_(phannot_parser, PHANNOT_TRUE, NULL, parser_status); + break; + case PHANNOT_T_FALSE: + phannot_(phannot_parser, PHANNOT_FALSE, NULL, parser_status); + break; + + case PHANNOT_T_INTEGER: + phannot_parse_with_token(phannot_parser, PHANNOT_T_INTEGER, PHANNOT_INTEGER, &token, parser_status); + break; + case PHANNOT_T_DOUBLE: + phannot_parse_with_token(phannot_parser, PHANNOT_T_DOUBLE, PHANNOT_DOUBLE, &token, parser_status); + break; + case PHANNOT_T_STRING: + phannot_parse_with_token(phannot_parser, PHANNOT_T_STRING, PHANNOT_STRING, &token, parser_status); + break; + case PHANNOT_T_IDENTIFIER: + phannot_parse_with_token(phannot_parser, PHANNOT_T_IDENTIFIER, PHANNOT_IDENTIFIER, &token, parser_status); + break; + /*case PHANNOT_T_ARBITRARY_TEXT: + phannot_parse_with_token(phannot_parser, PHANNOT_T_ARBITRARY_TEXT, PHANNOT_ARBITRARY_TEXT, &token, parser_status); + break;*/ + + default: + parser_status->status = PHANNOT_PARSING_FAILED; + if (!*error_msg) { + error_length = sizeof(char) * (48 + Z_STRLEN_P(state->active_file)); + error = emalloc(error_length); + snprintf(error, error_length - 1, "Scanner: unknown opcode %d on in %s line %d", token.opcode, Z_STRVAL_P(state->active_file), state->active_line); + error[error_length - 1] = '\0'; + ALLOC_INIT_ZVAL(*error_msg); + ZVAL_STRING(*error_msg, error, 1); + efree(error); + } + break; + } + + if (parser_status->status != PHANNOT_PARSING_OK) { + status = FAILURE; + break; + } + + state->end = state->start; + } + + if (status != FAILURE) { + switch (scanner_status) { + case PHANNOT_SCANNER_RETCODE_ERR: + case PHANNOT_SCANNER_RETCODE_IMPOSSIBLE: + if (!*error_msg) { + phannot_scanner_error_msg(parser_status, error_msg TSRMLS_CC); + } + status = FAILURE; + break; + default: + phannot_(phannot_parser, 0, NULL, parser_status); + } + } + + state->active_token = 0; + state->start = NULL; + + if (parser_status->status != PHANNOT_PARSING_OK) { + status = FAILURE; + if (parser_status->syntax_error) { + if (!*error_msg) { + ALLOC_INIT_ZVAL(*error_msg); + ZVAL_STRING(*error_msg, parser_status->syntax_error, 1); + } + efree(parser_status->syntax_error); + } + } + + phannot_Free(phannot_parser, phannot_wrapper_free); + + if (status != FAILURE) { + if (parser_status->status == PHANNOT_PARSING_OK) { + if (parser_status->ret) { + ZVAL_ZVAL(*result, parser_status->ret, 0, 0); + ZVAL_NULL(parser_status->ret); + zval_ptr_dtor(&parser_status->ret); + } else { + array_init(*result); + } + } + } + + efree(Z_STRVAL(processed_comment)); + + efree(parser_status); + efree(state); + + return status; +} diff --git a/php/r3/annotation/parser.h b/php/r3/annotation/parser.h new file mode 100644 index 0000000..b97c964 --- /dev/null +++ b/php/r3/annotation/parser.h @@ -0,0 +1,17 @@ +#define PHANNOT_COMMA 1 +#define PHANNOT_AT 2 +#define PHANNOT_IDENTIFIER 3 +#define PHANNOT_PARENTHESES_OPEN 4 +#define PHANNOT_PARENTHESES_CLOSE 5 +#define PHANNOT_STRING 6 +#define PHANNOT_EQUALS 7 +#define PHANNOT_COLON 8 +#define PHANNOT_INTEGER 9 +#define PHANNOT_DOUBLE 10 +#define PHANNOT_NULL 11 +#define PHANNOT_FALSE 12 +#define PHANNOT_TRUE 13 +#define PHANNOT_BRACKET_OPEN 14 +#define PHANNOT_BRACKET_CLOSE 15 +#define PHANNOT_SBRACKET_OPEN 16 +#define PHANNOT_SBRACKET_CLOSE 17 diff --git a/php/r3/annotation/parser.lemon b/php/r3/annotation/parser.lemon new file mode 100644 index 0000000..193f789 --- /dev/null +++ b/php/r3/annotation/parser.lemon @@ -0,0 +1,335 @@ +/* + +------------------------------------------------------------------------+ + | Phalcon Framework | + +------------------------------------------------------------------------+ + | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | + +------------------------------------------------------------------------+ + | This source file is subject to the New BSD License that is bundled | + | with this package in the file docs/LICENSE.txt. | + | | + | If you did not receive a copy of the license and are unable to | + | obtain it through the world-wide-web, please send an email | + | to license@phalconphp.com so we can send you a copy immediately. | + +------------------------------------------------------------------------+ + | Authors: Andres Gutierrez | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +%token_prefix PHANNOT_ +%token_type {phannot_parser_token*} +%default_type {zval*} +%extra_argument {phannot_parser_status *status} +%name phannot_ + +%left COMMA . + +%include { + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "php.h" +#include "ext/standard/php_smart_str.h" +#include "Zend/zend_exceptions.h" + +#include "parser.h" +#include "scanner.h" +#include "annot.h" + +static zval *phannot_ret_literal_zval(int type, phannot_parser_token *T) +{ + zval *ret; + + MAKE_STD_ZVAL(ret); + array_init(ret); + add_assoc_long(ret, "type", type); + if (T) { + add_assoc_stringl(ret, "value", T->token, T->token_len, 0); + efree(T); + } + + return ret; +} + +static zval *phannot_ret_array(zval *items) +{ + zval *ret; + + MAKE_STD_ZVAL(ret); + array_init(ret); + add_assoc_long(ret, "type", PHANNOT_T_ARRAY); + + if (items) { + add_assoc_zval(ret, "items", items); + } + + return ret; +} + +static zval *phannot_ret_zval_list(zval *list_left, zval *right_list) +{ + + zval *ret; + HashPosition pos; + HashTable *list; + + MAKE_STD_ZVAL(ret); + array_init(ret); + + if (list_left) { + + list = Z_ARRVAL_P(list_left); + if (zend_hash_index_exists(list, 0)) { + zend_hash_internal_pointer_reset_ex(list, &pos); + for (;; zend_hash_move_forward_ex(list, &pos)) { + + zval ** item; + + if (zend_hash_get_current_data_ex(list, (void**) &item, &pos) == FAILURE) { + break; + } + + Z_ADDREF_PP(item); + add_next_index_zval(ret, *item); + + } + zval_ptr_dtor(&list_left); + } else { + add_next_index_zval(ret, list_left); + } + } + + add_next_index_zval(ret, right_list); + + return ret; +} + +static zval *phannot_ret_named_item(phannot_parser_token *name, zval *expr) +{ + zval *ret; + + MAKE_STD_ZVAL(ret); + array_init(ret); + add_assoc_zval(ret, "expr", expr); + if (name != NULL) { + add_assoc_stringl(ret, "name", name->token, name->token_len, 0); + efree(name); + } + + return ret; +} + +static zval *phannot_ret_annotation(phannot_parser_token *name, zval *arguments, phannot_scanner_state *state) +{ + + zval *ret; + + MAKE_STD_ZVAL(ret); + array_init(ret); + + add_assoc_long(ret, "type", PHANNOT_T_ANNOTATION); + + if (name) { + add_assoc_stringl(ret, "name", name->token, name->token_len, 0); + efree(name); + } + + if (arguments) { + add_assoc_zval(ret, "arguments", arguments); + } + + Z_ADDREF_P(state->active_file); + add_assoc_zval(ret, "file", state->active_file); + add_assoc_long(ret, "line", state->active_line); + + return ret; +} + +} + +%syntax_error { + if (status->scanner_state->start_length) { + { + + char *token_name = NULL; + const phannot_token_names *tokens = phannot_tokens; + int token_found = 0; + int active_token = status->scanner_state->active_token; + int near_length = status->scanner_state->start_length; + + if (active_token) { + do { + if (tokens->code == active_token) { + token_found = 1; + token_name = tokens->name; + break; + } + ++tokens; + } while (tokens[0].code != 0); + } + + if (!token_name) { + token_found = 0; + token_name = estrndup("UNKNOWN", strlen("UNKNOWN")); + } + + status->syntax_error_len = 128 + strlen(token_name) + Z_STRLEN_P(status->scanner_state->active_file); + status->syntax_error = emalloc(sizeof(char) * status->syntax_error_len); + + if (near_length > 0) { + if (status->token->value) { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected token %s(%s), near to '%s' in %s on line %d", token_name, status->token->value, status->scanner_state->start, Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } else { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected token %s, near to '%s' in %s on line %d", token_name, status->scanner_state->start, Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } + } else { + if (active_token != PHANNOT_T_IGNORE) { + if (status->token->value) { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected token %s(%s), at the end of docblock in %s on line %d", token_name, status->token->value, Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } else { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected token %s, at the end of docblock in %s on line %d", token_name, Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } + } else { + snprintf(status->syntax_error, status->syntax_error_len, "Syntax error, unexpected EOF, at the end of docblock in %s on line %d", Z_STRVAL_P(status->scanner_state->active_file), status->scanner_state->active_line); + } + status->syntax_error[status->syntax_error_len-1] = '\0'; + } + + if (!token_found) { + if (token_name) { + efree(token_name); + } + } + } + } else { + status->syntax_error_len = 48 + Z_STRLEN_P(status->scanner_state->active_file); + status->syntax_error = emalloc(sizeof(char) * status->syntax_error_len); + sprintf(status->syntax_error, "Syntax error, unexpected EOF in %s", Z_STRVAL_P(status->scanner_state->active_file)); + } + + status->status = PHANNOT_PARSING_FAILED; +} + +%token_destructor { + if ($$) { + if ($$->free_flag) { + efree($$->token); + } + efree($$); + } +} + +program ::= annotation_language(Q) . { + status->ret = Q; +} + +%destructor annotation_language { zval_ptr_dtor(&$$); } + +annotation_language(R) ::= annotation_list(L) . { + R = L; +} + +%destructor annotation_list { zval_ptr_dtor(&$$); } + +annotation_list(R) ::= annotation_list(L) annotation(S) . { + R = phannot_ret_zval_list(L, S); +} + +annotation_list(R) ::= annotation(S) . { + R = phannot_ret_zval_list(NULL, S); +} + + +%destructor annotation { zval_ptr_dtor(&$$); } + +annotation(R) ::= AT IDENTIFIER(I) PARENTHESES_OPEN argument_list(L) PARENTHESES_CLOSE . { + R = phannot_ret_annotation(I, L, status->scanner_state); +} + +annotation(R) ::= AT IDENTIFIER(I) PARENTHESES_OPEN PARENTHESES_CLOSE . { + R = phannot_ret_annotation(I, NULL, status->scanner_state); +} + +annotation(R) ::= AT IDENTIFIER(I) . { + R = phannot_ret_annotation(I, NULL, status->scanner_state); +} + +%destructor argument_list { zval_ptr_dtor(&$$); } + +argument_list(R) ::= argument_list(L) COMMA argument_item(I) . { + R = phannot_ret_zval_list(L, I); +} + +argument_list(R) ::= argument_item(I) . { + R = phannot_ret_zval_list(NULL, I); +} + +%destructor argument_item { zval_ptr_dtor(&$$); } + +argument_item(R) ::= expr(E) . { + R = phannot_ret_named_item(NULL, E); +} + +argument_item(R) ::= STRING(S) EQUALS expr(E) . { + R = phannot_ret_named_item(S, E); +} + +argument_item(R) ::= STRING(S) COLON expr(E) . { + R = phannot_ret_named_item(S, E); +} + +argument_item(R) ::= IDENTIFIER(I) EQUALS expr(E) . { + R = phannot_ret_named_item(I, E); +} + +argument_item(R) ::= IDENTIFIER(I) COLON expr(E) . { + R = phannot_ret_named_item(I, E); +} + +%destructor expr { zval_ptr_dtor(&$$); } + +expr(R) ::= annotation(S) . { + R = S; +} + +expr(R) ::= array(A) . { + R = A; +} + +expr(R) ::= IDENTIFIER(I) . { + R = phannot_ret_literal_zval(PHANNOT_T_IDENTIFIER, I); +} + +expr(R) ::= INTEGER(I) . { + R = phannot_ret_literal_zval(PHANNOT_T_INTEGER, I); +} + +expr(R) ::= STRING(S) . { + R = phannot_ret_literal_zval(PHANNOT_T_STRING, S); +} + +expr(R) ::= DOUBLE(D) . { + R = phannot_ret_literal_zval(PHANNOT_T_DOUBLE, D); +} + +expr(R) ::= NULL . { + R = phannot_ret_literal_zval(PHANNOT_T_NULL, NULL); +} + +expr(R) ::= FALSE . { + R = phannot_ret_literal_zval(PHANNOT_T_FALSE, NULL); +} + +expr(R) ::= TRUE . { + R = phannot_ret_literal_zval(PHANNOT_T_TRUE, NULL); +} + +array(R) ::= BRACKET_OPEN argument_list(A) BRACKET_CLOSE . { + R = phannot_ret_array(A); +} + +array(R) ::= SBRACKET_OPEN argument_list(A) SBRACKET_CLOSE . { + R = phannot_ret_array(A); +} diff --git a/php/r3/annotation/parser.out b/php/r3/annotation/parser.out new file mode 100644 index 0000000..a08c2fb --- /dev/null +++ b/php/r3/annotation/parser.out @@ -0,0 +1,478 @@ + State 0: + program ::= * annotation_language + annotation_language ::= * annotation_list + annotation_list ::= * annotation_list annotation + annotation_list ::= * annotation + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + + AT shift 16 + program accept + annotation_language shift 23 + annotation_list shift 9 + annotation shift 24 + +State 1: + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= AT IDENTIFIER PARENTHESES_OPEN * argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= AT IDENTIFIER PARENTHESES_OPEN * PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + argument_list ::= * argument_list COMMA argument_item + argument_list ::= * argument_item + argument_item ::= * expr + argument_item ::= * STRING EQUALS expr + argument_item ::= * STRING COLON expr + argument_item ::= * IDENTIFIER EQUALS expr + argument_item ::= * IDENTIFIER COLON expr + expr ::= * annotation + expr ::= * array + expr ::= * IDENTIFIER + expr ::= * INTEGER + expr ::= * STRING + expr ::= * DOUBLE + expr ::= * NULL + expr ::= * FALSE + expr ::= * TRUE + array ::= * BRACKET_OPEN argument_list BRACKET_CLOSE + array ::= * SBRACKET_OPEN argument_list SBRACKET_CLOSE + + AT shift 16 + IDENTIFIER shift 12 + PARENTHESES_CLOSE shift 22 + STRING shift 14 + INTEGER shift 33 + DOUBLE shift 35 + NULL shift 36 + FALSE shift 37 + TRUE shift 38 + BRACKET_OPEN shift 2 + SBRACKET_OPEN shift 3 + annotation shift 30 + argument_list shift 10 + argument_item shift 17 + expr shift 28 + array shift 31 + +State 2: + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + argument_list ::= * argument_list COMMA argument_item + argument_list ::= * argument_item + argument_item ::= * expr + argument_item ::= * STRING EQUALS expr + argument_item ::= * STRING COLON expr + argument_item ::= * IDENTIFIER EQUALS expr + argument_item ::= * IDENTIFIER COLON expr + expr ::= * annotation + expr ::= * array + expr ::= * IDENTIFIER + expr ::= * INTEGER + expr ::= * STRING + expr ::= * DOUBLE + expr ::= * NULL + expr ::= * FALSE + expr ::= * TRUE + array ::= * BRACKET_OPEN argument_list BRACKET_CLOSE + array ::= BRACKET_OPEN * argument_list BRACKET_CLOSE + array ::= * SBRACKET_OPEN argument_list SBRACKET_CLOSE + + AT shift 16 + IDENTIFIER shift 12 + STRING shift 14 + INTEGER shift 33 + DOUBLE shift 35 + NULL shift 36 + FALSE shift 37 + TRUE shift 38 + BRACKET_OPEN shift 2 + SBRACKET_OPEN shift 3 + annotation shift 30 + argument_list shift 11 + argument_item shift 17 + expr shift 28 + array shift 31 + +State 3: + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + argument_list ::= * argument_list COMMA argument_item + argument_list ::= * argument_item + argument_item ::= * expr + argument_item ::= * STRING EQUALS expr + argument_item ::= * STRING COLON expr + argument_item ::= * IDENTIFIER EQUALS expr + argument_item ::= * IDENTIFIER COLON expr + expr ::= * annotation + expr ::= * array + expr ::= * IDENTIFIER + expr ::= * INTEGER + expr ::= * STRING + expr ::= * DOUBLE + expr ::= * NULL + expr ::= * FALSE + expr ::= * TRUE + array ::= * BRACKET_OPEN argument_list BRACKET_CLOSE + array ::= * SBRACKET_OPEN argument_list SBRACKET_CLOSE + array ::= SBRACKET_OPEN * argument_list SBRACKET_CLOSE + + AT shift 16 + IDENTIFIER shift 12 + STRING shift 14 + INTEGER shift 33 + DOUBLE shift 35 + NULL shift 36 + FALSE shift 37 + TRUE shift 38 + BRACKET_OPEN shift 2 + SBRACKET_OPEN shift 3 + annotation shift 30 + argument_list shift 13 + argument_item shift 17 + expr shift 28 + array shift 31 + +State 4: + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + argument_list ::= argument_list COMMA * argument_item + argument_item ::= * expr + argument_item ::= * STRING EQUALS expr + argument_item ::= * STRING COLON expr + argument_item ::= * IDENTIFIER EQUALS expr + argument_item ::= * IDENTIFIER COLON expr + expr ::= * annotation + expr ::= * array + expr ::= * IDENTIFIER + expr ::= * INTEGER + expr ::= * STRING + expr ::= * DOUBLE + expr ::= * NULL + expr ::= * FALSE + expr ::= * TRUE + array ::= * BRACKET_OPEN argument_list BRACKET_CLOSE + array ::= * SBRACKET_OPEN argument_list SBRACKET_CLOSE + + AT shift 16 + IDENTIFIER shift 12 + STRING shift 14 + INTEGER shift 33 + DOUBLE shift 35 + NULL shift 36 + FALSE shift 37 + TRUE shift 38 + BRACKET_OPEN shift 2 + SBRACKET_OPEN shift 3 + annotation shift 30 + argument_item shift 27 + expr shift 28 + array shift 31 + +State 5: + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + argument_item ::= STRING EQUALS * expr + expr ::= * annotation + expr ::= * array + expr ::= * IDENTIFIER + expr ::= * INTEGER + expr ::= * STRING + expr ::= * DOUBLE + expr ::= * NULL + expr ::= * FALSE + expr ::= * TRUE + array ::= * BRACKET_OPEN argument_list BRACKET_CLOSE + array ::= * SBRACKET_OPEN argument_list SBRACKET_CLOSE + + AT shift 16 + IDENTIFIER shift 32 + STRING shift 34 + INTEGER shift 33 + DOUBLE shift 35 + NULL shift 36 + FALSE shift 37 + TRUE shift 38 + BRACKET_OPEN shift 2 + SBRACKET_OPEN shift 3 + annotation shift 30 + expr shift 29 + array shift 31 + +State 6: + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + argument_item ::= IDENTIFIER EQUALS * expr + expr ::= * annotation + expr ::= * array + expr ::= * IDENTIFIER + expr ::= * INTEGER + expr ::= * STRING + expr ::= * DOUBLE + expr ::= * NULL + expr ::= * FALSE + expr ::= * TRUE + array ::= * BRACKET_OPEN argument_list BRACKET_CLOSE + array ::= * SBRACKET_OPEN argument_list SBRACKET_CLOSE + + AT shift 16 + IDENTIFIER shift 32 + STRING shift 34 + INTEGER shift 33 + DOUBLE shift 35 + NULL shift 36 + FALSE shift 37 + TRUE shift 38 + BRACKET_OPEN shift 2 + SBRACKET_OPEN shift 3 + annotation shift 30 + expr shift 18 + array shift 31 + +State 7: + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + argument_item ::= STRING COLON * expr + expr ::= * annotation + expr ::= * array + expr ::= * IDENTIFIER + expr ::= * INTEGER + expr ::= * STRING + expr ::= * DOUBLE + expr ::= * NULL + expr ::= * FALSE + expr ::= * TRUE + array ::= * BRACKET_OPEN argument_list BRACKET_CLOSE + array ::= * SBRACKET_OPEN argument_list SBRACKET_CLOSE + + AT shift 16 + IDENTIFIER shift 32 + STRING shift 34 + INTEGER shift 33 + DOUBLE shift 35 + NULL shift 36 + FALSE shift 37 + TRUE shift 38 + BRACKET_OPEN shift 2 + SBRACKET_OPEN shift 3 + annotation shift 30 + expr shift 21 + array shift 31 + +State 8: + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + argument_item ::= IDENTIFIER COLON * expr + expr ::= * annotation + expr ::= * array + expr ::= * IDENTIFIER + expr ::= * INTEGER + expr ::= * STRING + expr ::= * DOUBLE + expr ::= * NULL + expr ::= * FALSE + expr ::= * TRUE + array ::= * BRACKET_OPEN argument_list BRACKET_CLOSE + array ::= * SBRACKET_OPEN argument_list SBRACKET_CLOSE + + AT shift 16 + IDENTIFIER shift 32 + STRING shift 34 + INTEGER shift 33 + DOUBLE shift 35 + NULL shift 36 + FALSE shift 37 + TRUE shift 38 + BRACKET_OPEN shift 2 + SBRACKET_OPEN shift 3 + annotation shift 30 + expr shift 20 + array shift 31 + +State 9: + (1) annotation_language ::= annotation_list * + annotation_list ::= annotation_list * annotation + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= * AT IDENTIFIER + + AT shift 16 + annotation shift 25 + {default} reduce 1 + +State 10: + annotation ::= AT IDENTIFIER PARENTHESES_OPEN argument_list * PARENTHESES_CLOSE + argument_list ::= argument_list * COMMA argument_item + + COMMA shift 4 + PARENTHESES_CLOSE shift 26 + +State 11: + argument_list ::= argument_list * COMMA argument_item + array ::= BRACKET_OPEN argument_list * BRACKET_CLOSE + + COMMA shift 4 + BRACKET_CLOSE shift 39 + +State 12: + argument_item ::= IDENTIFIER * EQUALS expr + argument_item ::= IDENTIFIER * COLON expr + (16) expr ::= IDENTIFIER * + + EQUALS shift 6 + COLON shift 8 + {default} reduce 16 + +State 13: + argument_list ::= argument_list * COMMA argument_item + array ::= SBRACKET_OPEN argument_list * SBRACKET_CLOSE + + COMMA shift 4 + SBRACKET_CLOSE shift 19 + +State 14: + argument_item ::= STRING * EQUALS expr + argument_item ::= STRING * COLON expr + (18) expr ::= STRING * + + EQUALS shift 5 + COLON shift 7 + {default} reduce 18 + +State 15: + annotation ::= AT IDENTIFIER * PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= AT IDENTIFIER * PARENTHESES_OPEN PARENTHESES_CLOSE + (6) annotation ::= AT IDENTIFIER * + + PARENTHESES_OPEN shift 1 + {default} reduce 6 + +State 16: + annotation ::= AT * IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE + annotation ::= AT * IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE + annotation ::= AT * IDENTIFIER + + IDENTIFIER shift 15 + +State 17: + (8) argument_list ::= argument_item * + + {default} reduce 8 + +State 18: + (12) argument_item ::= IDENTIFIER EQUALS expr * + + {default} reduce 12 + +State 19: + (24) array ::= SBRACKET_OPEN argument_list SBRACKET_CLOSE * + + {default} reduce 24 + +State 20: + (13) argument_item ::= IDENTIFIER COLON expr * + + {default} reduce 13 + +State 21: + (11) argument_item ::= STRING COLON expr * + + {default} reduce 11 + +State 22: + (5) annotation ::= AT IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE * + + {default} reduce 5 + +State 23: + (0) program ::= annotation_language * + + {default} reduce 0 + +State 24: + (3) annotation_list ::= annotation * + + {default} reduce 3 + +State 25: + (2) annotation_list ::= annotation_list annotation * + + {default} reduce 2 + +State 26: + (4) annotation ::= AT IDENTIFIER PARENTHESES_OPEN argument_list PARENTHESES_CLOSE * + + {default} reduce 4 + +State 27: + (7) argument_list ::= argument_list COMMA argument_item * + + {default} reduce 7 + +State 28: + (9) argument_item ::= expr * + + {default} reduce 9 + +State 29: + (10) argument_item ::= STRING EQUALS expr * + + {default} reduce 10 + +State 30: + (14) expr ::= annotation * + + {default} reduce 14 + +State 31: + (15) expr ::= array * + + {default} reduce 15 + +State 32: + (16) expr ::= IDENTIFIER * + + {default} reduce 16 + +State 33: + (17) expr ::= INTEGER * + + {default} reduce 17 + +State 34: + (18) expr ::= STRING * + + {default} reduce 18 + +State 35: + (19) expr ::= DOUBLE * + + {default} reduce 19 + +State 36: + (20) expr ::= NULL * + + {default} reduce 20 + +State 37: + (21) expr ::= FALSE * + + {default} reduce 21 + +State 38: + (22) expr ::= TRUE * + + {default} reduce 22 + +State 39: + (23) array ::= BRACKET_OPEN argument_list BRACKET_CLOSE * + + {default} reduce 23 + diff --git a/php/r3/annotation/scanner.c b/php/r3/annotation/scanner.c new file mode 100644 index 0000000..d94e2bb --- /dev/null +++ b/php/r3/annotation/scanner.c @@ -0,0 +1,605 @@ +/* Generated by re2c 0.13.5 on Sun Feb 16 21:59:06 2014 */ +#line 1 "scanner.re" + +/* + +------------------------------------------------------------------------+ + | Phalcon Framework | + +------------------------------------------------------------------------+ + | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | + +------------------------------------------------------------------------+ + | This source file is subject to the New BSD License that is bundled | + | with this package in the file docs/LICENSE.txt. | + | | + | If you did not receive a copy of the license and are unable to | + | obtain it through the world-wide-web, please send an email | + | to license@phalconphp.com so we can send you a copy immediately. | + +------------------------------------------------------------------------+ + | Authors: Andres Gutierrez | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "php.h" + +#include "scanner.h" + +#define YYCTYPE unsigned char +#define YYCURSOR (s->start) +#define YYLIMIT (s->end) +#define YYMARKER q + +int phannot_get_token(phannot_scanner_state *s, phannot_scanner_token *token) { + + char next, *q = YYCURSOR, *start = YYCURSOR; + int status = PHANNOT_SCANNER_RETCODE_IMPOSSIBLE; + + while (PHANNOT_SCANNER_RETCODE_IMPOSSIBLE == status) { + + if (s->mode == PHANNOT_MODE_RAW) { + + if (*YYCURSOR == '\n') { + s->active_line++; + } + + next = *(YYCURSOR+1); + + if (*YYCURSOR == '\0' || *YYCURSOR == '@') { + if ((next >= 'A' && next <= 'Z') || (next >= 'a' && next <= 'z')) { + s->mode = PHANNOT_MODE_ANNOTATION; + continue; + } + } + + ++YYCURSOR; + token->opcode = PHANNOT_T_IGNORE; + return 0; + + } else { + + +#line 65 "scanner.c" + { + YYCTYPE yych; + unsigned int yyaccept = 0; + static const unsigned char yybm[] = { + 0, 96, 96, 96, 96, 96, 96, 96, + 96, 104, 96, 96, 96, 104, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 104, 96, 32, 96, 96, 96, 96, 64, + 96, 96, 96, 96, 96, 96, 96, 96, + 240, 240, 240, 240, 240, 240, 240, 240, + 240, 240, 96, 96, 96, 96, 96, 96, + 96, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 96, 0, 96, 96, 112, + 96, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, + }; + + yych = *YYCURSOR; + switch (yych) { + case 0x00: goto yy38; + case '\t': + case '\r': + case ' ': goto yy34; + case '\n': goto yy36; + case '"': goto yy10; + case '\'': goto yy11; + case '(': goto yy14; + case ')': goto yy16; + case ',': goto yy32; + case '-': goto yy2; + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': goto yy4; + case ':': goto yy30; + case '=': goto yy28; + case '@': goto yy26; + case 'A': + case 'B': + case 'C': + case 'D': + case 'E': + case 'G': + case 'H': + case 'I': + case 'J': + case 'K': + case 'L': + case 'M': + case 'O': + case 'P': + case 'Q': + case 'R': + case 'S': + case 'U': + case 'V': + case 'W': + case 'X': + case 'Y': + case 'Z': + case '_': + case 'a': + case 'b': + case 'c': + case 'd': + case 'e': + case 'g': + case 'h': + case 'i': + case 'j': + case 'k': + case 'l': + case 'm': + case 'o': + case 'p': + case 'q': + case 'r': + case 's': + case 'u': + case 'v': + case 'w': + case 'x': + case 'y': + case 'z': goto yy13; + case 'F': + case 'f': goto yy8; + case 'N': + case 'n': goto yy6; + case 'T': + case 't': goto yy9; + case '[': goto yy22; + case '\\': goto yy12; + case ']': goto yy24; + case '{': goto yy18; + case '}': goto yy20; + default: goto yy40; + } +yy2: + ++YYCURSOR; + if (yybm[0+(yych = *YYCURSOR)] & 128) { + goto yy71; + } +yy3: +#line 182 "scanner.re" + { + status = PHANNOT_SCANNER_RETCODE_ERR; + break; + } +#line 201 "scanner.c" +yy4: + yyaccept = 0; + yych = *(YYMARKER = ++YYCURSOR); + goto yy72; +yy5: +#line 66 "scanner.re" + { + token->opcode = PHANNOT_T_INTEGER; + token->value = estrndup(start, YYCURSOR - start); + token->len = YYCURSOR - start; + q = YYCURSOR; + return 0; + } +#line 215 "scanner.c" +yy6: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'U') goto yy66; + if (yych == 'u') goto yy66; + goto yy44; +yy7: +#line 108 "scanner.re" + { + token->opcode = PHANNOT_T_IDENTIFIER; + token->value = estrndup(start, YYCURSOR - start); + token->len = YYCURSOR - start; + q = YYCURSOR; + return 0; + } +#line 231 "scanner.c" +yy8: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'A') goto yy61; + if (yych == 'a') goto yy61; + goto yy44; +yy9: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'R') goto yy57; + if (yych == 'r') goto yy57; + goto yy44; +yy10: + yyaccept = 2; + yych = *(YYMARKER = ++YYCURSOR); + if (yych <= 0x00) goto yy3; + goto yy55; +yy11: + yyaccept = 2; + yych = *(YYMARKER = ++YYCURSOR); + if (yych <= 0x00) goto yy3; + goto yy50; +yy12: + yych = *++YYCURSOR; + if (yych <= '^') { + if (yych <= '@') goto yy3; + if (yych <= 'Z') goto yy43; + goto yy3; + } else { + if (yych == '`') goto yy3; + if (yych <= 'z') goto yy43; + goto yy3; + } +yy13: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + goto yy44; +yy14: + ++YYCURSOR; +#line 116 "scanner.re" + { + token->opcode = PHANNOT_T_PARENTHESES_OPEN; + return 0; + } +#line 276 "scanner.c" +yy16: + ++YYCURSOR; +#line 121 "scanner.re" + { + token->opcode = PHANNOT_T_PARENTHESES_CLOSE; + return 0; + } +#line 284 "scanner.c" +yy18: + ++YYCURSOR; +#line 126 "scanner.re" + { + token->opcode = PHANNOT_T_BRACKET_OPEN; + return 0; + } +#line 292 "scanner.c" +yy20: + ++YYCURSOR; +#line 131 "scanner.re" + { + token->opcode = PHANNOT_T_BRACKET_CLOSE; + return 0; + } +#line 300 "scanner.c" +yy22: + ++YYCURSOR; +#line 136 "scanner.re" + { + token->opcode = PHANNOT_T_SBRACKET_OPEN; + return 0; + } +#line 308 "scanner.c" +yy24: + ++YYCURSOR; +#line 141 "scanner.re" + { + token->opcode = PHANNOT_T_SBRACKET_CLOSE; + return 0; + } +#line 316 "scanner.c" +yy26: + ++YYCURSOR; +#line 146 "scanner.re" + { + token->opcode = PHANNOT_T_AT; + return 0; + } +#line 324 "scanner.c" +yy28: + ++YYCURSOR; +#line 151 "scanner.re" + { + token->opcode = PHANNOT_T_EQUALS; + return 0; + } +#line 332 "scanner.c" +yy30: + ++YYCURSOR; +#line 156 "scanner.re" + { + token->opcode = PHANNOT_T_COLON; + return 0; + } +#line 340 "scanner.c" +yy32: + ++YYCURSOR; +#line 161 "scanner.re" + { + token->opcode = PHANNOT_T_COMMA; + return 0; + } +#line 348 "scanner.c" +yy34: + ++YYCURSOR; + yych = *YYCURSOR; + goto yy42; +yy35: +#line 166 "scanner.re" + { + token->opcode = PHANNOT_T_IGNORE; + return 0; + } +#line 359 "scanner.c" +yy36: + ++YYCURSOR; +#line 171 "scanner.re" + { + s->active_line++; + token->opcode = PHANNOT_T_IGNORE; + return 0; + } +#line 368 "scanner.c" +yy38: + ++YYCURSOR; +#line 177 "scanner.re" + { + status = PHANNOT_SCANNER_RETCODE_EOF; + break; + } +#line 376 "scanner.c" +yy40: + yych = *++YYCURSOR; + goto yy3; +yy41: + ++YYCURSOR; + yych = *YYCURSOR; +yy42: + if (yybm[0+yych] & 8) { + goto yy41; + } + goto yy35; +yy43: + yyaccept = 1; + YYMARKER = ++YYCURSOR; + yych = *YYCURSOR; +yy44: + if (yybm[0+yych] & 16) { + goto yy43; + } + if (yych != '\\') goto yy7; +yy45: + ++YYCURSOR; + yych = *YYCURSOR; + if (yych <= '^') { + if (yych <= '@') goto yy46; + if (yych <= 'Z') goto yy47; + } else { + if (yych == '`') goto yy46; + if (yych <= 'z') goto yy47; + } +yy46: + YYCURSOR = YYMARKER; + if (yyaccept <= 2) { + if (yyaccept <= 1) { + if (yyaccept <= 0) { + goto yy5; + } else { + goto yy7; + } + } else { + goto yy3; + } + } else { + if (yyaccept <= 4) { + if (yyaccept <= 3) { + goto yy60; + } else { + goto yy65; + } + } else { + goto yy69; + } + } +yy47: + yyaccept = 1; + YYMARKER = ++YYCURSOR; + yych = *YYCURSOR; + if (yych <= '[') { + if (yych <= '9') { + if (yych <= '/') goto yy7; + goto yy47; + } else { + if (yych <= '@') goto yy7; + if (yych <= 'Z') goto yy47; + goto yy7; + } + } else { + if (yych <= '_') { + if (yych <= '\\') goto yy45; + if (yych <= '^') goto yy7; + goto yy47; + } else { + if (yych <= '`') goto yy7; + if (yych <= 'z') goto yy47; + goto yy7; + } + } +yy49: + ++YYCURSOR; + yych = *YYCURSOR; +yy50: + if (yybm[0+yych] & 32) { + goto yy49; + } + if (yych <= 0x00) goto yy46; + if (yych <= '[') goto yy52; + ++YYCURSOR; + yych = *YYCURSOR; + if (yych == '\n') goto yy46; + goto yy49; +yy52: + ++YYCURSOR; +#line 99 "scanner.re" + { + token->opcode = PHANNOT_T_STRING; + token->value = estrndup(q, YYCURSOR - q - 1); + token->len = YYCURSOR - q - 1; + q = YYCURSOR; + return 0; + } +#line 477 "scanner.c" +yy54: + ++YYCURSOR; + yych = *YYCURSOR; +yy55: + if (yybm[0+yych] & 64) { + goto yy54; + } + if (yych <= 0x00) goto yy46; + if (yych <= '[') goto yy52; + ++YYCURSOR; + yych = *YYCURSOR; + if (yych == '\n') goto yy46; + goto yy54; +yy57: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'U') goto yy58; + if (yych != 'u') goto yy44; +yy58: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'E') goto yy59; + if (yych != 'e') goto yy44; +yy59: + yyaccept = 3; + yych = *(YYMARKER = ++YYCURSOR); + if (yybm[0+yych] & 16) { + goto yy43; + } + if (yych == '\\') goto yy45; +yy60: +#line 93 "scanner.re" + { + token->opcode = PHANNOT_T_TRUE; + return 0; + } +#line 514 "scanner.c" +yy61: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'L') goto yy62; + if (yych != 'l') goto yy44; +yy62: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'S') goto yy63; + if (yych != 's') goto yy44; +yy63: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'E') goto yy64; + if (yych != 'e') goto yy44; +yy64: + yyaccept = 4; + yych = *(YYMARKER = ++YYCURSOR); + if (yybm[0+yych] & 16) { + goto yy43; + } + if (yych == '\\') goto yy45; +yy65: +#line 88 "scanner.re" + { + token->opcode = PHANNOT_T_FALSE; + return 0; + } +#line 543 "scanner.c" +yy66: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'L') goto yy67; + if (yych != 'l') goto yy44; +yy67: + yyaccept = 1; + yych = *(YYMARKER = ++YYCURSOR); + if (yych == 'L') goto yy68; + if (yych != 'l') goto yy44; +yy68: + yyaccept = 5; + yych = *(YYMARKER = ++YYCURSOR); + if (yybm[0+yych] & 16) { + goto yy43; + } + if (yych == '\\') goto yy45; +yy69: +#line 83 "scanner.re" + { + token->opcode = PHANNOT_T_NULL; + return 0; + } +#line 567 "scanner.c" +yy70: + yych = *++YYCURSOR; + if (yych <= '/') goto yy46; + if (yych <= '9') goto yy73; + goto yy46; +yy71: + yyaccept = 0; + YYMARKER = ++YYCURSOR; + yych = *YYCURSOR; +yy72: + if (yybm[0+yych] & 128) { + goto yy71; + } + if (yych == '.') goto yy70; + goto yy5; +yy73: + ++YYCURSOR; + yych = *YYCURSOR; + if (yych <= '/') goto yy75; + if (yych <= '9') goto yy73; +yy75: +#line 75 "scanner.re" + { + token->opcode = PHANNOT_T_DOUBLE; + token->value = estrndup(start, YYCURSOR - start); + token->len = YYCURSOR - start; + q = YYCURSOR; + return 0; + } +#line 597 "scanner.c" + } +#line 187 "scanner.re" + + + } + } + + return status; +} diff --git a/php/r3/annotation/scanner.h b/php/r3/annotation/scanner.h new file mode 100644 index 0000000..8a849d3 --- /dev/null +++ b/php/r3/annotation/scanner.h @@ -0,0 +1,83 @@ + +/* + +------------------------------------------------------------------------+ + | Phalcon Framework | + +------------------------------------------------------------------------+ + | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | + +------------------------------------------------------------------------+ + | This source file is subject to the New BSD License that is bundled | + | with this package in the file docs/LICENSE.txt. | + | | + | If you did not receive a copy of the license and are unable to | + | obtain it through the world-wide-web, please send an email | + | to license@phalconphp.com so we can send you a copy immediately. | + +------------------------------------------------------------------------+ + | Authors: Andres Gutierrez | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +#define PHANNOT_SCANNER_RETCODE_EOF -1 +#define PHANNOT_SCANNER_RETCODE_ERR -2 +#define PHANNOT_SCANNER_RETCODE_IMPOSSIBLE -3 + +/** Modes */ +#define PHANNOT_MODE_RAW 0 +#define PHANNOT_MODE_ANNOTATION 1 + +#define PHANNOT_T_IGNORE 297 + +#define PHANNOT_T_DOCBLOCK_ANNOTATION 299 +#define PHANNOT_T_ANNOTATION 300 + +/* Literals & Identifiers */ +#define PHANNOT_T_INTEGER 301 +#define PHANNOT_T_DOUBLE 302 +#define PHANNOT_T_STRING 303 +#define PHANNOT_T_NULL 304 +#define PHANNOT_T_FALSE 305 +#define PHANNOT_T_TRUE 306 +#define PHANNOT_T_IDENTIFIER 307 +#define PHANNOT_T_ARRAY 308 +#define PHANNOT_T_ARBITRARY_TEXT 309 + +/* Operators */ +#define PHANNOT_T_AT '@' +#define PHANNOT_T_DOT '.' +#define PHANNOT_T_COMMA ',' +#define PHANNOT_T_EQUALS '=' +#define PHANNOT_T_COLON ':' +#define PHANNOT_T_BRACKET_OPEN '{' +#define PHANNOT_T_BRACKET_CLOSE '}' +#define PHANNOT_T_SBRACKET_OPEN '[' +#define PHANNOT_T_SBRACKET_CLOSE ']' +#define PHANNOT_T_PARENTHESES_OPEN '(' +#define PHANNOT_T_PARENTHESES_CLOSE ')' + +/* List of tokens and their names */ +typedef struct _phannot_token_names { + char *name; + unsigned int code; +} phannot_token_names; + +/* Active token state */ +typedef struct _phannot_scanner_state { + char* start; + char* end; + int active_token; + unsigned int start_length; + int mode; + unsigned int active_line; + zval *active_file; +} phannot_scanner_state; + +/* Extra information tokens */ +typedef struct _phannot_scanner_token { + char *value; + int opcode; + int len; +} phannot_scanner_token; + +int phannot_get_token(phannot_scanner_state *s, phannot_scanner_token *token); + +extern const phannot_token_names phannot_tokens[]; diff --git a/php/r3/annotation/scanner.re b/php/r3/annotation/scanner.re new file mode 100644 index 0000000..6e818ca --- /dev/null +++ b/php/r3/annotation/scanner.re @@ -0,0 +1,193 @@ + +/* + +------------------------------------------------------------------------+ + | Phalcon Framework | + +------------------------------------------------------------------------+ + | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | + +------------------------------------------------------------------------+ + | This source file is subject to the New BSD License that is bundled | + | with this package in the file docs/LICENSE.txt. | + | | + | If you did not receive a copy of the license and are unable to | + | obtain it through the world-wide-web, please send an email | + | to license@phalconphp.com so we can send you a copy immediately. | + +------------------------------------------------------------------------+ + | Authors: Andres Gutierrez | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "php.h" + +#include "scanner.h" + +#define YYCTYPE unsigned char +#define YYCURSOR (s->start) +#define YYLIMIT (s->end) +#define YYMARKER q + +int phannot_get_token(phannot_scanner_state *s, phannot_scanner_token *token) { + + char next, *q = YYCURSOR, *start = YYCURSOR; + int status = PHANNOT_SCANNER_RETCODE_IMPOSSIBLE; + + while (PHANNOT_SCANNER_RETCODE_IMPOSSIBLE == status) { + + if (s->mode == PHANNOT_MODE_RAW) { + + if (*YYCURSOR == '\n') { + s->active_line++; + } + + next = *(YYCURSOR+1); + + if (*YYCURSOR == '\0' || *YYCURSOR == '@') { + if ((next >= 'A' && next <= 'Z') || (next >= 'a' && next <= 'z')) { + s->mode = PHANNOT_MODE_ANNOTATION; + continue; + } + } + + ++YYCURSOR; + token->opcode = PHANNOT_T_IGNORE; + return 0; + + } else { + + /*!re2c + re2c:indent:top = 2; + re2c:yyfill:enable = 0; + + INTEGER = [\-]?[0-9]+; + INTEGER { + token->opcode = PHANNOT_T_INTEGER; + token->value = estrndup(start, YYCURSOR - start); + token->len = YYCURSOR - start; + q = YYCURSOR; + return 0; + } + + DOUBLE = ([\-]?[0-9]+[\.][0-9]+); + DOUBLE { + token->opcode = PHANNOT_T_DOUBLE; + token->value = estrndup(start, YYCURSOR - start); + token->len = YYCURSOR - start; + q = YYCURSOR; + return 0; + } + + 'null' { + token->opcode = PHANNOT_T_NULL; + return 0; + } + + 'false' { + token->opcode = PHANNOT_T_FALSE; + return 0; + } + + 'true' { + token->opcode = PHANNOT_T_TRUE; + return 0; + } + + STRING = (["] ([\\]["]|[\\].|[\001-\377]\[\\"])* ["])|(['] ([\\][']|[\\].|[\001-\377]\[\\'])* [']); + STRING { + token->opcode = PHANNOT_T_STRING; + token->value = estrndup(q, YYCURSOR - q - 1); + token->len = YYCURSOR - q - 1; + q = YYCURSOR; + return 0; + } + + IDENTIFIER = ('\x5C'?[a-zA-Z_]([a-zA-Z0-9_]*)('\x5C'[a-zA-Z_]([a-zA-Z0-9_]*))*); + IDENTIFIER { + token->opcode = PHANNOT_T_IDENTIFIER; + token->value = estrndup(start, YYCURSOR - start); + token->len = YYCURSOR - start; + q = YYCURSOR; + return 0; + } + + "(" { + token->opcode = PHANNOT_T_PARENTHESES_OPEN; + return 0; + } + + ")" { + token->opcode = PHANNOT_T_PARENTHESES_CLOSE; + return 0; + } + + "{" { + token->opcode = PHANNOT_T_BRACKET_OPEN; + return 0; + } + + "}" { + token->opcode = PHANNOT_T_BRACKET_CLOSE; + return 0; + } + + "[" { + token->opcode = PHANNOT_T_SBRACKET_OPEN; + return 0; + } + + "]" { + token->opcode = PHANNOT_T_SBRACKET_CLOSE; + return 0; + } + + "@" { + token->opcode = PHANNOT_T_AT; + return 0; + } + + "=" { + token->opcode = PHANNOT_T_EQUALS; + return 0; + } + + ":" { + token->opcode = PHANNOT_T_COLON; + return 0; + } + + "," { + token->opcode = PHANNOT_T_COMMA; + return 0; + } + + [ \t\r]+ { + token->opcode = PHANNOT_T_IGNORE; + return 0; + } + + [\n] { + s->active_line++; + token->opcode = PHANNOT_T_IGNORE; + return 0; + } + + "\000" { + status = PHANNOT_SCANNER_RETCODE_EOF; + break; + } + + [^] { + status = PHANNOT_SCANNER_RETCODE_ERR; + break; + } + + */ + + } + } + + return status; +}