mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0030779: Data Exchange - Problems with located subshapes in expand compounds
Protect Expand compounds against problems with located subshapes. Add method XCAFDoc_ShapeTool::AddSubShape() with Boolean output parameter. Speed up XCAFDoc_ShapeTool::Expand(). Speed up XCAFDoc_ShapeTool::FindSubShape().
This commit is contained in:
parent
7f662bf4ef
commit
d6b200e03a
@ -1094,12 +1094,16 @@ Standard_Boolean XCAFDoc_ShapeTool::FindSubShape (const TDF_Label &shapeL,
|
|||||||
TDF_ChildIterator aChldLabIt(shapeL);
|
TDF_ChildIterator aChldLabIt(shapeL);
|
||||||
for (; aChldLabIt.More(); aChldLabIt.Next() ) {
|
for (; aChldLabIt.More(); aChldLabIt.Next() ) {
|
||||||
TDF_Label aSubLabel = aChldLabIt.Value();
|
TDF_Label aSubLabel = aChldLabIt.Value();
|
||||||
TopoDS_Shape aSubShape;
|
Handle(TNaming_NamedShape) NS;
|
||||||
if (GetShape(aSubLabel, aSubShape) && aSubShape.IsSame(sub)) {
|
if (!aSubLabel.FindAttribute(TNaming_NamedShape::GetID(), NS))
|
||||||
|
continue;
|
||||||
|
TopoDS_Shape aSubShape = TNaming_Tool::GetShape(NS);
|
||||||
|
if (!aSubShape.IsNull() && aSubShape.IsSame(sub)) {
|
||||||
L = aSubLabel;
|
L = aSubLabel;
|
||||||
return Standard_True;
|
return Standard_True;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Standard_False;
|
return Standard_False;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1126,12 +1130,38 @@ TDF_Label XCAFDoc_ShapeTool::AddSubShape (const TDF_Label &shapeL,
|
|||||||
TNaming_Builder tnBuild(L);
|
TNaming_Builder tnBuild(L);
|
||||||
tnBuild.Generated(sub);
|
tnBuild.Generated(sub);
|
||||||
|
|
||||||
// if(!mySubShapes.IsBound(sub))
|
|
||||||
// mySubShapes.Bind(sub,L);
|
|
||||||
|
|
||||||
return L;
|
return L;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : AddSubShape
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
|
||||||
|
Standard_Boolean XCAFDoc_ShapeTool::AddSubShape(const TDF_Label &shapeL,
|
||||||
|
const TopoDS_Shape &sub,
|
||||||
|
TDF_Label &addedSubShapeL) const
|
||||||
|
{
|
||||||
|
addedSubShapeL = TDF_Label();
|
||||||
|
// Check if adding subshape is possible
|
||||||
|
if (!IsSimpleShape(shapeL) || !IsTopLevel(shapeL))
|
||||||
|
return Standard_False;
|
||||||
|
|
||||||
|
// Try to find already existed subshape
|
||||||
|
if (FindSubShape(shapeL, sub, addedSubShapeL))
|
||||||
|
return Standard_False;
|
||||||
|
|
||||||
|
if (!IsSubShape(shapeL, sub))
|
||||||
|
return Standard_False;
|
||||||
|
|
||||||
|
TDF_TagSource aTag;
|
||||||
|
addedSubShapeL = aTag.NewChild(shapeL);
|
||||||
|
TNaming_Builder tnBuild(addedSubShapeL);
|
||||||
|
tnBuild.Generated(sub);
|
||||||
|
|
||||||
|
return Standard_True;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : FindMainShapeUsingMap
|
//function : FindMainShapeUsingMap
|
||||||
@ -1915,6 +1945,7 @@ void XCAFDoc_ShapeTool::makeSubShape (const TDF_Label& theMainShapeL,
|
|||||||
TopoDS_Iterator anIter(theShape);
|
TopoDS_Iterator anIter(theShape);
|
||||||
Standard_Boolean isCompoundPart = (GetShape(thePart).ShapeType() == TopAbs_COMPOUND);
|
Standard_Boolean isCompoundPart = (GetShape(thePart).ShapeType() == TopAbs_COMPOUND);
|
||||||
Standard_Boolean isAssembly = IsAssembly(thePart);
|
Standard_Boolean isAssembly = IsAssembly(thePart);
|
||||||
|
|
||||||
for(; anIter.More(); anIter.Next()) {
|
for(; anIter.More(); anIter.Next()) {
|
||||||
const TopoDS_Shape& aChildShape = anIter.Value();
|
const TopoDS_Shape& aChildShape = anIter.Value();
|
||||||
TDF_Label aChildLabel;
|
TDF_Label aChildLabel;
|
||||||
@ -1925,18 +1956,25 @@ void XCAFDoc_ShapeTool::makeSubShape (const TDF_Label& theMainShapeL,
|
|||||||
makeSubShape(theMainShapeL, thePart, aChildShape, theLoc);
|
makeSubShape(theMainShapeL, thePart, aChildShape, theLoc);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
//get name
|
//get name
|
||||||
Handle(TDataStd_Name) anAttr;
|
Handle(TDataStd_Name) anAttr;
|
||||||
aChildLabel.FindAttribute(TDataStd_Name::GetID(), anAttr);
|
aChildLabel.FindAttribute(TDataStd_Name::GetID(), anAttr);
|
||||||
TopLoc_Location aSubLoc;
|
TopLoc_Location aSubLoc;
|
||||||
// Calculate location for subshapes of compound parts
|
// Calculate location for subshapes of compound parts
|
||||||
|
aSubLoc = aChildShape.Location();
|
||||||
if (isCompoundPart)
|
if (isCompoundPart)
|
||||||
aSubLoc = theLoc.Inverted() * aChildShape.Location();
|
aSubLoc = theLoc.Inverted() * aSubLoc;
|
||||||
//make subshape
|
//make subshape
|
||||||
TDF_Label aSubLabel;
|
TDF_Label aSubLabel;
|
||||||
if (!FindSubShape(thePart, aChildShape.Located(aSubLoc), aSubLabel)) {
|
// Identical location and empty location are not the same for ShapeTool, so try to process both
|
||||||
aSubLabel = AddSubShape(thePart, aChildShape.Located(aSubLoc));
|
// in case of aSubLoc is not identical, the second Add try will not affect algorithm.
|
||||||
|
Standard_Boolean isNewSubL;
|
||||||
|
isNewSubL = AddSubShape(thePart, aChildShape.Located(aSubLoc), aSubLabel);
|
||||||
|
if (aSubLabel.IsNull())
|
||||||
|
{
|
||||||
|
isNewSubL = AddSubShape(thePart, aChildShape.Located(TopLoc_Location()), aSubLabel);
|
||||||
|
}
|
||||||
|
if (isNewSubL){
|
||||||
//set name to sub shape
|
//set name to sub shape
|
||||||
if (!anAttr.IsNull()) {
|
if (!anAttr.IsNull()) {
|
||||||
TDataStd_Name::Set(aSubLabel, anAttr->Get());
|
TDataStd_Name::Set(aSubLabel, anAttr->Get());
|
||||||
@ -1954,6 +1992,7 @@ void XCAFDoc_ShapeTool::makeSubShape (const TDF_Label& theMainShapeL,
|
|||||||
aChildLabel.ForgetAllAttributes();
|
aChildLabel.ForgetAllAttributes();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
makeSubShape(theMainShapeL, thePart, aChildShape, theLoc);
|
makeSubShape(theMainShapeL, thePart, aChildShape, theLoc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -299,6 +299,11 @@ public:
|
|||||||
//! Returns Null label if it is not subshape
|
//! Returns Null label if it is not subshape
|
||||||
Standard_EXPORT TDF_Label AddSubShape (const TDF_Label& shapeL, const TopoDS_Shape& sub) const;
|
Standard_EXPORT TDF_Label AddSubShape (const TDF_Label& shapeL, const TopoDS_Shape& sub) const;
|
||||||
|
|
||||||
|
//! Adds (of finds already existed) a label for subshape <sub> of shape stored on
|
||||||
|
//! label shapeL. Label addedSubShapeL returns added (found) label or empty in case of wrong subshape.
|
||||||
|
//! Returns True, if new shape was added, False in case of already existed subshape/wrong subshape
|
||||||
|
Standard_EXPORT Standard_Boolean AddSubShape(const TDF_Label& shapeL, const TopoDS_Shape& sub, TDF_Label& addedSubShapeL) const;
|
||||||
|
|
||||||
Standard_EXPORT TDF_Label FindMainShapeUsingMap (const TopoDS_Shape& sub) const;
|
Standard_EXPORT TDF_Label FindMainShapeUsingMap (const TopoDS_Shape& sub) const;
|
||||||
|
|
||||||
//! Performs a search among top-level shapes to find
|
//! Performs a search among top-level shapes to find
|
||||||
|
27
tests/bugs/xde/bug30779
Normal file
27
tests/bugs/xde/bug30779
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
puts "============================================================================"
|
||||||
|
puts "0030779: Data Exchange - Problems with located subshapes in expand compounds"
|
||||||
|
puts "============================================================================"
|
||||||
|
puts ""
|
||||||
|
|
||||||
|
pload DCAF
|
||||||
|
|
||||||
|
XOpen [locate_data_file bug30779.xbf] D
|
||||||
|
XExpand D 1
|
||||||
|
|
||||||
|
# check model structure after expand
|
||||||
|
set result [XGetTopLevelShapes D]
|
||||||
|
if {$result != "0:1:1:1 0:1:1:2 0:1:1:3 "} {
|
||||||
|
puts "Error: wrong result of Expand compounds."
|
||||||
|
}
|
||||||
|
|
||||||
|
# check colors of subshapes
|
||||||
|
for {set i 1} {$i <= 4} {incr i} {
|
||||||
|
set sublabel 0:1:1:3:$i
|
||||||
|
set color [XGetShapeColor D $sublabel]
|
||||||
|
if {$color != "GRAY"} {
|
||||||
|
puts "Error: wrong color after expand compounds."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Close D
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user