1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
22 %module(directors="1") ModelHighAPI
23 %feature("director:except") {
26 std::cerr << std::endl;
27 throw Swig::DirectorMethodException();
32 #include "ModelHighAPI_swig.h"
34 // fix for SWIG v2.0.4
35 #define SWIGPY_SLICE_ARG(obj) ((PySliceObject*)(obj))
40 // import other modules
43 %import "GeomDataAPI.i"
45 // to avoid error on this
46 #define MODELHIGHAPI_EXPORT
48 // standard definitions
52 %include "std_string.i"
53 %include "std_shared_ptr.i"
56 %feature("director") ModelHighAPI_Dumper;
59 %shared_ptr(ModelHighAPI_Interface)
60 %shared_ptr(ModelHighAPI_Folder)
64 %typemap(in) const ModelHighAPI_Double & (ModelHighAPI_Double temp) {
65 if (PyFloat_Check($input) || PyInt_Check($input) || PyLong_Check($input)) {
66 temp = ModelHighAPI_Double(PyFloat_AsDouble($input));
68 } else if (PyString_Check($input)) {
69 temp = ModelHighAPI_Double(PyString_AsString($input));
71 } else if ((SWIG_ConvertPtr($input, (void **)&$1, $1_descriptor, SWIG_POINTER_EXCEPTION)) == 0) {
73 PyErr_SetString(PyExc_ValueError, "argument must be ModelHighAPI_Double, float, int or string.");
77 %typecheck(SWIG_TYPECHECK_POINTER) ModelHighAPI_Double, const ModelHighAPI_Double & {
78 $1 = ((PyFloat_Check($input) || PyInt_Check($input) || PyLong_Check($input) || PyString_Check($input)) && !PyBool_Check($input)) ? 1 : 0;
81 %typemap(in) const ModelHighAPI_Integer & (ModelHighAPI_Integer temp) {
82 if (PyInt_Check($input)) {
83 temp = ModelHighAPI_Integer(static_cast<int>(PyInt_AsLong($input)));
85 } else if (PyString_Check($input)) {
86 temp = ModelHighAPI_Integer(PyString_AsString($input));
88 } else if ((SWIG_ConvertPtr($input, (void **)&$1, $1_descriptor, SWIG_POINTER_EXCEPTION)) == 0) {
90 PyErr_SetString(PyExc_ValueError, "argument must be ModelHighAPI_Integer, int or string.");
94 %typecheck(SWIG_TYPECHECK_POINTER) ModelHighAPI_Integer, const ModelHighAPI_Integer & {
95 $1 = ((PyInt_Check($input) || PyString_Check($input)) && !PyBool_Check($input)) ? 1 : 0;
98 %typemap(in) const ModelHighAPI_RefAttr & (ModelHighAPI_RefAttr temp) {
99 std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
100 std::shared_ptr<ModelAPI_Object> * temp_object;
101 std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
103 if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_attribute, $descriptor(std::shared_ptr<ModelAPI_Attribute> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
104 if (!temp_attribute) {
105 PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
108 temp = ModelHighAPI_RefAttr(*temp_attribute);
109 if (newmem & SWIG_CAST_NEW_MEMORY) {
110 delete temp_attribute;
114 if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
116 PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
119 temp = ModelHighAPI_RefAttr(*temp_object);
120 if (newmem & SWIG_CAST_NEW_MEMORY) {
125 if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
126 if (!temp_interface) {
127 PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
130 temp = ModelHighAPI_RefAttr(*temp_interface);
131 if (newmem & SWIG_CAST_NEW_MEMORY) {
132 delete temp_interface;
136 if ((SWIG_ConvertPtr($input, (void **)&$1, $1_descriptor, SWIG_POINTER_EXCEPTION)) == 0) {
138 PyErr_SetString(PyExc_ValueError, "argument must be ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
143 %typecheck(SWIG_TYPECHECK_POINTER) ModelHighAPI_RefAttr, const ModelHighAPI_RefAttr & {
144 std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
145 std::shared_ptr<ModelAPI_Object> * temp_object;
146 std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
147 ModelHighAPI_Selection* temp_selection;
149 if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_attribute, $descriptor(std::shared_ptr<ModelAPI_Attribute> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
150 if (temp_attribute) {
155 } else if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
161 } else if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
162 if (temp_interface) {
167 } else if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_selection, $descriptor(ModelHighAPI_Selection*), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
168 if (temp_selection) {
178 %typemap(in) const ModelHighAPI_Reference & (ModelHighAPI_Reference temp) {
179 std::shared_ptr<ModelAPI_Object> * temp_object;
180 std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
182 if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
184 PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_Interface or ModelAPI_Object.");
187 temp = ModelHighAPI_Reference(*temp_object);
188 if (newmem & SWIG_CAST_NEW_MEMORY) {
193 if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
194 if (!temp_interface) {
195 PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_Interface or ModelAPI_Object.");
198 temp = ModelHighAPI_Reference(*temp_interface);
199 if (newmem & SWIG_CAST_NEW_MEMORY) {
200 delete temp_interface;
204 if ((SWIG_ConvertPtr($input, (void **)&$1, $1_descriptor, SWIG_POINTER_EXCEPTION)) == 0) {
206 PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_Interface or ModelAPI_Object.");
211 %typecheck(SWIG_TYPECHECK_POINTER) ModelHighAPI_Reference, const ModelHighAPI_Reference & {
212 std::shared_ptr<ModelAPI_Object> * temp_object;
213 std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
215 if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
222 if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
223 if (temp_interface) {
233 %typemap(out) const ModelHighAPI_Selection & {
234 $1_basetype * ptr = new $1_basetype(*$1);
235 $result = SWIG_NewPointerObj( (void*) ptr, $1_descriptor, 1 );
238 %typemap(out) const ModelHighAPI_Reference & {
239 $1_basetype * ptr = new $1_basetype(*$1);
240 $result = SWIG_NewPointerObj( (void*) ptr, $1_descriptor, 1 );
244 %template(SelectionList) std::list<ModelHighAPI_Selection>;
245 %template(RefAttrList) std::list<ModelHighAPI_RefAttr>;
246 %template(RefList) std::list<ModelHighAPI_Reference>;
249 %template(ResultSubShapePair) std::pair<std::shared_ptr<ModelAPI_Result>, std::shared_ptr<GeomAPI_Shape> >;
252 // fix compilarion error: 'res*' was not declared in this scope
253 %typemap(freearg) const std::list<ModelHighAPI_RefAttr> & {}
254 %typemap(freearg) const std::list<std::shared_ptr<ModelAPI_Object> > & {}
256 %typemap(in) const std::list<ModelHighAPI_RefAttr> & (std::list<ModelHighAPI_RefAttr> temp) {
257 std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
259 if (PySequence_Check($input)) {
260 for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
261 PyObject * item = PySequence_GetItem($input, i);
262 if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_attribute, $descriptor(std::shared_ptr<ModelAPI_Attribute> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
263 if (!temp_attribute) {
264 PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
267 temp.push_back(ModelHighAPI_RefAttr(*temp_attribute));
268 if (newmem & SWIG_CAST_NEW_MEMORY) {
269 delete temp_attribute;
276 PyErr_SetString(PyExc_ValueError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
281 %typemap(in) const std::list<std::shared_ptr<ModelAPI_Object> > & (std::list<std::shared_ptr<ModelAPI_Object> > temp) {
282 std::shared_ptr<ModelAPI_Object> * temp_object;
283 std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
285 if (PySequence_Check($input)) {
286 for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
287 PyObject * item = PySequence_GetItem($input, i);
288 if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
290 PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_Interface or ModelAPI_Object.");
293 temp.push_back(*temp_object);
294 if (newmem & SWIG_CAST_NEW_MEMORY) {
298 if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
299 if (!temp_interface) {
300 PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_Interface or ModelAPI_Object.");
303 temp.push_back((*temp_interface)->defaultResult());
304 if (newmem & SWIG_CAST_NEW_MEMORY) {
305 delete temp_interface;
312 PyErr_SetString(PyExc_ValueError, "argument must be list of ModelHighAPI_Interface or ModelAPI_Object.");
317 %typecheck(SWIG_TYPECHECK_POINTER) std::list<std::shared_ptr<ModelAPI_Object> >, const std::list<std::shared_ptr<ModelAPI_Object> >& {
318 std::shared_ptr<ModelAPI_Object> * temp_object;
319 std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
321 if (PySequence_Check($input)) {
322 for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
323 PyObject * item = PySequence_GetItem($input, i);
324 if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
332 if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
333 if (temp_interface) {
347 // all supported interfaces
348 %include "ModelHighAPI_Double.h"
349 %include "ModelHighAPI_Dumper.h"
350 %include "ModelHighAPI_Integer.h"
351 %include "ModelHighAPI_Interface.h"
352 %include "ModelHighAPI_Folder.h"
353 %include "ModelHighAPI_RefAttr.h"
354 %include "ModelHighAPI_Reference.h"
355 %include "ModelHighAPI_Selection.h"
356 %include "ModelHighAPI_Services.h"
357 %include "ModelHighAPI_Macro.h"
358 %include "ModelHighAPI_Tools.h"