mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0032049: Data Exchange - STEP file import problems
- Added checking for null objects - Added support to find layers according to visible attr - Fixed problem with same names of layers: Now, layers are grouped by names and visibility parameter
This commit is contained in:
parent
b007889efd
commit
96049f2e3d
@ -197,7 +197,7 @@ void STEPCAFControl_GDTProperty::GetDimClassOfTolerance(const Handle(StepShape_L
|
|||||||
Standard_Boolean aFound;
|
Standard_Boolean aFound;
|
||||||
theHolle = Standard_False;
|
theHolle = Standard_False;
|
||||||
//it is not verified information
|
//it is not verified information
|
||||||
for(Standard_Integer c = 0; c <= 1; c++)
|
for(Standard_Integer c = 0; c <= 1 && !aFormV.IsNull(); c++)
|
||||||
{
|
{
|
||||||
aFound = Standard_False;
|
aFound = Standard_False;
|
||||||
Standard_Boolean aCaseSens = Standard_False;
|
Standard_Boolean aCaseSens = Standard_False;
|
||||||
|
@ -1491,6 +1491,18 @@ Standard_Boolean STEPCAFControl_Reader::ReadLayers(const Handle(XSControl_WorkSe
|
|||||||
Handle(TCollection_HAsciiString) descr = SVPLA->Description();
|
Handle(TCollection_HAsciiString) descr = SVPLA->Description();
|
||||||
Handle(TCollection_HAsciiString) hName = SVPLA->Name();
|
Handle(TCollection_HAsciiString) hName = SVPLA->Name();
|
||||||
TCollection_ExtendedString aLayerName(hName->String());
|
TCollection_ExtendedString aLayerName(hName->String());
|
||||||
|
TDF_Label aLayerLabel;
|
||||||
|
|
||||||
|
// check invisibility
|
||||||
|
Standard_Boolean isVisible = Standard_True;;
|
||||||
|
Interface_EntityIterator subs = WS->Graph().Sharings(SVPLA);
|
||||||
|
for (subs.Start(); subs.More() && isVisible; subs.Next()) {
|
||||||
|
if (!subs.Value()->IsKind(STANDARD_TYPE(StepVisual_Invisibility))) continue;
|
||||||
|
#ifdef OCCT_DEBUG
|
||||||
|
std::cout << "\tLayer \"" << aLayerName << "\" is invisible" << std::endl;
|
||||||
|
#endif
|
||||||
|
isVisible = Standard_False;
|
||||||
|
}
|
||||||
|
|
||||||
// find a target shape and its label in the document
|
// find a target shape and its label in the document
|
||||||
for (Standard_Integer j = 1; j <= SVPLA->NbAssignedItems(); j++) {
|
for (Standard_Integer j = 1; j <= SVPLA->NbAssignedItems(); j++) {
|
||||||
@ -1503,20 +1515,13 @@ Standard_Boolean STEPCAFControl_Reader::ReadLayers(const Handle(XSControl_WorkSe
|
|||||||
|
|
||||||
TDF_Label shL;
|
TDF_Label shL;
|
||||||
if (!STool->Search(S, shL, Standard_True, Standard_True, Standard_True)) continue;
|
if (!STool->Search(S, shL, Standard_True, Standard_True, Standard_True)) continue;
|
||||||
LTool->SetLayer(shL, aLayerName);
|
if (aLayerLabel.IsNull())
|
||||||
|
aLayerLabel = LTool->AddLayer(aLayerName, isVisible);
|
||||||
|
LTool->SetLayer(shL, aLayerLabel);
|
||||||
}
|
}
|
||||||
|
|
||||||
// check invisibility
|
if (!aLayerLabel.IsNull())
|
||||||
Interface_EntityIterator subs = WS->Graph().Sharings(SVPLA);
|
LTool->SetVisibility(aLayerLabel, isVisible);
|
||||||
for (subs.Start(); subs.More(); subs.Next()) {
|
|
||||||
if (!subs.Value()->IsKind(STANDARD_TYPE(StepVisual_Invisibility))) continue;
|
|
||||||
#ifdef OCCT_DEBUG
|
|
||||||
std::cout << "\tLayer \"" << aLayerName << "\" is invisible" << std::endl;
|
|
||||||
#endif
|
|
||||||
//TDF_Label InvLayerLab = LTool->FindLayer(aLayerName);
|
|
||||||
TDF_Label InvLayerLab = LTool->AddLayer(aLayerName); //skl for OCC3926
|
|
||||||
TDataStd_UAttribute::Set (InvLayerLab, XCAFDoc::InvisibleGUID());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return Standard_True;
|
return Standard_True;
|
||||||
}
|
}
|
||||||
@ -4181,6 +4186,8 @@ Standard_Boolean STEPCAFControl_Reader::ReadMaterials(const Handle(XSControl_Wor
|
|||||||
for (Standard_Integer idu = 1; idu <= DU->NbElements(); idu++) {
|
for (Standard_Integer idu = 1; idu <= DU->NbElements(); idu++) {
|
||||||
Handle(StepBasic_DerivedUnitElement) DUE = DU->ElementsValue(idu);
|
Handle(StepBasic_DerivedUnitElement) DUE = DU->ElementsValue(idu);
|
||||||
Handle(StepBasic_NamedUnit) NU = DUE->Unit();
|
Handle(StepBasic_NamedUnit) NU = DUE->Unit();
|
||||||
|
if (NU.IsNull())
|
||||||
|
continue;
|
||||||
if (NU->IsKind(STANDARD_TYPE(StepBasic_ConversionBasedUnitAndLengthUnit)) ||
|
if (NU->IsKind(STANDARD_TYPE(StepBasic_ConversionBasedUnitAndLengthUnit)) ||
|
||||||
NU->IsKind(STANDARD_TYPE(StepBasic_SiUnitAndLengthUnit)))
|
NU->IsKind(STANDARD_TYPE(StepBasic_SiUnitAndLengthUnit)))
|
||||||
{
|
{
|
||||||
|
@ -147,14 +147,18 @@ Standard_Boolean XCAFDoc_LayerTool::FindLayer(const TCollection_ExtendedString&
|
|||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
TDF_Label XCAFDoc_LayerTool::FindLayer(const TCollection_ExtendedString& aLayer) const
|
TDF_Label XCAFDoc_LayerTool::FindLayer(const TCollection_ExtendedString& aLayer,
|
||||||
|
const Standard_Boolean theToFindWithProperty,
|
||||||
|
const Standard_Boolean theToFindVisible) const
|
||||||
{
|
{
|
||||||
TDF_ChildIterator it( Label() );
|
TDF_ChildIterator it( Label() );
|
||||||
TDF_Label lab;
|
TDF_Label lab;
|
||||||
for (; it.More(); it.Next()) {
|
for (; it.More(); it.Next()) {
|
||||||
TDF_Label aLabel = it.Value();
|
TDF_Label aLabel = it.Value();
|
||||||
Handle(TDataStd_Name) aName;
|
Handle(TDataStd_Name) aName;
|
||||||
if ( aLabel.FindAttribute (TDataStd_Name::GetID(), aName) && (aName->Get().IsEqual(aLayer)) ) {
|
if ( aLabel.FindAttribute (TDataStd_Name::GetID(), aName) && (aName->Get().IsEqual(aLayer)) &&
|
||||||
|
(!theToFindWithProperty || (theToFindWithProperty && (IsVisible(aLabel) == theToFindVisible))) )
|
||||||
|
{
|
||||||
lab = aLabel;
|
lab = aLabel;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -168,18 +172,35 @@ TDF_Label XCAFDoc_LayerTool::FindLayer(const TCollection_ExtendedString& aLayer)
|
|||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
TDF_Label XCAFDoc_LayerTool::AddLayer(const TCollection_ExtendedString& aLayer) const
|
TDF_Label XCAFDoc_LayerTool::AddLayer(const TCollection_ExtendedString& theLayer) const
|
||||||
{
|
{
|
||||||
TDF_Label lab;
|
TDF_Label lab;
|
||||||
if ( FindLayer(aLayer, lab) )
|
if ( FindLayer(theLayer, lab) )
|
||||||
return lab;
|
return lab;
|
||||||
TDF_TagSource aTag;
|
TDF_TagSource aTag;
|
||||||
TDF_Label aLabel = aTag.NewChild( Label() );
|
TDF_Label aLabel = aTag.NewChild( Label() );
|
||||||
Handle(TDataStd_Name) aName = new TDataStd_Name;
|
Handle(TDataStd_Name) aName = new TDataStd_Name;
|
||||||
aName->Set(aLabel, aLayer);
|
aName->Set(aLabel, theLayer);
|
||||||
return aLabel;
|
return aLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : AddLayer
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
|
||||||
|
TDF_Label XCAFDoc_LayerTool::AddLayer(const TCollection_ExtendedString& theLayer,
|
||||||
|
const Standard_Boolean theToFindVisible) const
|
||||||
|
{
|
||||||
|
TDF_Label lab = FindLayer(theLayer, Standard_True, theToFindVisible);
|
||||||
|
if (!lab.IsNull())
|
||||||
|
return lab;
|
||||||
|
TDF_TagSource aTag;
|
||||||
|
TDF_Label aLabel = aTag.NewChild(Label());
|
||||||
|
Handle(TDataStd_Name) aName = new TDataStd_Name;
|
||||||
|
aName->Set(aLabel, theLayer);
|
||||||
|
return aLabel;
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : RemoveLayer
|
//function : RemoveLayer
|
||||||
|
@ -73,14 +73,21 @@ public:
|
|||||||
//! Returns False if Layer is not found in Layertable
|
//! Returns False if Layer is not found in Layertable
|
||||||
Standard_EXPORT Standard_Boolean FindLayer (const TCollection_ExtendedString& aLayer, TDF_Label& lab) const;
|
Standard_EXPORT Standard_Boolean FindLayer (const TCollection_ExtendedString& aLayer, TDF_Label& lab) const;
|
||||||
|
|
||||||
//! Finds a Layer definition in a Layertable and returns
|
//! Finds a Layer definition in a Layertable by name
|
||||||
//! its label if found (or Null label else)
|
//! Returns first founded label with the same name if <theToFindWithProperty> is false
|
||||||
Standard_EXPORT TDF_Label FindLayer (const TCollection_ExtendedString& aLayer) const;
|
//! If <theToFindWithProperty> is true returns first label that
|
||||||
|
//! contains or not contains visible attr, according to the <theToFindVisible> parameter
|
||||||
|
Standard_EXPORT TDF_Label FindLayer (const TCollection_ExtendedString& aLayer, const Standard_Boolean theToFindWithProperty = Standard_False, const Standard_Boolean theToFindVisible = Standard_True) const;
|
||||||
|
|
||||||
//! Adds a Layer definition to a Layertable and returns
|
//! Adds a Layer definition to a Layertable and returns
|
||||||
//! its label (returns existing label if the same Layer
|
//! its label (returns existing label if the same Layer
|
||||||
//! is already defined)
|
//! is already defined)
|
||||||
Standard_EXPORT TDF_Label AddLayer (const TCollection_ExtendedString& aLayer) const;
|
Standard_EXPORT TDF_Label AddLayer (const TCollection_ExtendedString& theLayer) const;
|
||||||
|
|
||||||
|
//! Adds a Layer definition to a Layertable and returns its label
|
||||||
|
//! Returns existing label (if it is already defined)
|
||||||
|
//! of visible or invisible layer, according to <theToFindVisible> parameter
|
||||||
|
Standard_EXPORT TDF_Label AddLayer(const TCollection_ExtendedString& theLayer, const Standard_Boolean theToFindVisible) const;
|
||||||
|
|
||||||
//! Removes Layer from the Layertable
|
//! Removes Layer from the Layertable
|
||||||
Standard_EXPORT void RemoveLayer (const TDF_Label& lab) const;
|
Standard_EXPORT void RemoveLayer (const TDF_Label& lab) const;
|
||||||
|
21
tests/bugs/step/bug32049
Normal file
21
tests/bugs/step/bug32049
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
puts "========================"
|
||||||
|
puts "0032049: Data Exchange - STEP file import problems"
|
||||||
|
puts "========================"
|
||||||
|
|
||||||
|
pload OCAF
|
||||||
|
catch { Close D }
|
||||||
|
|
||||||
|
# Read file
|
||||||
|
ReadStep D [locate_data_file bug32049_sp7_04dx_242.stp]
|
||||||
|
|
||||||
|
# Check file
|
||||||
|
set xst [ XStat D ]
|
||||||
|
if { [regexp {Number of labels with layer link = 191} $xst] != 1 } {
|
||||||
|
puts "Error: Incorrect number of layer references"
|
||||||
|
}
|
||||||
|
|
||||||
|
if { [regexp {Number of layers = 5} $xst] != 1 } {
|
||||||
|
puts "Error: incorrect number of layers"
|
||||||
|
}
|
||||||
|
|
||||||
|
Close D
|
12
tests/bugs/step/bug32049_1
Normal file
12
tests/bugs/step/bug32049_1
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
puts "========================"
|
||||||
|
puts "0032049: Data Exchange - STEP file import problems"
|
||||||
|
puts "========================"
|
||||||
|
|
||||||
|
pload OCAF
|
||||||
|
|
||||||
|
# Read files
|
||||||
|
ReadStep D_1 [locate_data_file bug32049_test.stp]
|
||||||
|
ReadStep D_2 [locate_data_file bug32049_sp7_10nx_242.stp]
|
||||||
|
|
||||||
|
Close D_1
|
||||||
|
Close D_2
|
@ -1,7 +1,4 @@
|
|||||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||||
puts "TODO CR23096 ALL: LAYERS : Faulty"
|
|
||||||
|
|
||||||
|
|
||||||
set filename tr9_r0701-db.stp
|
set filename tr9_r0701-db.stp
|
||||||
|
|
||||||
set ref_data {
|
set ref_data {
|
||||||
@ -15,7 +12,7 @@ LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) To
|
|||||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||||
NCOLORS : NColors = 1 ( 1 )
|
NCOLORS : NColors = 1 ( 1 )
|
||||||
COLORS : Colors = WHITE ( WHITE )
|
COLORS : Colors = WHITE ( WHITE )
|
||||||
NLAYERS : NLayers = 1 ( 2 )
|
NLAYERS : NLayers = 1 ( 1 )
|
||||||
LAYERS : Layers = 2 ( { 0} { 2} )
|
LAYERS : Layers = 2 ( { 2} )
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||||
puts "TODO CR23096 ALL: LAYERS : Faulty"
|
|
||||||
|
|
||||||
|
|
||||||
set filename tr8_pr3_al.stp
|
set filename tr8_pr3_al.stp
|
||||||
|
|
||||||
set ref_data {
|
set ref_data {
|
||||||
@ -15,7 +12,7 @@ LABELS : N0Labels = 1 ( 1 ) N1Labels = 4 ( 4 ) N2Labels = 0 ( 0 ) To
|
|||||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||||
NCOLORS : NColors = 4 ( 4 )
|
NCOLORS : NColors = 4 ( 4 )
|
||||||
COLORS : Colors = BLUE GREEN RED YELLOW ( BLUE GREEN RED YELLOW )
|
COLORS : Colors = BLUE GREEN RED YELLOW ( BLUE GREEN RED YELLOW )
|
||||||
NLAYERS : NLayers = 0 ( 1 )
|
NLAYERS : NLayers = 0 ( 0 )
|
||||||
LAYERS : Layers = ( LayerA )
|
LAYERS : Layers = ( )
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||||
puts "TODO CR23096 ALL: LAYERS : Faulty"
|
|
||||||
|
|
||||||
|
|
||||||
set filename tr10_r0701_db.stp
|
set filename tr10_r0701_db.stp
|
||||||
|
|
||||||
set ref_data {
|
set ref_data {
|
||||||
@ -15,7 +12,7 @@ LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) To
|
|||||||
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
|
||||||
NCOLORS : NColors = 1 ( 1 )
|
NCOLORS : NColors = 1 ( 1 )
|
||||||
COLORS : Colors = WHITE ( WHITE )
|
COLORS : Colors = WHITE ( WHITE )
|
||||||
NLAYERS : NLayers = 1 ( 2 )
|
NLAYERS : NLayers = 1 ( 1 )
|
||||||
LAYERS : Layers = 2 ( { 0} { 2} )
|
LAYERS : Layers = 2 ( { 2} )
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user