X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI.i;h=6fd73dedba08d1c0fc98e94f641159c4fd032477;hb=ced98007eba772ef7ef3a3e7d98fee8477e8de07;hp=bdf6c28e52b440c0161f3fd7a0010419d974c8d9;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI.i b/src/ModelAPI/ModelAPI.i index bdf6c28e5..6fd73dedb 100644 --- a/src/ModelAPI/ModelAPI.i +++ b/src/ModelAPI/ModelAPI.i @@ -9,65 +9,32 @@ } %{ - #include "GeomAPI_Interface.h" - #include "GeomAPI_Shape.h" - #include "ModelAPI.h" - #include "ModelAPI_Document.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_ResultParameters.h" - #include "ModelAPI_ResultGroup.h" - #include "ModelAPI_Tools.h" - - template - std::shared_ptr shared_ptr_cast(std::shared_ptr theObject) - { - return std::dynamic_pointer_cast(theObject); - } - + #include "ModelAPI_swig.h" %} +// import other modules +%import "GeomAPI.i" + // to avoid error on this #define MODELAPI_EXPORT -#define GEOMAPI_EXPORT // standard definitions %include "typemaps.i" %include "std_string.i" %include "std_list.i" %include "std_shared_ptr.i" +%include "std_set.i" // directors %feature("director") ModelAPI_Plugin; %feature("director") ModelAPI_Object; %feature("director") ModelAPI_Feature; +%feature("director") ModelAPI_CompositeFeature; +%feature("director") ModelAPI_Data; // shared pointers // For ModelAPI_ResultConstruction.shape() -%shared_ptr(GeomAPI_Interface) -%shared_ptr(GeomAPI_Shape) +%shared_ptr(ModelAPI_Entity) %shared_ptr(ModelAPI_Document) %shared_ptr(ModelAPI_Session) %shared_ptr(ModelAPI_Plugin) @@ -78,14 +45,19 @@ %shared_ptr(ModelAPI_Attribute) %shared_ptr(ModelAPI_AttributeDocRef) %shared_ptr(ModelAPI_AttributeDouble) +%shared_ptr(ModelAPI_AttributeDoubleArray) %shared_ptr(ModelAPI_AttributeInteger) +%shared_ptr(ModelAPI_AttributeIntArray) %shared_ptr(ModelAPI_AttributeString) +%shared_ptr(ModelAPI_AttributeStringArray) %shared_ptr(ModelAPI_AttributeReference) %shared_ptr(ModelAPI_AttributeRefAttr) %shared_ptr(ModelAPI_AttributeRefList) +%shared_ptr(ModelAPI_AttributeRefAttrList) %shared_ptr(ModelAPI_AttributeBoolean) %shared_ptr(ModelAPI_AttributeSelection) %shared_ptr(ModelAPI_AttributeSelectionList) +%shared_ptr(ModelAPI_AttributeTables) %shared_ptr(ModelAPI_Validator) %shared_ptr(ModelAPI_AttributeValidator) %shared_ptr(ModelAPI_FeatureValidator) @@ -94,11 +66,36 @@ %shared_ptr(ModelAPI_ResultBody) %shared_ptr(ModelAPI_ResultPart) %shared_ptr(ModelAPI_ResultGroup) -%shared_ptr(ModelAPI_ResultParameters) +%shared_ptr(ModelAPI_ResultField) +%shared_ptr(ModelAPI_ResultParameter) +%shared_ptr(ModelAPI_ResultCompSolid) + +%typecheck(SWIG_TYPECHECK_POINTER) const ModelAPI_AttributeTables::Value { + $1 = (PyFloat_Check($input) || PyInt_Check($input) || PyLong_Check($input) || PyString_Check($input) || PyBool_Check($input)) ? 1 : 0; +} + +// Tables Value reading as int, double, boolean or string +%typemap(in) const ModelAPI_AttributeTables::Value { + if (PyInt_Check($input)) { + $1.myInt = int(PyInt_AsLong($input)); + $1.myDouble = double(PyInt_AsLong($input)); + $1.myBool = PyInt_AsLong($input) != 0; + } else if (PyFloat_Check($input)) { + $1.myInt = int(PyFloat_AsDouble($input)); + $1.myDouble = PyFloat_AsDouble($input); + } else if (PyBool_Check($input)) { + $1.myBool = $input == Py_True; + } else if (PyString_Check($input)) { + $1.myStr = PyString_AsString($input); + } else if ((SWIG_ConvertPtr($input, (void **)&$1, $1_descriptor, SWIG_POINTER_EXCEPTION)) == 0) { + } else { + PyErr_SetString(PyExc_ValueError, "Tables value must be int, double, string or bool."); + return NULL; + } +} // all supported interfaces -%include "GeomAPI_Interface.h" -%include "GeomAPI_Shape.h" +%include "ModelAPI_Entity.h" %include "ModelAPI_Document.h" %include "ModelAPI_Session.h" %include "ModelAPI_Plugin.h" @@ -109,14 +106,19 @@ %include "ModelAPI_Attribute.h" %include "ModelAPI_AttributeDocRef.h" %include "ModelAPI_AttributeDouble.h" +%include "ModelAPI_AttributeDoubleArray.h" %include "ModelAPI_AttributeInteger.h" +%include "ModelAPI_AttributeIntArray.h" %include "ModelAPI_AttributeString.h" +%include "ModelAPI_AttributeStringArray.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_AttributeRefAttrList.h" +%include "ModelAPI_AttributeTables.h" %include "ModelAPI_Validator.h" %include "ModelAPI_AttributeValidator.h" %include "ModelAPI_FeatureValidator.h" @@ -125,33 +127,48 @@ %include "ModelAPI_ResultBody.h" %include "ModelAPI_ResultPart.h" %include "ModelAPI_ResultGroup.h" -%include "ModelAPI_ResultParameters.h" +%include "ModelAPI_ResultField.h" +%include "ModelAPI_ResultParameter.h" %include "ModelAPI_Tools.h" +%include "ModelAPI_ResultCompSolid.h" -// std::list -> [] +// std::list -> [] +%template(StringList) std::list; %template(ObjectList) std::list >; %template(ResultList) std::list >; %template(DocumentList) std::list >; +// std::set -> [] +%template(AttributeSet) std::set >; // std::dynamic_pointer_cast template std::shared_ptr shared_ptr_cast(std::shared_ptr theObject); -%template(modelAPI_CompositeFeature) shared_ptr_cast; -%template(modelAPI_Feature) shared_ptr_cast; +%template(featureToCompositeFeature) shared_ptr_cast; +%template(objectToFeature) shared_ptr_cast; +%template(objectToResult) 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; +%template(modelAPI_ResultField) shared_ptr_cast; +%template(modelAPI_ResultCompSolid) shared_ptr_cast; // Attribute casts %template(modelAPI_AttributeDocRef) shared_ptr_cast; %template(modelAPI_AttributeDouble) shared_ptr_cast; +%template(modelAPI_AttributeDoubleArray) shared_ptr_cast; %template(modelAPI_AttributeInteger) shared_ptr_cast; +%template(modelAPI_AttributeIntArray) shared_ptr_cast; %template(modelAPI_AttributeString) shared_ptr_cast; +%template(modelAPI_AttributeStringArray) 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; +%template(modelAPI_AttributeRefAttrList) shared_ptr_cast; +%template(modelAPI_AttributeTables) shared_ptr_cast;