--- parser3/src/classes/reflection.C 2010/05/22 07:37:05 1.16 +++ parser3/src/classes/reflection.C 2010/10/09 23:17:26 1.21 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char * const IDENT_REFLECTION_C="$Date: 2010/05/22 07:37:05 $"; +static const char * const IDENT_REFLECTION_C="$Date: 2010/10/09 23:17:26 $"; #include "pa_vmethod_frame.h" #include "pa_request.h" @@ -95,7 +95,8 @@ static void _create(Request& r, MethodPa max_params_count, nparams); - VMethodFrame frame(*junction, r.get_method_frame()); + Value &object = r.construct(*class_value, *method); + VConstructorFrame frame(*method, r.get_method_frame(), object); Value* v[100]; if(nparams>0){ @@ -105,7 +106,8 @@ static void _create(Request& r, MethodPa } else { frame.empty_params(); } - r.op_call(frame, true/*constructing*/); + r.op_call(frame); + object.enable_default_setter(); r.write_pass_lang(frame.result()); } @@ -278,6 +280,18 @@ static void _dynamical(Request& r, Metho } } +static void _copy(Request& r, MethodParams& params) { + HashStringValue* src=params.as_no_junction(0, "source must not be code").get_hash(); + + if(src==NULL) + throw Exception(PARSER_RUNTIME, 0, "source must have hash representation"); + + Value& dst=params.as_no_junction(1, "destination must not be code"); + + for(HashStringValue::Iterator i(*src); i; i.next()) + r.put_element(dst, *new String(i.key(), String::L_TAINTED), i.value()); +} + // constructor MReflection::MReflection(): Methoded("reflection") { // ^reflection:create[class_name;constructor_name[;param1[;param2[;...]]]] @@ -309,4 +323,7 @@ MReflection::MReflection(): Methoded("re // ^reflection:dynamical[[object or class, caller if absent]] add_native_method("dynamical", Method::CT_STATIC, _dynamical, 0, 1); + + // ^reflection:copy[src;dst] + add_native_method("copy", Method::CT_STATIC, _copy, 2, 2); }