Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[modules/kernel.git] / src / Container / SALOME_Container.py
1 #! /usr/bin/env python
2 #
3 #  SALOME Container : implementation of container and engine for Kernel
4 #
5 #  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
23 #
24 #
25 #
26 #  File   : SALOME_Container.py
27 #  Author : Paul RASCLE, EDF
28 #  Module : SALOME
29 #  $Header$
30
31 import os
32 import sys
33 import string
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)
37 import SALOMEDS 
38 import Engines, Engines__POA
39 reload(Engines)
40 reload(Engines__POA)
41 from SALOME_NamingServicePy import *
42 from SALOME_ComponentPy import *
43
44 from SALOME_utilities import *
45 from Utils_Identity import getShortHostName
46
47 #=============================================================================
48
49 #define an implementation of the container interface
50
51 class SALOME_Container_i:
52     _orb = None
53     _poa = None
54     _containerName = ""
55     _naming_service = None
56
57     #-------------------------------------------------------------------------
58
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         print "SALOME_Container.SALOME_Container_i : _containerName ",self._containerName
65         #self._naming_service = SALOME_NamingServicePy_i(self._orb)
66         self._container = self._orb.string_to_object(containerIORStr)
67
68     #-------------------------------------------------------------------------
69
70     def import_component(self, componentName):
71         MESSAGE( "SALOME_Container_i::import_component" )
72         ret=0
73         try:
74             print "try import ",componentName
75             __import__(componentName)
76             print "import ",componentName," successful"
77             ret=1
78         except:
79             import traceback
80             traceback.print_exc()
81             print "import ",componentName," not possible"
82         return ret
83         
84     #-------------------------------------------------------------------------
85
86     def create_component_instance(self, componentName, instanceName, studyId):
87         MESSAGE( "SALOME_Container_i::create_component_instance" )
88         comp_iors=""
89         try:
90             component=__import__(componentName)
91             factory=getattr(component,componentName)
92             comp_i=factory(self._orb,
93                            self._poa,
94                            self._container,
95                            self._containerName,
96                            instanceName,
97                            componentName)
98
99             MESSAGE( "SALOME_Container_i::create_component_instance : OK")
100             comp_o = comp_i._this()
101             comp_iors = self._orb.object_to_string(comp_o)
102         except:
103             import traceback
104             traceback.print_exc()
105             MESSAGE( "SALOME_Container_i::create_component_instance : NOT OK")
106         return comp_iors 
107         
108