1 // Copyright (C) 2021-2023 CEA, EDF
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 %include "std_string.i"
25 #include "KernelSDS.hxx"
26 #include "Utils_SALOME_Exception.hxx"
27 #include "SALOME_CPythonHelper.hxx"
31 class SALOME_Exception
34 SALOME_Exception(const std::string& text);
37 std::string __str__() const
39 return std::string(self->what());
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);
57 void KillCPythonHelper()
59 SALOME_CPythonHelper::KillSingleton();
61 std::string GetDSMInstanceInternal(PyObject *argv)
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)
69 PyObject *obj = PyList_GetItem(argv,i);
70 if(!PyUnicode_Check(obj))
71 THROW_SALOME_EXCEPTION("Not a pylist of strings");
74 argvCpp[i] = PyUnicode_AsUTF8AndSize(obj,&dummy);
77 return GetDSMInstanceInternal(argvCpp);
82 def GetDSMInstance(argv):
85 orb=CORBA.ORB_init([''])
86 return orb.string_to_object(GetDSMInstanceInternal(argv))