--- parser3/src/classes/reflection.C 2016/11/01 23:10:41 1.64 +++ parser3/src/classes/reflection.C 2016/11/29 23:25:59 1.69 @@ -10,7 +10,7 @@ #include "pa_vbool.h" #include "pa_vobject.h" -volatile const char * IDENT_REFLECTION_C="$Id: reflection.C,v 1.64 2016/11/01 23:10:41 moko Exp $"; +volatile const char * IDENT_REFLECTION_C="$Id: reflection.C,v 1.69 2016/11/29 23:25:59 moko Exp $"; static const String class_type_methoded("methoded"); @@ -62,12 +62,6 @@ static void _create(Request& r, MethodPa int max_params_count; if(method->native_code){ - if(method->call_type==Method::CT_STATIC) - throw Exception(PARSER_RUNTIME, - &constructor_name, - "native method of class '%s' is not allowed to be called dynamically", - vclass->type()); - if(nparamsmin_numbered_params_count) throw Exception(PARSER_RUNTIME, &constructor_name, @@ -78,7 +72,7 @@ static void _create(Request& r, MethodPa max_params_count=method->max_numbered_params_count; } else { - max_params_count=method->params_names?method->params_names->count():0; + max_params_count=method->params_count; } if(nparams>max_params_count) @@ -90,19 +84,20 @@ static void _create(Request& r, MethodPa nparams); Value &object = r.construct(*vclass, *method); - VConstructorFrame frame(*method, r.get_method_frame(), object); - Value* v[100]; - if(nparams>0){ - for(int i=0; i0){ + for(int i=0; imethod)) throw Exception(PARSER_RUNTIME, 0, "param must be class name or method junction"); + + hash->put(method_name, new VString(*method->name)); } else { const String& class_name=params.as_string(0, "param must be class name or method junction"); - if(!(vclass=r.get_class(class_name))) + VStateless_class* vclass=r.get_class(class_name); + + if(!vclass) throw Exception(PARSER_RUNTIME, &class_name, "class is undefined"); if(params.count()==1) @@ -274,18 +275,14 @@ static void _method_info(Request& r, Met const String& method_name=params.as_string(1, "method name must be string"); if(!(method=vclass->get_method(method_name))) throw Exception(PARSER_RUNTIME, &method_name, "method not found in class '%s'", vclass->type()); - } - VHash& result=*new VHash; - HashStringValue* hash=result.get_hash(); - hash->put(method_name, new VString(*method->name)); - - Method* base_method; - if(vclass && vclass->base() && (base_method=vclass->base()->get_method(*method->name))){ - VStateless_class* c=vclass->base()->get_class(); - while(c->base() && base_method==c->base()->get_method(*method->name)) - c=c->base()->get_class(); - hash->put((base_method==method) ? method_inherited : method_overridden, new VString(*new String(c->type()))); + Method* base_method; + if(vclass && vclass->base() && (base_method=vclass->base()->get_method(*method->name))){ + VStateless_class* c=vclass->base()->get_class(); + while(c->base() && base_method==c->base()->get_method(*method->name)) + c=c->base()->get_class(); + hash->put((base_method==method) ? method_inherited : method_overridden, new VString(*new String(c->type()))); + } } Value* call_type=0; @@ -308,7 +305,7 @@ static void _method_info(Request& r, Met hash->put(method_max_params, new VInt(method->max_numbered_params_count)); } else { // parser code - const String* filespec = r.get_method_filename(method); + const String* filespec = r.get_method_filespec(method); if( filespec ) hash->put("file", new VString(*filespec)); @@ -325,6 +322,22 @@ static void _method_info(Request& r, Met r.write(result); } +static void _filename(Request& r, MethodParams& params) { + if(Junction *j=params[0].get_junction()){ + if(const Method* method=j->method){ + if(!method->native_code) + if(const String* filespec = r.get_method_filespec(method)) + r.write(*new VString(*filespec)); + return; + } + throw Exception(PARSER_RUNTIME, 0, "param must be object, class or method junction"); + } + + if(VClass* vclass = dynamic_cast(params[0].get_class())){ + r.write(*new VString(vclass->get_filespec())); + } +} + static void _dynamical(Request& r, MethodParams& params) { if(params.count()){ r.write(VBool::get(params[0].get_class() != ¶ms[0])); @@ -497,6 +510,9 @@ MReflection::MReflection(): Methoded("re // ^reflection:method_info[junction] add_native_method("method_info", Method::CT_STATIC, _method_info, 1, 2); + // ^reflection:filename[object or class] + add_native_method("filename", Method::CT_STATIC, _filename, 1, 1); + // ^reflection:fields[object or class] add_native_method("fields", Method::CT_STATIC, _fields, 1, 1);