Salome HOME
Copyright update 2021
[modules/kernel.git] / src / Container / SALOME_Container.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2021  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 #  SALOME Container : implementation of container and engine for Kernel
25 #  File   : SALOME_Container.py
26 #  Author : Paul RASCLE, EDF
27 #  Module : SALOME
28 #  $Header$
29
30 ## @package SALOME_Container
31 # \brief python implementation of container interface for Kernel
32 #
33
34 import os
35 import sys
36 import traceback
37 import imp
38 from omniORB import CORBA, PortableServer
39 import SALOMEDS
40 import Engines, Engines__POA
41 from SALOME_NamingServicePy import *
42 from SALOME_ComponentPy import *
43 import SALOME_PyNode
44
45 from SALOME_utilities import *
46 from Utils_Identity import getShortHostName
47 from launchConfigureParser import verbose
48
49 #=============================================================================
50
51 #define an implementation of the container interface for embedding in Container implemented in C++
52
53 class SALOME_Container_i:
54     _orb = None
55     _poa = None
56     _containerName = ""
57     _naming_service = None
58
59     #-------------------------------------------------------------------------
60
61     def __init__(self ,containerName, containerIORStr):
62         MESSAGE( "SALOME_Container_i::__init__" )
63         self._orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
64         self._poa = self._orb.resolve_initial_references("RootPOA")
65         self._containerName = containerName
66         if verbose(): print("SALOME_Container.SALOME_Container_i : _containerName ",self._containerName)
67         #self._naming_service = SALOME_NamingServicePy_i(self._orb)
68         self._container = self._orb.string_to_object(containerIORStr)
69
70     #-------------------------------------------------------------------------
71
72     def import_component(self, componentName):
73         MESSAGE( "SALOME_Container_i::import_component" )
74         ret=""
75         try:
76             if verbose(): print("try import ",componentName)
77             __import__(componentName)
78             if verbose(): print("import ",componentName," successful")
79         except ImportError as e:
80             #can't import python module componentName
81             #try to find it in python path
82             try:
83               fp, pathname, description = imp.find_module(componentName)
84               if fp:fp.close()
85               #module file found in path
86               ret="Component "+componentName+": Python implementation found but it can't be loaded\n"
87               ret=ret+traceback.format_exc(10)
88             except ImportError as ee:
89               ret="ImplementationNotFound"
90             except:
91               if verbose():print("error when calling find_module")
92               ret="ImplementationNotFound"
93         except:
94             ret="Component "+componentName+": Python implementation found but it can't be loaded\n"
95             ret=ret+traceback.format_exc(10)
96             if verbose():
97               traceback.print_exc()
98               print("import ",componentName," not possible")
99         return ret
100         
101     #-------------------------------------------------------------------------
102
103     def create_component_instance(self, componentName, instanceName):
104         MESSAGE( "SALOME_Container_i::create_component_instance" )
105         comp_iors=""
106         ret=""
107         try:
108             component=__import__(componentName)
109             factory=getattr(component,componentName)
110             comp_i=factory(self._orb,
111                            self._poa,
112                            self._container,
113                            self._containerName,
114                            instanceName,
115                            componentName)
116
117             MESSAGE( "SALOME_Container_i::create_component_instance : OK")
118             comp_o = comp_i._this()
119             comp_iors = self._orb.object_to_string(comp_o)
120         except:
121             ret=traceback.format_exc(10)
122             traceback.print_exc()
123             MESSAGE( "SALOME_Container_i::create_component_instance : NOT OK")
124         return comp_iors, ret
125         
126
127     def create_pynode(self,nodeName,code):
128         try:
129           node=SALOME_PyNode.PyNode_i(nodeName,code,self._poa,self)
130           id_o = self._poa.activate_object(node)
131           comp_o = self._poa.id_to_reference(id_o)
132           comp_iors = self._orb.object_to_string(comp_o)
133           return 0,comp_iors
134         except:
135           exc_typ,exc_val,exc_fr=sys.exc_info()
136           l=traceback.format_exception(exc_typ,exc_val,exc_fr)
137           return 1,"".join(l)
138
139     def create_pyscriptnode(self,nodeName,code):
140         try:
141           node=SALOME_PyNode.PyScriptNode_i(nodeName,code,self._poa,self)
142           id_o = self._poa.activate_object(node)
143           comp_o = self._poa.id_to_reference(id_o)
144           comp_iors = self._orb.object_to_string(comp_o)
145           return 0,comp_iors
146         except:
147           exc_typ,exc_val,exc_fr=sys.exc_info()
148           l=traceback.format_exception(exc_typ,exc_val,exc_fr)
149           return 1,"".join(l)