Diff for /parser3/src/classes/reflection.C between versions 1.62 and 1.95

version 1.62, 2016/10/06 19:41:36 version 1.95, 2024/12/07 15:14:56
Line 1 Line 1
 /** @file  /** @file
         Parser: @b reflection parser class.          Parser: @b reflection parser class.
   
         Copyright (c) 2001-2015 Art. Lebedev Studio (http://www.artlebedev.com)          Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com)
         Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)          Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <paf@design.ru>
 */  */
   
 #include "pa_vmethod_frame.h"  #include "pa_vmethod_frame.h"
 #include "pa_request.h"  #include "pa_request.h"
 #include "pa_vbool.h"  #include "pa_vbool.h"
   #include "pa_varray.h"
 #include "pa_vobject.h"  #include "pa_vobject.h"
   
 volatile const char * IDENT_REFLECTION_C="$Id$";  volatile const char * IDENT_REFLECTION_C="$Id$";
Line 18  static const String method_type_native(" Line 19  static const String method_type_native("
 static const String method_type_parser("parser");  static const String method_type_parser("parser");
   
 static const String method_name("name");  static const String method_name("name");
   static const String method_class_name("class");
 static const String method_call_type("call_type");  static const String method_call_type("call_type");
 static const String method_inherited("inherited");  static const String method_inherited("inherited");
 static const String method_overridden("overridden");  static const String method_overridden("overridden");
Line 25  static const String method_overridden("o Line 27  static const String method_overridden("o
 static const String method_min_params("min_params");  static const String method_min_params("min_params");
 static const String method_max_params("max_params");  static const String method_max_params("max_params");
 static const String method_extra_param("extra_param");  static const String method_extra_param("extra_param");
   static const String method_named_params("named_params");
   
 static const String def_class("class");  static const String def_class("class");
   
Line 41  DECLARE_CLASS_VAR(reflection, new MRefle Line 44  DECLARE_CLASS_VAR(reflection, new MRefle
   
 // methods  // methods
   
   const int MAX_CREATE_PARAMS = 100;
   
 static void _create(Request& r, MethodParams& params) {  static void _create(Request& r, MethodParams& params) {
         const String& class_name=params.as_string(0, "class_name must be string");          int params_offset;
         VStateless_class* vclass=r.get_class(class_name);          HashStringValue* params_hash=0;
   
         if(!vclass)          const String* class_name=0;
                 throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");          const String* constructor_name=0;
   
         const String& constructor_name=params.as_string(1, "constructor_name must be string");          Value& voptions=params.as_no_junction(0, "param must not be code");
         Value* constructor_value=vclass->get_element(constructor_name);          if(HashStringValue* options=voptions.get_hash()) {
                   int valid_options=0;
                   if(Value* vclass_name=options->get("class")) {
                           valid_options++;
                           class_name=&vclass_name->as_string();
                   }
                   if(Value* vconstructor_name=options->get("constructor")) {
                           valid_options++;
                           constructor_name=&vconstructor_name->as_string();
                   }
                   if(Value* vparams_hash=options->get("arguments")) {
                           valid_options++;
                           params_hash=vparams_hash->as_hash("arguments");
                           if(params.count()>1)
                                   throw Exception(PARSER_RUNTIME, 0, "arguments should not be specified as hash and as create params");
                   }
                   if(valid_options!=options->count())
                           throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
   
         if(!constructor_value || !constructor_value->get_junction())                  if(!class_name)
                 throw Exception(PARSER_RUNTIME, &constructor_name, "constructor must be declared in class '%s'", vclass->type());                          throw Exception(PARSER_RUNTIME, 0, "class name must be specified");
                   if(!constructor_name)
                           throw Exception(PARSER_RUNTIME, 0, "constructor name must be specified");
   
         Junction* junction=constructor_value->get_junction();                  params_offset=1;
         const Method* method=junction->method;          } else {
                   class_name=&params.as_string(0, "param must not be code");
   
         int nparams=params.count()-2;                  if(params.count()==1)
         int max_params_count;                          throw Exception(PARSER_RUNTIME, 0, "constructor name must be specified");
   
         if(method->native_code){                  constructor_name=&params.as_string(1, "constructor name must be string");
                 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(nparams<method->min_numbered_params_count)  
                         throw Exception(PARSER_RUNTIME,  
                                 &constructor_name,  
                                 "native method of class '%s' accepts minimum %d parameter(s) (%d passed)",  
                                 vclass->type(),  
                                 method->min_numbered_params_count,  
                                 nparams);  
   
                 max_params_count=method->max_numbered_params_count;                  params_offset=2;
         } else {  
                 max_params_count=method->params_names?method->params_names->count():0;  
         }          }
   
         if(nparams>max_params_count)          VStateless_class& vclass=r.get_class_ref(*class_name);
                 throw Exception(PARSER_RUNTIME,  
                         &constructor_name,          const Method* method=vclass.get_method(*constructor_name);
                         "method of class '%s' accepts maximum %d parameter(s) (%d passed)",          if(!method)
                         vclass->type(),                  throw Exception(PARSER_RUNTIME, constructor_name, "constructor not found in class '%s'", vclass.type());
                         max_params_count,  
                         nparams);          Value &object = r.construct(vclass, *method);
   
         Value &object = r.construct(*vclass, *method);          int nparams=params_hash ? params_hash->count() : (params.count()-params_offset);
         VConstructorFrame frame(*method, r.get_method_frame(), object);          if(nparams>MAX_CREATE_PARAMS)
                   throw Exception(PARSER_RUNTIME, 0, "arguments count should not exceed %d", MAX_CREATE_PARAMS);
         Value* v[100];  
         if(nparams>0){          Value* args[MAX_CREATE_PARAMS];
                 for(int i=0; i<nparams; i++)          CONSTRUCTOR_FRAME_ACTION(*method, r.get_method_frame(), object, {
                         v[i]=&r.process(params[i+2]);                  if(nparams>0){
                 frame.store_params((Value**)&v, nparams);                          if(params_hash){
         } else {                                  int i=0;
                 frame.empty_params();                                  for(HashStringValue::Iterator h(*params_hash); h; h.next())
         }                                          args[i++]=h.value();
         r.op_call(frame);                          } else {
         object.enable_default_setter();                                  for(int i=0; i<nparams; i++)
         r.write_pass_lang(frame.result());                                          args[i]=&r.process(params[i+params_offset]);
                           }
                           frame.store_params((Value**)&args, nparams);
                   } else {
                           frame.empty_params();
                   }
                   r.call(frame);
                   object.enable_default_setter();
                   r.write(frame.result());
           });
 }  }
   
   
Line 111  static void _classes(Request& r, MethodP Line 129  static void _classes(Request& r, MethodP
         for(HashString<VStateless_class*>::Iterator i(r.classes()); i; i.next()){          for(HashString<VStateless_class*>::Iterator i(r.classes()); i; i.next()){
                 result.hash().put(i.key(), i.value()->get_methods().count()>0 ? new VString(class_type_methoded) : VVoid::get() );                  result.hash().put(i.key(), i.value()->get_methods().count()>0 ? new VString(class_type_methoded) : VVoid::get() );
         }          }
         r.write_no_lang(result);          r.write(result);
 }  }
   
   
Line 134  static const String& get_class_name(Valu Line 152  static const String& get_class_name(Valu
   
   
 static void _class(Request& r, MethodParams& params) {  static void _class(Request& r, MethodParams& params) {
         r.write_no_lang(get_class(params[0]));          r.write(get_class(params[0]));
 }  }
   
   
 static void _class_name(Request& r, MethodParams& params) {  static void _class_name(Request& r, MethodParams& params) {
         r.write_no_lang(get_class_name(params[0]));          r.write(get_class_name(params[0]));
 }  }
   
 static void _class_by_name(Request& r, MethodParams& params) {  static void _class_by_name(Request& r, MethodParams& params) {
         const String& class_name=params.as_string(0, "class_name must be string");          const String& class_name=params.as_string(0, "class_name must be string");
         Value* class_value=r.get_class(class_name);          r.write(r.get_class_ref(class_name));
         if(!class_value)  }
                 throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");  
         r.write_no_lang(*class_value);  static void _class_alias(Request& r, MethodParams& params) {
           const String& src_class_name=params.as_string(0, "source class_name must be string");
           const String& new_class_name=params.as_string(1, "alias class_name must be string");
   
           VStateless_class &src_class=r.get_class_ref(src_class_name);
           if(!r.add_class(new_class_name.cstr(), &src_class))
                   throw Exception(PARSER_RUNTIME, &new_class_name, "class is already defined");
 }  }
   
 static void _base(Request& r, MethodParams& params) {  static void _base(Request& r, MethodParams& params) {
         if(VStateless_class* vclass=params[0].get_class())          if(VStateless_class* vclass=params[0].get_class())
                 if(Value* base=vclass->base()){                  if(Value* base=vclass->base()){
                         r.write_no_lang(get_class(*base));                          r.write(get_class(*base));
                         return;                          return;
                 }                  }
   
Line 165  static void _base(Request& r, MethodPara Line 189  static void _base(Request& r, MethodPara
 static void _base_name(Request& r, MethodParams& params) {  static void _base_name(Request& r, MethodParams& params) {
         if(VStateless_class* vclass=params[0].get_class())          if(VStateless_class* vclass=params[0].get_class())
                 if(Value* base=vclass->base())                  if(Value* base=vclass->base())
                         r.write_no_lang(get_class_name(*base));                          r.write(get_class_name(*base));
 }  }
   
 static void _def(Request& r, MethodParams& params) {  static void _def(Request& r, MethodParams& params) {
Line 173  static void _def(Request& r, MethodParam Line 197  static void _def(Request& r, MethodParam
         if(type == def_class) {          if(type == def_class) {
                 const String& name=params.as_string(1, "name must be string");                  const String& name=params.as_string(1, "name must be string");
                 // can't use get_class because it will call @autouse[] if the class wasn't loaded                  // can't use get_class because it will call @autouse[] if the class wasn't loaded
                 r.write_no_lang(VBool::get(r.classes().get(name)!=0));                  r.write(VBool::get(r.classes().get(name)!=0));
         } else {          } else {
                 throw Exception(PARSER_RUNTIME, &type, "is invalid type, must be '%s'", def_class.cstr());                  throw Exception(PARSER_RUNTIME, &type, "is an invalid type, must be '%s'", def_class.cstr());
         }          }
 }  }
   
 static void _methods(Request& r, MethodParams& params) {  static void _methods(Request& r, MethodParams& params) {
         const String& class_name=params.as_string(0, "class_name must be string");          const String& class_name=params.as_string(0, "class_name must be string");
         VStateless_class* vclass=r.get_class(class_name);          VStateless_class& vclass=r.get_class_ref(class_name);
         if(!vclass)  
                 throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");          bool reverse=true;
   
           if(params.count()>1)
                   if(HashStringValue* options=params.as_hash(1, "methods options")) {
                           int valid_options=0;
                           for(HashStringValue::Iterator i(*options); i; i.next() ){
                                   String::Body key=i.key();
                                   Value* value=i.value();
                                   if(key == "reverse") {
                                           reverse=r.process(*value).as_bool();
                                           valid_options++;
                                   }
                           }
                           if(valid_options!=options->count())
                                   throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
                   }
   
         VHash& result=*new VHash;          VHash& result=*new VHash;
         for(HashStringMethod::Iterator i(vclass->get_methods()); i; i.next()){  
                 result.hash().put(i.key(), new VString(i.value()->native_code ? method_type_native : method_type_parser));  #ifdef HASH_ORDER
           if(reverse){
                   for(HashStringMethod::ReverseIterator i(vclass.get_methods()); i; i.prev()){
                           result.hash().put(i.key(), new VString(i.value()->native_code ? method_type_native : method_type_parser));
                   }
           } else {
   #else
           {
   #endif
                   for(HashStringMethod::Iterator i(vclass.get_methods()); i; i.next()){
                           result.hash().put(i.key(), new VString(i.value()->native_code ? method_type_native : method_type_parser));
                   }
         }          }
   
         r.write_no_lang(result);          r.write(result);
 }  }
   
 static VJunction &method_junction(Value &self, Method &method){  static VJunction &method_junction(Value &self, Method &method){
Line 209  static void _method(Request& r, MethodPa Line 259  static void _method(Request& r, MethodPa
         if(Junction *j=source.get_junction()){          if(Junction *j=source.get_junction()){
                 if(Method* method=const_cast<Method*>(j->method)){                  if(Method* method=const_cast<Method*>(j->method)){
                         Value& self=params.count()>1 ? params.as_no_junction(1, "self must be object, not junction") : r.get_method_frame()->caller()->self();                          Value& self=params.count()>1 ? params.as_no_junction(1, "self must be object, not junction") : r.get_method_frame()->caller()->self();
                         r.write_no_lang(method_junction(self, *method));                          r.write(method_junction(self, *method));
                         return;                          return;
                 }                  }
                 throw Exception(PARSER_RUNTIME, 0, "param must be method junction");                  throw Exception(PARSER_RUNTIME, 0, "param must be method junction");
Line 222  static void _method(Request& r, MethodPa Line 272  static void _method(Request& r, MethodPa
   
         if(VStateless_class* vclass=source.get_class()) {          if(VStateless_class* vclass=source.get_class()) {
                 if(Method* method=vclass->get_method(name)){                  if(Method* method=vclass->get_method(name)){
                         r.write_no_lang( params.count()>2 ? method_junction(params.as_no_junction(2, "self must be object, not junction"), *method) : *method->get_vjunction(source) );                          r.write( params.count()>2 ? method_junction(params.as_no_junction(2, "self must be object, not junction"), *method) : *method->get_vjunction(source) );
                         return;                          return;
                 }                  }
         }          }
Line 233  static void _fields(Request& r, MethodPa Line 283  static void _fields(Request& r, MethodPa
         Value& o=params.as_no_junction(0, "param must be object or class, not junction");          Value& o=params.as_no_junction(0, "param must be object or class, not junction");
   
         if(HashStringValue* fields=o.get_fields())          if(HashStringValue* fields=o.get_fields())
                 r.write_no_lang(*new VHash(*fields));                  r.write(*new VHash(*fields));
         else          else
                 r.write_no_lang(*new VHash());                  r.write(*new VHash());
 }  }
   
 static void _fields_reference(Request& r, MethodParams& params) {  static void _fields_reference(Request& r, MethodParams& params) {
         Value& o=params.as_no_junction(0, "param must be object or hash, not junction");          Value& o=params.as_no_junction(0, "param must be object or hash, not junction");
   
         if(HashStringValue* fields=o.get_fields_reference())          if(HashStringValue* fields=o.get_fields_reference())
                 r.write_no_lang(*new VHashReference(*fields));                  r.write(*new VHashReference(*fields));
         else          else
                 throw Exception(PARSER_RUNTIME, 0, "param must be object or hash");                  throw Exception(PARSER_RUNTIME, 0, "param must be object or hash");
 }  }
Line 253  static void _field(Request& r, MethodPar Line 303  static void _field(Request& r, MethodPar
   
         if(HashStringValue* fields=o.get_fields())          if(HashStringValue* fields=o.get_fields())
                 if(Value* value=fields->get(name))                  if(Value* value=fields->get(name))
                         r.write_no_lang(*value);                          r.write(*value);
 }  }
   
 static void _method_info(Request& r, MethodParams& params) {  static void _method_info(Request& r, MethodParams& params) {
         const Method* method;          const Method* method;
         VStateless_class* vclass=0;  
           VHash& result=*new VHash;
           HashStringValue* hash=result.get_hash();
   
         if(Junction *j=params[0].get_junction()){          if(Junction *j=params[0].get_junction()){
                 if(!(method=j->method))                  if(!(method=j->method))
                         throw Exception(PARSER_RUNTIME, 0, "param must be class name or method junction");                          throw Exception(PARSER_RUNTIME, 0, "param must be class name or method junction");
   
                   hash->put(method_name, new VString(*method->name));
                   hash->put(method_class_name, new VString(*new String(j->self.type())));
   
         } else {          } else {
                 const String& class_name=params.as_string(0, "param must be class name or method junction");                  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_ref(class_name);
                         throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");  
   
                 if(params.count()==1)                  if(params.count()==1)
                         throw Exception(PARSER_RUNTIME, 0, "method name must be specified");                          throw Exception(PARSER_RUNTIME, 0, "method name must be specified");
   
                 const String& method_name=params.as_string(1, "method name must be string");                  const String& method_name=params.as_string(1, "method name must be string");
                 if(!(method=vclass->get_method(method_name)))                  if(!(method=vclass.get_method(method_name)))
                         throw Exception(PARSER_RUNTIME, &method_name, "method not found in class '%s'", vclass->type());                          throw Exception(PARSER_RUNTIME, &method_name, "method not found in class '%s'", vclass.type());
         }  
   
         VHash& result=*new VHash;                  Method* base_method;
         HashStringValue* hash=result.get_hash();                  if(vclass.base() && (base_method=vclass.base()->get_method(*method->name))){
         hash->put(method_name, new VString(*method->name));                          VStateless_class* c=vclass.base()->get_class();
                           while(c->base() && base_method==c->base()->get_method(*method->name))
         Method* base_method;                                  c=c->base()->get_class();
         if(vclass && vclass->base() && (base_method=vclass->base()->get_method(*method->name))){                          hash->put((base_method==method) ? method_inherited : method_overridden, new VString(*new String(c->type())));
                 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;          Value* call_type=0;
Line 308  static void _method_info(Request& r, Met Line 359  static void _method_info(Request& r, Met
                 hash->put(method_max_params, new VInt(method->max_numbered_params_count));                  hash->put(method_max_params, new VInt(method->max_numbered_params_count));
         } else {          } else {
                 // parser code                  // parser code
                 const String* filespec = r.get_method_filename(method);                  const String* filespec = r.get_method_filespec(method);
                 if( filespec )                  if( filespec )
                         hash->put("file", new VString(*filespec));                          hash->put("file", new VString(*filespec));
   
                 hash->put(method_max_params, new VInt(method->params_names ? method->params_names->count() : 0));                  hash->put(method_max_params, new VInt(method->params_count + (method->named_params ? 1 : 0)));
   
                 if(method->params_names)                  if(method->params_names)
                         for(size_t i=0; i<method->params_names->count(); i++)                          for(size_t i=0; i<method->params_names->count(); i++)
                                 hash->put(String::Body::Format(i), new VString(*method->params_names->get(i)));                                  hash->put(pa_uitoa(i), new VString(*method->params_names->get(i)));
   
                 if(method->extra_params)                  if(method->extra_params)
                         hash->put(method_extra_param, new VString(*method->extra_params));                          hash->put(method_extra_param, new VString(*method->extra_params));
                   if(method->named_params){
                           size_t named_count=method->named_params->count();
                           VArray& named_params=*new VArray(named_count);
                           ArrayValue &array=named_params.array();
   
                           for(int i=0; i<named_count; i++) {
                                   const String& fname=*(*method->named_params)[i];
                                   array+=new VString(fname);
                           }
                           hash->put(method_named_params, &named_params);
                   }
           }
   
           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");
         }          }
   
         r.write_no_lang(result);          if(VClass* vclass = dynamic_cast<VClass*>(params[0].get_class())){
                   r.write(*new VString(vclass->get_filespec()));
           }
 }  }
   
 static void _dynamical(Request& r, MethodParams& params) {  static void _dynamical(Request& r, MethodParams& params) {
         if(params.count()){          if(params.count()){
                 r.write_no_lang(VBool::get(params[0].get_class() != &params[0]));                  r.write(VBool::get(params[0].get_class() != &params[0]));
         } else {          } else {
                 VMethodFrame* caller=r.get_method_frame()->caller();                  VMethodFrame* caller=r.get_method_frame()->caller();
                 r.write_no_lang(VBool::get(caller && caller->get_class() != &caller->self()));                  r.write(VBool::get(caller && caller->get_class() != &caller->self()));
         }          }
 }  }
   
Line 343  static void _is(Request& r, MethodParams Line 421  static void _is(Request& r, MethodParams
         if(value) {          if(value) {
                 if(type == "code" || type == "method") {                  if(type == "code" || type == "method") {
                         Junction *junction=value->get_junction();                          Junction *junction=value->get_junction();
                         r.write_no_lang(VBool::get(junction && ((junction->code==0) ^ (type == "code"))) );                          r.write(VBool::get(junction && ((junction->code==0) ^ (type == "code"))) );
                 } else {                  } else {
                         r.write_no_lang(VBool::get( value->is(type.cstr()) ));                          r.write(VBool::get( value->is(type.cstr()) ));
                 }                  }
         } else          } else
                 r.write_no_lang(VBool::get(type == "void"));                  r.write(VBool::get(type == "void"));
 }  }
   
 static void _copy(Request& r, MethodParams& params) {  static void _copy(Request& r, MethodParams& params) {
Line 369  static void _uid(Request& r, MethodParam Line 447  static void _uid(Request& r, MethodParam
         char local_buf[MAX_NUMBER];          char local_buf[MAX_NUMBER];
         int size=snprintf(local_buf, sizeof(local_buf), "%p", &obj);          int size=snprintf(local_buf, sizeof(local_buf), "%p", &obj);
   
         r.write_pass_lang(*new String(String::C(pa_strdup(local_buf, (size_t)size), size)));          r.write(*new String(String::C(pa_strdup(local_buf, (size_t)size), size)));
 }  }
   
 static void _delete(Request&, MethodParams& params) {  static void _delete(Request&, MethodParams& params) {
Line 398  static void _mixin(Request& r, MethodPar Line 476  static void _mixin(Request& r, MethodPar
         if(params.count()>1)          if(params.count()>1)
                 if(HashStringValue* options=params.as_hash(1, "mixin options")) {                  if(HashStringValue* options=params.as_hash(1, "mixin options")) {
                         int valid_options=0;                          int valid_options=0;
                         if(vtarget=options->get("to")) {                          for(HashStringValue::Iterator i(*options); i; i.next() ){
                                 valid_options++;                                  String::Body key=i.key();
                         }                                  Value* value=i.value();
                         if(Value* vname=options->get("name")) {                                  if(key == "to") {
                                 name=&vname->as_string();                                          vtarget=value;
                                 valid_options++;                                          valid_options++;
                         }                                  } else if(key == "name") {
                         if(Value* vmethods=options->get("methods")) {                                          name=&value->as_string();
                                 copy_methods=r.process(*vmethods).as_bool();                                          valid_options++;
                                 valid_options++;                                  } else if(key == "methods") {
                         }                                          copy_methods=r.process(*value).as_bool();
                         if(Value* vfields=options->get("fields")) {                                          valid_options++;
                                 copy_fields=r.process(*vfields).as_bool();                                  } else if(key == "fields") {
                                 valid_options++;                                          copy_fields=r.process(*value).as_bool();
                         }                                          valid_options++;
                         if(Value* voverwrite=options->get("overwrite")) {                                  } else if(key == "overwrite") {
                                 overwrite=r.process(*voverwrite).as_bool();                                          overwrite=r.process(*value).as_bool();
                                 valid_options++;                                          valid_options++;
                                   }
                         }                          }
                         if(valid_options!=options->count())                          if(valid_options!=options->count())
                                 throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);                                  throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
Line 459  static void _mixin(Request& r, MethodPar Line 538  static void _mixin(Request& r, MethodPar
         }          }
 }  }
   
   String::Language get_untaint_lang(const String& lang_name); // op.C
   
   static void _tainting(Request& r, MethodParams& params) {
           const String& str=params.as_string(params.count()-1, "param must be string");
           String::Language lang = String::L_UNSPECIFIED;
           bool optimized=false;
   
           if(params.count()==2){
                   const String& slang=params.as_string(0, "language name must be string");
                   if(slang == "optimized")
                           optimized=true;
                   else if(slang == "tainted")
                           lang=String::L_TAINTED;
                   else lang=get_untaint_lang(slang);
           }
   
           if(!str.is_empty()){
                   char *visual=str.visualize_langs();
   
                   if(optimized){
                           for(char *c=visual; *c; c++)
                                   *c = *c<0 ? '+':'-';
                   } else if(lang != String::L_UNSPECIFIED){
                           for(char *c=visual; *c; c++)
                                   *c = *c==lang ? '+':'-';
                   } else {
                           for(char *c=visual; *c; c++)
                                   *c = *c & 0x7F;
                   }
   
                   r.write(*new String(visual));
           }
   }
   
   static void _stack(Request& r, MethodParams& params) {
           bool show_args=false;
           bool show_locals=false;
   
           int limit=1000000;
           int offset=0;
   
           if(params.count()>0)
                   if(HashStringValue* options=params.as_hash(0, "stack options")) {
                           int valid_options=0;
                           for(HashStringValue::Iterator i(*options); i; i.next() ){
                                   String::Body key=i.key();
                                   Value* value=i.value();
   
                                   if(key == "args") {
                                           show_args=r.process(*value).as_bool();
                                           valid_options++;
                                   } else if(key == "locals") {
                                           show_locals=r.process(*value).as_bool();
                                           valid_options++;
                                   } else if(key == "limit") {
                                           limit=r.process(*value).as_int();
                                           valid_options++;
                                   } else if(key == "offset") {
                                           offset=r.process(*value).as_int();
                                           valid_options++;
                                   }
                           }
   
                           if(valid_options!=options->count())
                                   throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
                   }
   
           limit+=offset;
   
           VHash& vresult=*new VHash;
           HashStringValue* result=vresult.get_hash();
           int index=1;
           VMethodFrame* caller=r.get_method_frame()->caller();
           while(caller && index <= limit){
                   if(index>offset){
                           VHash& vcurrent=*new VHash;
                           HashStringValue* current=vcurrent.get_hash();
   
                           current->put(Symbols::SELF_SYMBOL, &caller->self());
   
                           const Method& method=caller->method;
   
                           current->put(method_name, new VString(*method.name));
   
                           if(!method.native_code){
                                   Operation::Origin origin=r.get_method_origin(&method);
                                   if(origin.file_no){
                                           current->put("file", new VString(*r.get_used_filespec(origin.file_no)));
                                           current->put("line", new VInt(origin.line)); // no +1 as declaration before first command
                                   }
   
                                   if(show_args || show_locals){
   
                                           VHash& vargs=*new VHash;
                                           HashStringValue* args=vargs.get_hash();
   
                                           if(method.params_names){
                                                   for(size_t i=0; i<method.params_names->count(); i++){
                                                           const String& pname=*(*method.params_names)[i];
                                                           Value* value=caller->get_element(pname);
                                                           args->put(pname, value->get_junction() ? VVoid::get() : value);
                                                   }
                                           }
                                           if(method.extra_params)
                                                   args->put(*method.extra_params, caller->get_element(*method.extra_params));
   
                                           if(show_args)
                                                   current->put("args", &vargs);
   
                                           if(show_locals){
                                                   VHash& vlocals=*new VHash;
                                                   HashStringValue* locals=vlocals.get_hash();
   
                                                   if(VParserMethodFrame* frame=dynamic_cast<VParserMethodFrame*>(caller))
                                                           for(HashString<Value*>::Iterator h(frame->my); h; h.next()){
                                                                   String::Body key=h.key();
                                                                   Value* value=h.value();
                                                                   if(!args->contains(key) && (key != "result")){
                                                                           locals->put(key, value->get_junction() ? VVoid::get() : value);
                                                                   }
                                                           }
   
                                                   current->put("locals", &vlocals);
                                           }
                                   }
                           }
   
                           result->put(pa_uitoa(index), &vcurrent);
                   }
                   caller=caller->caller();
                   index++;
           }
   
           r.write(vresult);
   }
   
 // constructor  // constructor
 MReflection::MReflection(): Methoded("reflection") {  MReflection::MReflection(): Methoded("reflection") {
         // ^reflection:create[class_name;constructor_name[;param1[;param2[;...]]]]          // ^reflection:create[class_name;constructor_name[;param1[;param2[;...]]]]
         add_native_method("create", Method::CT_STATIC, _create, 2, 102);          // ^reflection:create[ $.class[name] $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ...] ]
           add_native_method("create", Method::CT_STATIC, _create, 1, MAX_CREATE_PARAMS + 2);
   
         // ^reflection:classes[]          // ^reflection:classes[]
         add_native_method("classes", Method::CT_STATIC, _classes, 0, 0);          add_native_method("classes", Method::CT_STATIC, _classes, 0, 0);
Line 477  MReflection::MReflection(): Methoded("re Line 692  MReflection::MReflection(): Methoded("re
         // ^reflection:class_by_name[class_name]          // ^reflection:class_by_name[class_name]
         add_native_method("class_by_name", Method::CT_STATIC, _class_by_name, 1, 1);          add_native_method("class_by_name", Method::CT_STATIC, _class_by_name, 1, 1);
   
           // ^reflection:class_alias[class_name;new_class_name]
           add_native_method("class_alias", Method::CT_STATIC, _class_alias, 2, 2);
   
         // ^reflection:base_class[object]          // ^reflection:base_class[object]
         add_native_method("base", Method::CT_STATIC, _base, 1, 1);          add_native_method("base", Method::CT_STATIC, _base, 1, 1);
   
Line 487  MReflection::MReflection(): Methoded("re Line 705  MReflection::MReflection(): Methoded("re
         add_native_method("def", Method::CT_STATIC, _def, 2, 2);          add_native_method("def", Method::CT_STATIC, _def, 2, 2);
   
         // ^reflection:methods[class_name]          // ^reflection:methods[class_name]
         add_native_method("methods", Method::CT_STATIC, _methods, 1, 1);          add_native_method("methods", Method::CT_STATIC, _methods, 1, 2);
   
         // ^reflection:method[object or class;method_name[;self]]          // ^reflection:method[object or class;method_name[;self]]
         // ^reflection:method[junction[;self]]          // ^reflection:method[junction[;self]]
Line 497  MReflection::MReflection(): Methoded("re Line 715  MReflection::MReflection(): Methoded("re
         // ^reflection:method_info[junction]          // ^reflection:method_info[junction]
         add_native_method("method_info", Method::CT_STATIC, _method_info, 1, 2);          add_native_method("method_info", Method::CT_STATIC, _method_info, 1, 2);
   
           // ^reflection:filename[object or class or method]
           add_native_method("filename", Method::CT_STATIC, _filename, 1, 1);
   
         // ^reflection:fields[object or class]          // ^reflection:fields[object or class]
         add_native_method("fields", Method::CT_STATIC, _fields, 1, 1);          add_native_method("fields", Method::CT_STATIC, _fields, 1, 1);
   
Line 524  MReflection::MReflection(): Methoded("re Line 745  MReflection::MReflection(): Methoded("re
         // ^reflection:mixin[object or class or junction;options]          // ^reflection:mixin[object or class or junction;options]
         add_native_method("mixin", Method::CT_STATIC, _mixin, 1, 2);          add_native_method("mixin", Method::CT_STATIC, _mixin, 1, 2);
   
           // ^reflection:tainting[[language or 'tainted' or 'optimized';]string]
           add_native_method("tainting", Method::CT_STATIC, _tainting, 1, 2);
   
           // ^reflection:stack[options]
           add_native_method("stack", Method::CT_STATIC, _stack, 0, 1);
   
 }  }

Removed from v.1.62  
changed lines
  Added in v.1.95


E-mail: