Salome HOME
955249b70b921ec48453eb172a3be98e505e7247
[modules/shaper.git] / src / SketchAPI / SketchAPI.i
1 /* SketchAPI.i */
2
3 %module SketchAPI
4
5 %{
6   #include "SketchAPI_swig.h"
7 %}
8
9 %include "doxyhelp.i"
10
11 // import other modules
12 %import "ModelHighAPI.i"
13
14 // to avoid error on this
15 #define SKETCHAPI_EXPORT
16
17 // standard definitions
18 %include "typemaps.i"
19 %include "std_list.i"
20 %include "std_shared_ptr.i"
21
22 // shared pointers
23 %shared_ptr(SketchAPI_Arc)
24 %shared_ptr(SketchAPI_Circle)
25 %shared_ptr(SketchAPI_IntersectionPoint)
26 %shared_ptr(SketchAPI_Line)
27 %shared_ptr(SketchAPI_Mirror)
28 %shared_ptr(SketchAPI_Sketch)
29 %shared_ptr(SketchAPI_SketchEntity)
30 %shared_ptr(SketchAPI_Point)
31 %shared_ptr(SketchAPI_Projection)
32 %shared_ptr(SketchAPI_Rotation)
33 %shared_ptr(SketchAPI_Translation)
34
35 // TODO(spo): move typemaps into ModelHighAPI package
36
37 // fix compilarion error: ‘res*’ was not declared in this scope
38 %typemap(freearg) const std::list<ModelHighAPI_RefAttr> & {}
39 %typemap(freearg) const std::list<std::shared_ptr<ModelAPI_Object> > & {}
40
41 %typemap(in) const std::list<ModelHighAPI_RefAttr> & (std::list<ModelHighAPI_RefAttr> temp) {
42   std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
43   int newmem = 0;
44   if (PySequence_Check($input)) {
45     for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
46       PyObject * item = PySequence_GetItem($input, i);
47       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_attribute, $descriptor(std::shared_ptr<ModelAPI_Attribute> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
48         if (!temp_attribute) {
49           PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
50           return NULL;
51         }
52         temp.push_back(ModelHighAPI_RefAttr(*temp_attribute));
53         if (newmem & SWIG_CAST_NEW_MEMORY) {
54           delete temp_attribute;
55         }
56       }
57       Py_DECREF(item);
58     }
59     $1 = &temp;
60   } else {
61     PyErr_SetString(PyExc_ValueError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
62     return NULL;
63   }
64 }
65
66 %typemap(in) const std::list<std::shared_ptr<ModelAPI_Object> > & (std::list<std::shared_ptr<ModelAPI_Object> > temp) {
67   std::shared_ptr<ModelAPI_Object> * temp_object;
68   std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
69   int newmem = 0;
70   if (PySequence_Check($input)) {
71     for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
72       PyObject * item = PySequence_GetItem($input, i);
73       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
74         if (!temp_object) {
75           PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_Interface or ModelAPI_Object.");
76           return NULL;
77         }
78         temp.push_back(*temp_object);
79         if (newmem & SWIG_CAST_NEW_MEMORY) {
80           delete temp_object;
81         }
82       } else
83       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
84         if (!temp_interface) {
85           PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_Interface or ModelAPI_Object.");
86           return NULL;
87         }
88         temp.push_back((*temp_interface)->defaultResult());
89         if (newmem & SWIG_CAST_NEW_MEMORY) {
90           delete temp_interface;
91         }
92       }
93       Py_DECREF(item);
94     }
95     $1 = &temp;
96   } else {
97     PyErr_SetString(PyExc_ValueError, "argument must be list of ModelHighAPI_Interface or ModelAPI_Object.");
98     return NULL;
99   }
100 }
101
102 // all supported interfaces (the order is very important according dependencies: base class first)
103 %include "SketchAPI_SketchEntity.h"
104 %include "SketchAPI_Point.h"
105 %include "SketchAPI_IntersectionPoint.h"
106 %include "SketchAPI_Line.h"
107 %include "SketchAPI_Circle.h"
108 %include "SketchAPI_Arc.h"
109 %include "SketchAPI_Projection.h"
110 %include "SketchAPI_Mirror.h"
111 %include "SketchAPI_Translation.h"
112 %include "SketchAPI_Rotation.h"
113 %include "SketchAPI_Sketch.h"