]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchAPI/SketchAPI.i
Salome HOME
ad38d9c556d450ac0124df660f948462689a5df3
[modules/shaper.git] / src / SketchAPI / SketchAPI.i
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 /* SketchAPI.i */
21
22 %module SketchAPI
23
24 %{
25   #include "SketchAPI_swig.h"
26   #include "ModelHighAPI_swig.h"
27
28   // fix for SWIG v2.0.4
29   #define SWIGPY_SLICE_ARG(obj) ((PyObject*)(obj))
30 %}
31
32 %include "doxyhelp.i"
33
34 // import other modules
35 %import "ModelAPI.i"
36 %import "ModelHighAPI.i"
37
38 // to avoid error on this
39 #define SKETCHAPI_EXPORT
40
41 // standard definitions
42 %include "typemaps.i"
43 %include "std_list.i"
44 %include "std_pair.i"
45 %include "std_shared_ptr.i"
46
47 // function with named parameters
48 %feature("kwargs") SketchAPI_BSpline::controlPoles;
49 %feature("kwargs") SketchAPI_BSpline::controlPolygon;
50 %feature("kwargs") SketchAPI_Ellipse::construction;
51 %feature("kwargs") SketchAPI_EllipticArc::construction;
52 %feature("kwargs") SketchAPI_Sketch::addSpline;
53 %feature("kwargs") SketchAPI_Sketch::setAngle;
54
55 // shared pointers
56 %shared_ptr(SketchAPI_Arc)
57 %shared_ptr(SketchAPI_MacroArc)
58 %shared_ptr(SketchAPI_Circle)
59 %shared_ptr(SketchAPI_MacroCircle)
60 %shared_ptr(SketchAPI_Ellipse)
61 %shared_ptr(SketchAPI_MacroEllipse)
62 %shared_ptr(SketchAPI_EllipticArc)
63 %shared_ptr(SketchAPI_MacroEllipticArc)
64 %shared_ptr(SketchAPI_BSpline)
65 %shared_ptr(SketchAPI_BSplinePeriodic)
66 %shared_ptr(SketchAPI_Constraint)
67 %shared_ptr(SketchAPI_ConstraintAngle)
68 %shared_ptr(SketchAPI_IntersectionPoint)
69 %shared_ptr(SketchAPI_Line)
70 %shared_ptr(SketchAPI_Mirror)
71 %shared_ptr(SketchAPI_Sketch)
72 %shared_ptr(SketchAPI_SketchEntity)
73 %shared_ptr(SketchAPI_Point)
74 %shared_ptr(SketchAPI_Projection)
75 %shared_ptr(SketchAPI_Rectangle)
76 %shared_ptr(SketchAPI_Rotation)
77 %shared_ptr(SketchAPI_Translation)
78
79 // std::list -> []
80 %template(InterfaceList) std::list<std::shared_ptr<ModelHighAPI_Interface> >;
81 %template(EntityList)    std::list<std::shared_ptr<SketchAPI_SketchEntity> >;
82 %template(SketchPointList) std::list<std::shared_ptr<SketchAPI_Point> >;
83 %template(GeomPnt2dList) std::list<std::shared_ptr<GeomAPI_Pnt2d> >;
84 // std::pair -> []
85 %template(PointRefAttrPair) std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr>;
86
87 %typecheck(SWIG_TYPECHECK_POINTER) std::shared_ptr<ModelAPI_Feature>, const std::shared_ptr<ModelAPI_Feature> & {
88   std::shared_ptr<ModelAPI_Feature> * temp_feature;
89   std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
90   int newmem = 0;
91   if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_feature, $descriptor(std::shared_ptr<ModelAPI_Feature> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
92     if (temp_feature) {
93       $1 = 1;
94     } else {
95       $1 = 0;
96     }
97   } else
98   if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
99     if (temp_interface) {
100       $1 = 1;
101     } else {
102       $1 = 0;
103     }
104   } else
105     $1 = 0;
106 }
107
108 %typemap(in) const std::shared_ptr<ModelAPI_Feature> & (std::shared_ptr<ModelAPI_Feature> temp) {
109   std::shared_ptr<ModelAPI_Feature> * temp_feature;
110   std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
111   int newmem = 0;
112   if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_feature, $descriptor(std::shared_ptr<ModelAPI_Feature> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
113     if (!temp_feature) {
114       PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_Interface.");
115       return NULL;
116     }
117     temp = (*temp_feature);
118     if (newmem & SWIG_CAST_NEW_MEMORY) {
119       delete temp_feature;
120     }
121     $1 = &temp;
122   } else
123   if ((SWIG_ConvertPtrAndOwn($input, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
124     if (!temp_interface) {
125       PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_Interface.");
126       return NULL;
127     }
128     temp = (*temp_interface)->feature();
129     if (newmem & SWIG_CAST_NEW_MEMORY) {
130       delete temp_interface;
131     }
132     $1 = &temp;
133   } else
134   if ((SWIG_ConvertPtr($input, (void **)&$1, $1_descriptor, SWIG_POINTER_EXCEPTION)) == 0) {
135   } else {
136     PyErr_SetString(PyExc_ValueError, "argument must be ModelHighAPI_Interface.");
137     return NULL;
138   }
139 }
140
141 %typemap(in) const std::list<std::shared_ptr<ModelAPI_Object> > & (std::list<std::shared_ptr<ModelAPI_Object> > temp) {
142   std::shared_ptr<ModelAPI_Object> * temp_object;
143   std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
144   ModelHighAPI_Selection* temp_selection;
145   int newmem = 0;
146   if (PySequence_Check($input)) {
147     for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
148       PyObject * item = PySequence_GetItem($input, i);
149       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_selection, $descriptor(ModelHighAPI_Selection*), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
150         if (!temp_selection) {
151           PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_Interface, ModelHighAPI_Selection or ModelAPI_Object.");
152           return NULL;
153         }
154         temp.push_back(temp_selection->resultSubShapePair().first);
155         if (newmem & SWIG_CAST_NEW_MEMORY) {
156           delete temp_selection;
157         }
158       } else
159       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
160         if (!temp_object) {
161           PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_Interface, ModelHighAPI_Selection or ModelAPI_Object.");
162           return NULL;
163         }
164         temp.push_back(*temp_object);
165         if (newmem & SWIG_CAST_NEW_MEMORY) {
166           delete temp_object;
167         }
168       } else
169       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
170         if (!temp_interface) {
171           PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_Interface, ModelHighAPI_Selection or ModelAPI_Object.");
172           return NULL;
173         }
174         temp.push_back((*temp_interface)->defaultResult());
175         if (newmem & SWIG_CAST_NEW_MEMORY) {
176           delete temp_interface;
177         }
178       }
179       Py_DECREF(item);
180     }
181     $1 = &temp;
182   } else {
183     PyErr_SetString(PyExc_ValueError, "argument must be list of ModelHighAPI_Interface or ModelAPI_Object.");
184     return NULL;
185   }
186 }
187
188 %typecheck(SWIG_TYPECHECK_POINTER) std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr>, const std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr> & {
189   std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
190   std::shared_ptr<ModelAPI_Object> * temp_object;
191   std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
192   ModelHighAPI_Selection* temp_selection;
193   std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr>* temp_pair;
194   std::shared_ptr<GeomAPI_Pnt2d> * temp_point;
195   ModelHighAPI_RefAttr temp_refattr;
196   int newmem = 0;
197   std::list<PyObject*> temp_inputlist;
198   if (PySequence_Check($input)) {
199     for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
200       PyObject * temp = PySequence_GetItem($input, i);
201       temp_inputlist.push_back(temp);
202     }
203   } else {
204     temp_inputlist.push_back($input);
205   }
206
207   $1 = 1;
208   for (std::list<PyObject*>::iterator it = temp_inputlist.begin(); it != temp_inputlist.end() && $1; ++it) {
209     PyObject* item = *it;
210
211     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_selection, $descriptor(ModelHighAPI_Selection*), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
212       if (temp_selection) {
213         $1 = 1;
214       } else {
215         $1 = 0;
216       }
217     } else
218     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_attribute, $descriptor(std::shared_ptr<ModelAPI_Attribute> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
219       if (temp_attribute) {
220         $1 = 1;
221       } else {
222         $1 = 0;
223       }
224     } else
225     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
226       if (temp_object) {
227         $1 = 1;
228       } else {
229         $1 = 0;
230       }
231     } else
232     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
233       if (temp_interface) {
234         $1 = 1;
235       } else {
236         $1 = 0;
237       }
238     } else
239     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_pair, $descriptor(std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
240       if (temp_pair) {
241         $1 = 1;
242       } else {
243         $1 = 0;
244       }
245     } else
246     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_point, $descriptor(std::shared_ptr<GeomAPI_Pnt2d> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
247       if (temp_point) {
248         $1 = 1;
249       } else {
250         $1 = 0;
251       }
252     } else {
253       $1 = 0;
254     }
255   }
256 }
257
258 %typemap(in) const std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr> & (std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr> temp) {
259   std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
260   std::shared_ptr<ModelAPI_Object> * temp_object;
261   std::shared_ptr<ModelHighAPI_Interface> * temp_interface;
262   ModelHighAPI_Selection* temp_selection;
263   std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr>* temp_pair;
264   std::shared_ptr<GeomAPI_Pnt2d> * temp_point = 0;
265   ModelHighAPI_RefAttr temp_refattr;
266   int newmem = 0;
267   std::list<PyObject*> temp_inputlist;
268   if (PySequence_Check($input)) {
269     for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
270       PyObject * temp = PySequence_GetItem($input, i);
271       temp_inputlist.push_back(temp);
272     }
273   } else {
274     temp_inputlist.push_back($input);
275   }
276
277   for (std::list<PyObject*>::iterator it = temp_inputlist.begin(); it != temp_inputlist.end(); ++it) {
278     PyObject* item = *it;
279
280     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_selection, $descriptor(ModelHighAPI_Selection*), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
281       if (temp_selection) {
282         temp_refattr = ModelHighAPI_RefAttr(std::shared_ptr<ModelAPI_Object>(temp_selection->resultSubShapePair().first));
283         if (newmem & SWIG_CAST_NEW_MEMORY) {
284           delete temp_selection;
285         }
286       }
287     } else
288     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_attribute, $descriptor(std::shared_ptr<ModelAPI_Attribute> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
289       if (temp_attribute) {
290         temp_refattr = ModelHighAPI_RefAttr(*temp_attribute);
291         if (newmem & SWIG_CAST_NEW_MEMORY) {
292           delete temp_attribute;
293         }
294       }
295     } else
296     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_object, $descriptor(std::shared_ptr<ModelAPI_Object> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
297       if (temp_object) {
298         temp_refattr = ModelHighAPI_RefAttr(*temp_object);
299         if (newmem & SWIG_CAST_NEW_MEMORY) {
300           delete temp_object;
301         }
302       }
303     } else
304     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_interface, $descriptor(std::shared_ptr<ModelHighAPI_Interface> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
305       if (temp_interface) {
306         temp_refattr = ModelHighAPI_RefAttr(*temp_interface);
307         if (newmem & SWIG_CAST_NEW_MEMORY) {
308           delete temp_interface;
309         }
310       }
311     } else
312     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_pair, $descriptor(std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
313       if (temp_pair) {
314         temp_point = &temp_pair->first;
315         temp_refattr = temp_pair->second;
316         if (newmem & SWIG_CAST_NEW_MEMORY) {
317           delete temp_pair;
318         }
319       }
320     } else
321     if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_point, $descriptor(std::shared_ptr<GeomAPI_Pnt2d> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
322       // fall through
323     }
324   }
325
326   if (temp_point || !temp_refattr.isEmpty()) {
327     if (temp_point) {
328       temp = std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr>(*temp_point, temp_refattr);
329     } else {
330       temp = std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr>(std::shared_ptr<GeomAPI_Pnt2d>(), temp_refattr);
331     }
332     if (temp_point && (newmem & SWIG_CAST_NEW_MEMORY)) {
333       delete temp_point;
334     }
335     $1 = &temp;
336   } else {
337     PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_RefAttr, ModelHighAPI_Selection, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
338     return NULL;
339   }
340 }
341
342 // fix compilarion error: 'res*' was not declared in this scope
343 %typemap(freearg) const std::pair<std::shared_ptr<GeomAPI_Pnt2d>, ModelHighAPI_RefAttr> & {}
344
345
346 %typemap(in) const std::list<std::shared_ptr<GeomAPI_Pnt2d> > & (std::list<std::shared_ptr<GeomAPI_Pnt2d> > temp) {
347   std::shared_ptr<GeomAPI_Pnt2d> * temp_point = 0;
348   int newmem = 0;
349   if (PySequence_Check($input)) {
350     for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
351       PyObject * item = PySequence_GetItem($input, i);
352       if (PyTuple_Check(item)) {
353         if (PyTuple_Size(item) == 2) {
354           double x = (double)PyFloat_AsDouble(PySequence_GetItem(item, 0));
355           double y = (double)PyFloat_AsDouble(PySequence_GetItem(item, 1));
356           temp.push_back(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(x, y)));
357         } else {
358           PyErr_SetString(PyExc_TypeError, "argument must a list of 2D points.");
359           return NULL;
360         }
361       } else
362       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_point, $descriptor(std::shared_ptr<GeomAPI_Pnt2d> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
363         temp.push_back(*temp_point);
364         if (temp_point && (newmem & SWIG_CAST_NEW_MEMORY)) {
365           delete temp_point;
366         }
367       } else {
368         PyErr_SetString(PyExc_TypeError, "argument must a list of 2D points.");
369         return NULL;
370       }
371       Py_DECREF(item);
372     }
373     $1 = &temp;
374   } else {
375     PyErr_SetString(PyExc_ValueError, "argument must be a tuple of lists.");
376     return NULL;
377   }
378 }
379
380 %typecheck(SWIG_TYPECHECK_POINTER) std::list<std::shared_ptr<GeomAPI_Pnt2d> >, const std::list<std::shared_ptr<GeomAPI_Pnt2d> >& {
381   std::shared_ptr<GeomAPI_Pnt2d> * temp_point = 0;
382   int newmem = 0;
383   if (PySequence_Check($input)) {
384     for (Py_ssize_t i = 0; i < PySequence_Size($input) && $1; ++i) {
385       PyObject * item = PySequence_GetItem($input, i);
386       if (PyTuple_Check(item)) {
387         if (PyTuple_Size(item) == 2) {
388           if (PyNumber_Check(PySequence_GetItem(item, 0)) && PyNumber_Check(PySequence_GetItem(item, 1))) {
389             $1 = 1;
390           } else {
391             $1 = 0;
392           }
393         } else {
394           $1 = 0;
395         }
396       } else
397       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_point, $descriptor(std::shared_ptr<GeomAPI_Pnt2d> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
398         if (temp_point) {
399           $1 = 1;
400         } else {
401           $1 = 0;
402         }
403       }
404       Py_DECREF(item);
405     }
406   } else {
407     $1 = 0;
408   }
409 }
410
411 // fix compilarion error: 'res*' was not declared in this scope
412 %typemap(freearg) const std::list<std::shared_ptr<GeomAPI_Pnt2d> > & {}
413
414
415 // all supported interfaces (the order is very important according dependencies: base class first)
416 %include "SketchAPI_SketchEntity.h"
417 %include "SketchAPI_Point.h"
418 %include "SketchAPI_IntersectionPoint.h"
419 %include "SketchAPI_Line.h"
420 %include "SketchAPI_Circle.h"
421 %include "SketchAPI_MacroCircle.h"
422 %include "SketchAPI_Arc.h"
423 %include "SketchAPI_MacroArc.h"
424 %include "SketchAPI_Ellipse.h"
425 %include "SketchAPI_MacroEllipse.h"
426 %include "SketchAPI_EllipticArc.h"
427 %include "SketchAPI_MacroEllipticArc.h"
428 %include "SketchAPI_BSpline.h"
429 %include "SketchAPI_Projection.h"
430 %include "SketchAPI_Mirror.h"
431 %include "SketchAPI_Translation.h"
432 %include "SketchAPI_Rectangle.h"
433 %include "SketchAPI_Rotation.h"
434 %include "SketchAPI_Sketch.h"
435 %include "SketchAPI_Constraint.h"
436 %include "SketchAPI_ConstraintAngle.h"