Salome HOME
Copyrights update 2015.
[modules/geom.git] / src / IGESPlugin / IGESPlugin_IOperations.cxx
1 // Copyright (C) 2014-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // internal includes
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"
26
27 // KERNEL includes
28 #include <utilities.h>
29
30 // GEOM includes
31 #include "GEOM_PythonDump.hxx"
32 #include "GEOMImpl_Types.hxx"
33
34 #include <Standard_ErrorHandler.hxx> // CAREFUL ! position of this file is critic : see Lucien PIGNOLONI / OCC
35
36 //=============================================================================
37 /*!
38  *  Constructor
39  */
40 //=============================================================================
41 IGESPlugin_IOperations::IGESPlugin_IOperations( GEOM_Engine* theEngine, int theDocID )
42 : GEOMImpl_IBaseIEOperations( theEngine, theDocID )
43 {
44   MESSAGE( "IGESPlugin_IOperations::IGESPlugin_IOperations" );
45 }
46
47 //=============================================================================
48 /*!
49  *  Destructor
50  */
51 //=============================================================================
52 IGESPlugin_IOperations::~IGESPlugin_IOperations()
53 {
54   MESSAGE( "IGESPlugin_IOperations::~IGESPlugin_IOperations" );
55 }
56
57 //=============================================================================
58 /*!
59  *  ExportIGES
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).
67  */
68 //=============================================================================
69 void IGESPlugin_IOperations::ExportIGES( const Handle(GEOM_Object)      theOriginal,
70                                                  const TCollection_AsciiString& theFileName,
71                                                  const TCollection_AsciiString& theVersion )
72 {
73   SetErrorCode(KO);
74   if( theOriginal.IsNull() ) return;
75
76   Handle(GEOM_Function) aRefFunction = theOriginal->GetLastFunction();
77   if( aRefFunction.IsNull() ) return;  //There is no function which creates an object to be exported
78
79   //Add a new result object
80   Handle(GEOM_Object) result = GetEngine()->AddObject( GetDocID(), GEOM_IMPORT);
81
82   //Add an Export function
83   Handle(GEOM_Function) aFunction = result->AddFunction( IGESPlugin_ExportDriver::GetID(), EXPORT_SHAPE );
84   if( aFunction.IsNull() ) return;
85
86   //Check if the function is set correctly
87   if( aFunction->GetDriverGUID() != IGESPlugin_ExportDriver::GetID() ) return;
88
89   //Set parameters
90   IGESPlugin_IExport aCI( aFunction );
91   aCI.SetOriginal( aRefFunction );
92   aCI.SetFileName( theFileName );
93   aCI.SetVersion( theVersion );
94
95   //Perform the Export
96   try {
97     OCC_CATCH_SIGNALS;
98     if( !GetSolver()->ComputeFunction( aFunction ) ) {
99       SetErrorCode( "Not enough space on disk, or you haven't permissions to write this directory" );
100       return;
101     }
102   }
103   catch( Standard_Failure ) {
104     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
105     SetErrorCode( aFail->GetMessageString() );
106     return;
107   }
108
109   //Make a Python command
110   GEOM::TPythonDump(aFunction) << "geompy.ExportIGES(" << theOriginal << ", \""
111     << theFileName.ToCString() << "\", \"" << theVersion.ToCString() << "\" )";
112
113   SetErrorCode(OK);
114 }
115
116 //=============================================================================
117 /*!
118  *  ImportIGES
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.
122  */
123 //=============================================================================
124 Handle(TColStd_HSequenceOfTransient)
125 IGESPlugin_IOperations::ImportIGES( const TCollection_AsciiString& theFileName,
126                                             const bool theIsIgnoreUnits )
127 {
128   SetErrorCode(KO);
129   if( theFileName.IsEmpty() ) return NULL;
130
131   //Add a new result object
132   Handle(GEOM_Object) anImported = GetEngine()->AddObject( GetDocID(), GEOM_IMPORT );
133
134   //Add an Import function
135   Handle(GEOM_Function) aFunction =
136     anImported->AddFunction( IGESPlugin_ImportDriver::GetID(), IMPORT_SHAPE);
137   if (aFunction.IsNull()) return NULL;
138
139   //Check if the function is set correctly
140   if (aFunction->GetDriverGUID() != IGESPlugin_ImportDriver::GetID()) return NULL;
141
142   //Set parameters
143   IGESPlugin_IImport aCI( aFunction );
144   aCI.SetFileName( theFileName );
145   aCI.SetIsIgnoreUnits( theIsIgnoreUnits );
146
147   //Perform the Import
148   Handle(TColStd_HSequenceOfTransient) aSeq = new TColStd_HSequenceOfTransient;
149
150   try {
151     OCC_CATCH_SIGNALS;
152     if( !GetSolver()->ComputeFunction( aFunction ) ) {
153       SetErrorCode( "Import driver failed" );
154       return NULL;
155     }
156     aSeq->Append(anImported);
157
158     // Greate material groups.
159     // MakeMaterialGroups( anImported, aSeq );
160   }
161   catch( Standard_Failure ) {
162     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
163     SetErrorCode( aFail->GetMessageString() );
164     return NULL;
165   }
166
167   //Make a Python command
168   GEOM::TPythonDump pd (aFunction);
169   if( theIsIgnoreUnits )
170     pd << aSeq << " = geompy.ImportIGES(\"" << theFileName.ToCString() << "\", True)";
171   else
172     pd << aSeq << " = geompy.ImportIGES(\"" << theFileName.ToCString() << "\")";
173   SetErrorCode(OK);
174
175   return aSeq;
176 }
177
178 //=============================================================================
179 /*!
180  *  ReadValue
181  */
182 //=============================================================================
183 TCollection_AsciiString IGESPlugin_IOperations::ReadValue
184                                  ( const TCollection_AsciiString& theFileName,
185                                    const TCollection_AsciiString& theParameterName )
186 {
187   SetErrorCode(KO);
188
189   TCollection_AsciiString aValue, anError;
190
191   if (theFileName.IsEmpty() || theParameterName.IsEmpty()) return aValue;
192
193   aValue = IGESPlugin_ImportDriver::GetValue( theFileName, theParameterName, anError );
194
195   if( aValue.IsEmpty() ) {
196     if( anError.IsEmpty() )
197       anError = theFileName + " doesn't contain requested parameter";
198     return aValue;
199   }
200   if (anError.IsEmpty())
201     SetErrorCode(OK);
202   else
203     SetErrorCode(anError.ToCString());
204
205   return aValue;
206 }