Salome HOME
Solve problem of GIL (I hope...)
[modules/yacs.git] / src / evalyfx / YACSEvalSession.cxx
1 // Copyright (C) 2012-2016  CEA/DEN, EDF R&D
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 // Author : Anthony Geay (EDF R&D)
20
21 #include "YACSEvalSession.hxx"
22 #include "YACSEvalSessionInternal.hxx"
23
24 #include "AutoGIL.hxx"
25 #include "Exception.hxx"
26
27 #include <Python.h>
28
29 #include <sstream>
30
31 const char YACSEvalSession::KERNEL_ROOT_DIR[]="KERNEL_ROOT_DIR";
32
33 const char YACSEvalSession::CORBA_CONFIG_ENV_VAR_NAME[]="OMNIORB_CONFIG";
34
35 const char YACSEvalSession::NSPORT_VAR_NAME[]="NSPORT";
36
37 YACSEvalSession::YACSEvalSession():_isAttached(false),_isLaunched(false),_isForcedPyThreadSaved(false),_port(-1),_salomeInstanceModule(0),_salomeInstance(0),_internal(new YACSEvalSessionInternal)
38 {
39   if(!Py_IsInitialized())
40     Py_Initialize();
41   //
42   {
43     YACS::ENGINE::AutoGIL gal;
44     _salomeInstanceModule=PyImport_ImportModule(const_cast<char *>("salome_instance"));
45   }
46 }
47
48 YACSEvalSession::~YACSEvalSession()
49 {
50   delete _internal;
51   YACS::ENGINE::AutoGIL gal;
52   if(isLaunched() && !isAttached())
53     {
54       YACS::ENGINE::AutoPyRef terminateSession(PyObject_GetAttrString(_salomeInstance,const_cast<char *>("stop")));//new
55       YACS::ENGINE::AutoPyRef res(PyObject_CallObject(terminateSession,0));
56     }
57   Py_XDECREF(_salomeInstance);
58   Py_XDECREF(_salomeInstanceModule);
59 }
60
61 void YACSEvalSession::launch()
62 {
63   if(isLaunched())
64     return ;
65   YACS::ENGINE::AutoGIL gal;
66   PyObject *salomeInstance(PyObject_GetAttrString(_salomeInstanceModule,const_cast<char *>("SalomeInstance")));//new
67   PyObject *startMeth(PyObject_GetAttrString(salomeInstance,const_cast<char *>("start")));
68   Py_XDECREF(salomeInstance);
69   YACS::ENGINE::AutoPyRef myArgs(PyTuple_New(0));//new
70   YACS::ENGINE::AutoPyRef myKWArgs(PyDict_New());//new
71   PyDict_SetItemString(myKWArgs,"shutdown_servers",Py_True);//Py_True ref not stolen
72   _salomeInstance=PyObject_Call(startMeth,myArgs,myKWArgs);//new
73   YACS::ENGINE::AutoPyRef getPortMeth(PyObject_GetAttrString(_salomeInstance,const_cast<char *>("get_port")));//new
74   YACS::ENGINE::AutoPyRef portPy(PyObject_CallObject(getPortMeth,0));//new
75   _port=PyInt_AsLong(portPy);
76   //
77   int dummy;
78   _corbaConfigFileName=GetConfigAndPort(dummy);
79   _isAttached=false; _isLaunched=true;
80 }
81
82 void YACSEvalSession::launchUsingCurrentSession()
83 {
84   if(isLaunched())
85     return ;
86   YACS::ENGINE::AutoGIL gal;
87   _corbaConfigFileName=GetConfigAndPort(_port);
88   _isAttached=true; _isLaunched=true;
89 }
90
91 bool YACSEvalSession::isAlreadyPyThreadSaved() const
92 {
93   return _isForcedPyThreadSaved;
94 }
95
96 void YACSEvalSession::checkLaunched() const
97 {
98   if(!isLaunched())
99     throw YACS::Exception("YACSEvalSession::checkLaunched : not launched !");
100 }
101
102 int YACSEvalSession::getPort() const
103 {
104   checkLaunched();
105   return _port;
106 }
107
108 std::string YACSEvalSession::getCorbaConfigFileName() const
109 {
110   checkLaunched();
111   return _corbaConfigFileName;
112 }
113
114 std::string YACSEvalSession::GetPathToAdd()
115 {
116   std::string ret;
117   YACS::ENGINE::AutoGIL gal;
118   YACS::ENGINE::AutoPyRef osPy(PyImport_ImportModule(const_cast<char *>("os")));//new
119   PyObject *kernelRootDir(0);// os.environ["KERNEL_ROOT_DIR"]
120   {
121     YACS::ENGINE::AutoPyRef environPy(PyObject_GetAttrString(osPy,const_cast<char *>("environ")));//new
122     YACS::ENGINE::AutoPyRef kernelRootDirStr(PyString_FromString(const_cast<char *>(KERNEL_ROOT_DIR)));//new
123     kernelRootDir=PyObject_GetItem(environPy,kernelRootDirStr);//new
124   }
125   {
126     YACS::ENGINE::AutoPyRef pathPy(PyObject_GetAttrString(osPy,const_cast<char *>("path")));//new
127     YACS::ENGINE::AutoPyRef joinPy(PyObject_GetAttrString(pathPy,const_cast<char *>("join")));//new
128     YACS::ENGINE::AutoPyRef myArgs(PyTuple_New(4));
129     Py_XINCREF(kernelRootDir); PyTuple_SetItem(myArgs,0,kernelRootDir);
130     PyTuple_SetItem(myArgs,1,PyString_FromString(const_cast<char *>("bin")));
131     PyTuple_SetItem(myArgs,2,PyString_FromString(const_cast<char *>("salome")));
132     PyTuple_SetItem(myArgs,3,PyString_FromString(const_cast<char *>("appliskel")));
133     YACS::ENGINE::AutoPyRef res(PyObject_CallObject(joinPy,myArgs));
134     ret=PyString_AsString(res);
135   }
136   Py_XDECREF(kernelRootDir);
137   return ret;
138 }
139
140 std::string YACSEvalSession::GetConfigAndPort(int& port)
141 {
142   YACS::ENGINE::AutoPyRef osPy(PyImport_ImportModule(const_cast<char *>("os")));//new
143   YACS::ENGINE::AutoPyRef environPy(PyObject_GetAttrString(osPy,const_cast<char *>("environ")));//new
144   //
145   YACS::ENGINE::AutoPyRef corbaConfigStr(PyString_FromString(const_cast<char *>(CORBA_CONFIG_ENV_VAR_NAME)));//new
146   YACS::ENGINE::AutoPyRef corbaConfigFileNamePy(PyObject_GetItem(environPy,corbaConfigStr));//new
147   std::string ret(PyString_AsString(corbaConfigFileNamePy));
148   //
149   YACS::ENGINE::AutoPyRef nsPortStr(PyString_FromString(const_cast<char *>(NSPORT_VAR_NAME)));//new
150   YACS::ENGINE::AutoPyRef nsPortValuePy(PyObject_GetItem(environPy,nsPortStr));//new
151   std::string portStr(PyString_AsString(nsPortValuePy));
152   std::istringstream iss(portStr);
153   iss >> port;
154   return ret;
155 }