Salome HOME
Update copyrights
[modules/geom.git] / src / STLPlugin / STLPlugin_IOperations.cxx
1 // Copyright (C) 2014-2019  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 "STLPlugin_IOperations.hxx"
22 #include "STLPlugin_ExportDriver.hxx"
23 #include "STLPlugin_ImportDriver.hxx"
24 #include "STLPlugin_IExport.hxx"
25 #include "STLPlugin_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 STLPlugin_IOperations::STLPlugin_IOperations( GEOM_Engine* theEngine )
42 : GEOMImpl_IBaseIEOperations( theEngine )
43 {
44   MESSAGE( "STLPlugin_IOperations::STLPlugin_IOperations" );
45 }
46
47 //=============================================================================
48 /*!
49  *  Destructor
50  */
51 //=============================================================================
52 STLPlugin_IOperations::~STLPlugin_IOperations()
53 {
54   MESSAGE( "STLPlugin_IOperations::~STLPlugin_IOperations" );
55 }
56
57 //=============================================================================
58 /*!
59  *  ExportSTL
60  *  Export a shape to STL 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 theIsRelative The mode for writing the file. If True (default value),
66  *         the deflection is calculated relatively to the size of the shape;
67  *         if False, the user defined deflection is used.
68  */
69 //=============================================================================
70 void STLPlugin_IOperations::ExportSTL( const Handle(GEOM_Object)      theOriginal,
71                                        const TCollection_AsciiString& theFileName,
72                                        const bool                     theIsASCII,
73                                        const double                   theDeflection,
74                                        const bool                     theIsRelative )
75 {
76   SetErrorCode(KO);
77   if( theOriginal.IsNull() ) return;
78
79   Handle(GEOM_Function) aRefFunction = theOriginal->GetLastFunction();
80   if( aRefFunction.IsNull() ) return;  //There is no function which creates an object to be exported
81
82   //Add a new result object
83   Handle(GEOM_Object) result = GetEngine()->AddObject( GEOM_IMPORT);
84
85   //Add an Export function
86   Handle(GEOM_Function) aFunction = result->AddFunction( STLPlugin_ExportDriver::GetID(), EXPORT_SHAPE );
87   if( aFunction.IsNull() ) return;
88
89   //Check if the function is set correctly
90   if( aFunction->GetDriverGUID() != STLPlugin_ExportDriver::GetID() ) return;
91
92   //Set parameters
93   STLPlugin_IExport aCI( aFunction );
94   aCI.SetOriginal( aRefFunction );
95   aCI.SetFileName( theFileName );
96   aCI.SetIsASCII( theIsASCII );
97   aCI.SetIsRelative( theIsRelative );
98   aCI.SetDeflection( theDeflection );
99
100   //Perform the Export
101   try {
102     OCC_CATCH_SIGNALS;
103     if( !GetSolver()->ComputeFunction( aFunction ) ) {
104       SetErrorCode( "Not enough space on disk, or you haven't permissions to write this directory" );
105       return;
106     }
107   }
108   catch( Standard_Failure& aFail ) {
109     SetErrorCode( aFail.GetMessageString() );
110     return;
111   }
112
113   //Make a Python command
114   GEOM::TPythonDump(aFunction) << "geompy.ExportSTL(" << theOriginal << ", \""
115     << theFileName.ToCString() << "\", " << theIsASCII << ", " << theDeflection << ", "
116     << theIsRelative << ")";
117
118   SetErrorCode(OK);
119 }
120
121 //=============================================================================
122 /*!
123  *  ImportSTL
124  *  Import a shape from STL format
125  *  \param theFileName The name of the file to import
126  *  \return List of GEOM_Objects, containing the created shape and propagation groups.
127  */
128 //=============================================================================
129 Handle(TColStd_HSequenceOfTransient)
130 STLPlugin_IOperations::ImportSTL( const TCollection_AsciiString& theFileName )
131 {
132   SetErrorCode(KO);
133   if( theFileName.IsEmpty() ) return NULL;
134
135   //Add a new result object
136   Handle(GEOM_Object) anImported = GetEngine()->AddObject( GEOM_IMPORT );
137
138   //Add an Import function
139   Handle(GEOM_Function) aFunction =
140     anImported->AddFunction( STLPlugin_ImportDriver::GetID(), IMPORT_SHAPE);
141   if (aFunction.IsNull()) return NULL;
142
143   //Check if the function is set correctly
144   if (aFunction->GetDriverGUID() != STLPlugin_ImportDriver::GetID()) return NULL;
145
146   //Set parameters
147   STLPlugin_IImport aCI( aFunction );
148   aCI.SetFileName( theFileName );
149
150   //Perform the Import
151   Handle(TColStd_HSequenceOfTransient) aSeq = new TColStd_HSequenceOfTransient;
152
153   try {
154     OCC_CATCH_SIGNALS;
155     if( !GetSolver()->ComputeFunction( aFunction ) ) {
156       SetErrorCode( "Import driver failed" );
157       return NULL;
158     }
159     aSeq->Append(anImported);
160
161     // Create material groups.
162     // MakeMaterialGroups( anImported, aSeq );
163   }
164   catch( Standard_Failure& aFail ) {
165     SetErrorCode( aFail.GetMessageString() );
166     return NULL;
167   }
168
169   //Make a Python command
170   GEOM::TPythonDump pd (aFunction);
171   pd << aSeq << " = geompy.ImportSTL(\"" << theFileName.ToCString() << "\" )";
172   SetErrorCode(OK);
173
174   return aSeq;
175 }