1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0026155: TNaming, CurrentShape: order of shapes in Modification compound is unpredictable

CurrentShape(): replace TopTools_MapOfShapes with TopTools_IndexedMapOfShape
Added case: tests/bugs/caf/bug26155
This commit is contained in:
apl 2015-04-28 12:11:10 +03:00 committed by bugmaster
parent ff0a70a157
commit 0df8756310
8 changed files with 154 additions and 149 deletions

View File

@ -33,6 +33,7 @@
#include <TopTools_MapOfShape.hxx> #include <TopTools_MapOfShape.hxx>
#include <TopTools_MapIteratorOfMapOfShape.hxx> #include <TopTools_MapIteratorOfMapOfShape.hxx>
#include <TopTools_IndexedMapOfShape.hxx>
#include <TDF_Label.hxx> #include <TDF_Label.hxx>
#include <TDF_LabelList.hxx> #include <TDF_LabelList.hxx>
#include <TDF_LabelMap.hxx> #include <TDF_LabelMap.hxx>
@ -129,15 +130,13 @@ static void DbgTools_Write(const TopoDS_Shape& shape,
save.close(); save.close();
} }
//======================================================================= //=======================================================================
static void DbgTools_Write(const TopTools_MapOfShape& MS, const Standard_CString filename) static void DbgTools_Write(const TopTools_IndexedMapOfShape& MS, const Standard_CString filename)
{ {
if (!MS.IsEmpty ()) { if (!MS.IsEmpty ()) {
TCollection_AsciiString aNam (filename); TCollection_AsciiString aNam (filename);
Standard_Integer i(0); for (Standard_Integer anIt = 1; anIt <= MS.Extent(); ++anIt) {
TopTools_MapIteratorOfMapOfShape it(MS); TCollection_AsciiString aName = aNam + "_" + (anIt - 1) + ".brep";
for(;it.More();it.Next(),i++) { DbgTools_Write (MS (anIt), aName.ToCString());
TCollection_AsciiString aName = aNam + "_" + i + ".brep";
DbgTools_Write ( it.Key(), aName.ToCString());
} }
} }
} }
@ -368,20 +367,18 @@ Standard_Integer TNaming_Name::Index() const
//purpose : //purpose :
//======================================================================= //=======================================================================
static TopoDS_Shape MakeShape (const TopTools_MapOfShape& MS) static TopoDS_Shape MakeShape (const TopTools_IndexedMapOfShape& MS)
{ {
if (!MS.IsEmpty ()) { if (!MS.IsEmpty ()) {
TopTools_MapIteratorOfMapOfShape it(MS);
if (MS.Extent() == 1) { if (MS.Extent() == 1) {
return it.Key(); return MS (1);
} }
else { else {
TopoDS_Compound C; TopoDS_Compound C;
BRep_Builder B; BRep_Builder B;
B.MakeCompound(C); B.MakeCompound(C);
for (; it.More(); it.Next()){ for (Standard_Integer anIt = 1; anIt <= MS.Extent(); ++anIt)
B.Add(C,it.Key()); B.Add (C, MS (anIt));
}
return C; return C;
} }
} }
@ -497,7 +494,7 @@ static TopoDS_Shape ShapeWithType(const TopoDS_Shape theShape,
//======================================================================= //=======================================================================
static Standard_Boolean FindModifUntil (TNaming_NewShapeIterator& it, static Standard_Boolean FindModifUntil (TNaming_NewShapeIterator& it,
TopTools_MapOfShape& MS, TopTools_IndexedMapOfShape& MS,
const TopoDS_Shape& S, const TopoDS_Shape& S,
const Handle(TNaming_NamedShape)& Context) const Handle(TNaming_NamedShape)& Context)
{ {
@ -533,7 +530,7 @@ static Standard_Boolean FindModifUntil (TNaming_NewShapeIterator& it,
static void SearchModifUntil (const TDF_LabelMap& /*Valid*/, static void SearchModifUntil (const TDF_LabelMap& /*Valid*/,
const Handle(TNaming_NamedShape)& Target, const Handle(TNaming_NamedShape)& Target,
const TNaming_ListOfNamedShape& theListOfGenerators, const TNaming_ListOfNamedShape& theListOfGenerators,
TopTools_MapOfShape& theMS) TopTools_IndexedMapOfShape& theMS)
{ {
#ifdef OCCT_DEBUG_MODUN #ifdef OCCT_DEBUG_MODUN
@ -603,7 +600,7 @@ static Standard_Boolean ModifUntil (const TDF_Label& L,
const TNaming_ListOfNamedShape& Args, const TNaming_ListOfNamedShape& Args,
const Handle(TNaming_NamedShape)& Stop) const Handle(TNaming_NamedShape)& Stop)
{ {
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
if(!ValidArgs(Args)) return Standard_False; if(!ValidArgs(Args)) return Standard_False;
TNaming_NamingTool::BuildDescendants (Stop, Forbiden); // fills Forbidden from Stop TNaming_NamingTool::BuildDescendants (Stop, Forbiden); // fills Forbidden from Stop
@ -618,13 +615,12 @@ static Standard_Boolean ModifUntil (const TDF_Label& L,
TNaming_NamingTool::CurrentShape (Valid, Forbiden,Args.Last(),MS); TNaming_NamingTool::CurrentShape (Valid, Forbiden,Args.Last(),MS);
#ifdef OCCT_DEBUG_GEN #ifdef OCCT_DEBUG_GEN
Standard_Integer i(0); Standard_Integer i(0);
TopTools_MapIteratorOfMapOfShape it(MS);
TCollection_AsciiString aNam("ModifUnti_MS_"); TCollection_AsciiString aNam("ModifUnti_MS_");
TCollection_AsciiString ext(".brep"); TCollection_AsciiString ext(".brep");
#endif #endif
TNaming_Builder B(L); TNaming_Builder B(L);
for (TopTools_MapIteratorOfMapOfShape itM(MS); itM.More(); itM.Next()) { for (Standard_Integer anItMS = 1; anItMS <= MS.Extent(); ++anItMS) {
const TopoDS_Shape& S = itM.Key(); const TopoDS_Shape& S = MS (anItMS);
B.Select(S,S); B.Select(S,S);
#ifdef OCCT_DEBUG_GEN #ifdef OCCT_DEBUG_GEN
TCollection_AsciiString aName = aNam + ++i + ext; TCollection_AsciiString aName = aNam + ++i + ext;
@ -650,7 +646,7 @@ static Standard_Boolean ConstShape (const TDF_Label& L,
const Handle(TNaming_NamedShape)& Stop, const Handle(TNaming_NamedShape)& Stop,
const Standard_Integer Index) const Standard_Integer Index)
{ {
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
if(!ValidArgs(Args)) return Standard_False; if(!ValidArgs(Args)) return Standard_False;
TNaming_NamingTool::BuildDescendants (Stop, Forbiden); TNaming_NamingTool::BuildDescendants (Stop, Forbiden);
@ -669,8 +665,8 @@ static Standard_Boolean ConstShape (const TDF_Label& L,
TNaming_Builder B(L); TNaming_Builder B(L);
for (TopTools_MapIteratorOfMapOfShape itM(MS); itM.More(); itM.Next()) { for (Standard_Integer anItMS = 1; anItMS <= MS.Extent(); ++anItMS) {
const TopoDS_Shape& SS = itM.Key(); const TopoDS_Shape& SS = MS (anItMS);
B.Select(SS,SS); B.Select(SS,SS);
} }
return Standard_True; return Standard_True;
@ -701,7 +697,7 @@ static Standard_Boolean Intersection (const TDF_Label& L,
if (Args.IsEmpty()) return Standard_False; if (Args.IsEmpty()) return Standard_False;
if(!ValidArgs(Args)) return Standard_False; if(!ValidArgs(Args)) return Standard_False;
TNaming_ListIteratorOfListOfNamedShape it(Args); TNaming_ListIteratorOfListOfNamedShape it(Args);
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
#ifdef OCCT_DEBUG_INT #ifdef OCCT_DEBUG_INT
@ -917,7 +913,7 @@ static Standard_Boolean Union (const TDF_Label& L,
// end of temp. sol. // end of temp. sol.
TNaming_ListIteratorOfListOfNamedShape it(Args); TNaming_ListIteratorOfListOfNamedShape it(Args);
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
TNaming_NamingTool::BuildDescendants (Stop, Forbiden);//fill Forbidden TNaming_NamingTool::BuildDescendants (Stop, Forbiden);//fill Forbidden
@ -1116,7 +1112,7 @@ static Standard_Boolean Generated (const TDF_Label& L,
DbgTools_Write(Args.First()->Get(), "Generated.brep") ; DbgTools_Write(Args.First()->Get(), "Generated.brep") ;
#endif #endif
// Nouvell valeurs des generateurs dans l attribut de generation // Nouvell valeurs des generateurs dans l attribut de generation
TopTools_MapOfShape aMS; TopTools_IndexedMapOfShape aMS;
TNaming_ListOfNamedShape aGenerators; TNaming_ListOfNamedShape aGenerators;
aGenerators.Assign(Args); aGenerators.Assign(Args);
aGenerators.RemoveFirst(); aGenerators.RemoveFirst();
@ -1149,8 +1145,8 @@ static Standard_Boolean Generated (const TDF_Label& L,
TNaming_Builder B(L); // NS TNaming_Builder B(L); // NS
TopTools_ListOfShape aList; TopTools_ListOfShape aList;
TNaming_DataMapOfShapeMapOfShape aDM; TNaming_DataMapOfShapeMapOfShape aDM;
for (TopTools_MapIteratorOfMapOfShape itMS(aMS); itMS.More(); itMS.Next()) { for (Standard_Integer anItMS = 1; anItMS <= aMS.Extent(); ++anItMS) {
const TopoDS_Shape& OS = itMS.Key(); const TopoDS_Shape& OS = aMS (anItMS);
#ifdef OCCT_DEBUG_GEN #ifdef OCCT_DEBUG_GEN
TCollection_AsciiString aName = aNam1 + ++i + ext; TCollection_AsciiString aName = aNam1 + ++i + ext;
DbgTools_Write(OS, aName.ToCString()) ; DbgTools_Write(OS, aName.ToCString()) ;
@ -1232,8 +1228,8 @@ static Standard_Boolean Generated (const TDF_Label& L,
if(aLM.Extent() == 1) {//lost 1 if(aLM.Extent() == 1) {//lost 1
TopTools_ListIteratorOfListOfShape itm(aLM); TopTools_ListIteratorOfListOfShape itm(aLM);
TopoDS_Shape aSM = itm.Value(); // Missed TopoDS_Shape aSM = itm.Value(); // Missed
for (TopTools_MapIteratorOfMapOfShape itMS1(aMS); itMS1.More(); itMS1.Next()) { for (Standard_Integer anItMS1 = 1; anItMS1 <= aMS.Extent(); ++anItMS1) {
const TopoDS_Shape& aS = itMS1.Key(); const TopoDS_Shape& aS = aMS (anItMS1);
if(aSM.ShapeType() == aS.ShapeType()) { if(aSM.ShapeType() == aS.ShapeType()) {
if(aS.ShapeType() == TopAbs_EDGE) { if(aS.ShapeType() == TopAbs_EDGE) {
TopoDS_Vertex aVCom; TopoDS_Vertex aVCom;
@ -1315,7 +1311,7 @@ static Standard_Boolean Identity (const TDF_Label& L,
} }
if(!ValidArgs(Args)) return Standard_False; if(!ValidArgs(Args)) return Standard_False;
const Handle(TNaming_NamedShape)& A = Args.First(); const Handle(TNaming_NamedShape)& A = Args.First();
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
TNaming_NamingTool::CurrentShape (Valid,Forbiden,A,MS); TNaming_NamingTool::CurrentShape (Valid,Forbiden,A,MS);
#ifdef OCCT_DEBUG_SOL2 #ifdef OCCT_DEBUG_SOL2
@ -1324,8 +1320,8 @@ static Standard_Boolean Identity (const TDF_Label& L,
//TDF_Tool::Entry(A->Label(), entry); //TDF_Tool::Entry(A->Label(), entry);
#endif #endif
TNaming_Builder B(L); TNaming_Builder B(L);
for (TopTools_MapIteratorOfMapOfShape itM(MS); itM.More(); itM.Next()) { for (Standard_Integer anItMS = 1; anItMS <= MS.Extent(); ++anItMS) {
const TopoDS_Shape& S = ShapeWithType(itM.Key(),ShapeType); const TopoDS_Shape& S = ShapeWithType (MS (anItMS), ShapeType);
#ifdef OCCT_DEBUG_SOL2 #ifdef OCCT_DEBUG_SOL2
//TopAbs_Orientation Or = S.Orientation(); //TopAbs_Orientation Or = S.Orientation();
#endif #endif
@ -1371,7 +1367,7 @@ static Standard_Boolean FilterByNeighbourgs (const TDF_Label& L,
PrintEntries(Valid); PrintEntries(Valid);
#endif #endif
TopTools_MapOfShape SCand; TopTools_IndexedMapOfShape SCand;
TNaming_NamingTool::CurrentShape (Valid, Forbiden,Cand,SCand);//fills SCand with last modifications of Cand. CandNS should be at the same level (before) as NS of FilterByNBS TNaming_NamingTool::CurrentShape (Valid, Forbiden,Cand,SCand);//fills SCand with last modifications of Cand. CandNS should be at the same level (before) as NS of FilterByNBS
#ifdef OCCT_DEBUG_FNB #ifdef OCCT_DEBUG_FNB
@ -1394,18 +1390,17 @@ static Standard_Boolean FilterByNeighbourgs (const TDF_Label& L,
#endif #endif
Standard_Boolean isDone = Standard_False; Standard_Boolean isDone = Standard_False;
if(SCand.Extent() == 1) { // check if a collection is inside if(SCand.Extent() == 1) { // check if a collection is inside
TopTools_MapIteratorOfMapOfShape it(SCand); TopoDS_Shape aS = SCand (1);
const TopoDS_Shape& aS = it.Key();
if(!aS.IsNull()) if(!aS.IsNull())
if(aS.ShapeType() == TopAbs_COMPOUND && aS.ShapeType() != ShapeType) { if(aS.ShapeType() == TopAbs_COMPOUND && aS.ShapeType() != ShapeType) {
SCand.Clear();
TopoDS_Iterator itt(aS); TopoDS_Iterator itt(aS);
for(;itt.More();itt.Next()) for(;itt.More();itt.Next())
SCand.Add(itt.Value()); SCand.Add(itt.Value());
SCand.Remove(aS);
} }
} }
for (TopTools_MapIteratorOfMapOfShape itCand(SCand); itCand.More(); itCand.Next()) { //1 for (Standard_Integer anItSCand = 1; anItSCand <= SCand.Extent(); ++anItSCand) { //1
const TopoDS_Shape& S = itCand.Key(); const TopoDS_Shape& S = SCand (anItSCand);
TopTools_MapOfShape Boundaries; TopTools_MapOfShape Boundaries;
if(S.ShapeType() == TopAbs_VERTEX) //# szy 31.03.10 if(S.ShapeType() == TopAbs_VERTEX) //# szy 31.03.10
Boundaries.Add (S); //# Boundaries.Add (S); //#
@ -1438,7 +1433,7 @@ static Standard_Boolean FilterByNeighbourgs (const TDF_Label& L,
DbgTools_WriteNSOnLabel(NSVois, "Next_Neighbor_") ; DbgTools_WriteNSOnLabel(NSVois, "Next_Neighbor_") ;
#endif #endif
TopTools_MapOfShape SVois; TopTools_IndexedMapOfShape SVois;
TNaming_NamingTool::CurrentShape (Valid, Forbiden,NSVois,SVois); // fills SVois with last modifications of NSVois TNaming_NamingTool::CurrentShape (Valid, Forbiden,NSVois,SVois); // fills SVois with last modifications of NSVois
#ifdef OCCT_DEBUG_FNB #ifdef OCCT_DEBUG_FNB
@ -1446,8 +1441,8 @@ static Standard_Boolean FilterByNeighbourgs (const TDF_Label& L,
DbgTools_Write(SVois, aNam2.ToCString()); DbgTools_Write(SVois, aNam2.ToCString());
#endif #endif
for (TopTools_MapIteratorOfMapOfShape itVois(SVois); itVois.More(); itVois.Next()) { //6 for (Standard_Integer anItSVois = 1; anItSVois <= SVois.Extent(); ++anItSVois) { //6
const TopoDS_Shape& Vois = itVois.Key(); const TopoDS_Shape& Vois = SVois (anItSVois);
for (TopExp_Explorer exp1(Vois,TC); exp1.More(); exp1.Next()) { //7 for (TopExp_Explorer exp1(Vois,TC); exp1.More(); exp1.Next()) { //7
if (Boundaries.Contains(exp1.Current())) { if (Boundaries.Contains(exp1.Current())) {
Connected = Standard_True; // has common boundaries with candidate shape Connected = Standard_True; // has common boundaries with candidate shape
@ -1558,7 +1553,7 @@ static Standard_Boolean ORientation (const TDF_Label& L,
if(!ValidArgs(Args)) return Standard_False; if(!ValidArgs(Args)) return Standard_False;
const Handle(TNaming_NamedShape)& A = Args.First(); const Handle(TNaming_NamedShape)& A = Args.First();
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
TNaming_NamingTool::BuildDescendants (Stop, Forbiden); TNaming_NamingTool::BuildDescendants (Stop, Forbiden);
TNaming_NamingTool::CurrentShape (Valid,Forbiden,A,MS); TNaming_NamingTool::CurrentShape (Valid,Forbiden,A,MS);
@ -1566,18 +1561,17 @@ static Standard_Boolean ORientation (const TDF_Label& L,
TopoDS_Shape S; TopoDS_Shape S;
Standard_Boolean isSplit(Standard_False); Standard_Boolean isSplit(Standard_False);
if (!MS.IsEmpty ()) { if (!MS.IsEmpty ()) {
TopTools_MapIteratorOfMapOfShape it(MS);
if (MS.Extent() == 1) { if (MS.Extent() == 1) {
S = it.Key(); S = MS (1);
} }
else { else {
isSplit = Standard_True; isSplit = Standard_True;
S = MakeShape(MS); S = MakeShape(MS);
#ifdef OCCT_DEBUG_OR #ifdef OCCT_DEBUG_OR
for(Standard_Integer i=1;it.More();it.Next(), i++) { for(Standard_Integer anItMS = 1; anItMS <= MS.Extent(); anItMS++) {
TCollection_AsciiString aNam("OR_Selection_"); TCollection_AsciiString aNam("OR_Selection_");
TCollection_AsciiString aName = aNam + i + ".brep"; TCollection_AsciiString aName = aNam + anItMS + ".brep";
DbgTools_Write(it.Key(), aName.ToCString()); DbgTools_Write(MS (anItMS), aName.ToCString());
} }
#endif #endif
} }
@ -1598,7 +1592,7 @@ static Standard_Boolean ORientation (const TDF_Label& L,
aSList.Append(it.Value()); aSList.Append(it.Value());
} // } //
TopTools_MapOfShape MSC; TopTools_IndexedMapOfShape MSC;
if(aSList.Extent() == 0) { if(aSList.Extent() == 0) {
const Handle(TNaming_NamedShape)& Anc = Args.Last(); const Handle(TNaming_NamedShape)& Anc = Args.Last();
#ifdef OCCT_DEBUG_OR #ifdef OCCT_DEBUG_OR
@ -1608,8 +1602,8 @@ static Standard_Boolean ORientation (const TDF_Label& L,
MSC.Clear(); MSC.Clear();
TNaming_NamingTool::CurrentShape (Valid,Forbiden,Anc,MSC); TNaming_NamingTool::CurrentShape (Valid,Forbiden,Anc,MSC);
if(MSC.Extent() == 1) { if(MSC.Extent() == 1) {
for (TopTools_MapIteratorOfMapOfShape itM(MSC); itM.More(); itM.Next()) { for (Standard_Integer anItMSC = 1; anItMSC <= MSC.Extent(); ++anItMSC) {
const TopoDS_Shape& AS = itM.Key(); const TopoDS_Shape& AS = MSC (anItMSC);
// <=== start 21.10.2009 // <=== start 21.10.2009
TopoDS_Shape CS; TopoDS_Shape CS;
if(Index > 0) { //only for seam edge if(Index > 0) { //only for seam edge
@ -1668,10 +1662,7 @@ static Standard_Boolean ORientation (const TDF_Label& L,
MSC.Clear(); MSC.Clear();
TNaming_NamingTool::CurrentShape (Valid,Forbiden,it.Value(),MSC); TNaming_NamingTool::CurrentShape (Valid,Forbiden,it.Value(),MSC);
if(MSC.Extent() == 1) { if(MSC.Extent() == 1) {
for (TopTools_MapIteratorOfMapOfShape itM(MSC); itM.More(); itM.Next()) { Arr->SetValue(i, 2, MSC (1));
const TopoDS_Shape& AS = itM.Key();
Arr->SetValue(i, 2, AS);
}
} else { } else {
const TopoDS_Shape AS = MakeShape(MSC); const TopoDS_Shape AS = MakeShape(MSC);
Arr->SetValue(i, 2, AS); Arr->SetValue(i, 2, AS);
@ -1734,15 +1725,14 @@ static Standard_Boolean WireIN(const TDF_Label& L,
{ {
Standard_Boolean aResult(Standard_False); Standard_Boolean aResult(Standard_False);
if(!ValidArgs(Args)) return aResult; if(!ValidArgs(Args)) return aResult;
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
if (Args.Extent() < 1 ) if (Args.Extent() < 1 )
Standard_ConstructionError::Raise("TNaming_Name::Solve"); Standard_ConstructionError::Raise("TNaming_Name::Solve");
const Handle(TNaming_NamedShape)& A = Args.First(); const Handle(TNaming_NamedShape)& A = Args.First();
TNaming_NamingTool::CurrentShape (Valid,Forbiden,A,MS); TNaming_NamingTool::CurrentShape (Valid,Forbiden,A,MS);
if (MS.Extent() != 1) return aResult; if (MS.Extent() != 1) return aResult;
TopTools_MapIteratorOfMapOfShape itM(MS); const TopoDS_Shape& aCF = MS (1);
const TopoDS_Shape& aCF = itM.Key() ;
#ifdef OCCT_DEBUG_WIN #ifdef OCCT_DEBUG_WIN
cout <<"MS Extent = " <<MS.Extent() <<endl; cout <<"MS Extent = " <<MS.Extent() <<endl;
DbgTools_Write(aCF, "Context_Face.brep"); DbgTools_Write(aCF, "Context_Face.brep");
@ -1761,7 +1751,7 @@ static Standard_Boolean WireIN(const TDF_Label& L,
ArgsE.RemoveFirst(); ArgsE.RemoveFirst();
// fill Map with edges // fill Map with edges
TNaming_ListIteratorOfListOfNamedShape it(ArgsE); TNaming_ListIteratorOfListOfNamedShape it(ArgsE);
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
TNaming_NamingTool::BuildDescendants (Stop, Forbiden);//fill Forbidden TNaming_NamingTool::BuildDescendants (Stop, Forbiden);//fill Forbidden
@ -1871,15 +1861,14 @@ static Standard_Boolean ShellIN(const TDF_Label& L,
Standard_Boolean aResult(Standard_False); Standard_Boolean aResult(Standard_False);
if(!ValidArgs(Args)) if(!ValidArgs(Args))
return aResult; return aResult;
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
if (Args.Extent() < 1 ) if (Args.Extent() < 1 )
Standard_ConstructionError::Raise("TNaming_Name::Solve"); Standard_ConstructionError::Raise("TNaming_Name::Solve");
const Handle(TNaming_NamedShape)& A = Args.First(); const Handle(TNaming_NamedShape)& A = Args.First();
TNaming_NamingTool::CurrentShape (Valid,Forbiden,A,MS); TNaming_NamingTool::CurrentShape (Valid,Forbiden,A,MS);
if (MS.Extent() != 1) return aResult; if (MS.Extent() != 1) return aResult;
TopTools_MapIteratorOfMapOfShape itM(MS); const TopoDS_Shape& aCSO = MS (1);
const TopoDS_Shape& aCSO = itM.Key() ;
#ifdef OCCT_DEBUG_SHELL #ifdef OCCT_DEBUG_SHELL
cout <<"MS Extent = " <<MS.Extent() <<endl; cout <<"MS Extent = " <<MS.Extent() <<endl;
DbgTools_Write(aCSO, "Context_Solid.brep"); DbgTools_Write(aCSO, "Context_Solid.brep");
@ -1895,7 +1884,7 @@ static Standard_Boolean ShellIN(const TDF_Label& L,
cout << "Outer Shell case" <<endl; cout << "Outer Shell case" <<endl;
PrintEntry(L); PrintEntry(L);
DbgTools_Write(anOuterShell, "ShellOut_S.brep"); DbgTools_Write(anOuterShell, "ShellOut_S.brep");
it.Initialize(aCSO); TopoDS_Iterator it (aCSO);
for(;it.More();it.Next()){ for(;it.More();it.Next()){
DbgTools_Write(it.Value(), "ShOut_S.brep"); DbgTools_Write(it.Value(), "ShOut_S.brep");
} }
@ -1907,7 +1896,7 @@ static Standard_Boolean ShellIN(const TDF_Label& L,
ArgsF.RemoveFirst(); ArgsF.RemoveFirst();
// fill Map with faces // fill Map with faces
TNaming_ListIteratorOfListOfNamedShape it(ArgsF); TNaming_ListIteratorOfListOfNamedShape it(ArgsF);
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
TNaming_NamingTool::BuildDescendants (Stop, Forbiden);//fill Forbidden TNaming_NamingTool::BuildDescendants (Stop, Forbiden);//fill Forbidden

View File

@ -36,6 +36,7 @@
#include <TDF_TagSource.hxx> #include <TDF_TagSource.hxx>
#include <TopoDS_Iterator.hxx> #include <TopoDS_Iterator.hxx>
#include <TopTools_MapOfShape.hxx> #include <TopTools_MapOfShape.hxx>
#include <TopTools_IndexedMapOfShape.hxx>
#include <TopExp.hxx> #include <TopExp.hxx>
#include <TopExp_Explorer.hxx> #include <TopExp_Explorer.hxx>
#include <TopTools_MapIteratorOfMapOfShape.hxx> #include <TopTools_MapIteratorOfMapOfShape.hxx>
@ -403,20 +404,18 @@ static Standard_Boolean Compare (const Handle(TNaming_NamedShape)& NS,
const TopoDS_Shape& S) const TopoDS_Shape& S)
{ {
TDF_LabelMap Forbiden; TDF_LabelMap Forbiden;
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
if (!Stop.IsNull()) TNaming_NamingTool::BuildDescendants(Stop,Forbiden); if (!Stop.IsNull()) TNaming_NamingTool::BuildDescendants(Stop,Forbiden);
TNaming_NamingTool::CurrentShape(MDF.GetValid(),Forbiden,NS,MS); TNaming_NamingTool::CurrentShape(MDF.GetValid(),Forbiden,NS,MS);
#ifdef OCCT_DEBUG_NBS #ifdef OCCT_DEBUG_NBS
Write(S, "Compare_S.brep"); Write(S, "Compare_S.brep");
cout << "S: TShape = " <<S.TShape()->This() <<endl; cout << "S: TShape = " <<S.TShape()->This() <<endl;
Standard_Integer i =1;
TopTools_MapIteratorOfMapOfShape it(MS);
TCollection_AsciiString aNam("Compare_MS_"); TCollection_AsciiString aNam("Compare_MS_");
TCollection_AsciiString ext(".brep"); TCollection_AsciiString ext(".brep");
for(;it.More();it.Next(), i++) { for (Standard_Integer anItMS = 1; anItMS <= MS.Extent(); ++anItMS) {
TCollection_AsciiString aName = aNam + i + ext; TCollection_AsciiString aName = aNam + anItMS + ext;
Write(it.Key(), aName.ToCString()) ; Write (MS (anItMS), aName.ToCString());
cout << aName.ToCString()<< ": TShape = " <<it.Key().TShape()->This() <<endl; cout << aName.ToCString()<< ": TShape = " << MS (anItMS).TShape()->This() << endl;
} }
#endif #endif
return (MS.Contains(S) && MS.Extent() == 1); return (MS.Contains(S) && MS.Extent() == 1);

View File

@ -21,7 +21,7 @@ private class NamingTool from TNaming
uses Label from TDF, uses Label from TDF,
LabelMap from TDF, LabelMap from TDF,
NamedShape from TNaming, NamedShape from TNaming,
MapOfShape from TopTools, IndexedMapOfShape from TopTools,
Shape from TopoDS Shape from TopoDS
@ -32,14 +32,14 @@ is
Valid : LabelMap from TDF; Valid : LabelMap from TDF;
Forbiden : LabelMap from TDF; Forbiden : LabelMap from TDF;
NS : NamedShape from TNaming; NS : NamedShape from TNaming;
MS : in out MapOfShape from TopTools); MS : in out IndexedMapOfShape from TopTools);
CurrentShapeFromShape (myclass; CurrentShapeFromShape (myclass;
Valid : LabelMap from TDF; Valid : LabelMap from TDF;
Forbiden : LabelMap from TDF; Forbiden : LabelMap from TDF;
Acces : Label from TDF; Acces : Label from TDF;
S : Shape from TopoDS; S : Shape from TopoDS;
MS : in out MapOfShape from TopTools); MS : in out IndexedMapOfShape from TopTools);
BuildDescendants (myclass; BuildDescendants (myclass;
NS : NamedShape from TNaming; NS : NamedShape from TNaming;

View File

@ -17,7 +17,6 @@
#include <TNaming_Tool.hxx> #include <TNaming_Tool.hxx>
#include <TNaming_NewShapeIterator.hxx> #include <TNaming_NewShapeIterator.hxx>
#include <TNaming_Iterator.hxx> #include <TNaming_Iterator.hxx>
#include <TopTools_MapIteratorOfMapOfShape.hxx>
#include <TNaming_OldShapeIterator.hxx> #include <TNaming_OldShapeIterator.hxx>
#include <TNaming_Tool.hxx> #include <TNaming_Tool.hxx>
#include <TNaming_Naming.hxx> #include <TNaming_Naming.hxx>
@ -76,7 +75,7 @@ static Standard_Boolean IsForbiden(const TDF_LabelMap& Forbiden,
//======================================================================= //=======================================================================
static void LastModif( TNaming_NewShapeIterator& it, static void LastModif( TNaming_NewShapeIterator& it,
const TopoDS_Shape& S, const TopoDS_Shape& S,
TopTools_MapOfShape& MS, TopTools_IndexedMapOfShape& MS,
const TDF_LabelMap& Updated, const TDF_LabelMap& Updated,
const TDF_LabelMap& Forbiden) const TDF_LabelMap& Forbiden)
{ {
@ -105,29 +104,21 @@ static void LastModif( TNaming_NewShapeIterator& it,
MS.Add(S); MS.Add(S);
} }
//======================================================================= //=======================================================================
static void ApplyOrientation (TopTools_MapOfShape& MS, static void ApplyOrientation (TopTools_IndexedMapOfShape& MS,
const TopAbs_Orientation OrientationToApply) const TopAbs_Orientation OrientationToApply)
{ {
if (!MS.IsEmpty ()) {
#ifdef OCCT_DEBUG_APPLY #ifdef OCCT_DEBUG_APPLY
if (!MS.IsEmpty ()) {
cout <<"OrientationToApply = " <<OrientationToApply <<endl; cout <<"OrientationToApply = " <<OrientationToApply <<endl;
TopTools_MapIteratorOfMapOfShape it1(MS); for (Standard_Integer anItMS1 = 1; anItMS1 <= MS.Extent(); ++anItMS1) {
for (; it1.More(); it1.Next()) { cout << "ApplyOrientation: TShape = " << MS (anItMS1).TShape()->This() << " OR = " << MS (anItMS1).Orientation() <<endl;
cout << "ApplyOrientation: TShape = " << it1.Key().TShape()->This() << " OR = " <<it1.Key().Orientation() <<endl;
}
#endif
TopTools_MapOfShape aMS;
aMS.Assign(MS);
TopTools_MapIteratorOfMapOfShape it(aMS);
for (; it.More(); it.Next()) {
if(it.Key().Orientation() != OrientationToApply) {
TopoDS_Shape aS = it.Key();
MS.Remove(aS);
aS.Orientation(OrientationToApply);
MS.Add(aS);
}
} }
} }
#endif
for (Standard_Integer anItMS = 1; anItMS <= MS.Extent(); ++anItMS)
{
MS.Substitute (anItMS, MS (anItMS).Oriented (OrientationToApply));
}
} }
//======================================================================= //=======================================================================
//function : CurrentShape //function : CurrentShape
@ -136,7 +127,7 @@ static void ApplyOrientation (TopTools_MapOfShape& MS,
void TNaming_NamingTool::CurrentShape(const TDF_LabelMap& Valid, void TNaming_NamingTool::CurrentShape(const TDF_LabelMap& Valid,
const TDF_LabelMap& Forbiden, const TDF_LabelMap& Forbiden,
const Handle(TNaming_NamedShape)& Att, const Handle(TNaming_NamedShape)& Att,
TopTools_MapOfShape& MS) TopTools_IndexedMapOfShape& MS)
{ {
TDF_Label Lab = Att->Label(); TDF_Label Lab = Att->Label();
#ifdef OCCT_DEBUG_DESC #ifdef OCCT_DEBUG_DESC
@ -201,11 +192,11 @@ void TNaming_NamingTool::CurrentShape(const TDF_LabelMap& Valid,
} }
else { else {
// LastModif(it, S, MS, Valid, Forbiden); // LastModif(it, S, MS, Valid, Forbiden);
TopTools_MapOfShape MS2; TopTools_IndexedMapOfShape MS2;
LastModif(it, S, MS2, Valid, Forbiden); LastModif(it, S, MS2, Valid, Forbiden);
if (YaOrientationToApply) ApplyOrientation (MS2, OrientationToApply);//the solution to be refined if (YaOrientationToApply) ApplyOrientation (MS2, OrientationToApply);//the solution to be refined
for (TopTools_MapIteratorOfMapOfShape itMS2(MS2); itMS2.More();itMS2.Next()) for (Standard_Integer anItMS2 = 1; anItMS2 <= MS2.Extent(); ++anItMS2)
MS.Add(itMS2.Key()); MS.Add (MS2 (anItMS2));
} }
} }
} }
@ -219,7 +210,7 @@ void TNaming_NamingTool::CurrentShapeFromShape(const TDF_LabelMap&
const TDF_LabelMap& Forbiden, const TDF_LabelMap& Forbiden,
const TDF_Label& Acces, const TDF_Label& Acces,
const TopoDS_Shape& S, const TopoDS_Shape& S,
TopTools_MapOfShape& MS) TopTools_IndexedMapOfShape& MS)
{ {
TNaming_NewShapeIterator it(S,Acces); TNaming_NewShapeIterator it(S,Acces);

View File

@ -26,8 +26,7 @@
#include <TNaming_NamingTool.hxx> #include <TNaming_NamingTool.hxx>
#include <TNaming_NewShapeIterator.hxx> #include <TNaming_NewShapeIterator.hxx>
#include <TopTools_MapOfShape.hxx> #include <TopTools_IndexedMapOfShape.hxx>
#include <TopTools_MapIteratorOfMapOfShape.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx> #include <TopTools_ListIteratorOfListOfShape.hxx>
#include <TopoDS_Iterator.hxx> #include <TopoDS_Iterator.hxx>
@ -250,7 +249,7 @@ Standard_Boolean TNaming_Selector::IsIdentified (const TDF_Label& L,
// mpv : external condition // mpv : external condition
TDF_LabelMap Forbiden,Valid; TDF_LabelMap Forbiden,Valid;
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TNaming_NamingTool::CurrentShape(Valid,Forbiden,NS,MS); TNaming_NamingTool::CurrentShape(Valid,Forbiden,NS,MS);
return (MS.Contains(Selection) && MS.Extent() == 1); return (MS.Contains(Selection) && MS.Extent() == 1);
} }
@ -259,7 +258,7 @@ Standard_Boolean TNaming_Selector::IsIdentified (const TDF_Label& L,
NS = Ident.NamedShapeOfGeneration(); NS = Ident.NamedShapeOfGeneration();
if(!NS.IsNull()) { if(!NS.IsNull()) {
TDF_LabelMap Forbiden,Valid; TDF_LabelMap Forbiden,Valid;
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TNaming_NamingTool::CurrentShape(Valid,Forbiden,NS,MS); TNaming_NamingTool::CurrentShape(Valid,Forbiden,NS,MS);
if(MS.Contains(Selection) && MS.Extent() == 1) { if(MS.Contains(Selection) && MS.Extent() == 1) {
const TopoDS_Shape& aS = Ident.ShapeArg(); const TopoDS_Shape& aS = Ident.ShapeArg();
@ -271,8 +270,7 @@ Standard_Boolean TNaming_Selector::IsIdentified (const TDF_Label& L,
FindGenerated(NS, aS, aList); FindGenerated(NS, aS, aList);
Ident.NextArg(); Ident.NextArg();
} }
TopTools_MapIteratorOfMapOfShape itm(MS); const TopoDS_Shape& aC = MS (1);
const TopoDS_Shape& aC = itm.Key();
Standard_Boolean isEq(Standard_False); Standard_Boolean isEq(Standard_False);
TopTools_ListIteratorOfListOfShape itl(aList); TopTools_ListIteratorOfListOfShape itl(aList);
for(;itl.More();itl.Next()) { for(;itl.More();itl.Next()) {

View File

@ -24,17 +24,17 @@ class Tool from TNaming
uses uses
Label from TDF, Label from TDF,
LabelList from TDF, LabelList from TDF,
LabelMap from TDF, LabelMap from TDF,
NamedShape from TNaming, NamedShape from TNaming,
UsedShapes from TNaming, UsedShapes from TNaming,
Evolution from TNaming, Evolution from TNaming,
MapOfNamedShape from TNaming, MapOfNamedShape from TNaming,
ListOfShape from TopTools, ListOfShape from TopTools,
Shape from TopoDS, Shape from TopoDS,
OldShapeIterator from TNaming, OldShapeIterator from TNaming,
MapOfShape from TopTools IndexedMapOfShape from TopTools
is is
@ -209,7 +209,7 @@ is
FirstOlds (myclass; Shapes : UsedShapes from TNaming; FirstOlds (myclass; Shapes : UsedShapes from TNaming;
S : Shape from TopoDS; S : Shape from TopoDS;
it : in out OldShapeIterator from TNaming; it : in out OldShapeIterator from TNaming;
MS : in out MapOfShape from TopTools; MS : in out IndexedMapOfShape from TopTools;
Labels : in out LabelList from TDF) Labels : in out LabelList from TDF)
is private; is private;

View File

@ -24,6 +24,7 @@
#include <TopoDS_Compound.hxx> #include <TopoDS_Compound.hxx>
#include <BRep_Builder.hxx> #include <BRep_Builder.hxx>
#include <TopTools_MapOfShape.hxx> #include <TopTools_MapOfShape.hxx>
#include <TopTools_IndexedMapOfShape.hxx>
#include <TopTools_MapIteratorOfMapOfShape.hxx> #include <TopTools_MapIteratorOfMapOfShape.hxx>
#include <Standard_NoSuchObject.hxx> #include <Standard_NoSuchObject.hxx>
@ -44,7 +45,7 @@
static void LastModif( TNaming_NewShapeIterator& it, static void LastModif( TNaming_NewShapeIterator& it,
const TopoDS_Shape& S, const TopoDS_Shape& S,
TopTools_MapOfShape& MS, TopTools_IndexedMapOfShape& MS,
const TDF_LabelMap& Updated, const TDF_LabelMap& Updated,
TDF_LabelList& Deleted) TDF_LabelList& Deleted)
{ {
@ -79,7 +80,7 @@ static void LastModif( TNaming_NewShapeIterator& it,
//======================================================================= //=======================================================================
static void LastModif(TNaming_NewShapeIterator& it, static void LastModif(TNaming_NewShapeIterator& it,
TopTools_MapOfShape& MS, TopTools_IndexedMapOfShape& MS,
const TopoDS_Shape& S, const TopoDS_Shape& S,
TDF_LabelList& Deleted) TDF_LabelList& Deleted)
{ {
@ -111,19 +112,18 @@ static void LastModif(TNaming_NewShapeIterator& it,
//purpose : //purpose :
//======================================================================= //=======================================================================
static TopoDS_Shape MakeShape (const TopTools_MapOfShape& MS) static TopoDS_Shape MakeShape (const TopTools_IndexedMapOfShape& MS)
{ {
if (!MS.IsEmpty ()) { if (!MS.IsEmpty ()) {
TopTools_MapIteratorOfMapOfShape it(MS);
if (MS.Extent() == 1) { if (MS.Extent() == 1) {
return it.Key(); return MS (1);
} }
else { else {
TopoDS_Compound C; TopoDS_Compound C;
BRep_Builder B; BRep_Builder B;
B.MakeCompound(C); B.MakeCompound(C);
for (; it.More(); it.Next()){ for (Standard_Integer anItMS = 1; anItMS <= MS.Extent(); ++anItMS) {
B.Add(C,it.Key()); B.Add (C, MS (anItMS));
} }
return C; return C;
} }
@ -138,7 +138,7 @@ static TopoDS_Shape MakeShape (const TopTools_MapOfShape& MS)
TopoDS_Shape TNaming_Tool::GetShape(const Handle(TNaming_NamedShape)& NS) TopoDS_Shape TNaming_Tool::GetShape(const Handle(TNaming_NamedShape)& NS)
{ {
TNaming_Iterator itL (NS); TNaming_Iterator itL (NS);
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
if(NS->Evolution() == TNaming_SELECTED) { if(NS->Evolution() == TNaming_SELECTED) {
for (; itL.More(); itL.Next()) { for (; itL.More(); itL.Next()) {
if(!itL.NewShape().IsNull()) { if(!itL.NewShape().IsNull()) {
@ -190,7 +190,7 @@ TopoDS_Shape TNaming_Tool::GetShape(const Handle(TNaming_NamedShape)& NS)
TopoDS_Shape TNaming_Tool::OriginalShape (const Handle(TNaming_NamedShape)& NS) TopoDS_Shape TNaming_Tool::OriginalShape (const Handle(TNaming_NamedShape)& NS)
{ {
TNaming_Iterator itL (NS); TNaming_Iterator itL (NS);
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
for (; itL.More(); itL.Next()) { for (; itL.More(); itL.Next()) {
MS.Add(itL.OldShape()); MS.Add(itL.OldShape());
} }
@ -198,22 +198,13 @@ TopoDS_Shape TNaming_Tool::OriginalShape (const Handle(TNaming_NamedShape)& NS)
} }
//======================================================================= //=======================================================================
static void ApplyOrientation (TopTools_MapOfShape& MS, static void ApplyOrientation (TopTools_IndexedMapOfShape& MS,
const TopAbs_Orientation OrientationToApply) const TopAbs_Orientation OrientationToApply)
{ {
if (!MS.IsEmpty ()) { for (Standard_Integer anItMS = 1; anItMS <= MS.Extent(); ++anItMS)
TopTools_MapOfShape aMS; {
aMS.Assign(MS); MS.Substitute (anItMS, MS (anItMS).Oriented (OrientationToApply));
TopTools_MapIteratorOfMapOfShape it(aMS); }
for (; it.More(); it.Next()) {
if(it.Key().Orientation() != OrientationToApply) {
TopoDS_Shape aS = it.Key();
MS.Remove(aS);
aS.Orientation(OrientationToApply);
MS.Add(aS);
}
}
}
} }
//======================================================================= //=======================================================================
@ -223,7 +214,7 @@ static void ApplyOrientation (TopTools_MapOfShape& MS,
TopoDS_Shape TNaming_Tool::CurrentShape(const Handle(TNaming_NamedShape)& Att) TopoDS_Shape TNaming_Tool::CurrentShape(const Handle(TNaming_NamedShape)& Att)
{ {
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelList Deleted; TDF_LabelList Deleted;
TNaming_Iterator itL (Att); TNaming_Iterator itL (Att);
@ -265,11 +256,11 @@ TopoDS_Shape TNaming_Tool::CurrentShape(const Handle(TNaming_NamedShape)& Att)
} }
else { else {
// LastModif(it, MS, S, Deleted); // LastModif(it, MS, S, Deleted);
TopTools_MapOfShape MS2; // to be optimized later TopTools_IndexedMapOfShape MS2; // to be optimized later
LastModif(it, MS2, S, Deleted); LastModif(it, MS2, S, Deleted);
if (YaOrientationToApply) ApplyOrientation (MS2, OrientationToApply); if (YaOrientationToApply) ApplyOrientation (MS2, OrientationToApply);
for (TopTools_MapIteratorOfMapOfShape itMS2(MS2); itMS2.More();itMS2.Next()) for (Standard_Integer anItMS2 = 1; anItMS2 <= MS2.Extent(); ++anItMS2)
MS.Add(itMS2.Key()); MS.Add (MS2 (anItMS2));
} }
} }
return MakeShape (MS); return MakeShape (MS);
@ -284,7 +275,7 @@ TopoDS_Shape TNaming_Tool::CurrentShape(const Handle(TNaming_NamedShape)& Att,
{ {
TDF_Label Lab = Att->Label(); TDF_Label Lab = Att->Label();
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TDF_LabelList Deleted; TDF_LabelList Deleted;
if (!Updated.Contains(Lab)) { if (!Updated.Contains(Lab)) {
@ -330,11 +321,11 @@ TopoDS_Shape TNaming_Tool::CurrentShape(const Handle(TNaming_NamedShape)& Att,
} }
else { else {
// LastModif(it, S, MS, Updated, Deleted); // LastModif(it, S, MS, Updated, Deleted);
TopTools_MapOfShape MS2; // to be optimized later TopTools_IndexedMapOfShape MS2; // to be optimized later
LastModif(it, S, MS2, Updated, Deleted); LastModif(it, S, MS2, Updated, Deleted);
if (YaOrientationToApply) ApplyOrientation (MS2, OrientationToApply); if (YaOrientationToApply) ApplyOrientation (MS2, OrientationToApply);
for (TopTools_MapIteratorOfMapOfShape itMS2(MS2); itMS2.More();itMS2.Next()) for (Standard_Integer anItMS2 = 1; anItMS2 <= MS2.Extent(); ++anItMS2)
MS.Add(itMS2.Key()); MS.Add(MS2 (anItMS2));
} }
} }
return MakeShape (MS); return MakeShape (MS);
@ -376,7 +367,7 @@ Handle(TNaming_NamedShape) TNaming_Tool::CurrentNamedShape(const Handle(TNaming_
//======================================================================= //=======================================================================
static void FindModifUntil (TNaming_NewShapeIterator& it, static void FindModifUntil (TNaming_NewShapeIterator& it,
TopTools_MapOfShape& MS, TopTools_IndexedMapOfShape& MS,
const Handle(TNaming_NamedShape)& Context) const Handle(TNaming_NamedShape)& Context)
{ {
for (; it.More(); it.Next()) { for (; it.More(); it.Next()) {
@ -400,7 +391,7 @@ TopoDS_Shape TNaming_Tool::GeneratedShape(const TopoDS_Shape& S,
const Handle(TNaming_NamedShape)& Generation) const Handle(TNaming_NamedShape)& Generation)
{ {
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
Handle(TNaming_UsedShapes) US; Handle(TNaming_UsedShapes) US;
Generation->Label().Root().FindAttribute(TNaming_UsedShapes::GetID(),US); Generation->Label().Root().FindAttribute(TNaming_UsedShapes::GetID(),US);
@ -423,7 +414,7 @@ TopoDS_Shape TNaming_Tool::GeneratedShape(const TopoDS_Shape& S,
void TNaming_Tool::FirstOlds (const Handle(TNaming_UsedShapes)& US, void TNaming_Tool::FirstOlds (const Handle(TNaming_UsedShapes)& US,
const TopoDS_Shape& S, const TopoDS_Shape& S,
TNaming_OldShapeIterator& it, TNaming_OldShapeIterator& it,
TopTools_MapOfShape& MS, TopTools_IndexedMapOfShape& MS,
TDF_LabelList& Labels) TDF_LabelList& Labels)
{ {
Standard_Integer TransDef; Standard_Integer TransDef;
@ -462,7 +453,7 @@ TopoDS_Shape TNaming_Tool::InitialShape(const TopoDS_Shape& S,
Standard_Integer Transdef; Standard_Integer Transdef;
Label(US,S,Transdef); Label(US,S,Transdef);
TopTools_MapOfShape MS; TopTools_IndexedMapOfShape MS;
TNaming_OldShapeIterator it(S,Transdef,US); TNaming_OldShapeIterator it(S,Transdef,US);
if (!it.More()) { if (!it.More()) {
return S; return S;

37
tests/bugs/caf/bug26155 Normal file
View File

@ -0,0 +1,37 @@
puts "============"
puts "OCC26155"
puts "============"
puts ""
###################################################################################
# TNaming, CurrentShape: order of shapes in Modification compound is unpredictable.
###################################################################################
pload QAcommands
NewDocument D MDTV-Standard
set x_ref 0.0
set x_tol 0.1
set result 1
for {set i 1} {$i <= 50} {incr i} {
set lab $i:1
box b 0 0 0 10 10 10
box b_1 0 0 0 5 10 10
box b_2 5 0 0 5 10 10
BuildNamedShape D [set lab]:1 PRIMITIVE b
BuildNamedShape D [set lab]:1:1 MODIFY b b_1
BuildNamedShape D [set lab]:1:2 MODIFY b b_2
CurrentShape D "[set lab]:1" r
explode r so
regexp {X += +([-0-9.+eE]+)} [vprops r_1 $x_tol] full x_1
if { $x_ref == 0 } {
set x_ref $x_1
} elseif { [expr abs ($x_1 - $x_ref)] > $x_tol } {
puts "Error: order of components of modified shape compound is not permanent."
break
}
}