OpenSceneGraph/include/osgIntrospection
Robert Osfield f3b71fc2ac From David Callu:
"
  the main problem is the wrapper generation:
       The PropertyInfo class use MethodInfo class to access to the value.
       When the property are define with the I_Property* macro,
       the MethodInfo use by the property to have access to the value
       are instancied in the I_Property* macro, but there
       are already instantied by the I_Method* macro before


   secondary problem:
      - the function used by the property could no be customized
        in the genwrapper.conf file
      - an array property can't insert a value
      - the std::map reflector (and indexedProperty in general) haven't remove method
      - about the help in wrapper ... why not ...



   solution :
      To use the function define by the I_Method, I add a MethodInfo variable in the I_Method0 macro
        old macro :
           #define I_Method0(ret, fn) (\
           params.clear(),\
           addMethod(new osgIntrospection::TypedMethodIn
fo0<reflected_type, ret >(qualifyName(#fn), &reflected_type::fn, params)))

        new macro :
           #define I_Method0(ret, fn, signature, briefHelp, detailedHelp) \
           params.clear(); \
          osgIntrospection::MethodInfo* signature = addMethod(new osgIntrospection::TypedMethodInfo0<reflected_type, ret >(qualifyName(#fn), &reflected_type::fn, params, briefHelp, detailedHelp)); sink(signature)



    the osgIntrospection::MethodInfo* signature is used by the I_Property macro to define the MethodInfo that it use

    so for I_Property macro :
        old macro :
          #define I_PropertyWithReturnType(t, n, r) \
          cap=addProperty(new osgIntrospection::PropertyInfo(osgIntrospection::Reflection::getType(typeid(reflected_type)), osgIntrospection::Reflection::getType(typeid(t)), #n, \
          I_Method0(t, get##n), \
          I_Method1(r, set##n, IN, t, value)))

         new macro:
           #define I_SimpleProperty(t, n, get, set) \
           get, \
           set))

      The genwrapper has been modified in this way.
      The method signature is define by the prototype of the method
      For example, the "const char* libraryName();" have "__C5_char_P1__libraryName" for signature


   solution for secondary problem:
      The genwrapper accept new tokens in the configuration to custumize the property.
      The new PropertyInserter and the CustomPropertyInsertAttribute class has been defined
      The PropertyRemover has been added to the StdMapReflector
      The _briefHelp and _detailedHelp variable has been added in PropertyInfo, MethodInfo and ContructorInfo class






   modification:

      I have modify the genwrapper files
          Configuration.cpp Configuration.h                          add some tokens to custumize the property
          Doxyfile.template                                                 add the comment in the output xml
          genwrapper.conf                                                  customize some property in osg::Geometry
          RegistryBuilder.h RegistryBuilder.cpp                    add the process_help function (to extract help from xml)
          TypeRegister.cpp TypeRegister.h                         optimize the property detection
          TypeDesc.h TypeDesc.cpp                                   modify FunctionDesc and PropertyDesc
          WrapperGenerator.h WrapperGenerator.cpp          modify the output




      I also modify the fallowing osgIntrospection files:

          include/osgIntrospection/Attributes                              add the PropertyInserter and the CustomPropertyInsertAttribute class
          include/osgIntrospection/ConstructorInfo                      add the _briefHelp and _detailedHelp variable in the ConstructorInfo class
                                                                                          add access function for the two new variables (_briefHelp and _detailedHelp)
                                                                                          modify the constructor to define the two new variables (_briefHelp and _detailedHelp)
          include/osgIntrospection/MethodInfo                            add the _briefHelp and _detailedHelp variable in the MethodInfo class
                                                                                          add access function for the two new variables (_briefHelp and _detailedHelp)
                                                                                          modify the constructor to define the two new variables (_briefHelp and _detailedHelp)
          include/osgIntrospection/PropertyInfo                          add the _briefHelp and _detailedHelp variable in the PropertyInfo class
                                                                                          add access function for the two new variables (_briefHelp and _detailedHelp)
                                                                                          modify the constructor to define the two new variables (_briefHelp and _detailedHelp)
          include/osgIntrospection/ReflectionMacro                    remove unused I_Property* macro
                                                                                          modify all I_Method macro to accept the help string
                                                                                          modify all I_Method macro to define a MethodInfo signature
          include/osgIntrospection/Reflector                              add the PropertyInserter in StdVectorReflector and StdListReflector
                                                                                          add the PropertyRemover in the StdMapReflector
          include/osgIntrospection/StaticMethodInfo                   modify all StaticMethodInfo* to accept the help in parameter
          include/osgIntrospection/TypedMethodInfo                  modify all TypedMethodInfo* to accept the help in parameter
          include/osgIntrospection/TypedConstructorInfo             modify all TypedConstructorInfo* to accept the help in parameter
          include/osgIntrospection/Type                                     add the _briefHelp and _detailedHelp variable in the Type class

"
2006-10-17 15:17:06 +00:00
..
Attributes From David Callu: 2006-10-17 15:17:06 +00:00
Comparator Updated copyright years. 2006-07-18 15:21:48 +00:00
ConstructorInfo From David Callu: 2006-10-17 15:17:06 +00:00
Converter Updated copyright years. 2006-07-18 15:21:48 +00:00
ConverterProxy Updated copyright years. 2006-07-18 15:21:48 +00:00
CustomAttribute Updated copyright years. 2006-07-18 15:21:48 +00:00
CustomAttributeProvider Updated copyright years. 2006-07-18 15:21:48 +00:00
Exceptions From David Callu: 2006-10-17 15:17:06 +00:00
Export Updated copyright years. 2006-07-18 15:21:48 +00:00
InstanceCreator Updated copyright years. 2006-07-18 15:21:48 +00:00
MethodInfo From David Callu: 2006-10-17 15:17:06 +00:00
ParameterInfo Updated copyright years. 2006-07-18 15:21:48 +00:00
PropertyInfo From David Callu: 2006-10-17 15:17:06 +00:00
PublicMemberAccessor From David Callu, 2006-09-01 12:52:15 +00:00
ReaderWriter From David Callu, 2006-09-01 12:52:15 +00:00
Reflection Updated copyright years. 2006-07-18 15:21:48 +00:00
ReflectionMacros From David Callu: 2006-10-17 15:17:06 +00:00
Reflector From David Callu: 2006-10-17 15:17:06 +00:00
StaticMethodInfo From David Callu: 2006-10-17 15:17:06 +00:00
Type From David Callu: 2006-10-17 15:17:06 +00:00
TypedConstructorInfo From David Callu: 2006-10-17 15:17:06 +00:00
TypedMethodInfo From David Callu: 2006-10-17 15:17:06 +00:00
TypeNameAliasProxy Updated copyright years. 2006-07-18 15:21:48 +00:00
Utility From David Callu: 2006-10-17 15:17:06 +00:00
Value From David Callu, 2006-09-01 12:52:15 +00:00
variant_cast Updated copyright years. 2006-07-18 15:21:48 +00:00