1 // Copyright (C) 2014-2016 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 "BREPPlugin_ExportDriver.hxx"
22 #include "BREPPlugin_IExport.hxx"
25 #include <utilities.h>
26 #include <Basics_Utils.hxx>
29 #include "GEOM_Function.hxx"
32 #include <BRepTools.hxx>
33 #include <TopoDS_Shape.hxx>
35 //=======================================================================
38 //=======================================================================
39 const Standard_GUID& BREPPlugin_ExportDriver::GetID()
41 static Standard_GUID aGUID("4c1fd92e-bcf3-4695-89b7-a8353038174f");
45 //=======================================================================
46 //function : BREPPlugin_ExportDriver
48 //=======================================================================
49 BREPPlugin_ExportDriver::BREPPlugin_ExportDriver()
53 //=======================================================================
56 //=======================================================================
57 Standard_Integer BREPPlugin_ExportDriver::Execute(LOGBOOK& log) const
59 if (Label().IsNull()) return 0;
60 Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction( Label() );
62 BREPPlugin_IExport aData (aFunction);
64 // retrieve the being exported shape
66 Handle(GEOM_Function) aRefFunction = aData.GetOriginal();
67 if( aRefFunction.IsNull() ) return 0;
68 aShape = aRefFunction->GetValue();
69 if( aShape.IsNull() ) return 0;
70 // set the result of function to be used by next operations
71 aFunction->SetValue( aShape );
73 TCollection_AsciiString aFileName = aData.GetFileName();
75 MESSAGE("Export BREP into file " << aFileName.ToCString());
77 // Set "C" numeric locale to save numbers correctly
78 Kernel_Utils::Localizer loc;
80 if ( !BRepTools::Write( aShape, aFileName.ToCString() ) )
86 //================================================================================
88 * \brief Returns a name of creation operation and names and values of creation parameters
90 //================================================================================
91 bool BREPPlugin_ExportDriver::
92 GetCreationInformation( std::string& theOperationName,
93 std::vector<GEOM_Param>& theParams )
98 OCCT_IMPLEMENT_STANDARD_RTTIEXT( BREPPlugin_ExportDriver,GEOM_BaseDriver );