--- parser3/src/classes/reflection.C 2011/02/20 05:32:39 1.23 +++ parser3/src/classes/reflection.C 2012/05/27 22:10:09 1.26 @@ -1,16 +1,16 @@ /** @file Parser: @b reflection parser class. - Copyright (c) 2001-2009 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2012 Art. Lebedev Studio (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char * const IDENT_REFLECTION_C="$Date: 2011/02/20 05:32:39 $"; - #include "pa_vmethod_frame.h" #include "pa_request.h" #include "pa_vbool.h" +volatile const char * IDENT_REFLECTION_C="$Id: reflection.C,v 1.26 2012/05/27 22:10:09 misha Exp $"; + static const String class_type_methoded("methoded"); static const String method_type_native("native"); @@ -293,6 +293,23 @@ static void _copy(Request& r, MethodPara r.put_element(dst, *new String(i.key(), String::L_TAINTED), i.value()); } +static void _uid(Request& r, MethodParams& params) { + Value& obj=params.as_no_junction(0, "object must not be code"); + + char local_buf[MAX_NUMBER]; + int size=snprintf(local_buf, sizeof(local_buf), "%p", &obj); + + r.write_pass_lang(*new String(pa_strdup(local_buf, (size_t)size), String::L_CLEAN, size)); +} + +static void _delete(Request& r, MethodParams& params) { + const String& key=params.as_string(1, "field name must be string"); + if(HashStringValue* fields=params[0].get_fields()){ + fields->remove(key); + } +} + + // constructor MReflection::MReflection(): Methoded("reflection") { // ^reflection:create[class_name;constructor_name[;param1[;param2[;...]]]] @@ -327,4 +344,10 @@ MReflection::MReflection(): Methoded("re // ^reflection:copy[src;dst] add_native_method("copy", Method::CT_STATIC, _copy, 2, 2); + + // ^reflection:uid[object or class] + add_native_method("uid", Method::CT_STATIC, _uid, 1, 1); + + // ^reflection:delete[object or class;field_name] + add_native_method("delete", Method::CT_STATIC, _delete, 2, 2); }