Salome HOME
Initial version
[modules/gui.git] / src / SalomeApp / SalomeApp_PyInterp.cxx
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SalomeApp_PyInterp.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27 //  $Header$
28
29 #include "SalomeApp_PyInterp.h"
30
31 #include <utilities.h>
32 #include <Container_init_python.hxx>
33 #ifdef _DEBUG_
34 static int MYDEBUG = 0;
35 #else
36 static int MYDEBUG = 0;
37 #endif
38
39 PyObject *SalomeApp_PyInterp::salome_shared_modules_module = NULL;
40
41 /*!
42  * constructor : multi Python interpreter, one per SALOME study.
43  * calls initialize method defined in base class, which calls virtual methods
44  * initstate & initcontext redefined here.
45  */
46 SalomeApp_PyInterp::SalomeApp_PyInterp(): PythonConsole_PyInterp()
47 {
48 }
49
50 SalomeApp_PyInterp::~SalomeApp_PyInterp()
51 {
52 }
53  
54 /*!
55  * EDF-CCAR
56  * When SALOME uses multi Python interpreter feature,
57  * Every study has its own interpreter and thread state (_tstate = Py_NewInterpreter())
58  * This is fine because every study has its own modules (sys.modules) stdout and stderr
59  * BUT some Python modules must be imported only once. In multi interpreter context Python
60  * modules (*.py) are imported several times.
61  * The pyqt module must be imported only once because it registers classes in a C module.
62  * It's quite the same with omniorb modules (internals and generated with omniidl)
63  * This problem is handled with "shared modules" defined in salome_shared_modules.py
64  * These "shared modules" are imported only once and only copied in all the other interpreters
65  * BUT it's not the only problem. Every interpreter has its own __builtin__ module. That's fine
66  * but if we have copied some modules and imported others problems may arise with operations that
67  * are not allowed in restricted execution environment. So we must impose that all interpreters
68  * have identical __builtin__ module.
69  * That's all, for the moment ...
70  */
71
72
73 bool SalomeApp_PyInterp::initContext()
74 {
75   /*
76    * The GIL is assumed to be held
77    * It is the caller responsability caller to acquire the GIL
78    * It will still be held on initContext output
79    */
80   if ( !PythonConsole_PyInterp::initContext() )
81     return false;
82
83   /*
84     salome_shared_modules should be imported only once
85   */
86   if ( !salome_shared_modules_module )
87   {
88     salome_shared_modules_module = PyImport_ImportModule( "salome_shared_modules" );
89     if ( !salome_shared_modules_module )
90     {
91             INFOS( "SalomeApp_PyInterp::initContext() - salome_shared_modules_module == NULL" );
92             PyErr_Print();
93             PyErr_Clear();
94             return false;
95     }
96   }
97
98   // Debut modif CCAR
99   // Import special module to change the import mechanism
100   PyObjWrapper m1( PyImport_ImportModule( "import_hook" ) );
101   if ( !m1 )
102   {
103     MESSAGE( "initContext: problem with import_hook import" );
104     PyErr_Print();
105     PyErr_Clear();
106     ASSERT( 0 );
107     return false;
108   }
109
110   // Call init_shared_modules to initialize the shared import mechanism for modules 
111   //that must not be imported twice
112   PyObjWrapper m2( PyObject_CallMethod( m1, "init_shared_modules", "O", KERNEL_PYTHON::salome_shared_modules_module ) );
113   if ( !m2 )
114   {
115           MESSAGE( "initContext: problem with init_shared_modules call" );
116           PyErr_Print();
117           PyErr_Clear();
118           ASSERT( 0 );
119     return false;
120   }
121
122   return true;
123 }