2 # ExportFeature class definition
3 # Copyright (C) 2014-20xx CEA/DEN, EDF R&D
11 from salome.geom import geomBuilder
13 def getObjectIndex(theName):
14 aStudy = salome.myStudy
16 aObj = aStudy.FindObjectByName(theName, "GEOM")
19 aName = theName + '_' + str(aId)
20 aObj = aStudy.FindObjectByName(aName, "GEOM")
24 # Feature to export all shapes and groups into the GEOM module
25 class ExportFeature(ModelAPI.ModelAPI_Feature):
29 ModelAPI.ModelAPI_Feature.__init__(self)
30 ## Shape that will be exported (the compound if there are several exported bodies)
32 ## BRep representation of the exported shape (a stream that will be sent to GEOM and converted to GEOM object)
36 ## Export kind. Static.
40 ## Returns the kind of a feature.
42 return ExportFeature.ID()
44 ## This feature is action: has no property pannel and executes immideately.
48 ## This feature has no attributes, as it is action.
49 def initAttributes(self):
53 def exportBodies(self):
55 kResultBodyType = "Bodies"
56 aPartSize = self.Part.size(kResultBodyType)
58 EventsAPI.Events_InfoMessage("ExportFeature","No results in the active document").send()
61 anObjList = [self.Part.object(kResultBodyType, idx) for idx in xrange(aPartSize)]
62 aShapesList = GeomAlgoAPI.ShapeList()
64 for idx, anObject in enumerate(anObjList):
65 aResult = ModelAPI.modelAPI_Result(anObject)
66 aBodyResult = ModelAPI.modelAPI_ResultBody(aResult)
69 aShape = aBodyResult.shape()
70 if aShape is not None and not aShape.isNull():
71 aShapesList.append(aShape)
72 if len(aShapesList) == 1:
73 aName = aBodyResult.data().name()
75 # issue 1045: create compound if there are more than one shape
76 if len(aShapesList) > 1:
77 self.shape = GeomAlgoAPI.GeomAlgoAPI_CompoundBuilder.compound(aShapesList)
78 aName = "ShaperResults"
79 elif len(aShapesList) == 1:
80 self.shape = aShapesList[0]
82 # so, only one shape is always in the result
83 aDump = self.shape.getShapeStream()
84 # Load shape to SALOME Geom
85 aBrep = self.geompy.RestoreShape(aDump)
88 aId = getObjectIndex(aName)
90 aName = aName + '_' + str(aId)
92 self.geompy.addToStudy(aBrep, aName)
96 def exportGroups(self):
97 # iterate all features to find groups
98 aFeaturesNum = self.Part.size("Features")
100 for anIndex in range(0, aFeaturesNum):
101 aFeature = self.Part.object("Features", anIndex)
102 aSelectionList = aFeature.data().selectionList("group_list")
103 # if a group has been found
105 aFeature = ModelAPI.objectToFeature(aFeature)
106 if aFeature.firstResult() is not None:
107 aName = aFeature.firstResult().data().name()
108 groupIndex = groupIndex + 1
109 self.createGroupFromList(aSelectionList, aName)
111 ## Returns a type of the shape in the old GEOM representation
112 def shapeType(self, shape):
122 ## Creates a group by given list of selected objects and the name
123 # @param theSelectionList: list of selected objects
124 # @param theGroupName: name of the group to create
125 def createGroupFromList(self, theSelectionList, theGroupName):
126 # iterate on all selected entities of the group
127 # and get the corresponding ID
128 aSelectionNum = theSelectionList.size()
131 for aSelIndex in range(0, aSelectionNum):
132 aSelection = theSelectionList.value(aSelIndex)
133 # issue 1326: bodies that are already concealed did not exported, so groups should not be invalid
134 aContext = ModelAPI.modelAPI_Result(aSelection.context())
135 if aContext is None or aContext.isConcealed() or aContext.isDisabled():
138 anID = GeomAlgoAPI.GeomAlgoAPI_CompoundBuilder.id(self.shape, aSelection.value())
140 #it may be a compound of objects if movement of the group to the end
141 # splits the original element to several (issue 1146)
142 anExp = GeomAPI.GeomAPI_ShapeExplorer(aSelection.value(), GeomAPI.GeomAPI_Shape.SHAPE)
144 anID = GeomAlgoAPI.GeomAlgoAPI_CompoundBuilder.id(self.shape, anExp.current())
147 groupType = self.shapeType(anExp.current())
151 groupType = self.shapeType(aSelection.value())
154 aGroup = self.geompy.CreateGroup(self.brep, self.geompy.ShapeType[groupType])
155 self.geompy.UnionIDs(aGroup,Ids)
156 self.geompy.addToStudyInFather(self.brep, aGroup, theGroupName)
158 ## Exports all shapes and groups into the GEOM module.
160 aSession = ModelAPI.ModelAPI_Session.get()
161 ## Get active document
162 self.Part = aSession.activeDocument()
163 ## List of objects created in the old geom for later use
164 self.geomObjects = []
166 salome.salome_init(0,1)
167 self.geompy = geomBuilder.New(salome.myStudy)
169 # Export bodies and groups