Salome HOME
e77ae548f421ae92628affc0fd854c39017ff746
[modules/shaper_study.git] / src / SWIG / StudyData_Swig.i
1 // Copyright (C) 2019-2020  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 %module StudyData_Swig
21
22 %{
23 #include "StudyData_Object.h"
24 #include "StudyData_Operation.h"
25 #include "StudyData_XAO.h"
26
27 #include <Standard_Failure.hxx>
28 #include <Standard_ErrorHandler.hxx>
29 #include <stdexcept>
30
31 static PyObject* setOCCException(Standard_Failure& ex)
32 {
33   std::string msg(ex.DynamicType()->Name());
34   if ( ex.GetMessageString() && strlen( ex.GetMessageString() )) {
35     msg += ": ";
36     msg += ex.GetMessageString();
37   }
38   PyErr_SetString(PyExc_Exception, msg.c_str() );
39   return NULL;
40 }
41 %}
42
43 %exception
44 {
45   try {
46     OCC_CATCH_SIGNALS;
47     $action }
48   catch (Standard_Failure& ex) {
49     return setOCCException(ex);
50   }
51   catch (std::exception& ex) {
52     PyErr_SetString(PyExc_Exception, ex.what() );
53     return NULL;
54   }
55 }
56
57 // standard definitions
58 %include "typemaps.i"
59 %include "std_string.i"
60 %include "std_list.i"
61
62 #define StudyData_EXPORT
63
64 %include "StudyData_Object.h"
65 %include "StudyData_Operation.h"
66 %include "StudyData_XAO.h"
67
68 %template(LongList) std::list<long>;
69 %template(PtrsList) std::list<long long>;
70 %template(DoublList) std::list<double>;