php-src/sapi/phpdbg/phpdbg_parser.y

206 lines
4.5 KiB
Plaintext
Raw Normal View History

2014-02-15 04:52:04 +00:00
%{
2015-01-03 09:22:58 +00:00
2014-02-15 04:52:04 +00:00
/*
* phpdbg_parser.y
2014-02-16 23:17:16 +00:00
* (from php-src root)
* flex sapi/phpdbg/dev/phpdbg_lexer.l
* bison sapi/phpdbg/dev/phpdbg_parser.y
2014-02-15 04:52:04 +00:00
*/
2015-01-03 09:22:58 +00:00
2014-02-15 04:52:04 +00:00
#include "phpdbg.h"
#include "phpdbg_cmd.h"
2014-02-16 23:12:24 +00:00
#include "phpdbg_utils.h"
2014-02-18 20:04:02 +00:00
#include "phpdbg_cmd.h"
#include "phpdbg_prompt.h"
2014-02-15 04:52:04 +00:00
#define YYSTYPE phpdbg_param_t
#include "phpdbg_parser.h"
#include "phpdbg_lexer.h"
#undef yyerror
static int yyerror(const char *msg);
ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
2014-02-16 23:12:24 +00:00
2015-08-02 14:26:48 +00:00
#ifdef _MSC_VER
#define YYMALLOC malloc
#define YYFREE free
#endif
2014-02-15 04:52:04 +00:00
%}
%pure-parser
%error-verbose
2015-01-03 09:22:58 +00:00
2014-02-15 04:52:04 +00:00
%code requires {
2014-02-16 23:12:24 +00:00
#include "phpdbg.h"
2014-02-15 04:52:04 +00:00
#ifndef YY_TYPEDEF_YY_SCANNER_T
#define YY_TYPEDEF_YY_SCANNER_T
typedef void* yyscan_t;
#endif
}
%output "sapi/phpdbg/phpdbg_parser.c"
%defines "sapi/phpdbg/phpdbg_parser.h"
%token T_EVAL "eval"
%token T_RUN "run"
%token T_SHELL "shell"
%token T_IF "if (condition)"
%token T_TRUTHY "truthy (true, on, yes or enabled)"
%token T_FALSY "falsy (false, off, no or disabled)"
%token T_STRING "string (some input, perhaps)"
%token T_COLON ": (colon)"
%token T_DCOLON ":: (double colon)"
2015-09-17 20:52:55 +00:00
%token T_POUND "# (pound sign followed by digits)"
%token T_SEPARATOR "# (pound sign)"
%token T_PROTO "protocol (file://)"
%token T_DIGITS "digits (numbers)"
%token T_LITERAL "literal (string)"
%token T_ADDR "address"
%token T_OPCODE "opcode"
%token T_ID "identifier (command or function name)"
%token T_INPUT "input (input string or data)"
%token T_UNEXPECTED "input"
%token T_REQ_ID "request id (-r %d)"
%% /* Rules */
2014-02-15 04:52:04 +00:00
input
2015-09-17 20:52:55 +00:00
: command { $$ = $1; }
| input T_SEPARATOR command { phpdbg_stack_separate($1.top); $$ = $3; }
| /* nothing */
;
2014-02-15 04:52:04 +00:00
2015-09-17 20:52:55 +00:00
command
: parameters { $$.top = PHPDBG_G(parser_stack)->top; }
| full_expression { phpdbg_stack_push(PHPDBG_G(parser_stack), &$1); $$.top = PHPDBG_G(parser_stack)->top; }
;
2014-02-15 04:52:04 +00:00
parameters
2015-09-17 20:52:55 +00:00
: parameter { phpdbg_stack_push(PHPDBG_G(parser_stack), &$1); $$.top = PHPDBG_G(parser_stack)->top; }
| parameters parameter { phpdbg_stack_push(PHPDBG_G(parser_stack), &$2); $$.top = PHPDBG_G(parser_stack)->top; }
| parameters req_id { $$ = $1; }
2014-02-15 04:52:04 +00:00
;
parameter
2015-01-03 09:22:58 +00:00
: T_ID T_COLON T_DIGITS {
2014-02-21 14:44:16 +00:00
$$.type = FILE_PARAM;
$$.file.name = $2.str;
2014-02-21 14:44:16 +00:00
$$.file.line = $3.num;
}
| T_ID T_COLON T_POUND T_DIGITS {
$$.type = NUMERIC_FILE_PARAM;
$$.file.name = $1.str;
$$.file.line = $4.num;
}
| T_PROTO T_ID T_COLON T_DIGITS {
$$.type = FILE_PARAM;
$$.file.name = malloc($1.len + $2.len + 1);
if ($$.file.name) {
memcpy(&$$.file.name[0], $1.str, $1.len);
memcpy(&$$.file.name[$1.len], $2.str, $2.len);
$$.file.name[$1.len + $2.len] = '\0';
}
$$.file.line = $4.num;
}
| T_PROTO T_ID T_COLON T_POUND T_DIGITS {
$$.type = NUMERIC_FILE_PARAM;
$$.file.name = malloc($1.len + $2.len + 1);
if ($$.file.name) {
memcpy(&$$.file.name[0], $1.str, $1.len);
memcpy(&$$.file.name[$1.len], $2.str, $2.len);
$$.file.name[$1.len + $2.len] = '\0';
}
$$.file.line = $5.num;
}
2015-01-03 09:22:58 +00:00
| T_ID T_DCOLON T_ID {
2014-02-21 14:44:16 +00:00
$$.type = METHOD_PARAM;
$$.method.class = $1.str;
2014-02-21 18:52:06 +00:00
$$.method.name = $3.str;
2014-02-21 14:44:16 +00:00
}
2015-01-03 09:22:58 +00:00
| T_ID T_DCOLON T_ID T_POUND T_DIGITS {
2014-02-21 14:44:16 +00:00
$$.type = NUMERIC_METHOD_PARAM;
$$.method.class = $1.str;
$$.method.name = $3.str;
2015-01-03 09:22:58 +00:00
$$.num = $5.num;
2014-02-21 14:44:16 +00:00
}
| T_ID T_POUND T_DIGITS {
2014-02-21 14:44:16 +00:00
$$.type = NUMERIC_FUNCTION_PARAM;
$$.str = $1.str;
$$.len = $1.len;
2015-01-03 09:22:58 +00:00
$$.num = $3.num;
2014-02-21 14:44:16 +00:00
}
| T_IF T_INPUT {
2015-01-03 09:22:58 +00:00
$$.type = COND_PARAM;
$$.str = $2.str;
$$.len = $2.len;
}
| T_OPCODE { $$ = $1; }
| T_ADDR { $$ = $1; }
| T_LITERAL { $$ = $1; }
| T_TRUTHY { $$ = $1; }
| T_FALSY { $$ = $1; }
| T_DIGITS { $$ = $1; }
| T_ID { $$ = $1; }
;
req_id
: T_REQ_ID { PHPDBG_G(req_id) = $1.num; }
| /* empty */
;
full_expression
2015-01-03 09:22:58 +00:00
: T_EVAL req_id T_INPUT {
$$.type = EVAL_PARAM;
2014-10-09 12:54:08 +00:00
$$.str = $3.str;
$$.len = $3.len;
2014-02-21 14:44:16 +00:00
}
2015-01-03 09:22:58 +00:00
| T_SHELL req_id T_INPUT {
$$.type = SHELL_PARAM;
2014-10-09 12:54:08 +00:00
$$.str = $3.str;
$$.len = $3.len;
2014-02-21 14:44:16 +00:00
}
| T_RUN req_id {
2014-04-20 11:28:11 +00:00
$$.type = RUN_PARAM;
$$.len = 0;
}
2015-01-03 09:22:58 +00:00
| T_RUN req_id T_INPUT {
$$.type = RUN_PARAM;
2014-10-09 12:54:08 +00:00
$$.str = $3.str;
$$.len = $3.len;
}
2014-02-15 04:52:04 +00:00
;
%%
static int yyerror(const char *msg) {
phpdbg_error("command", "type=\"parseerror\" msg=\"%s\"", "Parse Error: %s", msg);
{
const phpdbg_param_t *top = PHPDBG_G(parser_stack);
2015-01-03 09:22:58 +00:00
while (top) {
phpdbg_param_debug(top, "--> ");
top = top->next;
}
}
return 0;
}
2014-12-13 22:06:14 +00:00
int phpdbg_do_parse(phpdbg_param_t *stack, char *input) {
if (!*input) {
return 0;
}
if (PHPDBG_G(cur_command)) {
free(PHPDBG_G(cur_command));
}
PHPDBG_G(cur_command) = strdup(input);
2014-12-13 22:06:14 +00:00
phpdbg_init_lexer(stack, input);
2014-12-13 22:06:14 +00:00
return yyparse();
}