diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx index 767175f27f..1d6677f99b 100644 --- a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx +++ b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx @@ -1012,6 +1012,7 @@ void XCAFDoc_ShapeTool::UpdateAssemblies() GetFreeShapes(aRootLabels); // Iterate over the free shapes + TDF_LabelMap anUpdated; for ( TDF_LabelSequence::Iterator anIt(aRootLabels); anIt.More(); anIt.Next() ) { TDF_Label aRefLabel = anIt.Value(); @@ -1021,7 +1022,7 @@ void XCAFDoc_ShapeTool::UpdateAssemblies() } const TDF_Label& aRootLab = aRefLabel; TopoDS_Shape anAssemblyShape; - updateComponent(aRootLab, anAssemblyShape); + updateComponent(aRootLab, anAssemblyShape, anUpdated); } } @@ -2003,7 +2004,8 @@ void XCAFDoc_ShapeTool::makeSubShape (const TDF_Label& theMainShapeL, //======================================================================= Standard_Boolean XCAFDoc_ShapeTool::updateComponent(const TDF_Label& theItemLabel, - TopoDS_Shape& theUpdatedShape) const + TopoDS_Shape& theUpdatedShape, + TDF_LabelMap& theUpdated) const { if ( !IsAssembly(theItemLabel) ) return Standard_False; // Do nothing for non-assemblies @@ -2011,6 +2013,13 @@ Standard_Boolean XCAFDoc_ShapeTool::updateComponent(const TDF_Label& theItemLabe // Get the currently stored compound for the assembly TopoDS_Shape aCurrentRootShape; GetShape(theItemLabel, aCurrentRootShape); + + // Check if the given assembly is already updated + if (theUpdated.Contains(theItemLabel)) { + theUpdatedShape = aCurrentRootShape; + return Standard_True; + } + TopTools_MapOfOrientedShape aCurrentRootShapeMap (aCurrentRootShape.NbChildren()); // Get components of the assembly @@ -2051,11 +2060,9 @@ Standard_Boolean XCAFDoc_ShapeTool::updateComponent(const TDF_Label& theItemLabe if ( IsAssembly(aComponentRefLab) ) { // Recursive call - if ( updateComponent(aComponentRefLab, aComponentShape) ) + if ( updateComponent(aComponentRefLab, aComponentShape, theUpdated) ) { - if ( !isModified ) - isModified = Standard_True; - + isModified = Standard_True; aComponentShape.Location(aComponentLoc); // Apply placement } } @@ -2106,6 +2113,9 @@ Standard_Boolean XCAFDoc_ShapeTool::updateComponent(const TDF_Label& theItemLabe NB.Generated(theUpdatedShape); } + if (isModified) + theUpdated.Add(theItemLabel); + return isModified; } diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.hxx b/src/XCAFDoc/XCAFDoc_ShapeTool.hxx index 7f66a4b1ba..90caaf1329 100644 --- a/src/XCAFDoc/XCAFDoc_ShapeTool.hxx +++ b/src/XCAFDoc/XCAFDoc_ShapeTool.hxx @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include @@ -441,7 +442,8 @@ private: //! associated compound is updated. Returns true if the assembly item is //! modified, false -- otherwise. Standard_EXPORT Standard_Boolean updateComponent(const TDF_Label& theAssmLabel, - TopoDS_Shape& theUpdatedShape) const; + TopoDS_Shape& theUpdatedShape, + TDF_LabelMap& theUpdated) const; //! Adds a new top-level (creates and returns a new label) //! For internal use. Used by public method AddShape. diff --git a/tests/bugs/xde/bug31517 b/tests/bugs/xde/bug31517 new file mode 100644 index 0000000000..f482937677 --- /dev/null +++ b/tests/bugs/xde/bug31517 @@ -0,0 +1,36 @@ +puts "======================================================================" +puts "0031517: Data Exchange - wrong result of ShapeTool::UpdateAssemblies()" +puts "======================================================================" +puts "" + +pload DCAF + +# make structure with two assemblies linked to one original assembly (2 * 3 boxes) +box b1 1 1 1 +box b2 2 0 0 1 1 1 +box b3 -2 0 0 1 1 1 +compound b1 b2 b3 bs +copy bs bs1 +ttranslate bs1 0 2 0 +copy bs bs2 +ttranslate bs2 0 -2 0 +compound bs1 r1 +compound bs2 r2 +compound r1 r2 root +XNewDoc D +XAddShape D root + +# delete one of boxes in common assembly (should be 2 * 2 boxes) +XRemoveComponent D 0:1:1:3:1 +XRemoveShape D 0:1:1:4 +XUpdateAssemblies D +XGetOneShape upd D + +# check number of boxes +set boxes [explode upd so] +if {$boxes != "upd_1 upd_2 upd_3 upd_4"} { +puts "Error: wrong result of UpdateAssemblies." +} + +Close D +