#include <ExchangePlugin_Tools.h>
#include <GeomAlgoAPI_BREPExport.h>
-#include <GeomAlgoAPI_STEPExport.h>
+#include <GeomAlgoAPI_CompoundBuilder.h>
#include <GeomAlgoAPI_IGESExport.h>
+#include <GeomAlgoAPI_STEPExport.h>
+#include <GeomAlgoAPI_Tools.h>
#include <Config_Common.h>
#include <Config_PropManager.h>
-#include <GeomAlgoAPI_CompoundBuilder.h>
-
#include <GeomAPI_Shape.h>
#include <ModelAPI_AttributeSelectionList.h>
#include <ModelAPI_Object.h>
#include <ModelAPI_ResultBody.h>
-#include <TCollection_AsciiString.hxx>
-#include <TDF_Label.hxx>
#include <TopoDS_Shape.hxx>
-#include <OSD_Path.hxx>
#include <algorithm>
#include <iterator>
std::shared_ptr<GeomAPI_Shape> theShape)
{
// retrieve the file and plugin library names
- TCollection_AsciiString aFileName(theFileName.c_str());
- TCollection_AsciiString aFormatName(theFormat.c_str());
+ std::string aFormatName = theFormat;
if (theFormat.empty()) { // look at extension
- OSD_Path aPath(aFileName);
- TCollection_AsciiString anExtension = aPath.Extension();
- // ".brep" -> "BREP", TCollection_AsciiString are numbered from 1
- anExtension = anExtension.SubString(2, anExtension.Length());
- anExtension.UpperCase();
+ // ".brep" -> "BREP"
+ std::string anExtension = GeomAlgoAPI_Tools::File_Tools::extension(theFileName);
if (anExtension == "BREP" || anExtension == "BRP") {
aFormatName = "BREP";
} else if (anExtension == "STEP" || anExtension == "STP") {
}
// Perform the export
- TCollection_AsciiString anError;
+ std::string anError;
+
TopoDS_Shape aShape(theShape->impl<TopoDS_Shape>());
bool aResult = false;
if (aFormatName == "BREP") {
- aResult = BREPExport::Export(aFileName, aFormatName, aShape, anError);
+ aResult = BREPExport::Export(theFileName, aFormatName, aShape, anError);
} else if (aFormatName == "STEP") {
- aResult = STEPExport::Export(aFileName, aFormatName, aShape, anError);
- } else if (aFormatName.SubString(1, 4) == "IGES") {
- aResult = IGESExport::Export(aFileName, aFormatName, aShape, anError);
+ aResult = STEPExport::Export(theFileName, aFormatName, aShape, anError);
+ } else if (aFormatName.substr(0, 4) == "IGES") {
+ aResult = IGESExport::Export(theFileName, aFormatName, aShape, anError);
} else {
- anError = TCollection_AsciiString("Unsupported format ") + aFormatName;
+ anError = "Unsupported format " + aFormatName;
}
if (!aResult) {
std::string aShapeError =
- "An error occurred while exporting " + theFileName + ": " + anError.ToCString();
+ "An error occurred while exporting " + theFileName + ": " + anError;
setError(aShapeError);
return false;
}
// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+// File: GEOMALGOAPI_BREPExport.cpp
+// Created: May 14, 2015
+// Author: Sergey POKHODENKO
+
#include <GeomAlgoAPI_BREPExport.h>
#include "GeomAlgoAPI_Tools.h"
*
*/
//=============================================================================
-//extern "C" {
namespace BREPExport {
-bool Export(const TCollection_AsciiString& theFileName,
- const TCollection_AsciiString&,
+
+bool Export(const std::string& theFileName,
+ const std::string&,
const TopoDS_Shape& theShape,
- TCollection_AsciiString& theError)
+ std::string& theError)
{
#ifdef _DEBUG
std::cout << "Export BREP into file " << theFileName << std::endl;
// Set "C" numeric locale to save numbers correctly
GeomAlgoAPI_Tools::Localizer loc;
- if ( !BRepTools::Write( theShape, theFileName.ToCString() ) ) {
+ if (!BRepTools::Write(theShape, theFileName.c_str())) {
theError = "BREP Export failed";
return false;
}
return true;
}
-}
-//}
+} // namespace BREPExport
// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-/*
- * GEOMALGOAPI_BREPExport.h
- *
- * Created on: May 14, 2015
- * Author: spo
- */
+// File: GEOMALGOAPI_BREPExport.h
+// Created: May 14, 2015
+// Author: Sergey POKHODENKO
#ifndef GEOMALGOAPI_BREPEXPORT_H_
#define GEOMALGOAPI_BREPEXPORT_H_
#include <GeomAlgoAPI.h>
-#include <TCollection_AsciiString.hxx>
+#include <string>
+
#include <TopoDS_Shape.hxx>
-#include <TDF_Label.hxx>
namespace BREPExport {
/// Implementation of the export BREP files algorithms
GEOMALGOAPI_EXPORT
-bool Export(const TCollection_AsciiString& theFileName,
- const TCollection_AsciiString& theFormatName,
+bool Export(const std::string& theFileName,
+ const std::string& theFormatName,
const TopoDS_Shape& theShape,
- TCollection_AsciiString& theError);
+ std::string& theError);
-}
+} // namespace BREPExport
#endif /* GEOMALGOAPI_BREPEXPORT_H_ */
// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+// File: GEOMALGOAPI_IGESExport.cpp
+// Created: Dec 24, 2014
+// Author: Sergey BELASH
+
#include <GeomAlgoAPI_IGESExport.h>
#include "GeomAlgoAPI_Tools.h"
// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-/*
- * GEOMALGOAPI_IGESExport.h
- *
- * Created on: Dec 24, 2014
- * Author: sbh
- */
+// File: GEOMALGOAPI_IGESExport.h
+// Created: Dec 24, 2014
+// Author: Sergey BELASH
#ifndef GEOMALGOAPI_IGESEXPORT_H_
#define GEOMALGOAPI_IGESEXPORT_H_
#include <GeomAlgoAPI.h>
-#include <TCollection_AsciiString.hxx>
+#include <string>
+
#include <TopoDS_Shape.hxx>
-#include <TDF_Label.hxx>
namespace IGESExport {
/// Implementation of the export IGES files algorithms
GEOMALGOAPI_EXPORT
-bool Export(const TCollection_AsciiString& theFileName,
- const TCollection_AsciiString& theFormatName,
+bool Export(const std::string& theFileName,
+ const std::string& theFormatName,
const TopoDS_Shape& theShape,
- TCollection_AsciiString& theError);
+ std::string& theError);
-}
+} // namespace IGESExport
#endif /* GEOMALGOAPI_IGESEXPORT_H_ */
// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+// File: GEOMALGOAPI_STEPExport.cpp
+// Created: May 14, 2015
+// Author: Sergey POKHODENKO
+
#include <GeomAlgoAPI_STEPExport.h>
#include "GeomAlgoAPI_Tools.h"
namespace STEPExport {
-bool Export(const TCollection_AsciiString& theFileName,
- const TCollection_AsciiString& theFormatName,
+bool Export(const std::string& theFileName,
+ const std::string& theFormatName,
const TopoDS_Shape& theShape,
- TCollection_AsciiString& theError)
+ std::string& theError)
{
#ifdef _DEBUG
- std::cout << "Export STEP into file " << theFileName.ToCString() << std::endl;
+ std::cout << "Export STEP into file " << theFileName << std::endl;
#endif
try
status = aWriter.Transfer( theShape, STEPControl_AsIs );
//VRV: OCC 4.0 migration
if( status == IFSelect_RetDone )
- status = aWriter.Write( theFileName.ToCString() );
+ status = aWriter.Write( theFileName.c_str() );
// Return previous locale
if( status == IFSelect_RetDone )
// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-/*
- * GEOMALGOAPI_STEPExport.h
- *
- * Created on: May 14, 2015
- * Author: spo
- */
+// File: GEOMALGOAPI_STEPExport.h
+// Created: May 14, 2015
+// Author: Sergey POKHODENKO
#ifndef GEOMALGOAPI_STEPEXPORT_H_
#define GEOMALGOAPI_STEPEXPORT_H_
#include <GeomAlgoAPI.h>
-#include <TCollection_AsciiString.hxx>
-#include <TCollection_HAsciiString.hxx>
+#include <string>
+
#include <TopoDS_Shape.hxx>
-#include <TDF_Label.hxx>
namespace STEPExport {
-/// Implementation of the export parameter from the STEP file
-GEOMALGOAPI_EXPORT
-Handle(TCollection_HAsciiString) GetValue(const TCollection_AsciiString& theFileName,
- const TCollection_AsciiString& theParameterName,
- TCollection_AsciiString& theError);
-
/// Implementation of the export STEP files algorithms
GEOMALGOAPI_EXPORT
-bool Export(const TCollection_AsciiString& theFileName,
- const TCollection_AsciiString& theFormatName,
+bool Export(const std::string& theFileName,
+ const std::string& theFormatName,
const TopoDS_Shape& theShape,
- TCollection_AsciiString& theError);
-}
+ std::string& theError);
+
+} // namespace STEPExport
#endif /* GEOMALGOAPI_STEPEXPORT_H_ */