X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI.i;h=5f2a841785ae112251131f4231d1aab47e84ecb4;hb=506840f28e9ee8b4c520230193bcb28835757f59;hp=bbb3d7a412dbb25d7dd6ac3335829ea0028d2677;hpb=90bbd2eb64d0fa76030e5b93f4436ae2ec2a2e65;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI.i b/src/ModelAPI/ModelAPI.i index bbb3d7a41..5f2a84178 100644 --- a/src/ModelAPI/ModelAPI.i +++ b/src/ModelAPI/ModelAPI.i @@ -1,25 +1,158 @@ /* ModelAPI.i */ -%module ModelAPI +%module(directors="1") ModelAPI +%feature("director:except") { + if ($error != NULL) { + PyErr_Print(); + std::cerr << std::endl; + throw Swig::DirectorMethodException(); + } +} + %{ #include "ModelAPI.h" #include "ModelAPI_Document.h" - #include "ModelAPI_PluginManager.h" + #include "ModelAPI_Session.h" + #include "ModelAPI_Object.h" #include "ModelAPI_Feature.h" + #include "ModelAPI_Plugin.h" + #include "ModelAPI_CompositeFeature.h" + #include "ModelAPI_Data.h" + #include "ModelAPI_Attribute.h" + #include "ModelAPI_AttributeDocRef.h" + #include "ModelAPI_AttributeDouble.h" + #include "ModelAPI_AttributeInteger.h" + #include "ModelAPI_AttributeString.h" + #include "ModelAPI_AttributeReference.h" + #include "ModelAPI_AttributeRefAttr.h" + #include "ModelAPI_AttributeSelection.h" + #include "ModelAPI_AttributeSelectionList.h" + #include "ModelAPI_AttributeValidator.h" + #include "ModelAPI_Validator.h" + #include "ModelAPI_FeatureValidator.h" + #include "ModelAPI_AttributeRefList.h" + #include "ModelAPI_AttributeBoolean.h" + #include "ModelAPI_Result.h" + #include "ModelAPI_ResultConstruction.h" + #include "ModelAPI_ResultBody.h" + #include "ModelAPI_ResultPart.h" + #include "ModelAPI_ResultParameter.h" + #include "ModelAPI_ResultGroup.h" + #include "ModelAPI_Tools.h" + + #include + #include + + template + std::shared_ptr shared_ptr_cast(std::shared_ptr theObject) + { + return std::dynamic_pointer_cast(theObject); + } + %} // to avoid error on this #define MODELAPI_EXPORT // standard definitions +%include "GeomAPI.i" %include "typemaps.i" %include "std_string.i" +%include "std_list.i" +%include "std_shared_ptr.i" + +// directors +%feature("director") ModelAPI_Plugin; +%feature("director") ModelAPI_Object; +%feature("director") ModelAPI_Feature; +%feature("director") ModelAPI_CompositeFeature; +%feature("director") ModelAPI_Data; -// boost pointers -// %include -// %shared_ptr(ModelAPI_PluginManager) -// %shared_ptr(ModelAPI_Feature) +// shared pointers +// For ModelAPI_ResultConstruction.shape() +%shared_ptr(ModelAPI_Document) +%shared_ptr(ModelAPI_Session) +%shared_ptr(ModelAPI_Plugin) +%shared_ptr(ModelAPI_Object) +%shared_ptr(ModelAPI_Feature) +%shared_ptr(ModelAPI_CompositeFeature) +%shared_ptr(ModelAPI_Data) +%shared_ptr(ModelAPI_Attribute) +%shared_ptr(ModelAPI_AttributeDocRef) +%shared_ptr(ModelAPI_AttributeDouble) +%shared_ptr(ModelAPI_AttributeInteger) +%shared_ptr(ModelAPI_AttributeString) +%shared_ptr(ModelAPI_AttributeReference) +%shared_ptr(ModelAPI_AttributeRefAttr) +%shared_ptr(ModelAPI_AttributeRefList) +%shared_ptr(ModelAPI_AttributeBoolean) +%shared_ptr(ModelAPI_AttributeSelection) +%shared_ptr(ModelAPI_AttributeSelectionList) +%shared_ptr(ModelAPI_Validator) +%shared_ptr(ModelAPI_AttributeValidator) +%shared_ptr(ModelAPI_FeatureValidator) +%shared_ptr(ModelAPI_Result) +%shared_ptr(ModelAPI_ResultConstruction) +%shared_ptr(ModelAPI_ResultBody) +%shared_ptr(ModelAPI_ResultPart) +%shared_ptr(ModelAPI_ResultGroup) +%shared_ptr(ModelAPI_ResultParameter) // all supported interfaces %include "ModelAPI_Document.h" -%include "ModelAPI_PluginManager.h" +%include "ModelAPI_Session.h" +%include "ModelAPI_Plugin.h" +%include "ModelAPI_Object.h" %include "ModelAPI_Feature.h" +%include "ModelAPI_CompositeFeature.h" +%include "ModelAPI_Data.h" +%include "ModelAPI_Attribute.h" +%include "ModelAPI_AttributeDocRef.h" +%include "ModelAPI_AttributeDouble.h" +%include "ModelAPI_AttributeInteger.h" +%include "ModelAPI_AttributeString.h" +%include "ModelAPI_AttributeReference.h" +%include "ModelAPI_AttributeRefAttr.h" +%include "ModelAPI_AttributeBoolean.h" +%include "ModelAPI_AttributeSelection.h" +%include "ModelAPI_AttributeSelectionList.h" +%include "ModelAPI_AttributeRefList.h" +%include "ModelAPI_Validator.h" +%include "ModelAPI_AttributeValidator.h" +%include "ModelAPI_FeatureValidator.h" +%include "ModelAPI_Result.h" +%include "ModelAPI_ResultConstruction.h" +%include "ModelAPI_ResultBody.h" +%include "ModelAPI_ResultPart.h" +%include "ModelAPI_ResultGroup.h" +%include "ModelAPI_ResultParameter.h" +%include "ModelAPI_Tools.h" + +// std::list -> [] +%template(ObjectList) std::list >; +%template(ResultList) std::list >; +%template(DocumentList) std::list >; + +// std::dynamic_pointer_cast +template std::shared_ptr shared_ptr_cast(std::shared_ptr theObject); +%template(featureToCompositeFeature) shared_ptr_cast; +%template(objectToFeature) shared_ptr_cast; +%template(compositeFeatureToFeature) shared_ptr_cast; + +%template(modelAPI_Result) shared_ptr_cast; +%template(modelAPI_ResultConstruction) shared_ptr_cast; +%template(modelAPI_ResultBody) shared_ptr_cast; +%template(modelAPI_ResultPart) shared_ptr_cast; +%template(modelAPI_ResultParameter) shared_ptr_cast; +%template(modelAPI_ResultGroup) shared_ptr_cast; + +// Attribute casts +%template(modelAPI_AttributeDocRef) shared_ptr_cast; +%template(modelAPI_AttributeDouble) shared_ptr_cast; +%template(modelAPI_AttributeInteger) shared_ptr_cast; +%template(modelAPI_AttributeString) shared_ptr_cast; +%template(modelAPI_AttributeReference) shared_ptr_cast; +%template(modelAPI_AttributeRefAttr) shared_ptr_cast; +%template(modelAPI_AttributeBoolean) shared_ptr_cast; +%template(modelAPI_AttributeSelection) shared_ptr_cast; +%template(modelAPI_AttributeSelectionList) shared_ptr_cast; +%template(modelAPI_AttributeRefList) shared_ptr_cast;