2 # -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
5 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # Lesser General Public License for more details.
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
25 # SALOME Container : implementation of container and engine for Kernel
26 # File : SALOME_ContainerPy.py
27 # Author : Paul RASCLE, EDF
35 from omniORB import CORBA, PortableServer
37 import Engines, Engines__POA
38 from SALOME_NamingServicePy import *
39 from SALOME_ComponentPy import *
41 from SALOME_utilities import *
42 from Utils_Identity import getShortHostName
43 from launchConfigureParser import verbose
45 #=============================================================================
47 #define an implementation of the container interface for the container implemented in Python
49 class SALOME_ContainerPy_i (Engines__POA.Container):
53 _listInstances_map = {}
55 #-------------------------------------------------------------------------
57 def __init__(self, orb, poa, containerName):
58 MESSAGE( "SALOME_ContainerPy_i::__init__" )
61 myMachine=getShortHostName()
62 Container_path = "/Containers/" + myMachine + "/" + containerName
63 self._containerName = Container_path
64 if verbose(): print "container name ",self._containerName
66 naming_service = SALOME_NamingServicePy_i(self._orb)
67 self._naming_service = naming_service
68 MESSAGE( str(Container_path) )
69 naming_service.Register(self._this(), Container_path)
71 #-------------------------------------------------------------------------
73 def start_impl(self, ContainerName):
74 MESSAGE( "SALOME_ContainerPy_i::start_impl " + str(ContainerName) )
75 myMachine=getShortHostName()
76 theContainer = "/Containers/" + myMachine + "/" + ContainerName
78 obj = self._naming_service.Resolve(theContainer)
81 MESSAGE( "SALOME_ContainerPy_i::start_impl " + str(ContainerName) + ".object not found in Naming Service" )
85 container = obj._narrow(Engines.Container)
87 MESSAGE( "SALOME_ContainerPy_i::start_impl " + str(containerName) + ".object exists but is not a Container" )
89 MESSAGE( "SALOME_ContainerPy_i::start_impl " + str(ContainerName) + ".object found without new launch" )
91 #shstr = os.getenv( "PWD" ) + "/"
92 #shstr += "runSession ./SALOME_ContainerPy.py "
93 shstr = os.getenv("KERNEL_ROOT_DIR") + "/bin/salome/SALOME_ContainerPy.py ";
94 #shstr = "runSession SALOME_ContainerPy.py "
95 shstr += ContainerName
97 # mpv: fix for SAL4731 - allways create new file to write log of server
101 fileName = "/tmp/"+ContainerName+"_%i.log"%num
102 if not os.path.exists(fileName):
112 #shstr += ContainerName
113 #shstr += ".log 2>&1 &"
115 MESSAGE( "SALOME_ContainerPy_i::start_impl " + "os.system(" + str(shstr) + ")" )
118 while container is None :
121 MESSAGE( str(count) + ". Waiting for " + str(theContainer) )
123 obj = self._naming_service.Resolve(theContainer)
129 container = obj._narrow(Engines.Container)
130 if container is None:
131 MESSAGE( str(containerName) + ".object exists but is not a Container" )
136 #-------------------------------------------------------------------------
138 def instance(self, nameToRegister, componentName):
139 MESSAGE( "SALOME_ContainerPy_i::instance " + str(nameToRegister) + ' ' + str(componentName) )
140 self._numInstance = self._numInstance +1
141 instanceName = nameToRegister + "_inst_" + `self._numInstance`
143 component=__import__(componentName)
144 factory=getattr(component,componentName)
145 comp_i=factory(self._orb, self._poa, self._this(), self._containerName,
146 instanceName, nameToRegister)
148 MESSAGE( "SALOME_ContainerPy_i::instance : component created")
149 comp_o = comp_i._this()
152 #-------------------------------------------------------------------------
154 def load_impl(self, nameToRegister, componentName):
155 MESSAGE( "SALOME_ContainerPy_i::load_impl " + str(nameToRegister) + ' ' + str(componentName) )
156 self._numInstance = self._numInstance +1
157 instanceName = nameToRegister + "_inst_" + `self._numInstance`
158 interfaceName = nameToRegister
159 the_command = "import " + nameToRegister + "\n"
160 the_command = the_command + "comp_i = " + nameToRegister + "." + nameToRegister
161 the_command = the_command + "(self._orb, self._poa, self._this(), self._containerName, instanceName, interfaceName)\n"
162 MESSAGE( "SALOME_ContainerPy_i::load_impl :" + str (the_command) )
164 comp_o = comp_i._this()
167 #-------------------------------------------------------------------------
169 def import_component(self, componentName):
170 MESSAGE( "SALOME_Container_i::import_component" )
173 if verbose(): print "try import %s" % componentName
174 # try import component
175 module=__import__(componentName)
176 if verbose(): print "import %s is done successfully" % componentName
177 # if import successfully, check that component is loadable
178 if not hasattr(module, componentName):
179 reason = "module %s is not loadable" % componentName
185 print "cannot import %s" % componentName
186 traceback.print_exc()
187 reason = "cannot import %s" % componentName
190 #-------------------------------------------------------------------------
192 def load_component_Library(self, componentName):
193 MESSAGE( "SALOME_ContainerPy_i::load_component_Library " + str(componentName) )
195 instanceName = componentName + "_inst_" + `self._numInstance`
196 interfaceName = componentName
197 reason = self.import_component(componentName)
198 return reason == "", reason
200 #-------------------------------------------------------------------------
202 def create_component_instance_env(self, componentName, env):
203 return self.create_component_instance(componentName), ""
205 def create_component_instance(self, componentName):
206 MESSAGE( "SALOME_ContainerPy_i::create_component_instance ==> " + str(componentName) )
207 self._numInstance = self._numInstance +1
208 instanceName = componentName + "_inst_" + `self._numInstance`
211 component=__import__(componentName)
212 factory=getattr(component,componentName)
213 comp_i=factory(self._orb,
220 MESSAGE( "SALOME_Container_i::create_component_instance : OK")
221 comp_o = comp_i._this()
222 self._listInstances_map[instanceName] = comp_i
225 traceback.print_exc()
226 MESSAGE( "SALOME_Container_i::create_component_instance : NOT OK")
229 #-------------------------------------------------------------------------
231 def find_component_instance(self, registeredName):
233 keysList = self._listInstances_map.keys()
235 while i < len(keysList):
236 instance = keysList[i]
237 if find(instance,registeredName) == 0:
238 anEngine = self._listInstances_map[instance]
239 return anEngine._this()
241 return anEngine._this()
244 #-------------------------------------------------------------------------
246 def create_python_service_instance(self, CompName):
247 return self.create_component_instance(CompName)
249 #-------------------------------------------------------------------------
251 def remove_impl(self, component):
252 MESSAGE( "SALOME_ContainerPy_i::remove_impl" )
253 instanceName = component._get_instanceName()
254 MESSAGE( "unload component " + str(instanceName) )
255 self._listInstances_map.remove(instanceName)
257 self._naming_service.Destroy_Name(str(instanceName))
259 #-------------------------------------------------------------------------
261 def finalize_removal(self):
262 MESSAGE( "SALOME_ContainerPy_i::finalize_removal" )
265 #-------------------------------------------------------------------------
268 MESSAGE( "SALOME_ContainerPy_i::ping() pid " + str(os.getpid()) )
271 #-------------------------------------------------------------------------
276 #-------------------------------------------------------------------------
279 MESSAGE( "SALOME_ContainerPy_i::_get_name" )
280 return self._containerName
282 #-------------------------------------------------------------------------
284 def getHostName(self):
285 MESSAGE( "SALOME_ContainerPy_i::_get_MachineName" )
286 self._machineName = "localhost"
287 return self._machineName
289 #-------------------------------------------------------------------------
291 def _get_machineName(self):
292 MESSAGE( "SALOME_ContainerPy_i::_get_MachineName" )
293 self._machineName = "localhost"
294 return self._machineName
296 #-------------------------------------------------------------------------
299 self._naming_service.Destroy_Name(self._containerName);
300 self._naming_service.Destroy_FullDirectory(self._containerName);
301 self._orb.shutdown(0)
304 def _get_logfilename(self):
305 return self._logfilename
306 def _set_logfilename(self,logfilename):
307 self._logfilename=logfilename
308 def _get_workingdir(self):
311 #=============================================================================
313 if __name__ == "__main__":
314 # change the stdout buffering to line buffering (same as C++ cout buffering)
315 sys.stdout=os.fdopen(1,"w",1)
316 #initialise the ORB and find the root POA
317 if verbose():print "Starting ",sys.argv[1]
318 orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
319 poa = orb.resolve_initial_references("RootPOA")
320 if verbose():print "ORB and POA initialized"
322 #create an instance of SALOME_ContainerPy_i and a Container reference
323 #containerName = "FactoryServerPy"
324 MESSAGE( str(sys.argv) )
325 containerName = sys.argv[1]
326 cpy_i = SALOME_ContainerPy_i(orb, poa, containerName)
327 if verbose():print "SALOME_ContainerPy_i instance created ",cpy_i
328 cpy_o = cpy_i._this()
329 if verbose():print "SALOME_ContainerPy_i instance activated ",cpy_o
334 poaManager = poa._get_the_POAManager()
335 poaManager.activate()
339 if verbose():print "SALOME_ContainerPy_i shutdown"