]> SALOME platform Git repositories - modules/kernel.git/blob - src/KERNEL_PY/salome_study.py
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/kernel.git] / src / KERNEL_PY / salome_study.py
1 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3
4 #  This library is free software; you can redistribute it and/or 
5 #  modify it under the terms of the GNU Lesser General Public 
6 #  License as published by the Free Software Foundation; either 
7 #  version 2.1 of the License. 
8
9 #  This library is distributed in the hope that it will be useful, 
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 #  Lesser General Public License for more details. 
13
14 #  You should have received a copy of the GNU Lesser General Public 
15 #  License along with this library; if not, write to the Free Software 
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 #
21 #
22 #  File   : salome_study.py
23 #  Author : Paul RASCLE, EDF
24 #  Module : SALOME
25 #  $Header$
26
27 import salome_kernel
28 import SALOMEDS
29 import salome_iapp
30 from launchConfigureParser import verbose
31
32 #--------------------------------------------------------------------------
33
34 def DumpComponent(Study, SO, Builder,offset):
35   it = Study.NewChildIterator(SO)
36   while it.More():
37     CSO = it.Value()
38     a=offset*"--" + ">" + CSO.GetID()
39     find,AtName = Builder.FindAttribute(CSO, "AttributeName")
40     if find:
41       a=a+":"+AtName.Value()
42     find,AtIOR = Builder.FindAttribute(CSO, "AttributeIOR")
43     if find:
44       a=a+":"+AtIOR.Value()
45     find,RefSO = CSO.ReferencedObject()
46     if find:
47       a=a+":"+RefSO.GetID()
48     print a
49     DumpComponent(Study, CSO, Builder,offset+2)
50     it.Next()
51
52 #--------------------------------------------------------------------------
53
54 def DumpStudy(Study):
55     """
56     Dump a study, given the ior
57     """
58     itcomp = Study.NewComponentIterator()
59     Builder = Study.NewBuilder()
60     while itcomp.More():
61       SC = itcomp.Value()
62       name = SC.ComponentDataType()
63       print "-> ComponentDataType is " + name
64       DumpComponent(Study, SC,Builder, 1)
65       itcomp.Next()
66
67 def DumpStudies():
68   """
69     Dump all studies in a StudyManager
70   """
71   for name in myStudyManager.GetOpenStudies():
72     s=myStudyManager.GetStudyByName(name)
73     print "study:",name, s._get_StudyId()
74     DumpStudy(s)
75
76
77 #--------------------------------------------------------------------------
78
79 def IDToObject(id):
80     myObj = None
81     mySO = myStudy.FindObjectID(id);
82     if mySO is not None:
83         ok, anAttr = mySO.FindAttribute("AttributeIOR")
84         if ok:
85             AtIOR = anAttr._narrow(SALOMEDS.AttributeIOR)
86             if AtIOR.Value() != "":
87                 myObj = orb.string_to_object(AtIOR.Value())
88     return myObj
89
90 def ObjectToSObject(obj):
91     mySO = None
92     if obj is not None:
93         ior =  orb.object_to_string(obj)
94         if ior != "":
95             mySO = myStudy.FindObjectIOR(ior)
96     return mySO
97
98 def ObjectToID(obj):
99     mySO = ObjectToSObject(obj)
100     if mySO:
101         return mySO.GetID()
102     return ""
103
104 def IDToSObject(id):
105     mySO = myStudy.FindObjectID(id);
106     return mySO
107
108     #--------------------------------------------------------------------------
109
110 def generateName(prefix = None):
111     import whrandom;
112     int = whrandom.randint(1,1000);
113     if prefix is None:
114         return "Study" + str(int)
115     else :
116         return prefix + str(int)
117
118     #--------------------------------------------------------------------------
119
120 def PersistentPresentation(theStudy, theSO, theWithID):
121     # put the sobject's content (with subchildren) to the string
122     aResult = ""
123     attrs = theSO.GetAllAttributes()
124     aLen = len(attrs)
125     anUncopied = 0
126     for a in range(0,aLen):
127         attr = attrs[a]
128         if isinstance(attr,SALOMEDS._objref_AttributeTreeNode):
129             anUncopied += 1
130         elif isinstance(attr,SALOMEDS._objref_AttributeTarget):
131             anUncopied += 1
132         elif isinstance(attr,SALOMEDS._objref_AttributeReal) or \
133              isinstance(attr,SALOMEDS._objref_AttributeInteger) or \
134              isinstance(attr,SALOMEDS._objref_AttributeName) or \
135              isinstance(attr,SALOMEDS._objref_AttributeComment) or \
136              isinstance(attr,SALOMEDS._objref_AttributePersistentRef) or \
137              isinstance(attr,SALOMEDS._objref_AttributeLocalID) or \
138              isinstance(attr,SALOMEDS._objref_AttributeUserID):
139             aResult += " attribute value: " + str(attr.Value())
140         elif isinstance(attr,SALOMEDS._objref_AttributeIOR):
141             aResult += " attribute: IOR"
142         elif isinstance(attr,SALOMEDS._objref_AttributeSequenceOfReal) or \
143              isinstance(attr,SALOMEDS._objref_AttributeSequenceOfInteger):
144             aResult += " Sequence: " + str(attr.CorbaSequence())
145         elif isinstance(attr,SALOMEDS._objref_AttributeDrawable):
146             aResult += " Drawable: " + str(attr.IsDrawable())
147         elif isinstance(attr,SALOMEDS._objref_AttributeSelectable):
148             aResult += " Selectable: " + str(attr.IsSelectable())
149         elif isinstance(attr,SALOMEDS._objref_AttributeExpandable):
150             aResult += " Expandable: " + str(attr.IsExpandable())
151         elif isinstance(attr,SALOMEDS._objref_AttributeOpened):
152             aResult += " Opened: " + str(attr.IsOpened())
153         elif isinstance(attr,SALOMEDS._objref_AttributeTextColor):
154             aResult += " TextColor: " + str(attr.TextColor())
155         elif isinstance(attr,SALOMEDS._objref_AttributeTextHighlightColor):
156             aResult += " TextHighlightColor: " + str(attr.TextHighlightColor())
157         elif isinstance(attr,SALOMEDS._objref_AttributePixMap):
158             aResult += " PixMap: " + str(attr.GetPixMap())
159         elif isinstance(attr,SALOMEDS._objref_AttributeTableOfInteger) or \
160              isinstance(attr,SALOMEDS._objref_AttributeTableOfReal):
161             aResult += " Table with title: " + attr.GetTitle()
162         elif isinstance(attr,SALOMEDS._objref_AttributePythonObject):
163             aResult += " PythonObject: " + attr.GetObject()
164
165     if theWithID:
166         aResult = "sobject: " + theSO.GetID() + " nbattrs: " + str(aLen - anUncopied) + aResult + '\n'
167     else:
168         aResult = " nbattrs: " + str(aLen - anUncopied) + aResult + '\n'
169     anIter = theStudy.NewChildIterator(theSO)
170     while anIter.More():
171         aResult += PersistentPresentation(theStudy, anIter.Value(), theWithID)
172         anIter.Next()
173     return aResult
174
175     #--------------------------------------------------------------------------
176
177 def GetTree(theSO):
178     # returns the document list tree (as list)
179     aResult = [theSO.GetID()]
180     anIter = myStudy.NewChildIterator(theSO)
181     while anIter.More():
182         aResult += GetTree(anIter.Value())
183         anIter.Next()
184     return aResult
185
186     #--------------------------------------------------------------------------
187
188 def CheckCopyPaste(theSO, theInfo ,theComponentPaste):
189     aRoot = theSO
190     while aRoot.GetID() != "0:":
191         aRoot = aRoot.GetFather()
192     aTree = GetTree(aRoot)
193     aStudyPersist = PersistentPresentation(myStudy, aRoot, 1)
194
195     if not myStudyManager.CanCopy(theSO):
196         raise RuntimeError, "<CanCopy> for "+theInfo+" returns false"
197     
198     if not myStudyManager.Copy(theSO):
199         raise RuntimeError, "<Copy> for "+theInfo+" returns false"
200
201     
202     if not myStudyManager.CanPaste(theSO):
203         raise RuntimeError, "<CanPaste> for "+theInfo+" returns false"
204
205     # check: before paste study is not changed check
206     if aStudyPersist != PersistentPresentation(myStudy, aRoot, 1):
207         raise RuntimeError, "Study is changed before Paste calling for "+theInfo
208     
209     aSObj = theSO
210     if theComponentPaste:
211         aSObj = theSO.GetFatherComponent()
212         theInfo = theInfo + "(paste for component)"
213     if myStudyManager.Paste(aSObj) == None:
214         raise RuntimeError, "<Paste> for "+theInfo+" returns None object"
215     aNewTree = GetTree(aRoot)
216     aLen = len(aTree)
217     for a in range(0,aLen):
218         if aTree[a] != aNewTree[a]:
219             return myStudy.FindObjectID(aNewTree[a])
220         
221     if aLen < len(aNewTree):
222         return myStudy.FindObjectID(aNewTree[aLen])
223     
224     raise RuntimeError, "After Copy calling the tree is not changed"
225     
226     #--------------------------------------------------------------------------
227
228 def FindFileInDataDir(filename):
229     import os
230     datadir = os.getenv("DATA_DIR")
231     if datadir is not None:
232         import string
233         dirs = string.split(datadir, ":")
234         for dir in dirs:
235             file = dir + "/" + filename
236             if os.path.exists(file):
237                 return file;
238     datadir = os.getenv("KERNEL_ROOT_DIR") + "/examples/"
239     file = datadir + filename
240     if os.path.exists(file):
241         return file;
242
243     return None
244
245     #--------------------------------------------------------------------------
246
247 salome_study_ID = -1
248
249 def getActiveStudy(theStudyId=0):
250     global salome_study_ID
251     
252     if verbose(): print "getActiveStudy"
253     if salome_study_ID == -1:
254         if salome_iapp.hasDesktop():
255             if verbose(): print "---in gui"
256             salome_study_ID = salome_iapp.sg.getActiveStudyId()
257         else:
258             if verbose(): print "---outside gui"
259             if theStudyId:
260                 aStudy=myStudyManager.GetStudyByID(theStudyId)
261                 if aStudy:
262                     if verbose(): print "connection to existing study ", theStudyId
263                     salome_study_ID = theStudyId
264             if salome_study_ID == -1:
265                 salome_study_ID = createNewStudy()
266             if verbose(): print"--- Study Id ", salome_study_ID
267     return salome_study_ID
268     
269     #--------------------------------------------------------------------------
270
271 def createNewStudy():
272     print "createNewStudy"
273     i=1
274     aStudyName = "noName"
275     nameAlreadyInUse = 1
276     listOfOpenStudies = myStudyManager.GetOpenStudies()
277     print listOfOpenStudies
278     while nameAlreadyInUse:
279         aStudyName = "extStudy_%d"%i
280         if aStudyName not in listOfOpenStudies:
281             nameAlreadyInUse=0
282         else:
283             i = i+1
284
285     theStudy = myStudyManager.NewStudy(aStudyName)
286     theStudyId = theStudy._get_StudyId()
287     print aStudyName, theStudyId
288     return theStudyId
289
290     #--------------------------------------------------------------------------
291
292 salome_study_initial = 1
293
294 def salome_study_init(theStudyId=0):
295     """
296     Performs only once study creation or connection.
297     optional argument : theStudyId
298       When in embedded interpreter inside IAPP, theStudyId is not used
299       When used without GUI (external interpreter)
300         0      : create a new study (default).
301         n (>0) : try connection to study with Id = n, or create a new one
302                  if study not found.
303     """
304     
305     global salome_study_initial
306     global myStudyManager, myStudyId, myStudy, myStudyName
307     global orb, lcc, naming_service, cm
308     
309     if salome_study_initial:
310         salome_study_initial = 0
311         
312         orb, lcc, naming_service, cm = salome_kernel.salome_kernel_init()
313         
314         # get Study Manager reference
315         if verbose(): print "looking for studyManager ..."
316         obj = naming_service.Resolve('myStudyManager')
317         myStudyManager = obj._narrow(SALOMEDS.StudyManager)
318         if verbose(): print "studyManager found"
319
320         # get active study Id, ref and name
321         myStudyId = getActiveStudy(theStudyId)
322         if verbose(): print "myStudyId",myStudyId
323         myStudy = myStudyManager.GetStudyByID(myStudyId)
324         myStudyName = myStudy._get_Name()
325
326     return myStudyManager, myStudyId, myStudy, myStudyName
327