diff --git a/src/TNaming/TNaming_NamedShape.cxx b/src/TNaming/TNaming_NamedShape.cxx index 38fd04dcac..eca6c5af29 100644 --- a/src/TNaming/TNaming_NamedShape.cxx +++ b/src/TNaming/TNaming_NamedShape.cxx @@ -722,6 +722,7 @@ void TNaming_Builder::Delete(const TopoDS_Shape& oldShape) TNaming_Node* pdn = new TNaming_Node(pos,pns); myAtt->Add(pdn); UpdateFirstUseOrNextSameShape (pos,pdn); + UpdateFirstUseOrNextSameShape (pns,pdn); } //======================================================================= diff --git a/src/TNaming/TNaming_UsedShapes.cxx b/src/TNaming/TNaming_UsedShapes.cxx index 47e1199c4d..fed0cb0aff 100644 --- a/src/TNaming/TNaming_UsedShapes.cxx +++ b/src/TNaming/TNaming_UsedShapes.cxx @@ -159,7 +159,14 @@ Standard_OStream& TNaming_UsedShapes::Dump(Standard_OStream& anOS) const anOS<<"The content of UsedShapes attribute:"<Label().EntryDump(anOS); diff --git a/tests/tools/dfbrowser/A7 b/tests/tools/dfbrowser/A7 new file mode 100644 index 0000000000..1e835f2e63 --- /dev/null +++ b/tests/tools/dfbrowser/A7 @@ -0,0 +1,6 @@ +puts "========" +puts "0029743: Samples - Inspector tool - crash by selecting TNaming_UsedShapes tree item" +puts "========" + +pload INSPECTOR +tinspector -plugins dfbrowser -open [locate_data_file bug29743.cbf] -select 0 TNaming_UsedShapes diff --git a/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.cxx b/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.cxx index 00e7041b57..19d54ad8d4 100644 --- a/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.cxx +++ b/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.cxx @@ -71,66 +71,29 @@ void DFBrowserPane_TNamingUsedShapes::GetValues (const Handle(TDF_Attribute)& th return; std::list aReferences; - if (myAttributeRefs.Find (anAttribute, aReferences)) + TNaming_DataMapOfShapePtrRefShape& aMap = anAttribute->Map(); + for (TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape aRefIt (aMap); aRefIt.More(); aRefIt.Next()) { - QMap > anEntryValues; - QList aValues; - TNaming_DataMapOfShapePtrRefShape& aMap = anAttribute->Map(); - for (TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape aRefIt (aMap); aRefIt.More(); aRefIt.Next()) + TopoDS_Shape aShape = aRefIt.Key(); + TNaming_PtrRefShape aPtrRefShape = aRefIt.Value(); + + if (!aShape.IsNull()) { - TCollection_AsciiString anEntry = DFBrowserPane_Tools::GetEntry (aRefIt.Value()->Label()); - aValues.clear(); - TopoDS_Shape aShape = aRefIt.Key(); - aValues.append (!aShape.IsNull() ? DFBrowserPane_Tools::ToName (DB_SHAPE_TYPE, aShape.ShapeType()).ToCString() - : "EMPTY SHAPE"); - aValues.append (!aShape.IsNull() ? DFBrowserPane_Tools::GetPointerInfo (aShape.TShape()->This()).ToCString() : ""); - const TopoDS_Shape aValueShape = aRefIt.Value()->Shape(); - aValues.append (!aValueShape.IsNull() ? - DFBrowserPane_Tools::GetPointerInfo (aValueShape.TShape()->This()).ToCString() : ""); - anEntryValues[anEntry] = aValues; + theValues.append(DFBrowserPane_Tools::ToName(DB_SHAPE_TYPE, aShape.ShapeType()).ToCString()); + theValues.append(DFBrowserPane_Tools::GetPointerInfo(aShape.TShape()->This()).ToCString()); } + else + theValues << "EMPTY SHAPE" << ""; - for (std::list::const_iterator aRefIt = aReferences.begin(); aRefIt != aReferences.end(); aRefIt++) + if (aPtrRefShape && aPtrRefShape->FirstUse()) { - aValues = anEntryValues[*aRefIt]; - theValues << aValues[0] << aValues[1] << QString ((*aRefIt).ToCString()) << aValues[2]; + theValues.append(DFBrowserPane_Tools::GetEntry(aPtrRefShape->Label()).ToCString()); + const TopoDS_Shape& aValueShape = aPtrRefShape->Shape(); + theValues.append(!aValueShape.IsNull() ? DFBrowserPane_Tools::GetPointerInfo(aValueShape.TShape()->This()).ToCString() : ""); } + else + theValues << "" << ""; } - else - { - TNaming_DataMapOfShapePtrRefShape& aMap = anAttribute->Map(); - for (TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape aRefIt (aMap); aRefIt.More(); aRefIt.Next()) - { - TopoDS_Shape aShape = aRefIt.Key(); - theValues.append (!aShape.IsNull() ? DFBrowserPane_Tools::ToName (DB_SHAPE_TYPE, aShape.ShapeType()).ToCString() - : "EMPTY SHAPE"); - theValues.append (!aShape.IsNull() ? DFBrowserPane_Tools::GetPointerInfo (aShape.TShape()->This()).ToCString() : ""); - theValues.append (DFBrowserPane_Tools::GetEntry (aRefIt.Value()->Label()).ToCString()); - const TopoDS_Shape aValueShape = aRefIt.Value()->Shape(); - theValues.append (!aValueShape.IsNull() ? DFBrowserPane_Tools::GetPointerInfo (aValueShape.TShape()->This()).ToCString() : ""); - } - } -} - -// ======================================================================= -// function : GetAttributeInfo -// purpose : -// ======================================================================= -QVariant DFBrowserPane_TNamingUsedShapes::GetAttributeInfo (const Handle(TDF_Attribute)& theAttribute, int theRole, - int theColumnId) -{ - if (theColumnId != 0) - return DFBrowserPane_AttributePane::GetAttributeInfo (theAttribute, theRole, theColumnId); - - switch (theRole) - { - case Qt::ForegroundRole: return QColor (myAttributeRefs.IsEmpty() ? Qt::gray : Qt::black); - case Qt::ToolTipRole: - return QVariant (myAttributeRefs.IsEmpty() ? QString (QObject::tr ("Content is not sorted yet")) : ""); - default: - break; - } - return DFBrowserPane_AttributePane::GetAttributeInfo (theAttribute, theRole, theColumnId); } // ======================================================================= @@ -165,8 +128,12 @@ void DFBrowserPane_TNamingUsedShapes::GetAttributeReferences (const Handle(TDF_A for (TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape aRefIt (anAttribute->Map()); aRefIt.More(); aRefIt.Next()) { - if (aSelectedEntries.contains (DFBrowserPane_Tools::GetEntry (aRefIt.Value()->Label()).ToCString())) - theRefAttributes.Append (aRefIt.Value()->NamedShape()); + TNaming_PtrRefShape aPtrRefShape = aRefIt.Value(); + if (!aPtrRefShape || !aPtrRefShape->FirstUse()) + continue; + + if (aSelectedEntries.contains (DFBrowserPane_Tools::GetEntry (aPtrRefShape->Label()).ToCString())) + theRefAttributes.Append (aPtrRefShape->NamedShape()); } } diff --git a/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.hxx b/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.hxx index 48b0deba68..d7b0466e97 100644 --- a/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.hxx +++ b/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.hxx @@ -18,7 +18,6 @@ #include -#include #include #include @@ -36,14 +35,6 @@ public: //! Destructor virtual ~DFBrowserPane_TNamingUsedShapes() {} - //! Sets cache of sorted references. If it exists, table view values are obtained not from the attibute - //! \param theAttributeRefs container of references - void SetSortedReferences (NCollection_DataMap >& theAttributeRefs) - { myAttributeRefs = theAttributeRefs; } - - //! Clears cache container of sorted references - void ClearSortedReferences() { myAttributeRefs.Clear(); } - //! Returns values to fill the table view model //! \param theAttribute a current attribute //! \param theValues a container of values @@ -56,14 +47,6 @@ public: Standard_EXPORT virtual void GetShortAttributeInfo (const Handle(TDF_Attribute)& theAttribute, QList& theValues) Standard_OVERRIDE; - //! Returns information for the given attribute - //! \param theAttribute a current attribute - //! \param theRole a role of information, used by tree model (e.g. DisplayRole, icon, background and so on) - //! \param theColumnId a tree model column - //! \return value, interpreted by tree model depending on the role - Standard_EXPORT virtual QVariant GetAttributeInfo (const Handle(TDF_Attribute)& theAttribute, - int theRole, int theColumnId) Standard_OVERRIDE; - //! Returns container of Attribute references to the attribute //! \param theAttribute a current attribute //! \param theRefAttributes a container of attribute references, to be selected in tree view @@ -77,9 +60,6 @@ protected: //! \return container of widths Standard_EXPORT virtual QMap getTableColumnWidths() const; -private: - - NCollection_DataMap > myAttributeRefs; }; #endif