X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchAPI%2FSketchAPI.i;h=e756dd63840974c33182065f69721d2990b6c224;hb=782cb1f92bf82c5b10c912d523e004ef0cf6b8a3;hp=ad38d9c556d450ac0124df660f948462689a5df3;hpb=ad093343c313ca7883863b06bcad4b220e8910fb;p=modules%2Fshaper.git diff --git a/src/SketchAPI/SketchAPI.i b/src/SketchAPI/SketchAPI.i index ad38d9c55..e756dd638 100644 --- a/src/SketchAPI/SketchAPI.i +++ b/src/SketchAPI/SketchAPI.i @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2024 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -25,13 +25,22 @@ #include "SketchAPI_swig.h" #include "ModelHighAPI_swig.h" + // fix for SWIG v4.1.1 + #if PY_VERSION_HEX >= 0x03020000 + # define SWIGPY_SLICEOBJECT PyObject + #else + # define SWIGPY_SLICEOBJECT PySliceObject + #endif + // fix for SWIG v2.0.4 - #define SWIGPY_SLICE_ARG(obj) ((PyObject*)(obj)) + #define SWIGPY_SLICE_ARG(obj) ((SWIGPY_SLICEOBJECT*)(obj)) + #define SWIGPY_UNICODE_ARG(obj) ((PyObject*) (obj)) %} %include "doxyhelp.i" // import other modules +%import "GeomAPI.i" %import "ModelAPI.i" %import "ModelHighAPI.i" @@ -39,16 +48,16 @@ #define SKETCHAPI_EXPORT // standard definitions -%include "typemaps.i" -%include "std_list.i" %include "std_pair.i" -%include "std_shared_ptr.i" // function with named parameters %feature("kwargs") SketchAPI_BSpline::controlPoles; %feature("kwargs") SketchAPI_BSpline::controlPolygon; %feature("kwargs") SketchAPI_Ellipse::construction; %feature("kwargs") SketchAPI_EllipticArc::construction; +%feature("kwargs") SketchAPI_Sketch::addApproximation; +%feature("kwargs") SketchAPI_Sketch::addInterpolation; +%feature("kwargs") SketchAPI_Sketch::addProjection; %feature("kwargs") SketchAPI_Sketch::addSpline; %feature("kwargs") SketchAPI_Sketch::setAngle; @@ -68,9 +77,11 @@ %shared_ptr(SketchAPI_IntersectionPoint) %shared_ptr(SketchAPI_Line) %shared_ptr(SketchAPI_Mirror) +%shared_ptr(SketchAPI_Offset) %shared_ptr(SketchAPI_Sketch) %shared_ptr(SketchAPI_SketchEntity) %shared_ptr(SketchAPI_Point) +%shared_ptr(SketchAPI_MacroMiddlePoint) %shared_ptr(SketchAPI_Projection) %shared_ptr(SketchAPI_Rectangle) %shared_ptr(SketchAPI_Rotation) @@ -84,6 +95,9 @@ // std::pair -> [] %template(PointRefAttrPair) std::pair, ModelHighAPI_RefAttr>; +%template(RectangleAndPoint) std::pair, std::shared_ptr>; + + %typecheck(SWIG_TYPECHECK_POINTER) std::shared_ptr, const std::shared_ptr & { std::shared_ptr * temp_feature; std::shared_ptr * temp_interface; @@ -343,29 +357,114 @@ %typemap(freearg) const std::pair, ModelHighAPI_RefAttr> & {} -%typemap(in) const std::list > & (std::list > temp) { - std::shared_ptr * temp_point = 0; - int newmem = 0; +%typemap(in) const std::list, ModelHighAPI_RefAttr> > & (std::list, ModelHighAPI_RefAttr> > temp) { if (PySequence_Check($input)) { for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) { PyObject * item = PySequence_GetItem($input, i); - if (PyTuple_Check(item)) { - if (PyTuple_Size(item) == 2) { - double x = (double)PyFloat_AsDouble(PySequence_GetItem(item, 0)); - double y = (double)PyFloat_AsDouble(PySequence_GetItem(item, 1)); - temp.push_back(std::shared_ptr(new GeomAPI_Pnt2d(x, y))); + + std::list temp_inputlist; + if (PySequence_Check(item)) { + for (Py_ssize_t i = 0; i < PySequence_Size(item); ++i) { + PyObject * tmpItem = PySequence_GetItem(item, i); + temp_inputlist.push_back(tmpItem); + } + } else { + temp_inputlist.push_back(item); + } + + std::shared_ptr * temp_attribute = 0; + std::shared_ptr * temp_object = 0; + std::shared_ptr * temp_interface = 0; + ModelHighAPI_Selection* temp_selection = 0; + std::pair, ModelHighAPI_RefAttr>* temp_pair = 0; + std::shared_ptr * temp_point = 0; + ModelHighAPI_RefAttr temp_refattr; + int newmem = 0; + int clearmem = 0; + + for (std::list::iterator it = temp_inputlist.begin(); it != temp_inputlist.end(); ++it) { + PyObject* item = *it; + + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_selection, $descriptor(ModelHighAPI_Selection*), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_selection) { + temp_refattr = ModelHighAPI_RefAttr(std::shared_ptr(temp_selection->resultSubShapePair().first)); + if (newmem & SWIG_CAST_NEW_MEMORY) { + delete temp_selection; + } + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_attribute, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_attribute) { + temp_refattr = ModelHighAPI_RefAttr(*temp_attribute); + if (newmem & SWIG_CAST_NEW_MEMORY) { + delete temp_attribute; + } + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_object, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_object) { + temp_refattr = ModelHighAPI_RefAttr(*temp_object); + if (newmem & SWIG_CAST_NEW_MEMORY) { + delete temp_object; + } + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_interface, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_interface) { + temp_refattr = ModelHighAPI_RefAttr(*temp_interface); + if (newmem & SWIG_CAST_NEW_MEMORY) { + delete temp_interface; + } + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_pair, $descriptor(std::pair, ModelHighAPI_RefAttr> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_pair) { + temp_point = &temp_pair->first; + temp_refattr = temp_pair->second; + if (newmem & SWIG_CAST_NEW_MEMORY) { + delete temp_pair; + } + } + } else + if (PyTuple_Check(item)) { + if (PyTuple_Size(item) == 2) { + double x = (double)PyFloat_AsDouble(PySequence_GetItem(item, 0)); + double y = (double)PyFloat_AsDouble(PySequence_GetItem(item, 1)); + temp_point = new std::shared_ptr(new GeomAPI_Pnt2d(x, y)); + clearmem = 1; + } else { + PyErr_SetString(PyExc_TypeError, "argument must a list of 2D points."); + return NULL; + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_point, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + // fall through + } else + if (PyNumber_Check(item)) { + PyObject* item1 = *(++it); + if (PyNumber_Check(item1)) { + double x = (double)PyFloat_AsDouble(item); + double y = (double)PyFloat_AsDouble(item1); + temp_point = new std::shared_ptr(new GeomAPI_Pnt2d(x, y)); + clearmem = 1; + } else { + PyErr_SetString(PyExc_TypeError, "argument must a list of 2D points."); + return NULL; + } + } + } + + if (temp_point || !temp_refattr.isEmpty()) { + if (temp_point) { + temp.push_back(std::pair, ModelHighAPI_RefAttr>(*temp_point, temp_refattr)); } else { - PyErr_SetString(PyExc_TypeError, "argument must a list of 2D points."); - return NULL; + temp.push_back(std::pair, ModelHighAPI_RefAttr>(std::shared_ptr(), temp_refattr)); } - } else - if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_point, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { - temp.push_back(*temp_point); - if (temp_point && (newmem & SWIG_CAST_NEW_MEMORY)) { + if (temp_point && ((newmem & SWIG_CAST_NEW_MEMORY) || clearmem)) { delete temp_point; } } else { - PyErr_SetString(PyExc_TypeError, "argument must a list of 2D points."); + PyErr_SetString(PyExc_TypeError, "argument must be ModelHighAPI_RefAttr, ModelHighAPI_Selection, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object."); return NULL; } Py_DECREF(item); @@ -377,25 +476,88 @@ } } -%typecheck(SWIG_TYPECHECK_POINTER) std::list >, const std::list >& { - std::shared_ptr * temp_point = 0; +%typecheck(SWIG_TYPECHECK_POINTER) std::list, ModelHighAPI_RefAttr> >, const std::list, ModelHighAPI_RefAttr> >& { int newmem = 0; if (PySequence_Check($input)) { for (Py_ssize_t i = 0; i < PySequence_Size($input) && $1; ++i) { PyObject * item = PySequence_GetItem($input, i); - if (PyTuple_Check(item)) { - if (PyTuple_Size(item) == 2) { - if (PyNumber_Check(PySequence_GetItem(item, 0)) && PyNumber_Check(PySequence_GetItem(item, 1))) { + + std::list temp_inputlist; + if (PySequence_Check(item)) { + for (Py_ssize_t i = 0; i < PySequence_Size(item); ++i) { + PyObject * tmpItem = PySequence_GetItem(item, i); + temp_inputlist.push_back(tmpItem); + } + } else { + temp_inputlist.push_back(item); + } + + std::shared_ptr * temp_attribute = 0; + std::shared_ptr * temp_object = 0; + std::shared_ptr * temp_interface = 0; + ModelHighAPI_Selection* temp_selection = 0; + std::pair, ModelHighAPI_RefAttr>* temp_pair = 0; + std::shared_ptr * temp_point = 0; + ModelHighAPI_RefAttr temp_refattr; + + $1 = 1; + for (std::list::iterator it = temp_inputlist.begin(); it != temp_inputlist.end() && $1; ++it) { + PyObject* item = *it; + + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_selection, $descriptor(ModelHighAPI_Selection*), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_selection) { $1 = 1; } else { $1 = 0; } - } else { - $1 = 0; - } - } else - if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_point, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { - if (temp_point) { + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_attribute, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_attribute) { + $1 = 1; + } else { + $1 = 0; + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_object, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_object) { + $1 = 1; + } else { + $1 = 0; + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_interface, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_interface) { + $1 = 1; + } else { + $1 = 0; + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_pair, $descriptor(std::pair, ModelHighAPI_RefAttr> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_pair) { + $1 = 1; + } else { + $1 = 0; + } + } else + if (PyTuple_Check(item)) { + if (PyTuple_Size(item) == 2) { + if (PyNumber_Check(PySequence_GetItem(item, 0)) && PyNumber_Check(PySequence_GetItem(item, 1))) { + $1 = 1; + } else { + $1 = 0; + } + } else { + $1 = 0; + } + } else + if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_point, $descriptor(std::shared_ptr *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) { + if (temp_point) { + $1 = 1; + } else { + $1 = 0; + } + } else + if (PyNumber_Check(item)) { $1 = 1; } else { $1 = 0; @@ -415,6 +577,7 @@ // all supported interfaces (the order is very important according dependencies: base class first) %include "SketchAPI_SketchEntity.h" %include "SketchAPI_Point.h" +%include "SketchAPI_MacroMiddlePoint.h" %include "SketchAPI_IntersectionPoint.h" %include "SketchAPI_Line.h" %include "SketchAPI_Circle.h" @@ -428,6 +591,7 @@ %include "SketchAPI_BSpline.h" %include "SketchAPI_Projection.h" %include "SketchAPI_Mirror.h" +%include "SketchAPI_Offset.h" %include "SketchAPI_Translation.h" %include "SketchAPI_Rectangle.h" %include "SketchAPI_Rotation.h"