Salome HOME
CCAR: protect Fortran Calcium calls against unneeded float arguments incorrectly...
[modules/kernel.git] / src / Container / SALOME_ContainerPy.py
1 #! /usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
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.
12 #
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.
17 #
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
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24
25 #  SALOME Container : implementation of container and engine for Kernel
26 #  File   : SALOME_ContainerPy.py
27 #  Author : Paul RASCLE, EDF
28 #  Module : SALOME
29 #  $Header$
30 #
31 import os
32 import sys
33 import string
34
35 from omniORB import CORBA, PortableServer
36 import SALOMEDS 
37 import Engines, Engines__POA
38 from SALOME_NamingServicePy import *
39 from SALOME_ComponentPy import *
40
41 from SALOME_utilities import *
42 from Utils_Identity import getShortHostName
43 from launchConfigureParser import verbose
44
45 #=============================================================================
46
47 #define an implementation of the container interface for the container implemented in Python
48
49 class SALOME_ContainerPy_i (Engines__POA.Container):
50     _orb = None
51     _poa = None
52     _numInstance = 0
53     _listInstances_map = {}
54
55     #-------------------------------------------------------------------------
56
57     def __init__(self, orb, poa, containerName):
58         MESSAGE( "SALOME_ContainerPy_i::__init__" )
59         self._orb = orb
60         self._poa = poa
61         myMachine=getShortHostName()
62         Container_path = "/Containers/" + myMachine + "/" + containerName
63         self._containerName = Container_path
64         if verbose(): print "container name ",self._containerName
65
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)
70             
71     #-------------------------------------------------------------------------
72
73     def start_impl(self, ContainerName):
74         MESSAGE(  "SALOME_ContainerPy_i::start_impl " + str(ContainerName) )
75         myMachine=getShortHostName()
76         theContainer = "/Containers/" + myMachine + "/" + ContainerName
77         try:
78             obj = self._naming_service.Resolve(theContainer)
79         except :
80             obj = None
81             MESSAGE(  "SALOME_ContainerPy_i::start_impl " + str(ContainerName) + ".object not found in Naming Service" )
82         if obj is None:
83             container = None
84         else:
85             container = obj._narrow(Engines.Container)
86             if container is None:
87                 MESSAGE( "SALOME_ContainerPy_i::start_impl " + str(containerName) + ".object exists but is not a Container" )
88             else :
89                 MESSAGE( "SALOME_ContainerPy_i::start_impl " + str(ContainerName) + ".object found without new launch" )
90             return container
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
96
97         # mpv: fix for SAL4731 - allways create new file to write log of server
98         num = 1
99         fileName = ""
100         while 1:
101             fileName = "/tmp/"+ContainerName+"_%i.log"%num
102             if not os.path.exists(fileName):
103                 break
104             num += 1
105             pass
106         
107         shstr += " > "
108         shstr += fileName
109         shstr += " 2>&1 &"
110         
111         #shstr += " > /tmp/"
112         #shstr += ContainerName
113         #shstr += ".log 2>&1 &"
114         
115         MESSAGE(  "SALOME_ContainerPy_i::start_impl " + "os.system(" + str(shstr) + ")" )
116         os.system( shstr )
117         count = 21
118         while container is None :
119             time.sleep(1)
120             count = count - 1
121             MESSAGE(  str(count) + ". Waiting for " + str(theContainer) )
122             try :
123                 obj = self._naming_service.Resolve(theContainer)
124             except :
125                 obj = None
126             if obj is None:
127                 container = None
128             else:
129                 container = obj._narrow(Engines.Container)
130                 if container is None:
131                     MESSAGE(  str(containerName) + ".object exists but is not a Container" )
132                 return container
133             if count == 0 :
134                 return container
135
136     #-------------------------------------------------------------------------
137
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`
142
143         component=__import__(componentName)
144         factory=getattr(component,componentName)
145         comp_i=factory(self._orb, self._poa, self._this(), self._containerName,
146                        instanceName, nameToRegister)
147
148         MESSAGE( "SALOME_ContainerPy_i::instance : component created")
149         comp_o = comp_i._this()
150         return comp_o
151
152     #-------------------------------------------------------------------------
153
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) )
163         exec the_command
164         comp_o = comp_i._this()
165         return comp_o
166     
167     #-------------------------------------------------------------------------
168     
169     def import_component(self, componentName):
170         MESSAGE( "SALOME_Container_i::import_component" )
171         ret=0
172         try:
173             if verbose(): print "try import ",componentName
174             module=__import__(componentName)
175             if verbose(): print "import ",componentName," successful"
176             ret=1
177         except:
178             import traceback
179             traceback.print_exc()
180             print "import ",componentName," not possible"
181         return ret
182
183     #-------------------------------------------------------------------------
184
185     def load_component_Library(self, componentName):
186         MESSAGE(  "SALOME_ContainerPy_i::load_component_Library " + str(componentName) )
187         ret = 0
188         instanceName = componentName + "_inst_" + `self._numInstance`
189         interfaceName = componentName
190         return self.import_component(componentName), ""
191     
192     #-------------------------------------------------------------------------
193
194     def create_component_instance_env(self, componentName, studyId, env):
195       return self.create_component_instance(componentName, studyId), ""
196
197     def create_component_instance(self, componentName, studyId):
198         MESSAGE( "SALOME_ContainerPy_i::create_component_instance ==> " + str(componentName) + ' ' + str(studyId) )
199         if studyId < 0:
200             MESSAGE( "Study ID is lower than 0!" )
201             return None
202         else:
203             self._numInstance = self._numInstance +1
204             instanceName = componentName + "_inst_" + `self._numInstance`
205             comp_iors=""
206             try:
207                 component=__import__(componentName)
208                 factory=getattr(component,componentName)
209                 comp_i=factory(self._orb,
210                                self._poa,
211                                self._this(),
212                                self._containerName,
213                                instanceName,
214                                componentName)
215                 
216                 MESSAGE( "SALOME_Container_i::create_component_instance : OK")
217                 comp_o = comp_i._this()
218                 self._listInstances_map[instanceName] = comp_i
219             except:
220                 import traceback
221                 traceback.print_exc()
222                 MESSAGE( "SALOME_Container_i::create_component_instance : NOT OK")
223             return comp_o
224
225     #-------------------------------------------------------------------------
226
227     def find_component_instance(self, registeredName, studyId):
228         anEngine = None
229         keysList = self._listInstances_map.keys()
230         i = 0
231         while i < len(keysList):
232             instance = keysList[i]
233             if find(instance,registeredName) == 0:
234                 anEngine = self._listInstances_map[instance]
235                 if studyId == anEngine.getStudyId():
236                     return anEngine._this()
237             i = i + 1
238         return anEngine._this()
239         
240         
241     #-------------------------------------------------------------------------
242
243     def remove_impl(self, component):
244         MESSAGE( "SALOME_ContainerPy_i::remove_impl" )
245         instanceName = component._get_instanceName()
246         MESSAGE( "unload component " + str(instanceName) )
247         self._listInstances_map.remove(instanceName)
248         component.destroy()
249         self._naming_service.Destroy_Name(str(instanceName))
250
251     #-------------------------------------------------------------------------
252
253     def finalize_removal(self):
254         MESSAGE( "SALOME_ContainerPy_i::finalize_removal" )
255         return None
256
257     #-------------------------------------------------------------------------
258
259     def ping(self):
260         MESSAGE( "SALOME_ContainerPy_i::ping() pid " + str(os.getpid()) )
261         return None
262
263     #-------------------------------------------------------------------------
264
265     def getPID(self):
266         return os.getpid()
267
268     #-------------------------------------------------------------------------
269
270     def _get_name(self):
271         MESSAGE( "SALOME_ContainerPy_i::_get_name" )
272         return self._containerName
273
274     #-------------------------------------------------------------------------
275
276     def getHostName(self):
277         MESSAGE( "SALOME_ContainerPy_i::_get_MachineName" )
278         self._machineName = "localhost"
279         return self._machineName
280
281     #-------------------------------------------------------------------------
282     
283     def _get_machineName(self):
284         MESSAGE( "SALOME_ContainerPy_i::_get_MachineName" )
285         self._machineName = "localhost"
286         return self._machineName
287
288     #-------------------------------------------------------------------------
289
290     def Shutdown(self):
291         self._naming_service.Destroy_Name(self._containerName);
292         self._naming_service.Destroy_FullDirectory(self._containerName);
293         self._orb.shutdown(0)
294         pass
295
296     def _get_logfilename(self):
297       return self._logfilename
298     def _set_logfilename(self,logfilename):
299       self._logfilename=logfilename
300     def _get_workingdir(self):
301       return os.getcwd()
302
303 #=============================================================================
304
305 if __name__ == "__main__":
306   # change the stdout buffering to line buffering (same as C++ cout buffering)
307   sys.stdout=os.fdopen(1,"w",1)
308   #initialise the ORB and find the root POA
309   if verbose():print "Starting ",sys.argv[1]
310   orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
311   poa = orb.resolve_initial_references("RootPOA")
312   if verbose():print "ORB and POA initialized"
313
314   #create an instance of SALOME_ContainerPy_i and a Container reference
315   #containerName = "FactoryServerPy"
316   MESSAGE( str(sys.argv) )
317   containerName = sys.argv[1]
318   cpy_i = SALOME_ContainerPy_i(orb, poa, containerName)
319   if verbose():print "SALOME_ContainerPy_i instance created ",cpy_i 
320   cpy_o = cpy_i._this()
321   if verbose():print "SALOME_ContainerPy_i instance activated ",cpy_o
322   sys.stdout.flush()
323   sys.stderr.flush()
324
325   #activate the POA
326   poaManager = poa._get_the_POAManager()
327   poaManager.activate()
328
329   #Block for ever
330   orb.run()
331   if verbose():print "SALOME_ContainerPy_i shutdown"