2014-02-18 12:44:41 +06:00
|
|
|
// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
2014-02-18 12:44:41 +06:00
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2013-04-01 18:25:01 +06:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
// File: STEPImport.cxx
|
|
|
|
// Created: Wed May 19 14:41:10 2004
|
|
|
|
// Author: Pavel TELKOV
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "utilities.h"
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <Basics_Utils.hxx>
|
|
|
|
#include <Basics_OCCTVersion.hxx>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
#include <TDF_ChildIDIterator.hxx>
|
|
|
|
#include <TDF_Label.hxx>
|
|
|
|
#include <TDataStd_Name.hxx>
|
2014-02-25 18:21:09 +06:00
|
|
|
#include <TDataStd_Comment.hxx>
|
2012-10-08 17:16:36 +06:00
|
|
|
#include <TNaming_Builder.hxx>
|
|
|
|
#include <TNaming_NamedShape.hxx>
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <IFSelect_ReturnStatus.hxx>
|
2014-02-25 18:21:09 +06:00
|
|
|
#include <Interface_EntityIterator.hxx>
|
|
|
|
#include <Interface_Graph.hxx>
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <Interface_InterfaceModel.hxx>
|
|
|
|
#include <Interface_Static.hxx>
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <STEPControl_Reader.hxx>
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <StepBasic_Product.hxx>
|
|
|
|
#include <StepBasic_ProductDefinition.hxx>
|
|
|
|
#include <StepBasic_ProductDefinitionFormation.hxx>
|
|
|
|
#include <StepGeom_GeometricRepresentationItem.hxx>
|
|
|
|
#include <StepShape_TopologicalRepresentationItem.hxx>
|
2014-02-25 18:21:09 +06:00
|
|
|
#include <StepRepr_DescriptiveRepresentationItem.hxx>
|
|
|
|
#include <StepRepr_ProductDefinitionShape.hxx>
|
|
|
|
#include <StepRepr_PropertyDefinitionRepresentation.hxx>
|
|
|
|
#include <StepRepr_Representation.hxx>
|
2012-10-08 17:16:36 +06:00
|
|
|
#include <TransferBRep.hxx>
|
|
|
|
#include <Transfer_Binder.hxx>
|
|
|
|
#include <Transfer_TransientProcess.hxx>
|
|
|
|
#include <XSControl_TransferReader.hxx>
|
|
|
|
#include <XSControl_WorkSession.hxx>
|
|
|
|
|
|
|
|
#include <BRep_Builder.hxx>
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <TopExp.hxx>
|
|
|
|
#include <TopExp_Explorer.hxx>
|
|
|
|
#include <TopTools_IndexedMapOfShape.hxx>
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <TopoDS_Compound.hxx>
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <TopoDS_Iterator.hxx>
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <TopoDS_Shape.hxx>
|
2012-10-08 17:16:36 +06:00
|
|
|
|
|
|
|
#include <TCollection_AsciiString.hxx>
|
|
|
|
#include <TColStd_SequenceOfAsciiString.hxx>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
#include <Standard_Failure.hxx>
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <Standard_ErrorHandler.hxx> // CAREFUL ! position of this file is critic : see Lucien PIGNOLONI / OCC
|
|
|
|
|
2013-10-17 20:53:21 +06:00
|
|
|
#ifdef WIN32
|
|
|
|
#if defined STEPIMPORT_EXPORTS || defined STEPImport_EXPORTS
|
|
|
|
#define STEPIMPORT_EXPORT __declspec( dllexport )
|
2008-03-07 12:45:34 +05:00
|
|
|
#else
|
2013-10-17 20:53:21 +06:00
|
|
|
#define STEPIMPORT_EXPORT __declspec( dllimport )
|
2008-03-07 12:45:34 +05:00
|
|
|
#endif
|
2005-08-11 10:43:57 +06:00
|
|
|
#else
|
2013-10-17 20:53:21 +06:00
|
|
|
#define STEPIMPORT_EXPORT
|
2005-08-11 10:43:57 +06:00
|
|
|
#endif
|
|
|
|
|
2014-02-25 18:21:09 +06:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* GetShape()
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
static TopoDS_Shape GetShape(const Handle(Standard_Transient) &theEnti,
|
|
|
|
const Handle(Transfer_TransientProcess) &theTP)
|
|
|
|
{
|
|
|
|
TopoDS_Shape aResult;
|
|
|
|
Handle(Transfer_Binder) aBinder = theTP->Find(theEnti);
|
|
|
|
|
|
|
|
if (aBinder.IsNull()) {
|
|
|
|
return aResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
aResult = TransferBRep::ShapeResult(aBinder);
|
|
|
|
|
|
|
|
return aResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* GetLabel()
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
static TDF_Label GetLabel(const Handle(Standard_Transient) &theEnti,
|
|
|
|
const TDF_Label &theShapeLabel,
|
|
|
|
const TopoDS_Shape &aShape)
|
|
|
|
{
|
|
|
|
TDF_Label aResult;
|
|
|
|
|
|
|
|
if (theEnti->IsKind
|
|
|
|
(STANDARD_TYPE(StepGeom_GeometricRepresentationItem))) {
|
|
|
|
// check all named shapes using iterator
|
|
|
|
TDF_ChildIDIterator anIt
|
|
|
|
(theShapeLabel, TDataStd_Name::GetID(), Standard_True);
|
|
|
|
|
|
|
|
for (; anIt.More(); anIt.Next()) {
|
|
|
|
Handle(TDataStd_Name) nameAttr =
|
|
|
|
Handle(TDataStd_Name)::DownCast(anIt.Value());
|
|
|
|
|
|
|
|
if (nameAttr.IsNull()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
TDF_Label aLab = nameAttr->Label();
|
|
|
|
Handle(TNaming_NamedShape) shAttr;
|
|
|
|
|
|
|
|
if (aLab.FindAttribute(TNaming_NamedShape::GetID(), shAttr) &&
|
|
|
|
shAttr->Get().IsEqual(aShape)) {
|
|
|
|
aResult = aLab;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// create label and set shape
|
|
|
|
if (aResult.IsNull()) {
|
|
|
|
TDF_TagSource aTag;
|
|
|
|
|
|
|
|
aResult = aTag.NewChild(theShapeLabel);
|
|
|
|
|
|
|
|
TNaming_Builder tnBuild (aResult);
|
|
|
|
|
|
|
|
tnBuild.Generated(aShape);
|
|
|
|
}
|
|
|
|
|
|
|
|
return aResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StoreName()
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
static void StoreName(const Handle(Standard_Transient) &theEnti,
|
|
|
|
const TopTools_IndexedMapOfShape &theIndices,
|
|
|
|
const Handle(Transfer_TransientProcess) &theTP,
|
|
|
|
const TDF_Label &theShapeLabel)
|
|
|
|
{
|
|
|
|
Handle(TCollection_HAsciiString) aName;
|
|
|
|
|
|
|
|
if (theEnti->IsKind(STANDARD_TYPE(StepShape_TopologicalRepresentationItem)) ||
|
|
|
|
theEnti->IsKind(STANDARD_TYPE(StepGeom_GeometricRepresentationItem))) {
|
|
|
|
aName = Handle(StepRepr_RepresentationItem)::DownCast(theEnti)->Name();
|
|
|
|
} else {
|
|
|
|
Handle(StepBasic_ProductDefinition) PD =
|
|
|
|
Handle(StepBasic_ProductDefinition)::DownCast(theEnti);
|
|
|
|
|
|
|
|
if (PD.IsNull() == Standard_False) {
|
|
|
|
Handle(StepBasic_Product) Prod = PD->Formation()->OfProduct();
|
|
|
|
aName = Prod->Name();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isValidName = false;
|
|
|
|
|
|
|
|
if (aName.IsNull() == Standard_False) {
|
|
|
|
isValidName = true;
|
|
|
|
|
|
|
|
if (aName->UsefullLength() < 1) {
|
|
|
|
isValidName = false;
|
|
|
|
} else if (aName->UsefullLength() == 4 &&
|
|
|
|
toupper (aName->Value(1)) == 'N' &&
|
|
|
|
toupper (aName->Value(2)) == 'O' &&
|
|
|
|
toupper (aName->Value(3)) == 'N' &&
|
|
|
|
toupper (aName->Value(4)) == 'E') {
|
|
|
|
// skip 'N0NE' name
|
|
|
|
isValidName = false;
|
|
|
|
} else {
|
|
|
|
// special check to pass names like "Open CASCADE STEP translator 6.3 1"
|
|
|
|
TCollection_AsciiString aSkipName ("Open CASCADE STEP translator");
|
|
|
|
|
|
|
|
if (aName->Length() >= aSkipName.Length()) {
|
|
|
|
if (aName->String().SubString
|
|
|
|
(1, aSkipName.Length()).IsEqual(aSkipName)) {
|
|
|
|
isValidName = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isValidName) {
|
|
|
|
TCollection_ExtendedString aNameExt (aName->ToCString());
|
|
|
|
|
|
|
|
// find target shape
|
|
|
|
TopoDS_Shape S = GetShape(theEnti, theTP);
|
|
|
|
|
|
|
|
if (S.IsNull()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// as PRODUCT can be included in the main shape
|
|
|
|
// several times, we look here for all iclusions.
|
|
|
|
Standard_Integer isub, nbSubs = theIndices.Extent();
|
|
|
|
|
|
|
|
for (isub = 1; isub <= nbSubs; isub++) {
|
|
|
|
TopoDS_Shape aSub = theIndices.FindKey(isub);
|
|
|
|
|
|
|
|
if (aSub.IsPartner(S)) {
|
|
|
|
TDF_Label L = GetLabel(theEnti, theShapeLabel, aSub);
|
|
|
|
|
|
|
|
// set a name
|
|
|
|
TDataStd_Name::Set(L, aNameExt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StoreMaterial()
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
static void StoreMaterial
|
|
|
|
(const Handle(Standard_Transient) &theEnti,
|
|
|
|
const TopTools_IndexedMapOfShape &theIndices,
|
|
|
|
const Handle(Transfer_TransientProcess) &theTP,
|
|
|
|
const TDF_Label &theShapeLabel)
|
|
|
|
{
|
|
|
|
// Treat Product Definition Shape only.
|
|
|
|
Handle(StepRepr_ProductDefinitionShape) aPDS =
|
|
|
|
Handle(StepRepr_ProductDefinitionShape)::DownCast(theEnti);
|
|
|
|
Handle(StepBasic_ProductDefinition) aProdDef;
|
|
|
|
|
|
|
|
if(aPDS.IsNull() == Standard_False) {
|
|
|
|
// Product Definition Shape ==> Product Definition
|
|
|
|
aProdDef = aPDS->Definition().ProductDefinition();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aProdDef.IsNull() == Standard_False) {
|
|
|
|
// Product Definition ==> Property Definition
|
|
|
|
const Interface_Graph &aGraph = theTP->Graph();
|
|
|
|
Interface_EntityIterator aSubs = aGraph.Sharings(aProdDef);
|
|
|
|
TopoDS_Shape aShape;
|
|
|
|
|
|
|
|
for(aSubs.Start(); aSubs.More(); aSubs.Next()) {
|
|
|
|
Handle(StepRepr_PropertyDefinition) aPropD =
|
|
|
|
Handle(StepRepr_PropertyDefinition)::DownCast(aSubs.Value());
|
|
|
|
|
|
|
|
if(aPropD.IsNull() == Standard_False) {
|
|
|
|
// Property Definition ==> Representation.
|
|
|
|
Interface_EntityIterator aSubs1 = aGraph.Sharings(aPropD);
|
|
|
|
|
|
|
|
for(aSubs1.Start(); aSubs1.More(); aSubs1.Next()) {
|
|
|
|
Handle(StepRepr_PropertyDefinitionRepresentation) aPDR =
|
|
|
|
Handle(StepRepr_PropertyDefinitionRepresentation)::
|
|
|
|
DownCast(aSubs1.Value());
|
|
|
|
|
|
|
|
if(aPDR.IsNull() == Standard_False) {
|
|
|
|
// Property Definition ==> Material Name.
|
|
|
|
Handle(StepRepr_Representation) aRepr = aPDR->UsedRepresentation();
|
|
|
|
|
|
|
|
if(aRepr.IsNull() == Standard_False) {
|
|
|
|
Standard_Integer ir;
|
|
|
|
|
|
|
|
for(ir = 1; ir <= aRepr->NbItems(); ir++) {
|
|
|
|
Handle(StepRepr_RepresentationItem) aRI = aRepr->ItemsValue(ir);
|
|
|
|
Handle(StepRepr_DescriptiveRepresentationItem) aDRI =
|
|
|
|
Handle(StepRepr_DescriptiveRepresentationItem)::DownCast(aRI);
|
|
|
|
|
|
|
|
if(aDRI.IsNull() == Standard_False) {
|
|
|
|
// Get shape from Product Definition
|
|
|
|
Handle(TCollection_HAsciiString) aMatName = aDRI->Name();
|
|
|
|
|
|
|
|
if(aMatName.IsNull() == Standard_False) {
|
|
|
|
TCollection_ExtendedString
|
|
|
|
aMatNameExt (aMatName->ToCString());
|
|
|
|
|
|
|
|
if (aShape.IsNull()) {
|
|
|
|
// Get the shape.
|
|
|
|
aShape = GetShape(aProdDef, theTP);
|
|
|
|
|
|
|
|
if (aShape.IsNull()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// as PRODUCT can be included in the main shape
|
|
|
|
// several times, we look here for all iclusions.
|
|
|
|
Standard_Integer isub, nbSubs = theIndices.Extent();
|
|
|
|
|
|
|
|
for (isub = 1; isub <= nbSubs; isub++) {
|
|
|
|
TopoDS_Shape aSub = theIndices.FindKey(isub);
|
|
|
|
|
|
|
|
if (aSub.IsPartner(aShape)) {
|
|
|
|
TDF_Label aLabel =
|
|
|
|
GetLabel(aProdDef, theShapeLabel, aSub);
|
|
|
|
|
|
|
|
// set a name
|
|
|
|
TDataStd_Comment::Set(aLabel, aMatNameExt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* Import()
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
2012-10-08 17:16:36 +06:00
|
|
|
STEPIMPORT_EXPORT
|
|
|
|
Handle(TCollection_HAsciiString) GetValue (const TCollection_AsciiString& theFileName,
|
|
|
|
const TCollection_AsciiString& theParameterName,
|
|
|
|
TCollection_AsciiString& theError)
|
|
|
|
{
|
|
|
|
Handle(TCollection_HAsciiString) aValue;
|
|
|
|
|
|
|
|
if (theParameterName != "LEN_UNITS") {
|
|
|
|
theError = theParameterName + " parameter reading is not supported by STEP plugin";
|
|
|
|
return aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set "C" numeric locale to save numbers correctly
|
|
|
|
Kernel_Utils::Localizer loc;
|
|
|
|
|
|
|
|
STEPControl_Reader aReader;
|
|
|
|
|
|
|
|
Interface_Static::SetCVal("xstep.cascade.unit","M");
|
|
|
|
Interface_Static::SetIVal("read.step.ideas", 1);
|
|
|
|
Interface_Static::SetIVal("read.step.nonmanifold", 1);
|
|
|
|
|
|
|
|
try {
|
|
|
|
#if OCC_VERSION_LARGE > 0x06010000
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
|
|
|
IFSelect_ReturnStatus status = aReader.ReadFile(theFileName.ToCString());
|
|
|
|
if (status == IFSelect_RetDone) {
|
|
|
|
TColStd_SequenceOfAsciiString anUnitLengthNames;
|
|
|
|
TColStd_SequenceOfAsciiString anUnitAngleNames;
|
|
|
|
TColStd_SequenceOfAsciiString anUnitSolidAngleNames;
|
|
|
|
aReader.FileUnits(anUnitLengthNames, anUnitAngleNames, anUnitSolidAngleNames);
|
|
|
|
if (anUnitLengthNames.Length() > 0) {
|
2013-06-17 18:15:50 +06:00
|
|
|
aValue = new TCollection_HAsciiString( anUnitLengthNames.First() );
|
|
|
|
/*
|
2012-10-08 17:16:36 +06:00
|
|
|
TCollection_AsciiString aLenUnits = anUnitLengthNames.First();
|
|
|
|
if (aLenUnits == "millimetre")
|
2012-12-13 14:40:36 +06:00
|
|
|
aValue = new TCollection_HAsciiString ("MM");
|
2012-10-08 17:16:36 +06:00
|
|
|
else if (aLenUnits == "centimetre")
|
2012-12-13 14:40:36 +06:00
|
|
|
aValue = new TCollection_HAsciiString ("CM");
|
2012-10-08 17:16:36 +06:00
|
|
|
else if (aLenUnits == "metre")
|
2012-12-13 14:40:36 +06:00
|
|
|
aValue = new TCollection_HAsciiString ("M");
|
2012-10-08 17:16:36 +06:00
|
|
|
else if (aLenUnits == "INCH")
|
2012-12-13 14:40:36 +06:00
|
|
|
aValue = new TCollection_HAsciiString ("INCH");
|
|
|
|
// TODO (for other units than mm, cm, m or inch)
|
2012-10-08 17:16:36 +06:00
|
|
|
//else if (aLenUnits == "")
|
|
|
|
// aValue = new TCollection_HAsciiString ("");
|
|
|
|
|
|
|
|
// tmp begin
|
|
|
|
//std::cout << "$$$ --- " << anUnitLengthNames.First();
|
|
|
|
//for (int ii = 2; ii <= anUnitLengthNames.Length(); ii++)
|
|
|
|
// std::cout << ", " << anUnitLengthNames.Value(ii);
|
|
|
|
//std::cout << std::endl;
|
|
|
|
// tmp end
|
2013-06-17 18:15:50 +06:00
|
|
|
*/
|
2012-10-08 17:16:36 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
theError = theFileName + " reading failed";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Standard_Failure) {
|
|
|
|
Handle(Standard_Failure) aFail = Standard_Failure::Caught();
|
|
|
|
theError = aFail->GetMessageString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return aValue;
|
|
|
|
}
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
STEPIMPORT_EXPORT
|
2004-12-01 15:39:14 +05:00
|
|
|
TopoDS_Shape Import (const TCollection_AsciiString& theFileName,
|
2012-10-08 17:16:36 +06:00
|
|
|
const TCollection_AsciiString& theFormatName,
|
2012-08-09 13:58:02 +06:00
|
|
|
TCollection_AsciiString& theError,
|
|
|
|
const TDF_Label& theShapeLabel)
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2012-10-08 17:16:36 +06:00
|
|
|
TopoDS_Shape aResShape;
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
// Set "C" numeric locale to save numbers correctly
|
|
|
|
Kernel_Utils::Localizer loc;
|
2012-10-08 17:16:36 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
STEPControl_Reader aReader;
|
2012-10-08 17:16:36 +06:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
//VSR: 16/09/09: Convert to METERS
|
|
|
|
Interface_Static::SetCVal("xstep.cascade.unit","M");
|
|
|
|
Interface_Static::SetIVal("read.step.ideas", 1);
|
|
|
|
Interface_Static::SetIVal("read.step.nonmanifold", 1);
|
2012-10-08 17:16:36 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
BRep_Builder B;
|
2012-10-08 17:16:36 +06:00
|
|
|
TopoDS_Compound compound;
|
2012-08-09 13:58:02 +06:00
|
|
|
B.MakeCompound(compound);
|
2012-10-08 17:16:36 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
try {
|
2008-03-07 12:45:34 +05:00
|
|
|
OCC_CATCH_SIGNALS;
|
2012-10-08 17:16:36 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
IFSelect_ReturnStatus status = aReader.ReadFile(theFileName.ToCString());
|
|
|
|
|
|
|
|
if (status == IFSelect_RetDone) {
|
2012-10-08 17:16:36 +06:00
|
|
|
|
|
|
|
// Regard or not the model units
|
|
|
|
if (theFormatName == "STEP_SCALE") {
|
|
|
|
// set UnitFlag to units from file
|
|
|
|
TColStd_SequenceOfAsciiString anUnitLengthNames;
|
|
|
|
TColStd_SequenceOfAsciiString anUnitAngleNames;
|
|
|
|
TColStd_SequenceOfAsciiString anUnitSolidAngleNames;
|
|
|
|
aReader.FileUnits(anUnitLengthNames, anUnitAngleNames, anUnitSolidAngleNames);
|
|
|
|
if (anUnitLengthNames.Length() > 0) {
|
|
|
|
TCollection_AsciiString aLenUnits = anUnitLengthNames.First();
|
|
|
|
if (aLenUnits == "millimetre")
|
|
|
|
Interface_Static::SetCVal("xstep.cascade.unit", "MM");
|
|
|
|
else if (aLenUnits == "centimetre")
|
|
|
|
Interface_Static::SetCVal("xstep.cascade.unit", "CM");
|
2012-12-13 14:40:36 +06:00
|
|
|
else if (aLenUnits == "metre" || aLenUnits.IsEmpty())
|
2012-10-08 17:16:36 +06:00
|
|
|
Interface_Static::SetCVal("xstep.cascade.unit", "M");
|
|
|
|
else if (aLenUnits == "INCH")
|
|
|
|
Interface_Static::SetCVal("xstep.cascade.unit", "INCH");
|
|
|
|
else {
|
|
|
|
theError = "The file contains not supported units.";
|
|
|
|
return aResShape;
|
|
|
|
}
|
2012-12-13 14:40:36 +06:00
|
|
|
// TODO (for other units than mm, cm, m or inch)
|
2012-10-08 17:16:36 +06:00
|
|
|
//else if (aLenUnits == "")
|
2012-12-13 14:40:36 +06:00
|
|
|
// Interface_Static::SetCVal("xstep.cascade.unit", "???");
|
2012-10-08 17:16:36 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//cout<<"need re-scale a model"<<endl;
|
|
|
|
// set UnitFlag to 'meter'
|
|
|
|
Interface_Static::SetCVal("xstep.cascade.unit","M");
|
|
|
|
}
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
Standard_Boolean failsonly = Standard_False;
|
|
|
|
aReader.PrintCheckLoad(failsonly, IFSelect_ItemsByEntity);
|
2012-10-08 17:16:36 +06:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
/* Root transfers */
|
|
|
|
Standard_Integer nbr = aReader.NbRootsForTransfer();
|
|
|
|
aReader.PrintCheckTransfer(failsonly, IFSelect_ItemsByEntity);
|
|
|
|
|
|
|
|
for (Standard_Integer n = 1; n <= nbr; n++) {
|
|
|
|
Standard_Boolean ok = aReader.TransferRoot(n);
|
|
|
|
/* Collecting resulting entities */
|
|
|
|
Standard_Integer nbs = aReader.NbShapes();
|
|
|
|
if (!ok || nbs == 0)
|
|
|
|
{
|
|
|
|
// THROW_SALOME_CORBA_EXCEPTION("Exception catched in GEOM_Gen_i::ImportStep", SALOME::BAD_PARAM);
|
|
|
|
continue; // skip empty root
|
|
|
|
}
|
|
|
|
/* For a single entity */
|
|
|
|
else if (nbr == 1 && nbs == 1) {
|
|
|
|
aResShape = aReader.Shape(1);
|
|
|
|
// ATTENTION: this is a workaround for mantis issue 0020442 remark 0010776
|
|
|
|
// It should be removed after patching OCCT for bug OCC22436
|
|
|
|
// (fix for OCCT is expected in service pack next to OCCT6.3sp12)
|
|
|
|
if (aResShape.ShapeType() == TopAbs_COMPOUND) {
|
|
|
|
int nbSub1 = 0;
|
|
|
|
TopoDS_Shape currShape;
|
|
|
|
TopoDS_Iterator It (aResShape, Standard_True, Standard_True);
|
|
|
|
for (; It.More(); It.Next()) {
|
|
|
|
nbSub1++;
|
|
|
|
currShape = It.Value();
|
|
|
|
}
|
|
|
|
if (nbSub1 == 1)
|
|
|
|
aResShape = currShape;
|
|
|
|
}
|
|
|
|
// END workaround
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Standard_Integer i = 1; i <= nbs; i++) {
|
|
|
|
TopoDS_Shape aShape = aReader.Shape(i);
|
|
|
|
if (aShape.IsNull()) {
|
|
|
|
// THROW_SALOME_CORBA_EXCEPTION("Null shape in GEOM_Gen_i::ImportStep", SALOME::BAD_PARAM) ;
|
|
|
|
//return aResShape;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
B.Add(compound, aShape);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (aResShape.IsNull())
|
|
|
|
aResShape = compound;
|
|
|
|
|
|
|
|
// Check if any BRep entity has been read, there must be at least a vertex
|
|
|
|
if ( !TopExp_Explorer( aResShape, TopAbs_VERTEX ).More() )
|
|
|
|
{
|
|
|
|
theError = "No geometrical data in the imported file.";
|
|
|
|
return TopoDS_Shape();
|
|
|
|
}
|
|
|
|
|
2014-02-25 18:21:09 +06:00
|
|
|
// BEGIN: Store names and materials of sub-shapes from file
|
2012-08-09 13:58:02 +06:00
|
|
|
TopTools_IndexedMapOfShape anIndices;
|
|
|
|
TopExp::MapShapes(aResShape, anIndices);
|
|
|
|
|
|
|
|
Handle(Interface_InterfaceModel) Model = aReader.WS()->Model();
|
|
|
|
Handle(XSControl_TransferReader) TR = aReader.WS()->TransferReader();
|
|
|
|
if (!TR.IsNull()) {
|
|
|
|
Handle(Transfer_TransientProcess) TP = TR->TransientProcess();
|
|
|
|
|
|
|
|
Standard_Integer nb = Model->NbEntities();
|
2014-02-25 18:21:09 +06:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
for (Standard_Integer ie = 1; ie <= nb; ie++) {
|
|
|
|
Handle(Standard_Transient) enti = Model->Value(ie);
|
|
|
|
|
2014-02-25 18:21:09 +06:00
|
|
|
// Store names.
|
|
|
|
StoreName(enti, anIndices, TP, theShapeLabel);
|
|
|
|
|
|
|
|
// Store materials.
|
|
|
|
StoreMaterial(enti, anIndices, TP, theShapeLabel);
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
|
|
|
}
|
2014-02-25 18:21:09 +06:00
|
|
|
// END: Store names and materials
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
|
|
|
else {
|
2004-12-01 15:39:14 +05:00
|
|
|
// switch (status) {
|
|
|
|
// case IFSelect_RetVoid:
|
|
|
|
// theError = "Nothing created or No data to process";
|
|
|
|
// break;
|
|
|
|
// case IFSelect_RetError:
|
|
|
|
// theError = "Error in command or input data";
|
|
|
|
// break;
|
|
|
|
// case IFSelect_RetFail:
|
|
|
|
// theError = "Execution was run, but has failed";
|
|
|
|
// break;
|
|
|
|
// case IFSelect_RetStop:
|
|
|
|
// theError = "Execution has been stopped. Quite possible, an exception was raised";
|
|
|
|
// break;
|
|
|
|
// default:
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
theError = "Wrong format of the imported file. Can't import file.";
|
2012-08-09 13:58:02 +06:00
|
|
|
aResShape.Nullify();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Standard_Failure) {
|
|
|
|
Handle(Standard_Failure) aFail = Standard_Failure::Caught();
|
|
|
|
theError = aFail->GetMessageString();
|
|
|
|
aResShape.Nullify();
|
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
// Return previous locale
|
2004-12-01 15:39:14 +05:00
|
|
|
return aResShape;
|
|
|
|
}
|
|
|
|
}
|