3 # SALOME Container : implementation of container and engine for Kernel
5 # Copyright (C) 2003 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.
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
26 # File : SALOME_Container.py
27 # Author : Paul RASCLE, EDF
34 from omniORB import CORBA, PortableServer
35 # import SALOMEDS before other SALOME modules
36 # (if not, incomplete import done by SALOME module: no load of SALOMEDS_attributes)
38 import Engines, Engines__POA
41 from SALOME_NamingServicePy import *
42 from SALOME_ComponentPy import *
44 from SALOME_utilities import *
45 from Utils_Identity import getShortHostName
47 #=============================================================================
49 #define an implementation of the container interface
51 class SALOME_Container_i:
55 _naming_service = None
57 #-------------------------------------------------------------------------
59 def __init__(self ,containerName, containerIORStr):
60 MESSAGE( "SALOME_Container_i::__init__" )
61 self._orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
62 self._poa = self._orb.resolve_initial_references("RootPOA")
63 self._containerName = containerName
64 #self._naming_service = SALOME_NamingServicePy_i(self._orb)
65 self._container = self._orb.string_to_object(containerIORStr)
67 #-------------------------------------------------------------------------
69 def import_component(self, componentName):
70 MESSAGE( "SALOME_Container_i::import_component" )
73 print "try import ",componentName
74 __import__(componentName)
75 print "import ",componentName," successful"
80 print "import ",componentName," not possible"
83 #-------------------------------------------------------------------------
85 def create_component_instance(self, componentName, instanceName, studyId):
86 MESSAGE( "SALOME_Container_i::create_component_instance" )
89 component=__import__(componentName)
90 factory=getattr(component,componentName)
91 comp_i=factory(self._orb,
98 MESSAGE( "SALOME_Container_i::create_component_instance : OK")
99 comp_o = comp_i._this()
100 comp_iors = self._orb.object_to_string(comp_o)
103 traceback.print_exc()
104 MESSAGE( "SALOME_Container_i::create_component_instance : NOT OK")