Salome HOME
CCAR: import_hook.py was too strict in ensure_list (ImportError raised)
[modules/kernel.git] / src / KERNEL_PY / salome_study.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2010  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.
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 #  File   : salome_study.py
25 #  Author : Paul RASCLE, EDF
26 #  Module : SALOME
27 #  $Header$
28 #
29 import salome_kernel
30 import SALOMEDS
31 import salome_iapp
32 from launchConfigureParser import verbose
33
34 #--------------------------------------------------------------------------
35
36 def DumpComponent(Study, SO, Builder,offset):
37   it = Study.NewChildIterator(SO)
38   while it.More():
39     CSO = it.Value()
40     a=offset*"--" + ">" + CSO.GetID()
41     find,AtName = Builder.FindAttribute(CSO, "AttributeName")
42     if find:
43       a=a+":"+AtName.Value()
44     find,AtIOR = Builder.FindAttribute(CSO, "AttributeIOR")
45     if find:
46       a=a+":"+AtIOR.Value()
47     find,RefSO = CSO.ReferencedObject()
48     if find:
49       a=a+":"+RefSO.GetID()
50     print a
51     DumpComponent(Study, CSO, Builder,offset+2)
52     it.Next()
53
54 #--------------------------------------------------------------------------
55
56 def DumpStudy(Study):
57     """
58     Dump a study, given the ior
59     """
60     itcomp = Study.NewComponentIterator()
61     Builder = Study.NewBuilder()
62     while itcomp.More():
63       SC = itcomp.Value()
64       name = SC.ComponentDataType()
65       print "-> ComponentDataType is " + name
66       DumpComponent(Study, SC,Builder, 1)
67       itcomp.Next()
68
69 def DumpStudies():
70   """
71     Dump all studies in a StudyManager
72   """
73   for name in myStudyManager.GetOpenStudies():
74     s=myStudyManager.GetStudyByName(name)
75     print "study:",name, s._get_StudyId()
76     DumpStudy(s)
77
78
79 #--------------------------------------------------------------------------
80
81 def IDToObject(id):
82     myObj = None
83     mySO = myStudy.FindObjectID(id);
84     if mySO is not None:
85         ok, anAttr = mySO.FindAttribute("AttributeIOR")
86         if ok:
87             AtIOR = anAttr._narrow(SALOMEDS.AttributeIOR)
88             if AtIOR.Value() != "":
89                 myObj = orb.string_to_object(AtIOR.Value())
90     return myObj
91
92 def ObjectToSObject(obj):
93     mySO = None
94     if obj is not None:
95         ior =  orb.object_to_string(obj)
96         if ior != "":
97             mySO = myStudy.FindObjectIOR(ior)
98     return mySO
99
100 def ObjectToID(obj):
101     mySO = ObjectToSObject(obj)
102     if mySO:
103         return mySO.GetID()
104     return ""
105
106 def IDToSObject(id):
107     mySO = myStudy.FindObjectID(id);
108     return mySO
109
110     #--------------------------------------------------------------------------
111
112 def generateName(prefix = None):
113     import whrandom;
114     int = whrandom.randint(1,1000);
115     if prefix is None:
116         return "Study" + str(int)
117     else :
118         return prefix + str(int)
119
120     #--------------------------------------------------------------------------
121
122 def PersistentPresentation(theStudy, theSO, theWithID):
123     # put the sobject's content (with subchildren) to the string
124     aResult = ""
125     attrs = theSO.GetAllAttributes()
126     aLen = len(attrs)
127     anUncopied = 0
128     for a in range(0,aLen):
129         attr = attrs[a]
130         if isinstance(attr,SALOMEDS._objref_AttributeTreeNode):
131             anUncopied += 1
132         elif isinstance(attr,SALOMEDS._objref_AttributeTarget):
133             anUncopied += 1
134         elif isinstance(attr,SALOMEDS._objref_AttributeReal) or \
135              isinstance(attr,SALOMEDS._objref_AttributeInteger) or \
136              isinstance(attr,SALOMEDS._objref_AttributeName) or \
137              isinstance(attr,SALOMEDS._objref_AttributeComment) or \
138              isinstance(attr,SALOMEDS._objref_AttributePersistentRef) or \
139              isinstance(attr,SALOMEDS._objref_AttributeLocalID) or \
140              isinstance(attr,SALOMEDS._objref_AttributeUserID):
141             aResult += " attribute value: " + str(attr.Value())
142         elif isinstance(attr,SALOMEDS._objref_AttributeIOR):
143             aResult += " attribute: IOR"
144         elif isinstance(attr,SALOMEDS._objref_AttributeSequenceOfReal) or \
145              isinstance(attr,SALOMEDS._objref_AttributeSequenceOfInteger):
146             aResult += " Sequence: " + str(attr.CorbaSequence())
147         elif isinstance(attr,SALOMEDS._objref_AttributeDrawable):
148             aResult += " Drawable: " + str(attr.IsDrawable())
149         elif isinstance(attr,SALOMEDS._objref_AttributeSelectable):
150             aResult += " Selectable: " + str(attr.IsSelectable())
151         elif isinstance(attr,SALOMEDS._objref_AttributeExpandable):
152             aResult += " Expandable: " + str(attr.IsExpandable())
153         elif isinstance(attr,SALOMEDS._objref_AttributeOpened):
154             aResult += " Opened: " + str(attr.IsOpened())
155         elif isinstance(attr,SALOMEDS._objref_AttributeTextColor):
156             aResult += " TextColor: " + str(attr.TextColor())
157         elif isinstance(attr,SALOMEDS._objref_AttributeTextHighlightColor):
158             aResult += " TextHighlightColor: " + str(attr.TextHighlightColor())
159         elif isinstance(attr,SALOMEDS._objref_AttributePixMap):
160             aResult += " PixMap: " + str(attr.GetPixMap())
161         elif isinstance(attr,SALOMEDS._objref_AttributeTableOfInteger) or \
162              isinstance(attr,SALOMEDS._objref_AttributeTableOfReal):
163             aResult += " Table with title: " + attr.GetTitle()
164         elif isinstance(attr,SALOMEDS._objref_AttributePythonObject):
165             aResult += " PythonObject: " + attr.GetObject()
166
167     if theWithID:
168         aResult = "sobject: " + theSO.GetID() + " nbattrs: " + str(aLen - anUncopied) + aResult + '\n'
169     else:
170         aResult = " nbattrs: " + str(aLen - anUncopied) + aResult + '\n'
171     anIter = theStudy.NewChildIterator(theSO)
172     while anIter.More():
173         aResult += PersistentPresentation(theStudy, anIter.Value(), theWithID)
174         anIter.Next()
175     return aResult
176
177     #--------------------------------------------------------------------------
178
179 def GetTree(theSO):
180     # returns the document list tree (as list)
181     aResult = [theSO.GetID()]
182     anIter = myStudy.NewChildIterator(theSO)
183     while anIter.More():
184         aResult += GetTree(anIter.Value())
185         anIter.Next()
186     return aResult
187
188     #--------------------------------------------------------------------------
189
190 def CheckCopyPaste(theSO, theInfo ,theComponentPaste):
191     aRoot = theSO
192     while aRoot.GetID() != "0:":
193         aRoot = aRoot.GetFather()
194     aTree = GetTree(aRoot)
195     aStudyPersist = PersistentPresentation(myStudy, aRoot, 1)
196
197     if not myStudyManager.CanCopy(theSO):
198         raise RuntimeError, "<CanCopy> for "+theInfo+" returns false"
199     
200     if not myStudyManager.Copy(theSO):
201         raise RuntimeError, "<Copy> for "+theInfo+" returns false"
202
203     
204     if not myStudyManager.CanPaste(theSO):
205         raise RuntimeError, "<CanPaste> for "+theInfo+" returns false"
206
207     # check: before paste study is not changed check
208     if aStudyPersist != PersistentPresentation(myStudy, aRoot, 1):
209         raise RuntimeError, "Study is changed before Paste calling for "+theInfo
210     
211     aSObj = theSO
212     if theComponentPaste:
213         aSObj = theSO.GetFatherComponent()
214         theInfo = theInfo + "(paste for component)"
215     if myStudyManager.Paste(aSObj) == None:
216         raise RuntimeError, "<Paste> for "+theInfo+" returns None object"
217     aNewTree = GetTree(aRoot)
218     aLen = len(aTree)
219     for a in range(0,aLen):
220         if aTree[a] != aNewTree[a]:
221             return myStudy.FindObjectID(aNewTree[a])
222         
223     if aLen < len(aNewTree):
224         return myStudy.FindObjectID(aNewTree[aLen])
225     
226     raise RuntimeError, "After Copy calling the tree is not changed"
227     
228     #--------------------------------------------------------------------------
229
230 def FindFileInDataDir(filename):
231     import os
232     datadir = os.getenv("DATA_DIR")
233     if datadir is not None:
234         import string
235         dirs = string.split(datadir, ":")
236         for dir in dirs:
237             file = dir + "/" + filename
238             if os.path.exists(file):
239                 return file;
240     datadir = os.getenv("KERNEL_ROOT_DIR") + "/examples/"
241     file = datadir + filename
242     if os.path.exists(file):
243         return file;
244
245     return None
246
247     #--------------------------------------------------------------------------
248
249 salome_study_ID = -1
250
251 def getActiveStudy(theStudyId=0):
252     global salome_study_ID
253
254     if verbose(): print "getActiveStudy"
255     if salome_study_ID == -1:
256         if salome_iapp.hasDesktop():
257             if verbose(): print "---in gui"
258             salome_study_ID = salome_iapp.sg.getActiveStudyId()
259         else:
260             if verbose(): print "---outside gui"
261             if theStudyId:
262                 aStudy=myStudyManager.GetStudyByID(theStudyId)
263                 if aStudy:
264                     if verbose(): print "connection to existing study ", theStudyId
265                     salome_study_ID = theStudyId
266             if salome_study_ID == -1:
267                 salome_study_ID = createNewStudy()
268             if verbose(): print"--- Study Id ", salome_study_ID
269     return salome_study_ID
270
271     #--------------------------------------------------------------------------
272
273 def setCurrentStudy(theStudy):
274     """
275     Change current study : an existing one given by a study object.
276
277     :param theStudy: the study CORBA object to set as current study
278     """
279     global myStudyId, myStudy, myStudyName
280     global salome_study_ID
281     myStudy=theStudy
282     myStudyId=theStudy._get_StudyId()
283     myStudyName=theStudy._get_Name()
284     return myStudyId, myStudy, myStudyName
285
286     #--------------------------------------------------------------------------
287
288 def setCurrentStudyId(theStudyId=0):
289     """
290     Change current study : an existing or new one.
291     optional argument : theStudyId
292         0      : create a new study (default).
293         n (>0) : try connection to study with Id = n, or create a new one
294                  if study not found.
295     """
296     global myStudyId, myStudy, myStudyName
297     global salome_study_ID
298     salome_study_ID = -1
299     myStudyId = getActiveStudy(theStudyId)
300     if verbose(): print "myStudyId",myStudyId
301     myStudy = myStudyManager.GetStudyByID(myStudyId)
302     myStudyName = myStudy._get_Name()
303
304     return myStudyId, myStudy, myStudyName
305
306     #--------------------------------------------------------------------------
307
308 def createNewStudy():
309     print "createNewStudy"
310     i=1
311     aStudyName = "noName"
312     nameAlreadyInUse = 1
313     listOfOpenStudies = myStudyManager.GetOpenStudies()
314     print listOfOpenStudies
315     while nameAlreadyInUse:
316         aStudyName = "extStudy_%d"%i
317         if aStudyName not in listOfOpenStudies:
318             nameAlreadyInUse=0
319         else:
320             i = i+1
321
322     theStudy = myStudyManager.NewStudy(aStudyName)
323     theStudyId = theStudy._get_StudyId()
324     print aStudyName, theStudyId
325     return theStudyId
326
327     #--------------------------------------------------------------------------
328
329 salome_study_initial = 1
330
331 def salome_study_init(theStudyId=0):
332     """
333     Performs only once study creation or connection.
334     optional argument : theStudyId
335       When in embedded interpreter inside IAPP, theStudyId is not used
336       When used without GUI (external interpreter)
337         0      : create a new study (default).
338         n (>0) : try connection to study with Id = n, or create a new one
339                  if study not found.
340     """
341
342     global salome_study_initial
343     global myStudyManager, myStudyId, myStudy, myStudyName
344     global orb, lcc, naming_service, cm
345
346     if salome_study_initial:
347         salome_study_initial = 0
348
349         orb, lcc, naming_service, cm = salome_kernel.salome_kernel_init()
350
351         # get Study Manager reference
352         if verbose(): print "looking for studyManager ..."
353         obj = naming_service.Resolve('myStudyManager')
354         myStudyManager = obj._narrow(SALOMEDS.StudyManager)
355         if verbose(): print "studyManager found"
356
357         # get active study Id, ref and name
358         myStudyId = getActiveStudy(theStudyId)
359         if verbose(): print "myStudyId",myStudyId
360         myStudy = myStudyManager.GetStudyByID(myStudyId)
361         myStudyName = myStudy._get_Name()
362
363     return myStudyManager, myStudyId, myStudy, myStudyName
364