Salome HOME
06d2b8af00b1bd766c6643ac4c78bfcead39f675
[modules/gui.git] / src / SUITApp / SUITApp_init_python.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, 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 bool SUIT_PYTHON::initialized                       = false;
27
28 void SUIT_PYTHON::init_python(int argc, char **argv)
29 {
30   if (Py_IsInitialized())
31   {
32     return;
33   }
34
35   wchar_t **changed_argv = new wchar_t*[argc]; // Setting arguments
36   for (int i = 0; i < argc; i++)
37   {
38    changed_argv[i] = Py_DecodeLocale(argv[i], NULL);    
39   }
40
41   Py_SetProgramName(changed_argv[0]);
42   Py_Initialize(); // Initialize the interpreter
43
44   PySys_SetArgv(argc, changed_argv);
45   PyRun_SimpleString("import threading\n");
46   // VSR (22/09/2016): This is a workaround to prevent invoking qFatal() from PyQt5
47   // causing application aborting
48   QString script;
49   script += "def _custom_except_hook(exc_type, exc_value, exc_traceback):\n";
50   script += "  import sys\n";
51   script += "  sys.__excepthook__(exc_type, exc_value, exc_traceback)\n";
52   script += "  pass\n";
53   script += "\n";
54   script += "import sys\n";
55   script += "sys.excepthook = _custom_except_hook\n";
56   script += "del _custom_except_hook, sys\n";
57   int res = PyRun_SimpleString(qPrintable(script));
58   // VSR (22/09/2016): end of workaround
59   PyEval_InitThreads(); // Create (and acquire) the interpreter lock - can be called many times
60   // Py_InitThreads acquires the GIL
61   PyThreadState *pts = PyGILState_GetThisThreadState(); 
62   PyEval_ReleaseThread(pts);
63   SUIT_PYTHON::initialized = true;
64 }