Add missing files from Pux
This commit is contained in:
parent
868ee4a27b
commit
50643bb25f
12 changed files with 9064 additions and 0 deletions
40
php/r3/annotation/annot.h
Normal file
40
php/r3/annotation/annot.h
Normal file
|
@ -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 <andres@phalconphp.com> |
|
||||
| Eduar Carvajal <eduar@phalconphp.com> |
|
||||
+------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
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);
|
441
php/r3/annotation/base.c
Normal file
441
php/r3/annotation/base.c
Normal file
|
@ -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 <andres@phalconphp.com> |
|
||||
| Eduar Carvajal <eduar@phalconphp.com> |
|
||||
+------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
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;
|
||||
}
|
BIN
php/r3/annotation/lemon
Executable file
BIN
php/r3/annotation/lemon
Executable file
Binary file not shown.
4564
php/r3/annotation/lemon.c
Normal file
4564
php/r3/annotation/lemon.c
Normal file
File diff suppressed because it is too large
Load diff
687
php/r3/annotation/lempar.c
Normal file
687
php/r3/annotation/lempar.c
Normal file
|
@ -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 <stdio.h>
|
||||
%%
|
||||
/* 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 <stdio.h>
|
||||
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:
|
||||
** <ul>
|
||||
** <li> A FILE* to which trace output should be written.
|
||||
** If NULL, then tracing is turned off.
|
||||
** <li> A prefix string written at the beginning of every
|
||||
** line of trace output. If NULL, then tracing is
|
||||
** turned off.
|
||||
** </ul>
|
||||
**
|
||||
** 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:
|
||||
** <ul>
|
||||
** <li> A pointer to the parser. This should be a pointer
|
||||
** obtained from ParseAlloc.
|
||||
** <li> A pointer to a function used to reclaim memory obtained
|
||||
** from malloc.
|
||||
** </ul>
|
||||
*/
|
||||
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<sizeof(yyFallback)/sizeof(yyFallback[0])
|
||||
&& (iFallback = yyFallback[iLookAhead])!=0 ){
|
||||
#ifndef NDEBUG
|
||||
if( yyTraceFILE ){
|
||||
fprintf(yyTraceFILE, "%sFALLBACK %s => %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<sizeof(yyRuleName)/sizeof(yyRuleName[0]) ){
|
||||
fprintf(yyTraceFILE, "%sReduce [%s].\n", yyTracePrompt,
|
||||
yyRuleName[yyruleno]);
|
||||
}
|
||||
#endif /* NDEBUG */
|
||||
|
||||
switch( yyruleno ){
|
||||
/* Beginning here are the reduction cases. A typical example
|
||||
** follows:
|
||||
** case 0:
|
||||
** #line <lineno> <grammarfile>
|
||||
** { ... } // User supplied code
|
||||
** #line <lineno> <thisfile>
|
||||
** 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:
|
||||
** <ul>
|
||||
** <li> A pointer to the parser (an opaque structure.)
|
||||
** <li> The major token number.
|
||||
** <li> The minor token number.
|
||||
** <li> An option argument of a grammar-specified type.
|
||||
** </ul>
|
||||
**
|
||||
** 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( yyact<YYNSTATE ){
|
||||
yy_shift(yypParser,yyact,yymajor,&yyminorunion);
|
||||
yypParser->yyerrcnt--;
|
||||
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;
|
||||
}
|
1621
php/r3/annotation/parser.c
Normal file
1621
php/r3/annotation/parser.c
Normal file
File diff suppressed because it is too large
Load diff
17
php/r3/annotation/parser.h
Normal file
17
php/r3/annotation/parser.h
Normal file
|
@ -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
|
335
php/r3/annotation/parser.lemon
Normal file
335
php/r3/annotation/parser.lemon
Normal file
|
@ -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 <andres@phalconphp.com> |
|
||||
| Eduar Carvajal <eduar@phalconphp.com> |
|
||||
+------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
%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);
|
||||
}
|
478
php/r3/annotation/parser.out
Normal file
478
php/r3/annotation/parser.out
Normal file
|
@ -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
|
||||
|
605
php/r3/annotation/scanner.c
Normal file
605
php/r3/annotation/scanner.c
Normal file
|
@ -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 <andres@phalconphp.com> |
|
||||
| Eduar Carvajal <eduar@phalconphp.com> |
|
||||
+------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
#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;
|
||||
}
|
83
php/r3/annotation/scanner.h
Normal file
83
php/r3/annotation/scanner.h
Normal file
|
@ -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 <andres@phalconphp.com> |
|
||||
| Eduar Carvajal <eduar@phalconphp.com> |
|
||||
+------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
#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[];
|
193
php/r3/annotation/scanner.re
Normal file
193
php/r3/annotation/scanner.re
Normal file
|
@ -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 <andres@phalconphp.com> |
|
||||
| Eduar Carvajal <eduar@phalconphp.com> |
|
||||
+------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
#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;
|
||||
}
|
Loading…
Reference in a new issue