Salome HOME
Python 3.4: redefine Py_DecodeLocale
[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 #if PY_VERSION_HEX < 0x03050000
27 static wchar_t*
28 Py_DecodeLocale(const char *arg, size_t *size)
29 {
30     wchar_t *res;
31     unsigned char *in;
32     wchar_t *out;
33     size_t argsize = strlen(arg) + 1;
34
35     if (argsize > PY_SSIZE_T_MAX/sizeof(wchar_t))
36         return NULL;
37     res = (wchar_t*) PyMem_RawMalloc(argsize*sizeof(wchar_t));
38     if (!res)
39         return NULL;
40
41     in = (unsigned char*)arg;
42     out = res;
43     while(*in)
44         if(*in < 128)
45             *out++ = *in++;
46         else
47             *out++ = 0xdc00 + *in++;
48     *out = 0;
49     if (size != NULL)
50         *size = out - res;
51     return res;
52 }
53 #endif
54
55 bool SUIT_PYTHON::initialized                       = false;
56
57 void SUIT_PYTHON::init_python(int argc, char **argv)
58 {
59   if (Py_IsInitialized())
60   {
61     return;
62   }
63
64   wchar_t **changed_argv = new wchar_t*[argc]; // Setting arguments
65   for (int i = 0; i < argc; i++)
66   {
67    changed_argv[i] = Py_DecodeLocale(argv[i], NULL);    
68   }
69
70   Py_SetProgramName(changed_argv[0]);
71   Py_Initialize(); // Initialize the interpreter
72
73   PySys_SetArgv(argc, changed_argv);
74   PyRun_SimpleString("import threading\n");
75   // VSR (22/09/2016): This is a workaround to prevent invoking qFatal() from PyQt5
76   // causing application aborting
77   QString script;
78   script += "def _custom_except_hook(exc_type, exc_value, exc_traceback):\n";
79   script += "  import sys\n";
80   script += "  sys.__excepthook__(exc_type, exc_value, exc_traceback)\n";
81   script += "  pass\n";
82   script += "\n";
83   script += "import sys\n";
84   script += "sys.excepthook = _custom_except_hook\n";
85   script += "del _custom_except_hook, sys\n";
86   int res = PyRun_SimpleString(qPrintable(script));
87   // VSR (22/09/2016): end of workaround
88   PyEval_InitThreads(); // Create (and acquire) the interpreter lock - can be called many times
89   // Py_InitThreads acquires the GIL
90   PyThreadState *pts = PyGILState_GetThisThreadState(); 
91   PyEval_ReleaseThread(pts);
92   SUIT_PYTHON::initialized = true;
93 }