Salome HOME
Updated copyright comment
[modules/gui.git] / src / SUITApp / SUITApp_init_python.cxx
1 // Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
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 //  Author : Roman NIKOLAEV, Open CASCADE S.A.S. (roman.nikolaev@opencascade.com)
21 //  Date   : 22/06/2007
22 //
23 #include "SUITApp_init_python.hxx"
24 #include <QString>
25
26 #if PY_VERSION_HEX < 0x03050000
27 static char*
28 Py_EncodeLocale(const wchar_t *arg, size_t *size)
29 {
30         return _Py_wchar2char(arg, size);
31 }
32 static wchar_t*
33 Py_DecodeLocale(const char *arg, size_t *size)
34 {
35         return _Py_char2wchar(arg, size);
36 }
37 #endif
38
39 bool SUIT_PYTHON::initialized                       = false;
40
41 void SUIT_PYTHON::init_python(int argc, char **argv)
42 {
43   if (Py_IsInitialized())
44   {
45     return;
46   }
47
48   wchar_t **changed_argv = new wchar_t*[argc]; // Setting arguments
49   for (int i = 0; i < argc; i++)
50   {
51    changed_argv[i] = Py_DecodeLocale(argv[i], NULL);    
52   }
53
54   Py_SetProgramName(changed_argv[0]);
55   Py_Initialize(); // Initialize the interpreter
56
57   PySys_SetArgv(argc, changed_argv);
58   PyRun_SimpleString("import threading\n");
59   // VSR (22/09/2016): This is a workaround to prevent invoking qFatal() from PyQt5
60   // causing application aborting
61   QString script;
62   script += "def _custom_except_hook(exc_type, exc_value, exc_traceback):\n";
63   script += "  import sys\n";
64   script += "  sys.__excepthook__(exc_type, exc_value, exc_traceback)\n";
65   script += "  pass\n";
66   script += "\n";
67   script += "import sys\n";
68   script += "sys.excepthook = _custom_except_hook\n";
69   script += "del _custom_except_hook, sys\n";
70   PyRun_SimpleString(qUtf8Printable(script));
71   // VSR (22/09/2016): end of workaround
72 #if PY_VERSION_HEX < 0x03070000
73   PyEval_InitThreads(); // Create (and acquire) the interpreter lock - can be called many times
74 #endif
75   // Py_InitThreads acquires the GIL
76   PyThreadState *pts = PyGILState_GetThisThreadState(); 
77   PyEval_ReleaseThread(pts);
78   SUIT_PYTHON::initialized = true;
79 }