1 // Copyright (C) 2014-2015 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #include "IGESPlugin_IOperations.hxx"
22 #include "IGESPlugin_ExportDriver.hxx"
23 #include "IGESPlugin_ImportDriver.hxx"
24 #include "IGESPlugin_IExport.hxx"
25 #include "IGESPlugin_IImport.hxx"
28 #include <utilities.h>
31 #include "GEOM_PythonDump.hxx"
32 #include "GEOMImpl_Types.hxx"
34 #include <Standard_ErrorHandler.hxx> // CAREFUL ! position of this file is critic : see Lucien PIGNOLONI / OCC
36 //=============================================================================
40 //=============================================================================
41 IGESPlugin_IOperations::IGESPlugin_IOperations( GEOM_Engine* theEngine, int theDocID )
42 : GEOMImpl_IBaseIEOperations( theEngine, theDocID )
44 MESSAGE( "IGESPlugin_IOperations::IGESPlugin_IOperations" );
47 //=============================================================================
51 //=============================================================================
52 IGESPlugin_IOperations::~IGESPlugin_IOperations()
54 MESSAGE( "IGESPlugin_IOperations::~IGESPlugin_IOperations" );
57 //=============================================================================
60 * Export a shape to IGES format
61 * \param theOriginal The shape to export
62 * \param theFileName The name of the file to exported
63 * \param theIsASCII The format of the exported file (ASCII or Binary)
64 * \param theDeflection The deflection of the shape to exported
65 * \param theVersion The version of IGES format which defines, whether to write
66 * only faces (5.1 IGES format) or shells and solids also (5.3 IGES format).
68 //=============================================================================
69 void IGESPlugin_IOperations::ExportIGES( const Handle(GEOM_Object) theOriginal,
70 const TCollection_AsciiString& theFileName,
71 const TCollection_AsciiString& theVersion )
74 if( theOriginal.IsNull() ) return;
76 Handle(GEOM_Function) aRefFunction = theOriginal->GetLastFunction();
77 if( aRefFunction.IsNull() ) return; //There is no function which creates an object to be exported
79 //Add a new result object
80 Handle(GEOM_Object) result = GetEngine()->AddObject( GetDocID(), GEOM_IMPORT);
82 //Add an Export function
83 Handle(GEOM_Function) aFunction = result->AddFunction( IGESPlugin_ExportDriver::GetID(), EXPORT_SHAPE );
84 if( aFunction.IsNull() ) return;
86 //Check if the function is set correctly
87 if( aFunction->GetDriverGUID() != IGESPlugin_ExportDriver::GetID() ) return;
90 IGESPlugin_IExport aCI( aFunction );
91 aCI.SetOriginal( aRefFunction );
92 aCI.SetFileName( theFileName );
93 aCI.SetVersion( theVersion );
98 if( !GetSolver()->ComputeFunction( aFunction ) ) {
99 SetErrorCode( "Not enough space on disk, or you haven't permissions to write this directory" );
103 catch( Standard_Failure ) {
104 Handle(Standard_Failure) aFail = Standard_Failure::Caught();
105 SetErrorCode( aFail->GetMessageString() );
109 //Make a Python command
110 GEOM::TPythonDump(aFunction) << "geompy.ExportIGES(" << theOriginal << ", \""
111 << theFileName.ToCString() << "\", \"" << theVersion.ToCString() << "\" )";
116 //=============================================================================
119 * Import a shape from IGES format
120 * \param theFileName The name of the file to import
121 * \return List of GEOM_Objects, containing the created shape and propagation groups.
123 //=============================================================================
124 Handle(TColStd_HSequenceOfTransient)
125 IGESPlugin_IOperations::ImportIGES( const TCollection_AsciiString& theFileName,
126 const bool theIsIgnoreUnits )
129 if( theFileName.IsEmpty() ) return NULL;
131 //Add a new result object
132 Handle(GEOM_Object) anImported = GetEngine()->AddObject( GetDocID(), GEOM_IMPORT );
134 //Add an Import function
135 Handle(GEOM_Function) aFunction =
136 anImported->AddFunction( IGESPlugin_ImportDriver::GetID(), IMPORT_SHAPE);
137 if (aFunction.IsNull()) return NULL;
139 //Check if the function is set correctly
140 if (aFunction->GetDriverGUID() != IGESPlugin_ImportDriver::GetID()) return NULL;
143 IGESPlugin_IImport aCI( aFunction );
144 aCI.SetFileName( theFileName );
145 aCI.SetIsIgnoreUnits( theIsIgnoreUnits );
148 Handle(TColStd_HSequenceOfTransient) aSeq = new TColStd_HSequenceOfTransient;
152 if( !GetSolver()->ComputeFunction( aFunction ) ) {
153 SetErrorCode( "Import driver failed" );
156 aSeq->Append(anImported);
158 // Greate material groups.
159 // MakeMaterialGroups( anImported, aSeq );
161 catch( Standard_Failure ) {
162 Handle(Standard_Failure) aFail = Standard_Failure::Caught();
163 SetErrorCode( aFail->GetMessageString() );
167 //Make a Python command
168 GEOM::TPythonDump pd (aFunction);
169 if( theIsIgnoreUnits )
170 pd << aSeq << " = geompy.ImportIGES(\"" << theFileName.ToCString() << "\", True)";
172 pd << aSeq << " = geompy.ImportIGES(\"" << theFileName.ToCString() << "\")";
178 //=============================================================================
182 //=============================================================================
183 TCollection_AsciiString IGESPlugin_IOperations::ReadValue
184 ( const TCollection_AsciiString& theFileName,
185 const TCollection_AsciiString& theParameterName )
189 TCollection_AsciiString aValue, anError;
191 if (theFileName.IsEmpty() || theParameterName.IsEmpty()) return aValue;
193 aValue = IGESPlugin_ImportDriver::GetValue( theFileName, theParameterName, anError );
195 if( aValue.IsEmpty() ) {
196 if( anError.IsEmpty() )
197 anError = theFileName + " doesn't contain requested parameter";
200 if (anError.IsEmpty())
203 SetErrorCode(anError.ToCString());