Salome HOME
Initial support of publication of shapes
[modules/shaper_study.git] / src / PY / SHAPERSTUDY_utils.py
1 # Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # ---
21 # File   : SHAPERSTUDY_utils.py
22 # Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
23 # ---
24 #
25 __all__ = [
26     #"moduleID",
27     #"objectID",
28     #"unknownID",
29     "moduleName",
30     "modulePixmap",
31     "verbose",
32     "getORB",
33     "getNS",
34     "getLCC",
35     "getEngine",
36     "getStudy",
37     "getEngineIOR",
38     "findOrCreateComponent",
39     "getObjectID",
40     ]
41
42
43 from omniORB import CORBA
44 from SALOME_NamingServicePy import SALOME_NamingServicePy_i
45 from LifeCycleCORBA import LifeCycleCORBA
46 import SALOMEDS
47 import SALOMEDS_Attributes_idl
48 import SHAPERSTUDY_ORB
49 import os
50    
51 ###
52 # Get SHAPERSTUDY module's name
53 ###
54 def moduleName():
55     return "SHAPERSTUDY"
56
57 ###
58 # Get module's pixmap name
59 ###
60 def modulePixmap():
61     return "SHAPERSTUDY_small.png"
62
63 ###
64 # Get verbose level
65 ### 
66 __verbose__ = None
67 def verbose():
68     global __verbose__
69     if __verbose__ is None:
70         try:
71             __verbose__ = int( os.getenv( 'SALOME_VERBOSE', 0 ) )
72         except:
73             __verbose__ = 0
74             pass
75         pass
76     return __verbose__
77
78 ###
79 # Get ORB reference
80 ###
81 __orb__ = None
82 def getORB():
83     global __orb__
84     if __orb__ is None:
85         __orb__ = CORBA.ORB_init( [''], CORBA.ORB_ID )
86         pass
87     return __orb__
88
89 ###
90 # Get naming service instance
91 ###
92 __naming_service__ = None
93 def getNS():
94     global __naming_service__
95     if __naming_service__ is None:
96         __naming_service__ = SALOME_NamingServicePy_i( getORB() )
97         pass
98     return __naming_service__
99
100 ##
101 # Get life cycle CORBA instance
102 ##
103 __lcc__ = None
104 def getLCC():
105     global __lcc__
106     if __lcc__ is None:
107         __lcc__ = LifeCycleCORBA( getORB() )
108         pass
109     return __lcc__
110
111 ##
112 # Get study
113 ###
114 __study__ = None
115 def getStudy():
116     global __study__
117     if __study__ is None:
118         obj = getNS().Resolve( '/Study' )
119         __study__ = obj._narrow( SALOMEDS.Study )
120         pass
121     return __study__
122
123 ###
124 # Get SHAPERSTUDY engine
125 ###
126 __engine__ = None
127 def getEngine():
128     global __engine__
129     if __engine__ is None:
130         __engine__ = getLCC().FindOrLoadComponent( "FactoryServer", moduleName() )
131         pass
132     return __engine__
133
134 ###
135 # Get SHAPERSTUDY engine IOR
136 ###
137 def getEngineIOR():
138     IOR = ""
139     if getORB() and getEngine():
140         IOR = getORB().object_to_string( getEngine() )
141         pass
142     return IOR
143
144 ###
145 # Find or create SHAPERSTUDY component object in a study
146 ###
147 def findOrCreateComponent():
148     study = getStudy()
149     father = study.FindComponent( moduleName() )
150     if father is None:
151         builder = study.NewBuilder()
152         father = builder.NewComponent( moduleName() )
153         attr = builder.FindOrCreateAttribute( father, "AttributeName" )
154         attr.SetValue( "Shaper" )
155         attr = builder.FindOrCreateAttribute( father, "AttributePixMap" )
156         attr.SetPixMap( modulePixmap() )
157         #attr = builder.FindOrCreateAttribute( father, "AttributeLocalID" )
158         #attr.SetValue( moduleID() )
159         try:
160             builder.DefineComponentInstance( father, getEngine() )
161             pass
162         except:
163             pass
164         pass
165     return father
166