--- parser3/src/classes/Attic/root.C 2001/03/18 17:18:34 1.44 +++ parser3/src/classes/Attic/root.C 2001/04/04 10:50:33 1.57 @@ -1,18 +1,20 @@ -/* - Parser +/** @file + Parser: @b ROOT parser class. + Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexander Petrosyan (http://design.ru/paf) - $Id: root.C,v 1.44 2001/03/18 17:18:34 paf Exp $ + $Id: root.C,v 1.57 2001/04/04 10:50:33 paf Exp $ */ -#include +#include "pa_config_includes.h" #include +#include "pa_common.h" #include "pa_request.h" #include "_root.h" #include "pa_vint.h" -#include "pa_common.h" static void _if(Request& r, const String& method_name, Array *params) { Value& condition_code=*static_cast(params->get(0)); @@ -22,16 +24,16 @@ static void _if(Request& r, const String bool condition=r.process(condition_code, 0/*no name*/, - false/*don't intercept string*/).get_bool(); + false/*don't intercept string*/).as_bool(); if(condition) { Value& then_code=*static_cast(params->get(1)); - // forcing ^if(this param type) + // forcing ^if{this param type} r.fail_if_junction_(false, then_code, method_name, "then-parameter must be junction"); r.write_pass_lang(r.process(then_code)); } else if(params->size()==3) { Value& else_code=*static_cast(params->get(2)); - // forcing ^if(this param type) + // forcing ^if{this param type} r.fail_if_junction_(false, else_code, method_name, "else-parameter must be junction"); r.write_pass_lang(r.process(else_code)); @@ -39,11 +41,13 @@ static void _if(Request& r, const String } static void _untaint(Request& r, const String& method_name, Array *params) { + Pool& pool=r.pool(); + const String& lang_name=r.process(*static_cast(params->get(0))).as_string(); String::Untaint_lang lang=static_cast( untaint_lang_name2enum->get_int(lang_name)); if(!lang) - RTHROW(0, 0, + PTHROW(0, 0, &lang_name, "invalid untaint language"); @@ -59,26 +63,32 @@ static void _untaint(Request& r, const S } static void _taint(Request& r, const String& method_name, Array *params) { - const String& lang_name=r.process(*static_cast(params->get(0))).as_string(); - String::Untaint_lang lang=static_cast( - untaint_lang_name2enum->get_int(lang_name)); - if(!lang) - RTHROW(0, 0, + Pool& pool=r.pool(); + + String::Untaint_lang lang; + if(params->size()==1) + lang=String::UL_TAINTED; // mark as simply 'tainted'. useful in table:set + else { + const String& lang_name=r.process(*static_cast(params->get(0))).as_string(); + lang=static_cast( + untaint_lang_name2enum->get_int(lang_name)); + if(!lang) + PTHROW(0, 0, &lang_name, "invalid taint language"); + } { - Value *vbody=static_cast(params->get(1)); - // forcing ^untaint[]{this param type} - r.fail_if_junction_(true, *vbody, - method_name, "body must not be junction"); + Value *vbody=static_cast(params->get(params->size()-1)); + // forcing {this param type} + r.fail_if_junction_(true, *vbody, method_name, "body must not be junction"); // set temporarily as-is language - Temp_lang temp_lang(r, String::Untaint_lang::AS_IS); + Temp_lang temp_lang(r, String::UL_PASS_APPENDED); String result(r.pool()); result.append( r.process(*vbody).as_string(), // process marking tainted with that lang - lang); // switch result language to specified + lang, true); // force result language to specified r.write_pass_lang(result); } } @@ -99,7 +109,9 @@ static void _process(Request& r, const S VStateless_class& self_class=*r.self->get_class(); { // temporary zero @main so to maybe-replace it in processed code - Temp_method temp_method(self_class, *main_method_name, 0); + Temp_method temp_method_main(self_class, *main_method_name, 0); + // temporary zero @auto so it wouldn't be auto-called in Request::use_buf + Temp_method temp_method_auto(self_class, *auto_method_name, 0); // evaluate source to process const String& source= @@ -124,6 +136,8 @@ static void _rem(Request& r, const Strin } static void _while(Request& r, const String& method_name, Array *params) { + Pool& pool=r.pool(); + Value& vcondition=*static_cast(params->get(0)); // forcing ^while(this param type){} r.fail_if_junction_(false, vcondition, @@ -138,7 +152,7 @@ static void _while(Request& r, const Str int endless_loop_count=0; while(true) { if(++endless_loop_count>=1973) // endless loop? - RTHROW(0, 0, + PTHROW(0, 0, &method_name, "endless loop detected"); @@ -146,7 +160,7 @@ static void _while(Request& r, const Str r.process( vcondition, 0/*no name*/, - false/*don't intercept string*/).get_bool(); + false/*don't intercept string*/).as_bool(); if(!condition) // ...condition is true break; @@ -161,8 +175,7 @@ static void _use(Request& r, const Strin r.fail_if_junction_(true, vfile, method_name, "file name must not be junction"); - char *file=vfile.as_string().cstr(); - r.use_file(r.absolute(file)); + r.use_file(r.absolute(vfile.as_string())); } static void _for(Request& r, const String& method_name, Array *params) { @@ -170,8 +183,8 @@ static void _for(Request& r, const Strin Pool& pool=r.pool(); const String& var_name=r.process(*static_cast(params->get(0))).as_string(); - int from=(int)r.process(*static_cast(params->get(1))).get_double(); - int to=(int)r.process(*static_cast(params->get(2))).get_double(); + int from=(int)r.process(*static_cast(params->get(1))).as_double(); + int to=(int)r.process(*static_cast(params->get(2))).as_double(); Value& body_code=*static_cast(params->get(3)); // forcing ^menu{this param type} r.fail_if_junction_(false, body_code, @@ -183,7 +196,7 @@ static void _for(Request& r, const Strin int endless_loop_count=0; for(int i=from; i<=to; i++) { if(++endless_loop_count>=2001) // endless loop? - RTHROW(0, 0, + PTHROW(0, 0, &method_name, "endless loop detected"); vint->set_int(i); @@ -207,7 +220,7 @@ static void _eval(Request& r, const Stri // evaluate expresion Value *result=r.process(expr, 0/*no name*/, - true/*don't intercept string*/).get_expr_result(); + true/*don't intercept string*/).as_expr_result(); if(params->size()==2) { Value& fmt=*static_cast(params->get(1)); // forcing ^format[this param type] @@ -216,7 +229,7 @@ static void _eval(Request& r, const Stri Pool& pool=r.pool(); String& string=*new(pool) String(pool); - string.APPEND_CONST(format(pool, result->get_double(), fmt.as_string().cstr())); + string.APPEND_CONST(format(pool, result->as_double(), fmt.as_string().cstr())); result=new(pool) VString(string); } r.write_no_lang(*result); @@ -238,7 +251,7 @@ static void double_one_op( r.fail_if_junction_(false, param, method_name, "parameter must be expression"); - Value& result=*new(pool) VDouble(pool, (*func)(r.process(param).get_double())); + Value& result=*new(pool) VDouble(pool, (*func)(r.process(param).as_double())); r.write_no_lang(result); } @@ -262,53 +275,106 @@ static void _sign(Request& r, const Stri double_one_op(r, method_name, params, &sign); } +/// ^connect[protocol://user:pass@host[:port]/database]{code with ^sql-s} +/** + @test make params not Array but something with useful method for extracting, + with typecast and junction/not test +*/ +static void _connect(Request& r, const String& method_name, Array *params) { + Pool& pool=r.pool(); + + Value& url=*static_cast(params->get(0)); + r.fail_if_junction_(true, url, + method_name, "url must not be junction"); + + Value& body_code=*static_cast(params->get(1)); + r.fail_if_junction_(false, body_code, + method_name, "body must be junction"); + + // remember/set current connection + SQL_Connection *saved_connection=r.connection; + + // do the job + bool need_rethrow=false; Exception rethrow_me; + PTRY { + r.connection=&SQL_driver_manager->get_connection( + url.as_string(), r.protocol2library); + r.write_assign_lang(r.process(body_code)); + } + PCATCH(e) { // connect/process problem + rethrow_me=e; need_rethrow=true; + } + PEND_CATCH + + // FINALLY + if(need_rethrow) + ;//rollback + else + ;//commit + + // recall current connection from remembered + r.connection=saved_connection; + + if(need_rethrow) // were there an exception for us to rethrow? + PTHROW(rethrow_me.type(), rethrow_me.code(), + rethrow_me.problem_source(), + rethrow_me.comment()); +} + // initialize void initialize_root_class(Pool& pool, VStateless_class& vclass) { // ^if(condition){code-when-true} // ^if(condition){code-when-true}{code-when-false} - vclass.add_native_method("if", _if, 2, 3); + vclass.add_native_method("if", Method::CT_ANY, _if, 2, 3); // ^untaint[as-is|uri|sql|js|html|html-typo]{code} - vclass.add_native_method("untaint", _untaint, 2, 2); + vclass.add_native_method("untaint", Method::CT_ANY, _untaint, 2, 2); // ^taint[as-is|uri|sql|js|html|html-typo]{code} - vclass.add_native_method("taint", _taint, 2, 2); + vclass.add_native_method("taint", Method::CT_ANY, _taint, 1, 2); // ^process[code] - vclass.add_native_method("process", _process, 1, 1); + vclass.add_native_method("process", Method::CT_ANY, _process, 1, 1); // ^rem{code} - vclass.add_native_method("rem", _rem, 1, 1); + vclass.add_native_method("rem", Method::CT_ANY, _rem, 1, 1); // ^while(condition){code} - vclass.add_native_method("while", _while, 2, 2); + vclass.add_native_method("while", Method::CT_ANY, _while, 2, 2); // ^use[file] - vclass.add_native_method("use", _use, 1, 1); + vclass.add_native_method("use", Method::CT_ANY, _use, 1, 1); // ^for[i;from-number;to-number-inclusive]{code}[delim] - vclass.add_native_method("for", _for, 3+1, 3+1+1); + vclass.add_native_method("for", Method::CT_ANY, _for, 3+1, 3+1+1); // ^eval(expr) // ^eval(expr)[format] - vclass.add_native_method("eval", _eval, 1, 2); + vclass.add_native_method("eval", Method::CT_ANY, _eval, 1, 2); // math functions // ^round(expr) - vclass.add_native_method("round", _round, 1, 1); + vclass.add_native_method("round", Method::CT_ANY, _round, 1, 1); // ^floor(expr) - vclass.add_native_method("floor", _floor, 1, 1); + vclass.add_native_method("floor", Method::CT_ANY, _floor, 1, 1); // ^ceiling(expr) - vclass.add_native_method("ceiling", _ceiling, 1, 1); + vclass.add_native_method("ceiling", Method::CT_ANY, _ceiling, 1, 1); // ^abs(expr) - vclass.add_native_method("abs", _abs, 1, 1); + vclass.add_native_method("abs", Method::CT_ANY, _abs, 1, 1); // ^sign(expr) - vclass.add_native_method("sign", _sign, 1, 1); + vclass.add_native_method("sign", Method::CT_ANY, _sign, 1, 1); + + + // connect + + // ^connect[protocol://user:pass@host[:port]/database]{code with ^sql-s} + vclass.add_native_method("connect", Method::CT_ANY, _connect, 2, 2); + }