Salome HOME
Merge branch 'oscar/imps_2017'
[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
21 #include "SUITApp_init_python.hxx"
22 #include <QString>
23
24 bool SUIT_PYTHON::initialized = false;
25
26 void SUIT_PYTHON::init_python(int argc, char **argv)
27 {
28   if (Py_IsInitialized())
29   {
30     return;
31   }
32   Py_SetProgramName(argv[0]);
33   Py_Initialize(); // Initialize the interpreter
34   PySys_SetArgv(argc, argv);
35   PyRun_SimpleString("import threading\n");
36   // VSR (22/09/2016): This is a workaround to prevent invoking qFatal() from PyQt5
37   // causing application aborting
38   QString script;
39   script += "def _custom_except_hook(exc_type, exc_value, exc_traceback):\n";
40   script += "  import sys\n";
41   script += "  sys.__excepthook__(exc_type, exc_value, exc_traceback)\n";
42   script += "  pass\n";
43   script += "\n";
44   script += "import sys\n";
45   script += "sys.excepthook = _custom_except_hook\n";
46   script += "del _custom_except_hook, sys\n";
47   int res = PyRun_SimpleString(qPrintable(script));
48   // VSR (22/09/2016): end of workaround
49   PyEval_InitThreads(); // Create (and acquire) the interpreter lock - can be called many times
50   // Py_InitThreads acquires the GIL
51   PyThreadState *pts = PyGILState_GetThisThreadState(); 
52   PyEval_ReleaseThread(pts);
53   SUIT_PYTHON::initialized = true;
54 }