File:
[parser3project] /
parser3 /
src /
main /
compile.y
Revision
1.179:
download - view:
text,
annotated -
select for diffs -
revision graph
Thu Feb 7 11:16:28 2002 UTC (24 years, 5 months ago) by
paf
Branches:
MAIN
CVS tags:
HEAD
operators now detected by check at name_without_curly_rdive_read rule whether diving code constists only of
OP_VALUE+string+OP_GET_ELEMENT.
and last op code substituted with OP_GET_ELEMENT_OR_OPERATOR
to form
OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR.
code
%{
/** @file
Parser: compiler(lexical parser and grammar).
Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
$Id: compile.y,v 1.179 2002/02/07 11:16:28 paf Exp $
*/
/**
@todo parser4:
- cache compiled code from request to request. to do that...
-#: make method definitions, @CLASS, @BASE, @USE instructions,
which would be executed afterwards, and actions
now performed at compile time would be delayed to run time.
-#: make cache expiration on time and on disk-change of class source
-#: in apache use subpools for compiled class storage
-#: in iis make up specialized Pool object for that
*/
#define YYSTYPE Array/*<Operation>*/ *
#define YYPARSE_PARAM pc
#define YYLEX_PARAM pc
#define YYDEBUG 1
#define YYERROR_VERBOSE 1
#define yyerror(msg) real_yyerror((parse_control *)pc, msg)
#define YYPRINT(file, type, value) yyprint(file, type, value)
#include "compile_tools.h"
#include "pa_value.h"
#include "pa_request.h"
#include "pa_vobject.h"
#include "pa_vdouble.h"
#include "pa_globals.h"
#include "pa_vvoid.h"
#define SELF_ELEMENT_NAME "self"
#define USE_CONTROL_METHOD_NAME "USE"
static int real_yyerror(parse_control *pc, char *s);
static void yyprint(FILE *file, int type, YYSTYPE value);
static int yylex(YYSTYPE *lvalp, void *pc);
// local convinient inplace typecast & var
#define PC (*(parse_control *)pc)
#define POOL (*PC.pool)
#undef NEW
#define NEW new(POOL)
#ifndef DOXYGEN
%}
%pure_parser
%token EON
%token STRING
%token BOGUS
%token BAD_STRING_COMPARISON_OPERATOR
%token BAD_HEX_LITERAL
%token BAD_METHOD_DECL_START
%token LAND "&&"
%token LOR "||"
%token LXOR "##"
%token NLE "<="
%token NGE ">="
%token NEQ "=="
%token NNE "!="
%token SLT "lt"
%token SGT "gt"
%token SLE "le"
%token SGE "ge"
%token SEQ "eq"
%token SNE "ne"
%token DEF "def"
%token IN "in"
%token FEXISTS "-f"
%token DEXISTS "-d"
%token IS "is"
/* logical */
%left "##"
%left "||"
%left "&&"
%left '<' '>' "<=" ">=" "lt" "gt" "le" "ge"
%left "==" "!=" "eq" "ne"
%left "is" "def" "in" "-f" "-d"
%left '!'
/* bitwise */
%left '#'
%left '|'
%left '&'
%left '~'
/* numerical */
%left '-' '+'
%left '*' '/' '%' '\\'
%left NEG /* negation: unary - */
%%
all:
one_big_piece {
Method& method=*NEW Method(POOL,
*main_method_name,
Method::CT_ANY,
0, 0, /*min, max numbered_params_count*/
0/*param_names*/, 0/*local_names*/,
$1/*parser_code*/, 0/*native_code*/);
PC.cclass->add_method(*main_method_name, method);
}
| methods;
methods: method | methods method;
one_big_piece: maybe_codes;
method: control_method | code_method;
control_method: '@' STRING '\n'
maybe_control_strings {
const String& command=*LA2S($2);
YYSTYPE strings_code=$4;
if(strings_code->size()<1*2) {
strcpy(PC.error, "@");
strcat(PC.error, command.cstr());
strcat(PC.error, " is empty");
YYERROR;
}
if(command==CLASS_NAME) {
if(PC.cclass->base()) { // already changed from default?
strcpy(PC.error, "class already have a name '");
strncat(PC.error, PC.cclass->name().cstr(), 100);
strcat(PC.error, "'");
YYERROR;
}
if(strings_code->size()==1*2) {
// new class' name
const String *name=LA2S(strings_code);
// creating the class
PC.cclass=NEW VClass(POOL);
PC.cclass->set_name(*name);
// append to request's classes
PC.request->classes().put(*name, PC.cclass);
} else {
strcpy(PC.error, "@"CLASS_NAME" must contain sole name");
YYERROR;
}
} else if(command==USE_CONTROL_METHOD_NAME) {
for(int i=0; i<strings_code->size(); i+=2)
PC.request->use_file(*LA2S(strings_code, i));
} else if(command==BASE_NAME) {
if(PC.cclass->base()) { // already changed from default?
strcpy(PC.error, "class already have a base '");
strncat(PC.error, PC.cclass->base()->name().cstr(), 100);
strcat(PC.error, "'");
YYERROR;
}
if(strings_code->size()==1*2) {
const String& base_name=*LA2S(strings_code);
VClass *base=static_cast<VClass *>(
PC.request->classes().get(base_name));
if(!base) {
strcpy(PC.error, base_name.cstr());
strcat(PC.error, ": undefined class in @"BASE_NAME);
YYERROR;
}
// @CLASS == @BASE sanity check
if(PC.cclass==base) {
strcpy(PC.error, "@"CLASS_NAME" equals @"BASE_NAME);
YYERROR;
}
PC.cclass->set_base(*base);
} else {
strcpy(PC.error, "@"BASE_NAME" must contain sole name");
YYERROR;
}
} else {
strcpy(PC.error, "'");
strncat(PC.error, command.cstr(), MAX_STRING/2);
strcat(PC.error, "' invalid special name. valid names are "
"'"CLASS_NAME"', '"USE_CONTROL_METHOD_NAME"' and '"BASE_NAME"'");
YYERROR;
}
};
maybe_control_strings: empty | control_strings;
control_strings: control_string | control_strings control_string { $$=$1; P($$, $2) };
control_string: maybe_string '\n';
maybe_string: empty | STRING;
code_method: '@' STRING bracketed_maybe_strings maybe_bracketed_strings maybe_comment '\n'
maybe_codes {
const String *name=LA2S($2);
YYSTYPE params_names_code=$3;
Array *params_names=0;
if(int size=params_names_code->size()) {
params_names=NEW Array(POOL);
for(int i=0; i<size; i+=2)
*params_names+=LA2S(params_names_code, i);
}
YYSTYPE locals_names_code=$4;
Array *locals_names=0;
if(int size=locals_names_code->size()) {
locals_names=NEW Array(POOL);
for(int i=0; i<size; i+=2)
*locals_names+=LA2S(locals_names_code, i);
}
Method& method=*NEW Method(POOL,
*name,
Method::CT_ANY,
0, 0/*min,max numbered_params_count*/,
params_names, locals_names,
$7, 0);
PC.cclass->add_method(*name, method);
};
maybe_bracketed_strings: empty | bracketed_maybe_strings;
bracketed_maybe_strings: '[' maybe_strings ']' {$$=$2};
maybe_strings: empty | strings;
strings: STRING | strings ';' STRING { $$=$1; P($$, $3) };
maybe_comment: empty | STRING;
/* codes */
maybe_codes: empty | codes;
codes: code | codes code { $$=$1; P($$, $2) };
code: write_string | action;
action: get | put | call;
/* get */
get: get_value {
$$=$1; /* stack: resulting value */
O($$, OP_WRITE_VALUE); /* value=pop; wcontext.write(value) */
};
get_value: '$' get_name_value { $$=$2 };
get_name_value: name_without_curly_rdive EON | name_in_curly_rdive;
name_in_curly_rdive: '{' name_without_curly_rdive '}' { $$=$2 };
name_without_curly_rdive:
name_without_curly_rdive_read
| name_without_curly_rdive_class;
name_without_curly_rdive_read: name_without_curly_rdive_code {
$$=N(POOL);
Array *diving_code=$1;
const String *first_name=LA2S(diving_code);
// self.xxx... -> xxx...
// OP_VALUE+string+OP_GET_ELEMENT+... -> OP_WITH_SELF+...
if(first_name && *first_name==SELF_ELEMENT_NAME) {
O($$, OP_WITH_SELF); /* stack: starting context */
P($$, diving_code,
/* skip over... */
diving_code->size()>=3?3/*OP_VALUE+string+OP_GET_ELEMENTx*/:2/*OP_+string*/);
} else {
O($$, OP_WITH_READ); /* stack: starting context */
// ^if ELEMENT -> ^if ELEMENT_OR_OPERATOR
// OP_VALUE+string+OP_GET_ELEMENT. -> OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR.
if(diving_code->size()==3)
diving_code->put_int(2, OP_GET_ELEMENT_OR_OPERATOR);
P($$, diving_code);
}
/* diving code; stack: current context */
};
name_without_curly_rdive_class: class_prefix name_without_curly_rdive_code { $$=$1; P($$, $2) };
name_without_curly_rdive_code: name_advance2 | name_path name_advance2 { $$=$1; P($$, $2) };
/* put */
put: '$' name_expr_wdive construct {
$$=$2; /* stack: context,name */
P($$, $3); /* stack: context,name,constructor_value */
};
name_expr_wdive:
name_expr_wdive_root
| name_expr_wdive_write
| name_expr_wdive_class;
name_expr_wdive_root: name_expr_dive_code {
$$=N(POOL);
Array *diving_code=$1;
const String *first_name=LA2S(diving_code);
// $self.xxx... -> $xxx...
// OP_VALUE+string+OP_GET_ELEMENT+... -> OP_WITH_SELF+...
if(first_name && *first_name==SELF_ELEMENT_NAME) {
O($$, OP_WITH_SELF); /* stack: starting context */
P($$, diving_code,
/* skip over... */
diving_code->size()>=3?3/*OP_VALUE+string+OP_GET_ELEMENTx*/:2/*OP_+string*/);
} else {
O($$, OP_WITH_ROOT); /* stack: starting context */
P($$, diving_code);
}
/* diving code; stack: current context */
};
name_expr_wdive_write: '.' name_expr_dive_code {
$$=N(POOL);
O($$, OP_WITH_WRITE); /* stack: starting context */
P($$, $2); /* diving code; stack: context,name */
};
name_expr_wdive_class: class_prefix name_expr_dive_code { $$=$1; P($$, $2) };
construct:
construct_square
| construct_round
| construct_curly
;
construct_square: '[' any_constructor_code_value ']' {
// stack: context, name
$$=$2; // stack: context, name, value
O($$, OP_CONSTRUCT_VALUE); /* value=pop; name=pop; context=pop; construct(context,name,value) */
}
;
construct_round: '(' expr_value ')' {
// stack: context, name
$$=$2; // stack: context, name, value
O($$, OP_CONSTRUCT_EXPR); /* value=pop->as_expr_result; name=pop; context=pop; construct(context,name,value) */
}
;
construct_curly: '{' maybe_codes '}' {
// stack: context, name
$$=N(POOL);
CCA($$, $2); /* code=pop; name=pop; context=pop; construct(context,name,junction(code)) */
};
any_constructor_code_value:
void_value /* optimized $var[] case */
| STRING /* optimized $var[STRING] case */
| constructor_code_value /* $var[something complex] */
;
constructor_code_value: constructor_code {
$$=N(POOL);
O($$, OP_CREATE_EWPOOL); /* stack: empty write context */
P($$, $1); /* some code that writes to that context */
O($$, OP_REDUCE_EWPOOL); /* context=pop; stack: context.value() */
};
constructor_code: codes__excluding_sole_str_literal;
codes__excluding_sole_str_literal: action | code codes { $$=$1; P($$, $2) };
/* call */
call: call_value {
$$=$1; /* stack: value */
O($$, OP_WRITE_VALUE); /* value=pop; wcontext.write(value) */
};
call_value: '^' {
PC.object_constructor_allowed=true;
}
call_name {
PC.object_constructor_allowed=false;
}
store_params EON { /* ^field.$method{vasya} */
$$=$3; /* with_xxx,diving code; stack: context,method_junction */
O($$, OP_GET_METHOD_FRAME); /* stack: context,method_frame */
YYSTYPE params_code=$5;
if(params_code->size()==3) // probably [] case. [OP_VALUE + Void + STORE_PARAM]
if(Value *value=LA2V(params_code)) // it is OP_VALUE + value?
if(!value->is_defined()) // value is VVoid?
params_code=0; // ^zzz[] case. don't append lone empty param.
if(params_code)
P($$, params_code); // filling method_frame.store_params
O($$, OP_CALL); // method_frame=pop; ncontext=pop; call(ncontext,method_frame) stack: value
};
call_name: name_without_curly_rdive;
store_params: store_param | store_params store_param { $$=$1; P($$, $2) };
store_param:
store_square_param
| store_round_param
| store_curly_param
;
store_square_param: '[' store_code_param_parts ']' {$$=$2};
store_round_param: '(' store_expr_param_parts ')' {$$=$2};
store_curly_param: '{' store_curly_param_parts '}' {$$=$2};
store_code_param_parts:
store_code_param_part
| store_code_param_parts ';' store_code_param_part { $$=$1; P($$, $3) }
;
store_expr_param_parts:
store_expr_param_part
| store_expr_param_parts ';' store_expr_param_part { $$=$1; P($$, $3) }
;
store_curly_param_parts:
store_curly_param_part
| store_curly_param_parts ';' store_curly_param_part { $$=$1; P($$, $3) }
;
store_code_param_part: code_param_value {
$$=$1;
O($$, OP_STORE_PARAM);
};
store_expr_param_part: write_expr_value {
$$=N(POOL);
PEA($$, $1);
};
store_curly_param_part: maybe_codes {
$$=N(POOL);
PCA($$, $1);
};
code_param_value:
void_value /* optimized [;...] case */
| STRING /* optimized [STRING] case */
| constructor_code_value /* [something complex] */
;
write_expr_value: expr_value {
$$=$1;
O($$, OP_WRITE_EXPR_RESULT);
};
/* name */
name_expr_dive_code: name_expr_value | name_path name_expr_value { $$=$1; P($$, $2) };
name_path: name_step | name_path name_step { $$=$1; P($$, $2) };
name_step: name_advance1 '.';
name_advance1: name_expr_value {
// we know that name_advance1 not called from ^xxx context
// so we'll not check for operator call possibility as we do in name_advance2
/* stack: context */
$$=$1; /* stack: context,name */
O($$, OP_GET_ELEMENT); /* name=pop; context=pop; stack: context.get_element(name) */
};
name_advance2: name_expr_value {
/* stack: context */
$$=$1; /* stack: context,name */
O($$, OP_GET_ELEMENT); /* name=pop; context=pop; stack: context.get_element(name) */
}
| STRING BOGUS
;
name_expr_value:
STRING /* subname_is_const */
| name_expr_subvar_value /* $subname_is_var_value */
| name_expr_with_subvar_value /* xxx$part_of_subname_is_var_value */
| name_square_code_value /* [codes] */
;
name_expr_subvar_value: '$' subvar_ref_name_rdive {
$$=$2;
O($$, OP_GET_ELEMENT);
};
name_expr_with_subvar_value: STRING subvar_get_writes {
$$=N(POOL);
O($$, OP_CREATE_EWPOOL);
P($$, $1);
O($$, OP_WRITE_VALUE);
P($$, $2);
O($$, OP_REDUCE_EWPOOL);
};
name_square_code_value: '[' codes ']' {
$$=N(POOL);
O($$, OP_CREATE_EWPOOL);
P($$, $2);
O($$, OP_REDUCE_EWPOOL);
};
subvar_ref_name_rdive: STRING {
$$=N(POOL);
O($$, OP_WITH_READ);
P($$, $1);
};
subvar_get_writes: subvar__get_write | subvar_get_writes subvar__get_write { $$=$1; P($$, $2) };
subvar__get_write: '$' subvar_ref_name_rdive {
$$=$2;
O($$, OP_GET_ELEMENT__WRITE);
};
class_prefix:
class_static_prefix
| class_constructor_prefix
;
class_static_prefix: STRING ':' {
$$=$1; // stack: class name string
O($$, OP_GET_CLASS);
};
class_constructor_prefix: class_static_prefix ':' {
$$=$1;
if(!PC.object_constructor_allowed) {
strcpy(PC.error, ":: not allowed here");
YYERROR;
}
O($$, OP_PREPARE_TO_CONSTRUCT_OBJECT);
};
/* expr */
expr_value: expr {
if(($$=$1)->size()==2) // only one string literal in there?
change_string_literal_to_double_literal($$); // make that string literal Double
};
expr:
STRING
| get_value
| call_value
| '"' string_inside_quotes_value '"' { $$ = $2; }
| '\'' string_inside_quotes_value '\'' { $$ = $2; }
| '(' expr ')' { $$ = $2; }
/* stack: operand // stack: @operand */
| '-' expr %prec NEG { $$=$2; O($$, OP_NEG) }
| '+' expr %prec NEG { $$=$2 }
| '~' expr { $$=$2; O($$, OP_INV) }
| '!' expr { $$=$2; O($$, OP_NOT) }
| "def" expr { $$=$2; O($$, OP_DEF) }
| "in" expr { $$=$2; O($$, OP_IN) }
| "-f" expr { $$=$2; O($$, OP_FEXISTS) }
| "-d" expr { $$=$2; O($$, OP_DEXISTS) }
/* stack: a,b // stack: a@b */
| expr '-' expr { $$=$1; P($$, $3); O($$, OP_SUB) }
| expr '+' expr { $$=$1; P($$, $3); O($$, OP_ADD) }
| expr '*' expr { $$=$1; P($$, $3); O($$, OP_MUL) }
| expr '/' expr { $$=$1; P($$, $3); O($$, OP_DIV) }
| expr '%' expr { $$=$1; P($$, $3); O($$, OP_MOD) }
| expr '\\' expr { $$=$1; P($$, $3); O($$, OP_INTDIV) }
| expr '&' expr { $$=$1; P($$, $3); O($$, OP_BIN_AND) }
| expr '|' expr { $$=$1; P($$, $3); O($$, OP_BIN_OR) }
| expr '#' expr { $$=$1; P($$, $3); O($$, OP_BIN_XOR) }
| expr "&&" expr { $$=$1; PNC($$, $3); O($$, OP_LOG_AND) }
| expr "||" expr { $$=$1; PNC($$, $3); O($$, OP_LOG_OR) }
| expr "##" expr { $$=$1; P($$, $3); O($$, OP_LOG_XOR) }
| expr '<' expr { $$=$1; P($$, $3); O($$, OP_NUM_LT) }
| expr '>' expr { $$=$1; P($$, $3); O($$, OP_NUM_GT) }
| expr "<=" expr { $$=$1; P($$, $3); O($$, OP_NUM_LE) }
| expr ">=" expr { $$=$1; P($$, $3); O($$, OP_NUM_GE) }
| expr "==" expr { $$=$1; P($$, $3); O($$, OP_NUM_EQ) }
| expr "!=" expr { $$=$1; P($$, $3); O($$, OP_NUM_NE) }
| expr "lt" expr { $$=$1; P($$, $3); O($$, OP_STR_LT) }
| expr "gt" expr { $$=$1; P($$, $3); O($$, OP_STR_GT) }
| expr "le" expr { $$=$1; P($$, $3); O($$, OP_STR_LE) }
| expr "ge" expr { $$=$1; P($$, $3); O($$, OP_STR_GE) }
| expr "eq" expr { $$=$1; P($$, $3); O($$, OP_STR_EQ) }
| expr "ne" expr { $$=$1; P($$, $3); O($$, OP_STR_NE) }
| expr "is" expr { $$=$1; P($$, $3); O($$, OP_IS) }
;
string_inside_quotes_value: maybe_codes {
$$=N(POOL);
O($$, OP_CREATE_SWPOOL); /* stack: empty write context */
P($$, $1); /* some code that writes to that context */
O($$, OP_REDUCE_SWPOOL); /* context=pop; stack: context.get_string() */
};
/* basics */
write_string: STRING {
// optimized from OP_STRING+OP_WRITE_VALUE to OP_STRING__WRITE
change_string_literal_to_write_string_literal($$=$1)
};
void_value: /* empty */ { $$=VL(NEW VVoid(POOL)) };
empty: /* empty */ { $$=N(POOL) };
%%
#endif
/*
000$111(2222)00
000$111{3333}00
$,^: push,=0
1:( { break=pop
2:( ) pop
3:{ } pop
000^111(2222)4444{33333}4000
$,^: push,=0
1:( { break=pop
2:( )=4
3:{ }=4
4:[^({]=pop
*/
static int yylex(YYSTYPE *lvalp, void *pc) {
#define lexical_brackets_nestage PC.brackets_nestages[PC.ls_sp]
#define RC {result=c; goto break2; }
register int c;
int result;
if(PC.pending_state) {
result=PC.pending_state;
PC.pending_state=0;
return result;
}
const char *begin=PC.source;
const char *end;
int begin_line=PC.line;
int skip_analized=0;
while(true) {
c=*(end=(PC.source++));
// fprintf(stderr, "\nchar: %c %02X; nestage: %d, sp=%d", c, c, lexical_brackets_nestage, PC.sp);
if(c=='\n') {
PC.line++;
PC.col=0;
} else
PC.col++;
if(c=='@' && PC.col==0+1) {
if(PC.ls==LS_DEF_SPECIAL_BODY) {
// @SPECIAL
// ...
// @<here =
pop_LS(PC); // exiting from LS_DEF_SPECIAL_BODY state
} // continuing checks
if(PC.ls==LS_USER) {
push_LS(PC, LS_DEF_NAME);
RC;
} else // @ in first column inside some code [when could that be?]
result=BAD_METHOD_DECL_START;
goto break2;
} else if(c=='^')
switch(PC.ls) {
case LS_EXPRESSION_VAR_NAME_WITH_COLON:
case LS_EXPRESSION_VAR_NAME_WITHOUT_COLON:
case LS_VAR_NAME_SIMPLE_WITH_COLON:
case LS_VAR_NAME_SIMPLE_WITHOUT_COLON:
case LS_VAR_NAME_CURLY:
case LS_METHOD_NAME:
case LS_COMMENT:
case LS_DEF_COMMENT:
// no literals in names, please
break;
default:
switch(*PC.source) {
// ^escaping some punctuators
case '^': case '$': case ';':
case '(': case ')':
case '[': case ']':
case '{': case '}':
case '"': case ':':
if(end!=begin) {
// append piece till ^
PC.string->APPEND_CLEAN(begin, end-begin, PC.file, begin_line);
}
// reset piece 'begin' position & line
end=begin=PC.source; // ^
begin_line=PC.line;
if(PC.ls==LS_METHOD_AFTER) {
pop_LS(PC);
result=EON;
skip_analized=-1; // return to ^ afterwards to assure it's literality
goto break2;
} else {
// skip over _ after ^
PC.source++; PC.col++;
// skip analysis = forced literal
continue;
}
// converting ^#HH into char(hex(HH))
case '#':
if(end!=begin) {
// append piece till ^
PC.string->APPEND_CLEAN(begin, end-begin, PC.file, begin_line);
}
// #HH ?
if(PC.source[0]=='#' && PC.source[1] && PC.source[2]) {
char *hex=(char *)POOL.malloc(1);
hex[0]=
hex_value[(unsigned char)PC.source[1]]*0x10+
hex_value[(unsigned char)PC.source[2]];
if(hex[0]==0) {
result=BAD_HEX_LITERAL;
goto break2; // wrong hex value[no ^#00 chars allowed]: bail out
}
// append char(hex(HH))
PC.string->APPEND_CLEAN(hex, 1, PC.file, begin_line);
// skip over ^#HH
PC.source+=3;
PC.col+=3;
// reset piece 'begin' position & line
begin=PC.source; // ^
begin_line=PC.line;
continue;
}
break;
}
break;
}
// #comment start skipping
if(c=='#' && PC.col==1) {
if(end!=begin) {
// append piece till #
PC.string->APPEND_CLEAN(begin, end-begin, PC.file, begin_line);
}
// fall into COMMENT lexical state [wait for \n]
push_LS(PC, LS_COMMENT);
continue;
}
switch(PC.ls) {
// USER'S = NOT OURS
case LS_USER:
case LS_NAME_SQUARE_PART: // name.[here].xxx
if(PC.trim_bof)
switch(c) {
case '\n': case ' ': case '\t':
begin=PC.source;
begin_line=PC.line;
continue; // skip it
default:
PC.trim_bof=false;
}
switch(c) {
case '$':
push_LS(PC, LS_VAR_NAME_SIMPLE_WITH_COLON);
RC;
case '^':
push_LS(PC, LS_METHOD_NAME);
RC;
case ']':
if(PC.ls==LS_NAME_SQUARE_PART)
if(--lexical_brackets_nestage==0) {// $name.[co<]?>de<]?>
pop_LS(PC); // $name.[co<]>de<]!>
RC;
}
break;
case '[': // $name.[co<[>de]
if(PC.ls==LS_NAME_SQUARE_PART)
lexical_brackets_nestage++;
break;
}
break;
// #COMMENT
case LS_COMMENT:
if(c=='\n') {
// skip comment
begin=PC.source;
begin_line=PC.line;
pop_LS(PC);
continue;
}
break;
// STRING IN EXPRESSION
case LS_EXPRESSION_STRING_QUOTED:
case LS_EXPRESSION_STRING_APOSTROFED:
switch(c) {
case '"':
case '\'':
if(
PC.ls == LS_EXPRESSION_STRING_QUOTED && c=='"' ||
PC.ls == LS_EXPRESSION_STRING_APOSTROFED && c=='\'') {
pop_LS(PC); //"abc". | 'abc'.
RC;
}
break;
case '$':
push_LS(PC, LS_VAR_NAME_SIMPLE_WITH_COLON);
RC;
case '^':
push_LS(PC, LS_METHOD_NAME);
RC;
}
break;
// METHOD DEFINITION
case LS_DEF_NAME:
switch(c) {
case '[':
PC.ls=LS_DEF_PARAMS;
RC;
case '\n':
PC.ls=LS_DEF_SPECIAL_BODY;
RC;
}
break;
case LS_DEF_PARAMS:
switch(c) {
case ';':
RC;
case ']':
PC.ls=*PC.source=='['?LS_DEF_LOCALS:LS_DEF_COMMENT;
RC;
case '\n': // wrong. bailing out
pop_LS(PC);
RC;
}
break;
case LS_DEF_LOCALS:
switch(c) {
case '[':
case ';':
RC;
case ']':
PC.ls=LS_DEF_COMMENT;
RC;
case '\n': // wrong. bailing out
pop_LS(PC);
RC;
}
break;
case LS_DEF_COMMENT:
if(c=='\n') {
pop_LS(PC);
RC;
}
break;
case LS_DEF_SPECIAL_BODY:
if(c=='\n')
RC;
break;
// (EXPRESSION)
case LS_VAR_ROUND:
case LS_METHOD_ROUND:
switch(c) {
case ')':
if(--lexical_brackets_nestage==0)
if(PC.ls==LS_METHOD_ROUND) // method round param ended
PC.ls=LS_METHOD_AFTER; // look for method end
else // PC.ls==LS_VAR_ROUND // variable constructor ended
pop_LS(PC); // return to normal life
RC;
case '$':
push_LS(PC, LS_EXPRESSION_VAR_NAME_WITH_COLON);
RC;
case '^':
push_LS(PC, LS_METHOD_NAME);
RC;
case '(':
lexical_brackets_nestage++;
RC;
case '-':
switch(*PC.source) {
case 'f': // -f
skip_analized=1;
result=FEXISTS;
goto break2;
case 'd': // -d
skip_analized=1;
result=DEXISTS;
goto break2;
default:
result=c;
goto break2;
}
goto break2;
case '+': case '*': case '/': case '%': case '\\':
case '~':
case ';':
RC;
case '&': case '|': case '#':
if(*PC.source==c) { // && ||
result=c=='#'?LXOR:c=='&'?LAND:LOR;
skip_analized=1;
} else
result=c;
goto break2;
case '<': case '>': case '=': case '!':
if(*PC.source=='=') { // <= >= == !=
skip_analized=1;
switch(c) {
case '<': result=NLE; break;
case '>': result=NGE; break;
case '=': result=NEQ; break;
case '!': result=NNE; break;
}
} else
result=c;
goto break2;
case '"':
push_LS(PC, LS_EXPRESSION_STRING_QUOTED);
RC;
case '\'':
push_LS(PC, LS_EXPRESSION_STRING_APOSTROFED);
RC;
case 'l': case 'g': case 'e': case 'n':
if(end==begin) // right after whitespace
if(isspace(PC.source[1])) {
switch(*PC.source) {
// case '?': // ok [and bad cases, yacc would bark at them]
case 't': // lt gt [et nt]
result=c=='l'?SLT:c=='g'?SGT:BAD_STRING_COMPARISON_OPERATOR;
skip_analized=1;
goto break2;
case 'e': // le ge ne [ee]
result=c=='l'?SLE:c=='g'?SGE:c=='n'?SNE:BAD_STRING_COMPARISON_OPERATOR;
skip_analized=1;
goto break2;
case 'q': // eq [lq gq nq]
result=c=='e'?SEQ:BAD_STRING_COMPARISON_OPERATOR;
skip_analized=1;
goto break2;
}
}
break;
case 'i':
if(end==begin) // right after whitespace
if(isspace(PC.source[1])) {
switch(PC.source[0]) {
case 'n': // in
skip_analized=1;
result=IN;
goto break2;
case 's': // is
skip_analized=1;
result=IS;
goto break2;
}
}
break;
case 'd':
if(end==begin) // right after whitespace
if(PC.source[0]=='e' && PC.source[1]=='f') { // def
skip_analized=2;
result=DEF;
goto break2;
}
break;
case ' ': case '\t': case '\n':
if(end!=begin) { // there were a string after previous operator?
result=0; // return that string
goto break2;
}
// that's a leading|traling space or after-operator-space
// ignoring it
// reset piece 'begin' position & line
begin=PC.source; // after whitespace char
begin_line=PC.line;
continue;
}
break;
// VARIABLE GET/PUT/WITH
case LS_VAR_NAME_SIMPLE_WITH_COLON:
case LS_VAR_NAME_SIMPLE_WITHOUT_COLON:
case LS_EXPRESSION_VAR_NAME_WITH_COLON:
case LS_EXPRESSION_VAR_NAME_WITHOUT_COLON:
if(
PC.ls==LS_EXPRESSION_VAR_NAME_WITH_COLON ||
PC.ls==LS_EXPRESSION_VAR_NAME_WITHOUT_COLON) {
// name in expr ends also before binary operators
switch(c) {
case '-':
pop_LS(PC);
PC.source--; if(--PC.col<0) { PC.line--; PC.col=-1; }
result=EON;
goto break2;
}
}
if(
PC.ls==LS_VAR_NAME_SIMPLE_WITHOUT_COLON ||
PC.ls==LS_EXPRESSION_VAR_NAME_WITHOUT_COLON) {
// name already has ':', stop before next
switch(c) {
case ':':
pop_LS(PC);
PC.source--; if(--PC.col<0) { PC.line--; PC.col=-1; }
result=EON;
goto break2;
}
}
switch(c) {
case 0:
case ' ': case '\t': case '\n':
case ';':
case ']': case '}': case ')':
case '"': case '\'':
case '<': case '>': // these stand for HTML brackets AND expression binary ops
case '+': case '*': case '/': case '%':
case '&': case '|':
case '=': case '!':
// common delimiters
case ',': case '?':
// before call
case '^':
pop_LS(PC);
PC.source--; if(--PC.col<0) { PC.line--; PC.col=-1; }
result=EON;
goto break2;
case '[':
// $name.<[>code]
if(PC.col>1/*not first column*/ && (
end[-1]=='$'/*was start of get*/ ||
end[-1]==':'/*was class name delim */ ||
end[-1]=='.'/*was name delim */
)) {
push_LS(PC, LS_NAME_SQUARE_PART);
lexical_brackets_nestage=1;
RC;
}
PC.ls=LS_VAR_SQUARE;
lexical_brackets_nestage=1;
RC;
case '{':
if(begin==end) { // ${name}, no need of EON, switching LS
PC.ls=LS_VAR_NAME_CURLY;
} else {
PC.ls=LS_VAR_CURLY;
lexical_brackets_nestage=1;
}
RC;
case '(':
PC.ls=LS_VAR_ROUND;
lexical_brackets_nestage=1;
RC;
case '.': // name part delim
case '$': // name part subvar
case ':': // class<:>name
// go to _WITHOUT_COLON state variant...
if(PC.ls==LS_VAR_NAME_SIMPLE_WITH_COLON)
PC.ls=LS_VAR_NAME_SIMPLE_WITHOUT_COLON;
else if(PC.ls==LS_EXPRESSION_VAR_NAME_WITH_COLON)
PC.ls=LS_EXPRESSION_VAR_NAME_WITHOUT_COLON;
// ...stop before next ':'
RC;
}
break;
case LS_VAR_NAME_CURLY:
switch(c) {
case '[':
// ${name.<[>code]}
push_LS(PC, LS_NAME_SQUARE_PART);
lexical_brackets_nestage=1;
RC;
case '}': // ${name} finished, restoring LS
pop_LS(PC);
RC;
case '.': // name part delim
case '$': // name part subvar
case ':': // ':name' or 'class:name'
RC;
}
break;
case LS_VAR_SQUARE:
switch(c) {
case '$':
push_LS(PC, LS_VAR_NAME_SIMPLE_WITH_COLON);
RC;
case '^':
push_LS(PC, LS_METHOD_NAME);
RC;
case ']':
if(--lexical_brackets_nestage==0) {
pop_LS(PC);
RC;
}
break;
case ';': // operator_or_fmt;value delim
RC;
case '[':
lexical_brackets_nestage++;
break;
}
break;
case LS_VAR_CURLY:
switch(c) {
case '$':
push_LS(PC, LS_VAR_NAME_SIMPLE_WITH_COLON);
RC;
case '^':
push_LS(PC, LS_METHOD_NAME);
RC;
case '}':
if(--lexical_brackets_nestage==0) {
pop_LS(PC);
RC;
}
break;
case '{':
lexical_brackets_nestage++;
break;
}
break;
// METHOD CALL
case LS_METHOD_NAME:
switch(c) {
case '[':
// ^name.<[>code].xxx
if(PC.col>1/*not first column*/ && (
end[-1]=='^'/*was start of call*/ || // never, ^[ is literal...
end[-1]==':'/*was class name delim */ ||
end[-1]=='.'/*was name delim */
)) {
push_LS(PC, LS_NAME_SQUARE_PART);
lexical_brackets_nestage=1;
RC;
}
PC.ls=LS_METHOD_SQUARE;
lexical_brackets_nestage=1;
RC;
case '{':
PC.ls=LS_METHOD_CURLY;
lexical_brackets_nestage=1;
RC;
case '(':
PC.ls=LS_METHOD_ROUND;
lexical_brackets_nestage=1;
RC;
case '.': // name part delim
case '$': // name part subvar
case ':': // ':name' or 'class:name'
case '^': // ^abc^xxx wrong. bailing out
case ']': case '}': case ')': // ^abc]}) wrong. bailing out
RC;
}
break;
case LS_METHOD_SQUARE:
switch(c) {
case '$':
push_LS(PC, LS_VAR_NAME_SIMPLE_WITH_COLON);
RC;
case '^':
push_LS(PC, LS_METHOD_NAME);
RC;
case ';': // param delim
RC;
case ']':
if(--lexical_brackets_nestage==0) {
PC.ls=LS_METHOD_AFTER;
RC;
}
break;
case '[':
lexical_brackets_nestage++;
break;
}
break;
case LS_METHOD_CURLY:
switch(c) {
case '$':
push_LS(PC, LS_VAR_NAME_SIMPLE_WITH_COLON);
RC;
case '^':
push_LS(PC, LS_METHOD_NAME);
RC;
case ';': // param delim
RC;
case '}':
if(--lexical_brackets_nestage==0) {
PC.ls=LS_METHOD_AFTER;
RC;
}
break;
case '{':
lexical_brackets_nestage++;
break;
}
break;
case LS_METHOD_AFTER:
if(c=='[') {/* ][ }[ )[ */
PC.ls=LS_METHOD_SQUARE;
lexical_brackets_nestage=1;
RC;
}
if(c=='{') {/* ]{ }{ ){ */
PC.ls=LS_METHOD_CURLY;
lexical_brackets_nestage=1;
RC;
}
if(c=='(') {/* ]( }( )( */
PC.ls=LS_METHOD_ROUND;
lexical_brackets_nestage=1;
RC;
}
pop_LS(PC);
PC.source--; if(--PC.col<0) { PC.line--; PC.col=-1; }
result=EON;
goto break2;
}
if(c==0) {
result=-1;
break;
}
}
break2:
if(end!=begin) { // there is last piece?
if((c=='@' || c==0) && end[-1]=='\n') { // we are before LS_DEF_NAME or EOF?
// strip last \n
end--;
if(end!=begin && end[-1]=='\n') // allow one empty line before LS_DEF_NAME
end--;
}
if(end!=begin && PC.ls!=LS_COMMENT) { // last piece still alive and not comment?
// append it
PC.string->APPEND_CLEAN(begin, end-begin, PC.file, begin_line/*, start_col*/);
}
}
if(PC.string->size()) { // something accumulated?
// create STRING value: array of OP_VALUE+vstring
*lvalp=VL(NEW VString(*PC.string));
// new pieces storage
PC.string=NEW String(POOL);
// make current result be pending for next call, return STRING for now
PC.pending_state=result; result=STRING;
}
if(skip_analized) {
PC.source+=skip_analized; PC.col+=skip_analized;
}
return result;
}
static int real_yyerror(parse_control *pc, char *s) { // Called by yyparse on error
strncpy(PC.error, s, MAX_STRING);
return 1;
}
static void yyprint(FILE *file, int type, YYSTYPE value) {
if(type==STRING)
fprintf(file, " \"%s\"", LA2S(value)->cstr());
}
E-mail: