Salome HOME
BugID: IPAL9392, modified methods GetRowUnits.
[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         #self._naming_service = SALOME_NamingServicePy_i(self._orb)
65         self._container = self._orb.string_to_object(containerIORStr)
66
67     #-------------------------------------------------------------------------
68
69     def import_component(self, componentName):
70         MESSAGE( "SALOME_Container_i::import_component" )
71         ret=0
72         try:
73             print "try import ",componentName
74             __import__(componentName)
75             print "import ",componentName," successful"
76             ret=1
77         except:
78             import traceback
79             traceback.print_exc()
80             print "import ",componentName," not possible"
81         return ret
82         
83     #-------------------------------------------------------------------------
84
85     def create_component_instance(self, componentName, instanceName, studyId):
86         MESSAGE( "SALOME_Container_i::create_component_instance" )
87         comp_iors=""
88         try:
89             component=__import__(componentName)
90             factory=getattr(component,componentName)
91             comp_i=factory(self._orb,
92                            self._poa,
93                            self._container,
94                            self._containerName,
95                            instanceName,
96                            componentName)
97
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)
101         except:
102             import traceback
103             traceback.print_exc()
104             MESSAGE( "SALOME_Container_i::create_component_instance : NOT OK")
105         return comp_iors 
106         
107