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_ImportDriver.hxx"
22 #include "BREPPlugin_IImport.hxx"
25 #include <utilities.h>
26 #include <Basics_Utils.hxx>
29 #include "GEOM_Function.hxx"
30 #include "GEOMImpl_Types.hxx"
33 #include <BRepTools.hxx>
34 #include <BRep_Builder.hxx>
36 //=======================================================================
39 //=======================================================================
40 const Standard_GUID& BREPPlugin_ImportDriver::GetID()
42 static Standard_GUID aGUID("7e1b28ec-8513-4217-b09c-7652fbe8149e");
46 //=======================================================================
47 //function : BREPPlugin_ImportDriver
49 //=======================================================================
50 BREPPlugin_ImportDriver::BREPPlugin_ImportDriver()
54 //=======================================================================
57 //=======================================================================
58 Standard_Integer BREPPlugin_ImportDriver::Execute(LOGBOOK& log) const
60 if( Label().IsNull() ) return 0;
61 Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction( Label() );
63 BREPPlugin_IImport aData( aFunction );
65 TCollection_AsciiString aFileName = aData.GetFileName().ToCString();
67 MESSAGE("Import BREP from file " << aFileName);
69 // Set "C" numeric locale to save numbers correctly
70 Kernel_Utils::Localizer loc;
74 BRepTools::Read(aShape, aFileName.ToCString(), B);
75 if( aShape.IsNull() ) return 0;
77 aFunction->SetValue( aShape );
79 #if OCC_VERSION_MAJOR < 7
80 log.SetTouched(Label());
82 log->SetTouched(Label());
88 //================================================================================
90 * \brief Returns a name of creation operation and names and values of creation parameters
92 //================================================================================
94 bool BREPPlugin_ImportDriver::
95 GetCreationInformation( std::string& theOperationName,
96 std::vector<GEOM_Param>& theParams )
98 if( Label().IsNull() ) return 0;
99 Handle(GEOM_Function) function = GEOM_Function::GetFunction( Label() );
101 BREPPlugin_IImport aCI( function );
102 Standard_Integer aType = function->GetType();
104 theOperationName = "ImportBREP";
108 AddParam( theParams, "File name", aCI.GetFileName() );
116 OCCT_IMPLEMENT_STANDARD_RTTIEXT( BREPPlugin_ImportDriver, GEOM_BaseDriver );