Salome HOME
updated copyright message
[modules/kernel.git] / src / SALOMESDS / KernelSDS.i
1 // Copyright (C) 2021-2023  CEA, EDF
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 KernelSDS
21
22 %include "std_string.i"
23
24 %{
25 #include "KernelSDS.hxx"
26 #include "Utils_SALOME_Exception.hxx"
27 #include "SALOME_CPythonHelper.hxx"
28 %}
29
30
31 class SALOME_Exception
32 {
33   public:
34   SALOME_Exception(const std::string& text);
35   %extend
36   {
37     std::string __str__() const
38     {
39       return std::string(self->what());
40     }
41   }
42 };
43
44 %exception {
45   try {
46     $action
47   }
48   catch (SALOME_Exception& _e) {
49     // Reraise with SWIG_Python_Raise
50     SWIG_Python_Raise(SWIG_NewPointerObj((new SALOME_Exception(static_cast< const SALOME_Exception& >(_e.what()))),SWIGTYPE_p_SALOME_Exception,SWIG_POINTER_OWN), "SALOME_Exception", SWIGTYPE_p_SALOME_Exception);
51     SWIG_fail;
52   }
53 }
54
55 %inline
56 {
57   void KillCPythonHelper()
58   {
59     SALOME_CPythonHelper::KillSingleton();
60   }
61   std::string GetDSMInstanceInternal(PyObject *argv)
62   {
63     if(!PyList_Check(argv))
64       THROW_SALOME_EXCEPTION("Not a pylist");
65     Py_ssize_t sz=PyList_Size(argv);
66     std::vector<std::string> argvCpp(sz);
67     for(Py_ssize_t i = 0 ; i < sz ; ++i)
68     {
69       PyObject *obj = PyList_GetItem(argv,i);
70       if(!PyUnicode_Check(obj))
71         THROW_SALOME_EXCEPTION("Not a pylist of strings");
72       {
73         Py_ssize_t dummy;
74         argvCpp[i] = PyUnicode_AsUTF8AndSize(obj,&dummy);
75       }
76     }
77     return GetDSMInstanceInternal(argvCpp);
78   }
79 }
80
81 %pythoncode %{
82 def GetDSMInstance(argv):
83   import SALOME
84   import CORBA
85   orb=CORBA.ORB_init([''])
86   return orb.string_to_object(GetDSMInstanceInternal(argv))
87 %}