1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2014-2016 OPEN CASCADE
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, or (at your option) any later version.
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.
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
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 from ACISPlugin import IACISOperations
24 __libraryName__ = "ACISPluginEngine"
26 ## Get ACIS plugin operations interface
27 # @return an instance of ACIS plugin operations interface
28 def GetACISPluginOperations(self):
30 Get ACIS plugin operations interface.
33 An instance of ACIS plugin operations interface
35 anOp = self.GetPluginOperations(self.myStudyId, __libraryName__)
36 return anOp._narrow(IACISOperations)
38 ## Export the given shape into a file with given name in ACIS format.
39 # @param theObject Shape to be stored in the file.
40 # @param theFileName Name of the file to store the given shape in.
42 def ExportACIS(self, theObject, theFileName):
44 Export the given shape into a file with given name in ACIS format.
47 theObject Shape to be stored in the file.
48 theFileName Name of the file to store the given shape in.
50 anOp = GetACISPluginOperations(self)
51 anOp.ExportACIS(theObject, theFileName)
52 if anOp.IsDone() == 0:
53 raise RuntimeError, "Export : " + anOp.GetErrorCode()
58 ## Import a shape from the ACIS file
59 # @param theFileName The file, containing the shape.
60 # @param theName Object name; when specified, this parameter is used
61 # for result publication in the study. Otherwise, if automatic
62 # publication is switched on, default value is used for result name.
64 # @return New GEOM.GEOM_Object, containing the imported shape.
65 # If material names are imported it returns the list of
66 # objects. The first one is the imported object followed by
69 # @note Auto publishing is allowed for the shape itself. Imported
70 # material groups are not automatically published.
73 def ImportACIS(self, theFileName, theName=None):
75 Import a shape from the ACIS file
78 theFileName The file, containing the shape.
79 theName Object name; when specified, this parameter is used
80 for result publication in the study. Otherwise, if automatic
81 publication is switched on, default value is used for result name.
84 New GEOM.GEOM_Object, containing the imported shape.
85 If material names are imported it returns the list of
86 objects. The first one is the imported object followed by
89 Auto publishing is allowed for the shape itself. Imported
90 material groups are not automatically published.
92 from salome.geom.geomBuilder import RaiseIfFailed
93 anOp = GetACISPluginOperations(self)
94 aListObj = anOp.ImportACIS(theFileName)
95 RaiseIfFailed("ImportACIS", anOp)
96 aNbObj = len(aListObj)
98 self._autoPublish(aListObj[0], theName, "imported")