forked from xxq250/Nasal-Interpreter
1255 lines
36 KiB
C++
1255 lines
36 KiB
C++
#ifndef __NASAL_PARSE_H__
|
|
#define __NAsAL_PARSE_H__
|
|
|
|
/*
|
|
_,,,_
|
|
.' `'.
|
|
/ ____ \ Fucking Nasal Parser
|
|
| .-'_ _\/ /
|
|
\_/ a a| /
|
|
(,` \ | .----.
|
|
| -' | /| '--.
|
|
\ '= / || ]| `-.
|
|
/`-.__.' || ]| ::|
|
|
.-'`-.__ \__ || ]| ::|
|
|
/ `` `. || ]| ::|
|
|
_ | \ \ \ \| ]| .-'
|
|
/ \| \ | \ L.__ .--'(
|
|
| |\ `. | \ ,---|_ \---------,
|
|
| | '. './\ \/ .--._|=- |_ /|
|
|
| \ '. `'.'. /`\/ .-' '. / |
|
|
| | `'. `;-:-;`)| |-./ |
|
|
| /_ `'--./_ ` )/'-------------')/) |
|
|
\ | `""""----"`\//`""`/,===..'`````````/ ( |
|
|
| | / `---` `===' / ) |
|
|
/ \ / / ( |
|
|
| '------. |'--------------------'| ) |
|
|
\ `-| | / |
|
|
`--...,______| | ( |
|
|
| | | | ) ,|
|
|
| | | | ( /||
|
|
| | | | )/ `"
|
|
/ \ | | (/
|
|
.' /I\ '.| | /)
|
|
.-'_.'/ \'. | | /
|
|
``` `"""` `| .-------------------.||
|
|
`"` `"`
|
|
*/
|
|
|
|
class nasal_parse
|
|
{
|
|
#define error_line (tok_list[ptr>=tok_list_size? tok_list_size-1:ptr].line)
|
|
#define is_call(type) ((type)==tok_lcurve || (type)==tok_lbracket || (type)==tok_dot)
|
|
private:
|
|
int tok_list_size;
|
|
int ptr;
|
|
int error;
|
|
nasal_ast root;
|
|
std::vector<token> tok_list;
|
|
int in_function; // count when generating function block,used to check return-expression
|
|
int in_loop; // count when generating loop block,used to check break/continue-expression
|
|
void reset();
|
|
void die(int,std::string);
|
|
bool check_multi_def();
|
|
bool check_multi_scalar();
|
|
bool check_function_end(nasal_ast&);
|
|
bool check_special_call();
|
|
bool need_semi_check(nasal_ast&);
|
|
void check_memory_reachable(nasal_ast&);
|
|
nasal_ast null_node_gen();
|
|
nasal_ast nil_gen();
|
|
nasal_ast num_gen();
|
|
nasal_ast str_gen();
|
|
nasal_ast id_gen();
|
|
nasal_ast vec_gen();
|
|
nasal_ast hash_gen();
|
|
nasal_ast hmem_gen(); // hash member
|
|
nasal_ast func_gen();
|
|
nasal_ast args_gen();
|
|
nasal_ast expr();
|
|
nasal_ast exprs_gen();
|
|
nasal_ast calc();
|
|
nasal_ast or_expr();
|
|
nasal_ast and_expr();
|
|
nasal_ast cmp_expr();
|
|
nasal_ast additive_expr();
|
|
nasal_ast multive_expr();
|
|
nasal_ast unary();
|
|
nasal_ast scalar();
|
|
nasal_ast call_scalar();
|
|
nasal_ast call_hash();
|
|
nasal_ast call_vec();
|
|
nasal_ast call_func();
|
|
nasal_ast subvec();
|
|
nasal_ast definition();
|
|
nasal_ast var_incurve_def();
|
|
nasal_ast var_outcurve_def();
|
|
nasal_ast multi_id();
|
|
nasal_ast multi_scalar(bool);
|
|
nasal_ast multi_assgin();
|
|
nasal_ast loop();
|
|
nasal_ast while_loop();
|
|
nasal_ast for_loop();
|
|
nasal_ast forei_loop();
|
|
nasal_ast new_iter_gen();
|
|
nasal_ast conditional();
|
|
nasal_ast continue_expr();
|
|
nasal_ast break_expr();
|
|
nasal_ast return_expr();
|
|
public:
|
|
int get_error();
|
|
void set_toklist(std::vector<token>&);
|
|
void main_process();
|
|
nasal_ast& get_root();
|
|
};
|
|
|
|
int nasal_parse::get_error()
|
|
{
|
|
return error;
|
|
}
|
|
|
|
void nasal_parse::set_toklist(std::vector<token>& toks)
|
|
{
|
|
tok_list=toks;
|
|
tok_list_size=tok_list.size();
|
|
return;
|
|
}
|
|
|
|
void nasal_parse::main_process()
|
|
{
|
|
reset();
|
|
root.set_line(1);
|
|
root.set_type(ast_root);
|
|
while(ptr<tok_list_size)
|
|
{
|
|
root.add_child(expr());
|
|
if(++ptr>=tok_list_size)
|
|
break;
|
|
if(tok_list[ptr].type==tok_semi)
|
|
++ptr;
|
|
else if(need_semi_check(root.get_children().back()))
|
|
{
|
|
// the last expression can be recognized without semi
|
|
if(ptr<tok_list_size)
|
|
die(error_line,"expected \";\"");
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
nasal_ast& nasal_parse::get_root()
|
|
{
|
|
return root;
|
|
}
|
|
|
|
void nasal_parse::reset()
|
|
{
|
|
ptr=in_function=in_loop=error=0;
|
|
root.clear();
|
|
return;
|
|
}
|
|
|
|
void nasal_parse::die(int line,std::string info)
|
|
{
|
|
++error;
|
|
std::cout<<">> [parse] line "<<line<<": "<<info<<".\n";
|
|
while(ptr<tok_list_size)// panic
|
|
{
|
|
if(tok_list[ptr].type==tok_semi)
|
|
{
|
|
--ptr;
|
|
return;
|
|
}
|
|
++ptr;
|
|
}
|
|
return;
|
|
}
|
|
|
|
bool nasal_parse::check_multi_def()
|
|
{
|
|
return ptr+1<tok_list_size && tok_list[ptr+1].type==tok_var;
|
|
}
|
|
|
|
bool nasal_parse::check_multi_scalar()
|
|
{
|
|
int check_ptr=ptr,curve_cnt=1,bracket_cnt=0,brace_cnt=0;
|
|
while(++check_ptr<tok_list_size && curve_cnt)
|
|
{
|
|
switch(tok_list[check_ptr].type)
|
|
{
|
|
case tok_lcurve: ++curve_cnt; break;
|
|
case tok_lbracket: ++bracket_cnt;break;
|
|
case tok_lbrace: ++brace_cnt; break;
|
|
case tok_rcurve: --curve_cnt; break;
|
|
case tok_rbracket:--bracket_cnt;break;
|
|
case tok_rbrace: --brace_cnt; break;
|
|
}
|
|
if(curve_cnt==1 && !bracket_cnt && !brace_cnt && tok_list[check_ptr].type==tok_comma)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool nasal_parse::check_function_end(nasal_ast& node)
|
|
{
|
|
int type=node.get_type();
|
|
if(type==ast_func)
|
|
return true;
|
|
else if(type==ast_num || type==ast_id || type==ast_str || type==ast_nil || type==ast_vec || type==ast_hash)
|
|
return false;
|
|
if(
|
|
node.get_children().empty() ||
|
|
(
|
|
type!=ast_definition &&
|
|
type!=ast_equal &&
|
|
type!=ast_add_equal &&
|
|
type!=ast_sub_equal &&
|
|
type!=ast_mult_equal &&
|
|
type!=ast_div_equal &&
|
|
type!=ast_link_equal
|
|
)
|
|
)
|
|
return false;
|
|
else
|
|
return check_function_end(node.get_children().back());
|
|
return false;
|
|
}
|
|
|
|
bool nasal_parse::check_special_call()
|
|
{
|
|
// special call means like this:
|
|
// function_name(a:1,b:2,c:3);
|
|
int check_ptr=ptr,curve_cnt=1,bracket_cnt=0,brace_cnt=0,ques_cnt=0;
|
|
while(++check_ptr<tok_list_size && curve_cnt)
|
|
{
|
|
switch(tok_list[check_ptr].type)
|
|
{
|
|
case tok_lcurve: ++curve_cnt; break;
|
|
case tok_lbracket: ++bracket_cnt;break;
|
|
case tok_lbrace: ++brace_cnt; break;
|
|
case tok_rcurve: --curve_cnt; break;
|
|
case tok_rbracket: --bracket_cnt;break;
|
|
case tok_rbrace: --brace_cnt; break;
|
|
}
|
|
// m?1:0 will be recognized as normal parameter
|
|
if(curve_cnt==1 && !bracket_cnt && !brace_cnt && tok_list[check_ptr].type==tok_quesmark)
|
|
return false;
|
|
if(curve_cnt==1 && !bracket_cnt && !brace_cnt && tok_list[check_ptr].type==tok_colon)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool nasal_parse::need_semi_check(nasal_ast& node)
|
|
{
|
|
int type=node.get_type();
|
|
if(type==ast_for || type==ast_foreach || type==ast_forindex || type==ast_while || type==ast_conditional)
|
|
return false;
|
|
return !check_function_end(node);
|
|
}
|
|
|
|
void nasal_parse::check_memory_reachable(nasal_ast& node)
|
|
{
|
|
if(node.get_type()==ast_call)
|
|
{
|
|
if(node.get_children()[0].get_type()!=ast_id)
|
|
die(node.get_line(),"cannot get the memory of a temporary data");
|
|
int size=node.get_children().size();
|
|
for(int i=0;i<size;++i)
|
|
{
|
|
nasal_ast& tmp=node.get_children()[i];
|
|
if(tmp.get_type()==ast_call_func)
|
|
die(tmp.get_line(),"cannot get the memory of function-returned value");
|
|
if(tmp.get_type()==ast_call_vec && (tmp.get_children().size()>1 || tmp.get_children()[0].get_type()==ast_subvec))
|
|
die(tmp.get_line(),"cannot get the memory in temporary sliced vector");
|
|
}
|
|
}
|
|
else if(node.get_type()!=ast_id)
|
|
die(node.get_line(),"cannot use calculation as the memory of scalar");
|
|
return;
|
|
}
|
|
|
|
nasal_ast nasal_parse::null_node_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_null);
|
|
return node;
|
|
}
|
|
|
|
nasal_ast nasal_parse::nil_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_nil);
|
|
return node;
|
|
}
|
|
|
|
nasal_ast nasal_parse::num_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_num);
|
|
node.set_num(trans_string_to_number(tok_list[ptr].str));
|
|
return node;
|
|
}
|
|
|
|
nasal_ast nasal_parse::str_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_str);
|
|
node.set_str(tok_list[ptr].str);
|
|
return node;
|
|
}
|
|
|
|
nasal_ast nasal_parse::id_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_id);
|
|
node.set_str(tok_list[ptr].str);
|
|
return node;
|
|
}
|
|
|
|
nasal_ast nasal_parse::vec_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_vec);
|
|
++ptr;
|
|
while(ptr<tok_list_size && tok_list[ptr].type!=tok_rbracket)
|
|
{
|
|
node.add_child(calc());
|
|
if(++ptr>=tok_list_size)
|
|
break;
|
|
if(tok_list[ptr].type==tok_comma)
|
|
++ptr;
|
|
else if(tok_list[ptr].type!=tok_rbracket)
|
|
break;
|
|
}
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rbracket)
|
|
die(error_line,"expected \"]\"");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::hash_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_hash);
|
|
++ptr;
|
|
while (ptr<tok_list_size && tok_list[ptr].type!=tok_rbrace)
|
|
{
|
|
node.add_child(hmem_gen());
|
|
if(++ptr>=tok_list_size)
|
|
break;
|
|
if(tok_list[ptr].type==tok_comma)
|
|
++ptr;
|
|
else if(tok_list[ptr].type!=tok_rbrace)
|
|
break;
|
|
}
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rbrace)
|
|
die(error_line,"expected \"}\"");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::hmem_gen()
|
|
{
|
|
if(ptr>=tok_list_size || (tok_list[ptr].type!=tok_id && tok_list[ptr].type!=tok_str))
|
|
{
|
|
die(error_line,"expected identifier/string");
|
|
nasal_ast nullnode;
|
|
return nullnode;
|
|
}
|
|
nasal_ast node(tok_list[ptr].line,ast_hashmember);
|
|
node.add_child(tok_list[ptr].type==tok_id?id_gen():str_gen());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_colon)
|
|
{
|
|
die(error_line,"expected \":\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
node.add_child(calc());
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::func_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_func);
|
|
if(++ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected argument(s)/expression block");
|
|
return node;
|
|
}
|
|
if(tok_list[ptr].type==tok_lcurve)
|
|
{
|
|
node.add_child(args_gen());
|
|
++ptr;
|
|
}
|
|
else
|
|
{
|
|
nasal_ast null_argument_list;
|
|
node.add_child(null_argument_list);
|
|
}
|
|
node.add_child(exprs_gen());
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::args_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_args);
|
|
++ptr;
|
|
while(ptr<tok_list_size && tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
nasal_ast tmp;
|
|
if(tok_list[ptr].type!=tok_id)
|
|
{
|
|
die(error_line,"expected identifier");
|
|
return node;
|
|
}
|
|
tmp=id_gen();
|
|
if(++ptr<tok_list_size && (tok_list[ptr].type==tok_eq || tok_list[ptr].type==tok_ellipsis))
|
|
{
|
|
nasal_ast special_arg(tok_list[ptr].line);
|
|
if(tok_list[ptr].type==tok_eq)
|
|
{
|
|
special_arg.add_child(tmp);
|
|
++ptr;
|
|
special_arg.add_child(calc());
|
|
special_arg.set_type(ast_default_arg);
|
|
}
|
|
else
|
|
{
|
|
special_arg=tmp;
|
|
special_arg.set_type(ast_dynamic_id);
|
|
}
|
|
node.add_child(special_arg);
|
|
}
|
|
else
|
|
{
|
|
--ptr;
|
|
node.add_child(tmp);
|
|
}
|
|
if(++ptr>=tok_list_size)
|
|
break;
|
|
if(tok_list[ptr].type==tok_comma)
|
|
++ptr;
|
|
else if(tok_list[ptr].type!=tok_rcurve)
|
|
break;
|
|
}
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
|
|
std::string args_format="func(";
|
|
int node_child_size=node.get_children().size();
|
|
for(int i=0;i<node_child_size;++i)
|
|
{
|
|
switch(node.get_children()[i].get_type())
|
|
{
|
|
case ast_id: args_format+="val";break;
|
|
case ast_default_arg: args_format+="val=scalar";break;
|
|
case ast_dynamic_id: args_format+="val...";break;
|
|
}
|
|
args_format+=",)"[i==node_child_size-1];
|
|
}
|
|
bool checked_default_val=false,checked_dynamic_ids=false;
|
|
for(int i=0;i<node_child_size;++i)
|
|
{
|
|
if(node.get_children()[i].get_type()==ast_default_arg)
|
|
checked_default_val=true;
|
|
else if(node.get_children()[i].get_type()==ast_dynamic_id)
|
|
checked_dynamic_ids=true;
|
|
if(checked_default_val && node.get_children()[i].get_type()!=ast_default_arg)
|
|
die(node.get_children()[i].get_line(),"default argument must be the end of argument list: "+args_format);
|
|
if(checked_dynamic_ids && i!=node_child_size-1)
|
|
die(node.get_children()[i].get_line(),"dynamic identifier must be the end of argument list: "+args_format);
|
|
}
|
|
std::map<std::string,bool> argname_table;
|
|
for(int i=0;i<node_child_size;++i)
|
|
{
|
|
std::string new_name;
|
|
switch(node.get_children()[i].get_type())
|
|
{
|
|
case ast_dynamic_id:
|
|
case ast_id:new_name=node.get_children()[i].get_str();break;
|
|
case ast_default_arg:new_name=node.get_children()[i].get_children()[0].get_str();break;
|
|
}
|
|
if(argname_table.find(new_name)!=argname_table.end())
|
|
die(node.get_children()[i].get_line(),"argument name should not repeat");
|
|
else
|
|
argname_table[new_name]=true;
|
|
}
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::expr()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line);
|
|
int tok_type=tok_list[ptr].type;
|
|
if((tok_type==tok_break || tok_type==tok_continue) && !in_loop)
|
|
die(error_line,"cannot use break/continue outside loop");
|
|
if(tok_type==tok_ret && !in_function)
|
|
die(error_line,"cannot use return outside function");
|
|
switch(tok_type)
|
|
{
|
|
case tok_nil:
|
|
case tok_num:
|
|
case tok_str:
|
|
case tok_id:
|
|
case tok_func:
|
|
case tok_lbracket:
|
|
case tok_lbrace:
|
|
case tok_sub:
|
|
case tok_not: node=calc(); break;
|
|
case tok_var: node=definition(); break;
|
|
case tok_lcurve: node=(check_multi_def()?definition():(check_multi_scalar()?multi_assgin():calc()));break;
|
|
case tok_for:
|
|
case tok_forindex:
|
|
case tok_foreach:
|
|
case tok_while: node=loop(); break;
|
|
case tok_if: node=conditional(); break;
|
|
case tok_continue: node=continue_expr(); break;
|
|
case tok_break: node=break_expr(); break;
|
|
case tok_ret: node=return_expr(); break;
|
|
case tok_semi: --ptr; break;
|
|
default: die(error_line,"error token \""+tok_list[ptr].str+"\"");break;
|
|
}
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::exprs_gen()
|
|
{
|
|
if(ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected expression block");
|
|
nasal_ast nullnode;
|
|
return nullnode;
|
|
}
|
|
nasal_ast node(tok_list[ptr].line,ast_block);
|
|
if(tok_list[ptr].type==tok_lbrace)
|
|
{
|
|
int left_brace_line=tok_list[ptr++].line;
|
|
while(ptr<tok_list_size && tok_list[ptr].type!=tok_rbrace)
|
|
{
|
|
node.add_child(expr());
|
|
if(++ptr>=tok_list_size)
|
|
break;
|
|
else if(tok_list[ptr].type==tok_semi)
|
|
++ptr;
|
|
else if(need_semi_check(node.get_children().back()))
|
|
{
|
|
// the last expression can be recognized without semi
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rbrace)
|
|
{
|
|
die(error_line,"expected \";\"");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rbrace)
|
|
{
|
|
std::string lb_line="";
|
|
while(left_brace_line)
|
|
{
|
|
lb_line=(char)('0'+(left_brace_line%10))+lb_line;
|
|
left_brace_line/=10;
|
|
}
|
|
die(error_line,"expected \"}\" to match \"{\" in line "+lb_line);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
node.add_child(expr());
|
|
if(++ptr<tok_list_size && tok_list[ptr].type!=tok_semi) --ptr;
|
|
}
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::calc()
|
|
{
|
|
nasal_ast node;
|
|
if(ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected calculation");
|
|
return node;
|
|
}
|
|
node=or_expr();
|
|
++ptr;
|
|
if(ptr<tok_list_size && tok_list[ptr].type==tok_quesmark)
|
|
{
|
|
// trinocular calculation
|
|
nasal_ast tmp(tok_list[ptr].line,ast_trinocular);
|
|
tmp.add_child(node);
|
|
++ptr;
|
|
tmp.add_child(calc());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_colon)
|
|
{
|
|
die(error_line,"expected \":\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
tmp.add_child(calc());
|
|
node=tmp;
|
|
}
|
|
else if(ptr<tok_list_size && tok_eq<=tok_list[ptr].type && tok_list[ptr].type<=tok_lnkeq)
|
|
{
|
|
// check the left expression to confirm it is available to get memory
|
|
check_memory_reachable(node);
|
|
// tok_eq~tok_lnkeq is 37 to 42,ast_equal~ast_link_equal is 21~26
|
|
nasal_ast tmp(tok_list[ptr].line,tok_list[ptr].type-tok_eq+ast_equal);
|
|
tmp.add_child(node);
|
|
++ptr;
|
|
tmp.add_child(calc());
|
|
node=tmp;
|
|
}
|
|
else --ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::or_expr()
|
|
{
|
|
nasal_ast node;
|
|
node=and_expr();
|
|
while(++ptr<tok_list_size && tok_list[ptr].type==tok_or)
|
|
{
|
|
nasal_ast tmp(tok_list[ptr].line,ast_or);
|
|
tmp.add_child(node);
|
|
if(++ptr<tok_list_size)
|
|
tmp.add_child(and_expr());
|
|
else
|
|
die(error_line,"expected calculation");
|
|
node=tmp;
|
|
}
|
|
--ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::and_expr()
|
|
{
|
|
nasal_ast node;
|
|
node=cmp_expr();
|
|
while(++ptr<tok_list_size && tok_list[ptr].type==tok_and)
|
|
{
|
|
nasal_ast tmp(tok_list[ptr].line,ast_and);
|
|
tmp.add_child(node);
|
|
if(++ptr<tok_list_size)
|
|
tmp.add_child(cmp_expr());
|
|
else
|
|
die(error_line,"expected calculation");
|
|
node=tmp;
|
|
}
|
|
--ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::cmp_expr()
|
|
{
|
|
nasal_ast node;
|
|
node=additive_expr();
|
|
while(++ptr<tok_list_size && tok_cmpeq<=tok_list[ptr].type && tok_list[ptr].type<=tok_geq)
|
|
{
|
|
// tok_cmpeq~tok_geq is 43~48,ast_cmp_equal~ast_geq is 27~32
|
|
nasal_ast tmp(tok_list[ptr].line,tok_list[ptr].type-tok_cmpeq+ast_cmp_equal);
|
|
tmp.add_child(node);
|
|
if(++ptr<tok_list_size)
|
|
tmp.add_child(additive_expr());
|
|
else
|
|
die(error_line,"expected calculation");
|
|
node=tmp;
|
|
}
|
|
--ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::additive_expr()
|
|
{
|
|
nasal_ast node;
|
|
node=multive_expr();
|
|
while(++ptr<tok_list_size && (tok_list[ptr].type==tok_add || tok_list[ptr].type==tok_sub || tok_list[ptr].type==tok_link))
|
|
{
|
|
nasal_ast tmp(tok_list[ptr].line);
|
|
switch(tok_list[ptr].type)
|
|
{
|
|
case tok_add: tmp.set_type(ast_add); break;
|
|
case tok_sub: tmp.set_type(ast_sub); break;
|
|
case tok_link: tmp.set_type(ast_link); break;
|
|
}
|
|
tmp.add_child(node);
|
|
if(++ptr<tok_list_size)
|
|
tmp.add_child(multive_expr());
|
|
else
|
|
die(error_line,"expected calculation");
|
|
node=tmp;
|
|
}
|
|
--ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::multive_expr()
|
|
{
|
|
nasal_ast node;
|
|
node=(tok_list[ptr].type==tok_sub || tok_list[ptr].type==tok_not)?unary():scalar();
|
|
while(++ptr<tok_list_size && (tok_list[ptr].type==tok_mult || tok_list[ptr].type==tok_div))
|
|
{
|
|
nasal_ast tmp(tok_list[ptr].line,tok_list[ptr].type-tok_mult+ast_mult);
|
|
tmp.add_child(node);
|
|
if(++ptr<tok_list_size)
|
|
tmp.add_child((tok_list[ptr].type==tok_sub || tok_list[ptr].type==tok_not)?unary():scalar());
|
|
else
|
|
{
|
|
die(error_line,"expected calculation");
|
|
break;
|
|
}
|
|
// pre-calculation
|
|
int type1=tmp.get_children()[0].get_type();
|
|
int type2=tmp.get_children()[1].get_type();
|
|
double num1,num2,num;
|
|
if(type1==ast_num && type2==ast_num)
|
|
{
|
|
num1=tmp.get_children()[0].get_num();
|
|
num2=tmp.get_children()[1].get_num();
|
|
num=(tmp.get_type()==ast_mult? num1*num2:num1/num2);
|
|
tmp.set_type(ast_num);
|
|
tmp.set_num(num);
|
|
tmp.get_children().clear();
|
|
}
|
|
node=tmp;
|
|
}
|
|
--ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::unary()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line);
|
|
switch(tok_list[ptr].type)
|
|
{
|
|
case tok_sub:node.set_type(ast_unary_sub);break;
|
|
case tok_not:node.set_type(ast_unary_not);break;
|
|
}
|
|
if(++ptr<tok_list_size)
|
|
node.add_child((tok_list[ptr].type==tok_sub || tok_list[ptr].type==tok_not)?unary():scalar());
|
|
else
|
|
die(error_line,"expected calculation");
|
|
// pre-calculation
|
|
if(node.get_children()[0].get_type()==ast_num)
|
|
{
|
|
double num=node.get_children()[0].get_num();
|
|
num=(node.get_type()==ast_unary_not?(!num):-num);
|
|
node.set_type(ast_num);
|
|
node.set_num(num);
|
|
node.get_children().clear();
|
|
}
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::scalar()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line);
|
|
if(tok_list[ptr].type==tok_nil)
|
|
node=nil_gen();
|
|
else if(tok_list[ptr].type==tok_num)
|
|
node=num_gen();
|
|
else if(tok_list[ptr].type==tok_str)
|
|
node=str_gen();
|
|
else if(tok_list[ptr].type==tok_id)
|
|
node=id_gen();
|
|
else if(tok_list[ptr].type==tok_func)
|
|
{
|
|
if(ptr+1<tok_list_size && tok_list[ptr+1].type==tok_id)
|
|
{
|
|
++ptr;
|
|
node=id_gen();
|
|
}
|
|
else
|
|
{
|
|
++in_function;
|
|
node=func_gen();
|
|
--in_function;
|
|
}
|
|
}
|
|
else if(tok_list[ptr].type==tok_lbracket)
|
|
node=vec_gen();
|
|
else if(tok_list[ptr].type==tok_lbrace)
|
|
node=hash_gen();
|
|
else if(tok_list[ptr].type==tok_lcurve)
|
|
{
|
|
++ptr;
|
|
node=calc();
|
|
++ptr;
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
die(error_line,"expected \")\"");
|
|
}
|
|
else
|
|
{
|
|
die(error_line,"expected scalar");
|
|
return node;
|
|
}
|
|
if(++ptr<tok_list_size && is_call(tok_list[ptr].type))
|
|
{
|
|
nasal_ast tmp=node;
|
|
node.clear();
|
|
node.set_line(tok_list[ptr].line);
|
|
node.set_type(ast_call);
|
|
node.add_child(tmp);
|
|
}
|
|
--ptr;
|
|
while(++ptr<tok_list_size && is_call(tok_list[ptr].type))
|
|
node.add_child(call_scalar());
|
|
--ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::call_scalar()
|
|
{
|
|
nasal_ast node;
|
|
switch(tok_list[ptr].type)
|
|
{
|
|
case tok_lcurve: node=call_func(); break;
|
|
case tok_lbracket: node=call_vec(); break;
|
|
case tok_dot: node=call_hash(); break;
|
|
}
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::call_hash()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_call_hash);
|
|
if(++ptr<tok_list_size && tok_list[ptr].type==tok_id)
|
|
node.set_str(tok_list[ptr].str);
|
|
else
|
|
die(error_line,"expected identifier");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::call_vec()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_call_vec);
|
|
++ptr;
|
|
while(ptr<tok_list_size && tok_list[ptr].type!=tok_rbracket)
|
|
{
|
|
node.add_child(subvec());
|
|
if(++ptr>=tok_list_size)
|
|
break;
|
|
else if(tok_list[ptr].type==tok_comma)
|
|
++ptr;
|
|
else if(tok_list[ptr].type!=tok_rbracket)
|
|
break;
|
|
}
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rbracket)
|
|
die(error_line,"expected \"]\"");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::call_func()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_call_func);
|
|
bool special_call=check_special_call();
|
|
++ptr;
|
|
while(ptr<tok_list_size && tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
node.add_child(special_call?hmem_gen():calc());
|
|
if(++ptr>=tok_list_size)
|
|
break;
|
|
else if(tok_list[ptr].type==tok_comma)
|
|
++ptr;
|
|
else if(tok_list[ptr].type!=tok_rcurve)
|
|
break;
|
|
}
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::subvec()
|
|
{
|
|
nasal_ast node;
|
|
if(tok_list[ptr].type==tok_colon)
|
|
{
|
|
--ptr;
|
|
node=nil_gen();
|
|
}
|
|
else node=calc();
|
|
++ptr;
|
|
if(ptr<tok_list_size && tok_list[ptr].type==tok_colon)
|
|
{
|
|
if(++ptr>=tok_list_size)
|
|
return node;
|
|
nasal_ast tmp(node.get_line(),ast_subvec);
|
|
tmp.add_child(node);
|
|
if(tok_list[ptr].type==tok_comma || tok_list[ptr].type==tok_rbracket)
|
|
{
|
|
--ptr;
|
|
tmp.add_child(nil_gen());
|
|
}
|
|
else
|
|
tmp.add_child(calc());
|
|
node=tmp;
|
|
}
|
|
else
|
|
--ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::definition()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_definition);
|
|
if(tok_list[ptr].type==tok_var)
|
|
{
|
|
if(++ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected identifier");
|
|
return node;
|
|
}
|
|
switch(tok_list[ptr].type)
|
|
{
|
|
case tok_id:node.add_child(id_gen()); break;
|
|
case tok_lcurve:node.add_child(var_outcurve_def()); break;
|
|
default:die(error_line,"expected identifier"); return node;
|
|
}
|
|
}
|
|
else if(tok_list[ptr].type==tok_lcurve)
|
|
node.add_child(var_incurve_def());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_eq)
|
|
{
|
|
die(error_line,"expected \"=\" / don\'t call identifier in definition");
|
|
return node;
|
|
}
|
|
if(++ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected scalar");
|
|
return node;
|
|
}
|
|
if(tok_list[ptr].type==tok_lcurve)
|
|
node.add_child(check_multi_scalar()?multi_scalar(false):calc());
|
|
else
|
|
node.add_child(calc());
|
|
if(node.get_children()[0].get_type()==ast_id && node.get_children()[1].get_type()==ast_multi_scalar)
|
|
die(node.get_children()[1].get_line(),"one identifier cannot accept too many values");
|
|
else if(node.get_children()[0].get_type()==ast_multi_id && node.get_children()[1].get_type()==ast_multi_scalar)
|
|
if(node.get_children()[0].get_children().size()!=node.get_children()[1].get_children().size())
|
|
die(node.get_children()[0].get_line(),"too much or lack values in multi-definition");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::var_incurve_def()
|
|
{
|
|
nasal_ast node;
|
|
ptr+=2;
|
|
// check_multi_def will check the 'var',so there's no need to check this again
|
|
node=multi_id();
|
|
if(++ptr<tok_list_size && is_call(tok_list[ptr].type))
|
|
die(error_line,"don\'t call identifier in multi-definition");
|
|
else if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::var_outcurve_def()
|
|
{
|
|
nasal_ast node;
|
|
++ptr;
|
|
node=multi_id();
|
|
if(++ptr<tok_list_size && is_call(tok_list[ptr].type))
|
|
die(error_line,"don\'t call identifier in multi-definition");
|
|
else if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::multi_id()
|
|
{
|
|
nasal_ast node;
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_id)
|
|
{
|
|
die(error_line,"expected identifier");
|
|
return node;
|
|
}
|
|
node.set_line(tok_list[ptr].line);
|
|
node.set_type(ast_multi_id);
|
|
while(ptr<tok_list_size)
|
|
{
|
|
node.add_child(id_gen());
|
|
++ptr;
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_comma)
|
|
{
|
|
--ptr;
|
|
break;
|
|
}
|
|
++ptr;
|
|
}
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::multi_scalar(bool check_call_memory)
|
|
{
|
|
// if check_call_memory is true,we will check if value called here can reach a memory space
|
|
nasal_ast node(tok_list[ptr].line,ast_multi_scalar);
|
|
++ptr;
|
|
while(ptr<tok_list_size && tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
node.add_child(calc());
|
|
if(check_call_memory)
|
|
check_memory_reachable(node.get_children().back());
|
|
if(++ptr>=tok_list_size)
|
|
break;
|
|
if(tok_list[ptr].type==tok_comma)
|
|
++ptr;
|
|
else if(tok_list[ptr].type!=tok_rcurve)
|
|
break;
|
|
}
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::multi_assgin()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_multi_assign);
|
|
node.add_child(multi_scalar(true));
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_eq)
|
|
{
|
|
die(error_line,"expected \"=\"");
|
|
return node;
|
|
}
|
|
if(++ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected value list");
|
|
return node;
|
|
}
|
|
if(tok_list[ptr].type==tok_lcurve)
|
|
node.add_child(check_multi_scalar()?multi_scalar(false):calc());
|
|
else
|
|
node.add_child(calc());
|
|
if(node.get_children()[1].get_type()==ast_multi_scalar
|
|
&& node.get_children()[0].get_children().size()!=node.get_children()[1].get_children().size())
|
|
die(node.get_children()[0].get_line(),"too much or lack values in multi-assignment");
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::loop()
|
|
{
|
|
++in_loop;
|
|
nasal_ast node;
|
|
switch(tok_list[ptr].type)
|
|
{
|
|
case tok_while: node=while_loop(); break;
|
|
case tok_for: node=for_loop(); break;
|
|
case tok_forindex:
|
|
case tok_foreach: node=forei_loop(); break;
|
|
}
|
|
--in_loop;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::while_loop()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_while);
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_lcurve)
|
|
{
|
|
die(error_line,"expected \"(\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
node.add_child(calc());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
node.add_child(exprs_gen());
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::for_loop()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_for);
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_lcurve)
|
|
{
|
|
die(error_line,"expected \"(\"");
|
|
return node;
|
|
}
|
|
// first expression
|
|
if(++ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected definition");
|
|
return node;
|
|
}
|
|
if(tok_list[ptr].type==tok_semi)
|
|
{
|
|
node.add_child(null_node_gen());
|
|
--ptr;
|
|
}
|
|
else if(tok_list[ptr].type==tok_var)
|
|
node.add_child(definition());
|
|
else if(tok_list[ptr].type==tok_lcurve)
|
|
node.add_child(
|
|
check_multi_def()?
|
|
definition():
|
|
(
|
|
check_multi_scalar()?
|
|
multi_assgin():
|
|
calc()
|
|
)
|
|
);
|
|
else
|
|
node.add_child(calc());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_semi)
|
|
{
|
|
die(error_line,"expected \";\"");
|
|
return node;
|
|
}
|
|
// conditional expression
|
|
if(++ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected conditional expression");
|
|
return node;
|
|
}
|
|
if(tok_list[ptr].type==tok_semi)
|
|
{
|
|
node.add_child(null_node_gen());
|
|
--ptr;
|
|
}
|
|
else
|
|
node.add_child(calc());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_semi)
|
|
{
|
|
die(error_line,"expected \";\"");
|
|
return node;
|
|
}
|
|
//after loop expression
|
|
if(++ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected calculation");
|
|
return node;
|
|
}
|
|
if(tok_list[ptr].type==tok_rcurve)
|
|
{
|
|
node.add_child(null_node_gen());
|
|
--ptr;
|
|
}
|
|
else
|
|
node.add_child(calc());
|
|
++ptr;
|
|
if(ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
node.add_child(exprs_gen());
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::forei_loop()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line);
|
|
switch(tok_list[ptr].type)
|
|
{
|
|
case tok_forindex: node.set_type(ast_forindex);break;
|
|
case tok_foreach: node.set_type(ast_foreach); break;
|
|
}
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_lcurve)
|
|
{
|
|
die(error_line,"expected \"(\"");
|
|
return node;
|
|
}
|
|
// first expression
|
|
// foreach/forindex must have an iterator to loop through
|
|
if(++ptr>=tok_list_size || (tok_list[ptr].type!=tok_var && tok_list[ptr].type!=tok_id))
|
|
{
|
|
die(error_line,"expected iterable value");
|
|
return node;
|
|
}
|
|
node.add_child(new_iter_gen());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_semi)
|
|
{
|
|
die(error_line,"expected \";\"");
|
|
return node;
|
|
}
|
|
if(++ptr>=tok_list_size)
|
|
{
|
|
die(error_line,"expected vector");
|
|
return node;
|
|
}
|
|
node.add_child(calc());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
node.add_child(exprs_gen());
|
|
return node;
|
|
}
|
|
|
|
nasal_ast nasal_parse::new_iter_gen()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line);
|
|
if(tok_list[ptr].type==tok_var)
|
|
{
|
|
node.set_type(ast_new_iter);
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_id)
|
|
{
|
|
die(error_line,"expected identifier");
|
|
return node;
|
|
}
|
|
node.add_child(id_gen());
|
|
}
|
|
else
|
|
{
|
|
node.set_type(ast_call);
|
|
node.add_child(id_gen());
|
|
while(++ptr<tok_list_size && is_call(tok_list[ptr].type))
|
|
node.add_child(call_scalar());
|
|
--ptr;
|
|
}
|
|
return node;
|
|
}
|
|
|
|
nasal_ast nasal_parse::conditional()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_conditional);
|
|
nasal_ast tmp(tok_list[ptr].line,ast_if);
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_lcurve)
|
|
{
|
|
die(error_line,"expected \"(\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
tmp.add_child(calc());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
tmp.add_child(exprs_gen());
|
|
node.add_child(tmp);
|
|
// end of if-expression
|
|
while(++ptr<tok_list_size &&
|
|
(tok_list[ptr].type==tok_elsif || (tok_list[ptr].type==tok_else && ptr+1<tok_list_size && tok_list[ptr+1].type==tok_if)))
|
|
{
|
|
if(tok_list[ptr].type==tok_else)
|
|
++ptr;
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_lcurve)
|
|
{
|
|
die(error_line,"expected \"(\"");
|
|
return node;
|
|
}
|
|
nasal_ast tmp(tok_list[ptr].line,ast_elsif);
|
|
++ptr;
|
|
tmp.add_child(calc());
|
|
if(++ptr>=tok_list_size || tok_list[ptr].type!=tok_rcurve)
|
|
{
|
|
die(error_line,"expected \")\"");
|
|
return node;
|
|
}
|
|
++ptr;
|
|
tmp.add_child(exprs_gen());
|
|
node.add_child(tmp);
|
|
}
|
|
// end of elsif-expression
|
|
// after this process,ptr will point to the next token of exprs_gen()'s last token
|
|
// for example
|
|
// else if(scalar){} else {}
|
|
// ptr^
|
|
if(ptr<tok_list_size && tok_list[ptr].type==tok_else)
|
|
{
|
|
nasal_ast tmp(tok_list[ptr].line,ast_else);
|
|
++ptr;
|
|
tmp.add_child(exprs_gen());
|
|
node.add_child(tmp);
|
|
}
|
|
else
|
|
--ptr;
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::continue_expr()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_continue);
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::break_expr()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_break);
|
|
return node;
|
|
}
|
|
nasal_ast nasal_parse::return_expr()
|
|
{
|
|
nasal_ast node(tok_list[ptr].line,ast_return);
|
|
if(++ptr<tok_list_size)
|
|
{
|
|
int type=tok_list[ptr].type;
|
|
if(type==tok_nil || type==tok_num || type==tok_str || type==tok_id || type==tok_func ||
|
|
type==tok_sub || type==tok_not || type==tok_lcurve || type==tok_lbracket || type==tok_lbrace)
|
|
node.add_child(calc());
|
|
else
|
|
--ptr;
|
|
}
|
|
return node;
|
|
}
|
|
#endif
|