Salome HOME
Merge branch 'V9_2_2_BR'
[modules/gui.git] / src / SalomeApp / SalomeApp_PyInterp.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SalomeApp_PyInterp.cxx
23 //  Author : Nicolas REJNERI
24
25 #include "SalomeApp_PyInterp.h"
26
27 /*!
28   \brief Constructor
29 */
30 SalomeApp_PyInterp::SalomeApp_PyInterp()
31   : myFirstRun( true ), myFirstInitStudy( false )
32 {
33 }
34
35 /*!
36   \brief Destructor.
37 */
38 SalomeApp_PyInterp::~SalomeApp_PyInterp()
39 {
40 }
41  
42 /*!
43  * Initialize context dictionaries. GIL is held already.
44  * The code executed in an embedded interpreter is expected to be run at the module
45  * level, in which case local and global context have to be the same dictionary.
46  * See: http://stackoverflow.com/questions/12265756/c-python-running-python-code-within-a-context
47  * for an explanation.
48  */
49 bool SalomeApp_PyInterp::initContext()
50 {
51   bool ok = PyConsole_Interp::initContext();
52   if ( ok ) {
53     int ret = PyRun_SimpleString( "import salome_iapp; salome_iapp.IN_SALOME_GUI = True" );
54     ok = ok && (ret == 0);
55   }
56   return ok;
57 }
58
59 /*!
60   \brief Called before each Python command running.
61 */
62 int SalomeApp_PyInterp::beforeRun()
63 {
64   if ( myFirstRun ) {
65     myFirstRun = false;
66     int ret = simpleRun( "from Help import *", false );
67     if ( ret )
68       return ret;
69   }
70   if ( myFirstInitStudy ) {
71     myFirstInitStudy = false;
72     int ret = simpleRun( "import salome", false );
73     if ( ret )
74       return ret;
75     ret = simpleRun( "salome.salome_init(embedded=True)", false );
76     if ( ret )
77       return ret;
78   }
79   return PyConsole_Interp::beforeRun();
80 }
81
82 /*!
83   \brief Called when study is initialized
84  */
85 void SalomeApp_PyInterp::initStudy()
86 {
87   myFirstInitStudy = true;
88 }
89
90 /*!
91   \brief Called when study is closed
92 */
93 void SalomeApp_PyInterp::closeContext()
94 {
95   myFirstInitStudy = false;
96   simpleRun( "import salome", false );
97   simpleRun( "salome.salome_close()", false );
98 }