--- parser3/src/classes/void.C 2005/08/09 08:14:48 1.35 +++ parser3/src/classes/void.C 2008/09/04 13:15:36 1.41 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char * const IDENT_VOID_C="$Date: 2005/08/09 08:14:48 $"; +static const char * const IDENT_VOID_C="$Date: 2008/09/04 13:15:36 $"; #include "classes.h" #include "pa_vmethod_frame.h" @@ -14,6 +14,7 @@ static const char * const IDENT_VOID_C=" #include "pa_vint.h" #include "pa_vdouble.h" #include "pa_vvoid.h" +#include "pa_vbool.h" #include "pa_sql_connection.h" // externs @@ -43,6 +44,13 @@ static void _length(Request& r, MethodPa static void _pos(Request& r, MethodParams& params) { // just checking for consistency params.as_no_junction(0, "substr must not be code"); + if(params.count()>1){ + ssize_t offset=params.as_int(1, "n must be int", r); + if(offset<0) + throw Exception(PARSER_RUNTIME, + 0, + "n(%d) must be >=0", offset); + } // never found r.write_no_lang(*new VInt(-1)); } @@ -59,6 +67,12 @@ static void _double(Request& r, MethodPa params.count()==0?vvoid.as_double():params.as_double(0, "default must be double", r))); } +static void _bool(Request& r, MethodParams& params) { + VVoid& vvoid=GET_SELF(r, VVoid); + r.write_no_lang(*new VBool( + params.count()==0?vvoid.as_bool():params.as_bool(0, "default must be bool", r))); +} + #ifndef DOXYGEN class Void_sql_event_handlers: public SQL_Driver_query_event_handlers { const String& statement_string; @@ -67,7 +81,7 @@ public: bool add_column(SQL_Error& /*error*/, const char* /*str*/, size_t /*length*/) { /* ignore */ return false; } bool before_rows(SQL_Error& error) { // there are some result rows, which is wrong - error=SQL_Error("parser.runtime", + error=SQL_Error(PARSER_RUNTIME, /*statement_string,*/ "must return nothing"); return true; @@ -87,7 +101,7 @@ static void _sql(Request& r, MethodParam HashStringValue* bind=0; if(params.count()>1) { Value& voptions=params.as_no_junction(1, "options must be hash, not code"); - if(!voptions.is_string()) + if(voptions.is_defined() && !voptions.is_string()) if(HashStringValue* options=voptions.get_hash()) { int valid_options=0; if(Value* vbind=options->get(sql_bind_name)) { @@ -95,11 +109,11 @@ static void _sql(Request& r, MethodParam bind=vbind->get_hash(); } if(valid_options!=options->count()) - throw Exception("parser.runtime", + throw Exception(PARSER_RUNTIME, 0, "called with invalid option"); } else - throw Exception("parser.runtime", + throw Exception(PARSER_RUNTIME, 0, "options must be hash"); } @@ -117,7 +131,7 @@ static void _sql(Request& r, MethodParam r.connection()->query( statement_cstr, placeholders_count, placeholders, - 0, 0, + 0, SQL_NO_LIMIT, handlers, statement_string); @@ -128,7 +142,7 @@ static void _sql(Request& r, MethodParam static void _left_right(Request& r, MethodParams& params) { ssize_t sn=params.as_int(0, "n must be int", r); if(sn<0) - throw Exception("parser.runtime", + throw Exception(PARSER_RUNTIME, 0, "n(%d) must be >=0", sn); @@ -138,14 +152,14 @@ static void _left_right(Request& r, Meth static void _mid(Request& r, MethodParams& params) { ssize_t sbegin=params.as_int(0, "p must be int", r); if(sbegin<0) - throw Exception("parser.runtime", + throw Exception(PARSER_RUNTIME, 0, "p(%d) must be >=0", sbegin); if(params.count()>1) { ssize_t sn=params.as_int(1, "n must be int", r); if(sn<0) - throw Exception("parser.runtime", + throw Exception(PARSER_RUNTIME, 0, "n(%d) must be >=0", sn); } @@ -160,7 +174,8 @@ MVoid::MVoid(): Methoded("void") { add_native_method("length", Method::CT_DYNAMIC, _length, 0, 0); // ^void.pos[substr] - add_native_method("pos", Method::CT_DYNAMIC, _pos, 1, 1); + // ^void.pos[substr](n) + add_native_method("pos", Method::CT_DYNAMIC, _pos, 1, 2); // ^void.int[] // ^void.int(default) @@ -170,7 +185,11 @@ MVoid::MVoid(): Methoded("void") { // ^void.double(default) add_native_method("double", Method::CT_DYNAMIC, _double, 0, 1); - // ^sql[query] + // ^void.bool[] + // ^void.bool(default) + add_native_method("bool", Method::CT_DYNAMIC, _bool, 0, 1); + + // ^void:sql{query} add_native_method("sql", Method::CT_STATIC, _sql, 1, 2); // ^void.left() ^void.right()