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

0024620: BOPAlgo_CheckerSI returns interferences that are not sub-shapes of the source shape

void BOPAlgo_CheckerSI::PrepareCopy()
has been added.
Purpose:
   - provides the copy of the argument
   - provides links between the copy and the original
- protected method:
void BOPAlgo_CheckerSI::PostTreatCopy()
has been added.
Purpose: provides post treat actions wit the copy.

void BOPAlgo_PaveFiller::Perform()
The try/catch mechanism is used inside the method

Standard_Integer bopcheck
  (Draw_Interpretor& di, Standard_Integer n,  const char** a )
The redundant copying is removed.

Standard_Integer bopargcheck
  (Draw_Interpretor& di, Standard_Integer n,  const char** a )
The redundant copying is removed.

packages:
BOPAlgo
BOPTest

Test cases for issue CR24620
Small correction of text case for issue CR24620
This commit is contained in:
pkv 2014-02-20 17:07:51 +04:00 committed by apn
parent e16f61a62f
commit 6f31882ada
6 changed files with 345 additions and 142 deletions

View File

@ -20,19 +20,22 @@ class CheckerSI from BOPAlgo
inherits PaveFiller from BOPAlgo inherits PaveFiller from BOPAlgo
---Purpose: Checks shape on self-interference. ---Purpose: Checks shape on self-interference.
uses
DataMapOfShapeShape from BOPCol
is is
Create Create
returns CheckerSI from BOPAlgo; returns CheckerSI from BOPAlgo;
---C++: alias "Standard_EXPORT virtual ~BOPAlgo_CheckerSI();" ---C++: alias "Standard_EXPORT virtual ~BOPAlgo_CheckerSI();"
Perform(me:out) Perform(me:out)
is redefined; is redefined;
Init (me:out) Init (me:out)
is redefined protected; is redefined protected;
SetLevelOfCheck(me:out; SetLevelOfCheck(me:out;
theLevel: Integer from Standard); theLevel: Integer from Standard);
@ -45,10 +48,23 @@ is
-- 4 - V/V, V/E, E/E, V/F and E/F; -- 4 - V/V, V/E, E/E, V/F and E/F;
-- 5 - all interferences, default value. -- 5 - all interferences, default value.
SetNonDestructive(me:out;
theFlag: Boolean from Standard);
---Purpose: Sets the flag <theFlag> that defines
-- the mode of the treatment:
-- the copy of the argument when theFlag is true
-- the argument itself when theFlag is false
NonDestructive(me)
returns Boolean from Standard;
---Purpose: Returns the flag that defines the
-- mode of the treatment:
-- true when the copy of the argument is used
-- false when the argument itself is used
PostTreat (me:out) PostTreat (me:out)
is protected; is protected;
---Purpose: Provides post-tratment actions ---Purpose: Provides post-treatment actions
PerformVZ(me:out) PerformVZ(me:out)
is virtual protected; is virtual protected;
@ -64,9 +80,17 @@ is
PerformZZ(me:out) PerformZZ(me:out)
is virtual protected; is virtual protected;
--Purpose: Computes Solid/Solid interferences --Purpose: Computes Solid/Solid interferences
PrepareCopy(me:out)
is virtual protected;
PostTreatCopy (me:out)
is protected;
---Purpose: Provides post-treatment actions for the copy
fields fields
myLevelOfCheck: Integer from Standard is protected; myLevelOfCheck: Integer from Standard is protected;
myNonDestructive: Boolean from Standard is protected;
myNewOldMap : DataMapOfShapeShape from BOPCol is protected;
end CheckerSI; end CheckerSI;

View File

@ -21,11 +21,14 @@
#include <Standard_ErrorHandler.hxx> #include <Standard_ErrorHandler.hxx>
#include <Standard_Failure.hxx> #include <Standard_Failure.hxx>
#include <BRepBuilderAPI_Copy.hxx>
#include <TopTools_ListOfShape.hxx>
#include <BOPCol_MapOfShape.hxx>
#include <BOPDS_DS.hxx> #include <BOPDS_DS.hxx>
#include <BOPDS_IteratorSI.hxx> #include <BOPDS_IteratorSI.hxx>
#include <BOPDS_PIteratorSI.hxx> #include <BOPDS_PIteratorSI.hxx>
#include <BOPInt_Context.hxx>
#include <BOPDS_Interf.hxx> #include <BOPDS_Interf.hxx>
#include <BOPDS_MapOfPassKey.hxx> #include <BOPDS_MapOfPassKey.hxx>
#include <BOPDS_PassKey.hxx> #include <BOPDS_PassKey.hxx>
@ -35,7 +38,10 @@
#include <BOPDS_VectorOfInterfVF.hxx> #include <BOPDS_VectorOfInterfVF.hxx>
#include <BOPDS_VectorOfInterfEF.hxx> #include <BOPDS_VectorOfInterfEF.hxx>
#include <BOPDS_VectorOfInterfFF.hxx> #include <BOPDS_VectorOfInterfFF.hxx>
#include <BOPDS_VectorOfPoint.hxx>
#include <BOPInt_Context.hxx>
#include <BOPTools.hxx>
#include <BOPTools_AlgoTools.hxx> #include <BOPTools_AlgoTools.hxx>
//======================================================================= //=======================================================================
@ -47,6 +53,7 @@ BOPAlgo_CheckerSI::BOPAlgo_CheckerSI()
BOPAlgo_PaveFiller() BOPAlgo_PaveFiller()
{ {
myLevelOfCheck=BOPDS_DS::NbInterfTypes()-1; myLevelOfCheck=BOPDS_DS::NbInterfTypes()-1;
myNonDestructive=Standard_True;
} }
//======================================================================= //=======================================================================
//function : ~ //function : ~
@ -69,17 +76,28 @@ void BOPAlgo_CheckerSI::SetLevelOfCheck(const Standard_Integer theLevel)
} }
} }
//======================================================================= //=======================================================================
//function : SetNonDestructive
//purpose :
//=======================================================================
void BOPAlgo_CheckerSI::SetNonDestructive(const Standard_Boolean theFlag)
{
myNonDestructive=theFlag;
}
//=======================================================================
//function : NonDestructive
//purpose :
//=======================================================================
Standard_Boolean BOPAlgo_CheckerSI::NonDestructive() const
{
return myNonDestructive;
}
//=======================================================================
//function : Init //function : Init
//purpose : //purpose :
//======================================================================= //=======================================================================
void BOPAlgo_CheckerSI::Init() void BOPAlgo_CheckerSI::Init()
{ {
myErrorStatus = 0; myErrorStatus=0;
//
if (!myArguments.Extent()) {
myErrorStatus=10;
return;
}
// //
Clear(); Clear();
// //
@ -111,6 +129,19 @@ void BOPAlgo_CheckerSI::Perform()
try { try {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
// //
myErrorStatus=0;
if (myArguments.Extent()!=1) {
myErrorStatus=10;
return;
}
//
if (myNonDestructive) {
PrepareCopy();
if (myErrorStatus) {
return;
}
}
//
BOPAlgo_PaveFiller::Perform(); BOPAlgo_PaveFiller::Perform();
if (myErrorStatus) { if (myErrorStatus) {
return; return;
@ -137,11 +168,19 @@ void BOPAlgo_CheckerSI::Perform()
} }
// //
PostTreat(); PostTreat();
if (myErrorStatus) {
return;
}
//
if (myNonDestructive) {
PostTreatCopy();
}
} }
catch (Standard_Failure) { catch (Standard_Failure) {
myErrorStatus=11;
} }
} }
//======================================================================= //=======================================================================
//function : PostTreat //function : PostTreat
//purpose : //purpose :
@ -151,7 +190,10 @@ void BOPAlgo_CheckerSI::PostTreat()
Standard_Integer i, aNb, n1, n2; Standard_Integer i, aNb, n1, n2;
BOPDS_PassKey aPK; BOPDS_PassKey aPK;
// //
BOPDS_MapOfPassKey& aMPK=*((BOPDS_MapOfPassKey*)&myDS->Interferences()); myErrorStatus=0;
//
BOPDS_MapOfPassKey& aMPK=
*((BOPDS_MapOfPassKey*)&myDS->Interferences());
aMPK.Clear(); aMPK.Clear();
// //
// 0 // 0
@ -227,21 +269,22 @@ void BOPAlgo_CheckerSI::PostTreat()
// //
iFound=0; iFound=0;
if (bTangentFaces) { if (bTangentFaces) {
const TopoDS_Face& aF1 = *((TopoDS_Face*)&myDS->Shape(n1)); const TopoDS_Face& aF1=*((TopoDS_Face*)&myDS->Shape(n1));
const TopoDS_Face& aF2 = *((TopoDS_Face*)&myDS->Shape(n2)); const TopoDS_Face& aF2=*((TopoDS_Face*)&myDS->Shape(n2));
bFlag=BOPTools_AlgoTools::AreFacesSameDomain(aF1, aF2, myContext); bFlag=BOPTools_AlgoTools::AreFacesSameDomain
(aF1, aF2, myContext);
if (bFlag) { if (bFlag) {
++iFound; ++iFound;
} }
} }
else { else {
for (j=0; j!=aNbC; ++j) { for (j=0; j!=aNbC; ++j) {
const BOPDS_Curve& aNC=aVC(j); const BOPDS_Curve& aNC=aVC(j);
const BOPDS_ListOfPaveBlock& aLPBC=aNC.PaveBlocks(); const BOPDS_ListOfPaveBlock& aLPBC=aNC.PaveBlocks();
if (aLPBC.Extent()) { if (aLPBC.Extent()) {
++iFound; ++iFound;
break; break;
} }
} }
} }
// //
@ -298,3 +341,72 @@ void BOPAlgo_CheckerSI::PostTreat()
aMPK.Add(aPK); aMPK.Add(aPK);
} }
} }
//=======================================================================
//function : PrepareCopy
//purpose :
//=======================================================================
void BOPAlgo_CheckerSI::PrepareCopy()
{
Standard_Boolean bIsDone;
BRepBuilderAPI_Copy aCopier;
BOPCol_MapOfShape aMSA;
BOPCol_MapIteratorOfMapOfShape aItMS;
//
myErrorStatus=0;
//
myNewOldMap.Clear();
//
const TopoDS_Shape& aSA=myArguments.First();
//
BOPTools::MapShapes(aSA, aMSA);
//
aCopier.Perform(aSA, Standard_False);
bIsDone=aCopier.IsDone();
if (!bIsDone) {
myErrorStatus=12;
return;
}
//
const TopoDS_Shape& aSC=aCopier.Shape();
//
aItMS.Initialize(aMSA);
for(; aItMS.More(); aItMS.Next()) {
const TopoDS_Shape& aSAx=aItMS.Value();
const TopoDS_Shape& aSCx=aCopier.Modified(aSAx).First();
myNewOldMap.Bind(aSCx, aSAx);
}
//
myArguments.Clear();
myArguments.Append(aSC);
}
//=======================================================================
//function : PostTreatCopy
//purpose :
//=======================================================================
void BOPAlgo_CheckerSI::PostTreatCopy()
{
Standard_Integer i, aNb;
//
myErrorStatus=0;
//
aNb=myDS->NbSourceShapes();
for (i=0; i!=aNb; ++i) {
BOPDS_ShapeInfo& aSI=myDS->ChangeShapeInfo(i);
const TopoDS_Shape& aSCi=aSI.Shape();
if (!myNewOldMap.IsBound(aSCi)) {
myErrorStatus=13;
return;
}
//
const TopoDS_Shape& aSAi=myNewOldMap.Find(aSCi);
aSI.SetShape(aSAi);
}
}
//
// myErrorStatus:
//
// 10 - The number of the arguments is not 1
// 11 - Exception is caught
// 12 - BRepBuilderAPI_Copy is not done
// 13 - myNewOldMap doe not contain DS shape

View File

@ -17,17 +17,21 @@
#include <BOPAlgo_PaveFiller.ixx> #include <BOPAlgo_PaveFiller.ixx>
#include <Standard_ErrorHandler.hxx>
#include <Standard_Failure.hxx>
#include <NCollection_BaseAllocator.hxx> #include <NCollection_BaseAllocator.hxx>
#include <BOPInt_Context.hxx> #include <BOPInt_Context.hxx>
#include <BOPDS_DS.hxx> #include <BOPDS_DS.hxx>
#include <BOPDS_Iterator.hxx> #include <BOPDS_Iterator.hxx>
//======================================================================= //=======================================================================
//function : //function :
//purpose : //purpose :
//======================================================================= //=======================================================================
BOPAlgo_PaveFiller::BOPAlgo_PaveFiller() BOPAlgo_PaveFiller::BOPAlgo_PaveFiller()
: :
BOPAlgo_Algo() BOPAlgo_Algo()
{ {
@ -38,7 +42,8 @@
//function : //function :
//purpose : //purpose :
//======================================================================= //=======================================================================
BOPAlgo_PaveFiller::BOPAlgo_PaveFiller(const Handle(NCollection_BaseAllocator)& theAllocator) BOPAlgo_PaveFiller::BOPAlgo_PaveFiller
(const Handle(NCollection_BaseAllocator)& theAllocator)
: :
BOPAlgo_Algo(theAllocator) BOPAlgo_Algo(theAllocator)
{ {
@ -49,7 +54,7 @@
//function : ~ //function : ~
//purpose : //purpose :
//======================================================================= //=======================================================================
BOPAlgo_PaveFiller::~BOPAlgo_PaveFiller() BOPAlgo_PaveFiller::~BOPAlgo_PaveFiller()
{ {
Clear(); Clear();
} }
@ -57,7 +62,7 @@
//function : Clear //function : Clear
//purpose : //purpose :
//======================================================================= //=======================================================================
void BOPAlgo_PaveFiller::Clear() void BOPAlgo_PaveFiller::Clear()
{ {
if (myIterator) { if (myIterator) {
delete myIterator; delete myIterator;
@ -67,13 +72,12 @@
delete myDS; delete myDS;
myDS=NULL; myDS=NULL;
} }
myErrorStatus=2;
} }
//======================================================================= //=======================================================================
//function : DS //function : DS
//purpose : //purpose :
//======================================================================= //=======================================================================
const BOPDS_DS& BOPAlgo_PaveFiller::DS() const BOPDS_DS& BOPAlgo_PaveFiller::DS()
{ {
return *myDS; return *myDS;
} }
@ -81,7 +85,7 @@
//function : PDS //function : PDS
//purpose : //purpose :
//======================================================================= //=======================================================================
BOPDS_PDS BOPAlgo_PaveFiller::PDS() BOPDS_PDS BOPAlgo_PaveFiller::PDS()
{ {
return myDS; return myDS;
} }
@ -89,7 +93,7 @@
//function : Context //function : Context
//purpose : //purpose :
//======================================================================= //=======================================================================
Handle(BOPInt_Context) BOPAlgo_PaveFiller::Context() Handle(BOPInt_Context) BOPAlgo_PaveFiller::Context()
{ {
return myContext; return myContext;
} }
@ -97,7 +101,8 @@
//function : SectionAttribute //function : SectionAttribute
//purpose : //purpose :
//======================================================================= //=======================================================================
void BOPAlgo_PaveFiller::SetSectionAttribute(const BOPAlgo_SectionAttribute& theSecAttr) void BOPAlgo_PaveFiller::SetSectionAttribute
(const BOPAlgo_SectionAttribute& theSecAttr)
{ {
mySectionAttribute = theSecAttr; mySectionAttribute = theSecAttr;
} }
@ -105,7 +110,7 @@
//function : SetArguments //function : SetArguments
//purpose : //purpose :
//======================================================================= //=======================================================================
void BOPAlgo_PaveFiller::SetArguments(const BOPCol_ListOfShape& theLS) void BOPAlgo_PaveFiller::SetArguments(const BOPCol_ListOfShape& theLS)
{ {
myArguments=theLS; myArguments=theLS;
} }
@ -113,7 +118,7 @@
//function : Arguments //function : Arguments
//purpose : //purpose :
//======================================================================= //=======================================================================
const BOPCol_ListOfShape& BOPAlgo_PaveFiller::Arguments()const const BOPCol_ListOfShape& BOPAlgo_PaveFiller::Arguments()const
{ {
return myArguments; return myArguments;
} }
@ -121,7 +126,7 @@
// function: Init // function: Init
// purpose: // purpose:
//======================================================================= //=======================================================================
void BOPAlgo_PaveFiller::Init() void BOPAlgo_PaveFiller::Init()
{ {
myErrorStatus=0; myErrorStatus=0;
// //
@ -152,68 +157,73 @@
// function: Perform // function: Perform
// purpose: // purpose:
//======================================================================= //=======================================================================
void BOPAlgo_PaveFiller::Perform() void BOPAlgo_PaveFiller::Perform()
{ {
myErrorStatus=0; myErrorStatus=0;
// try {
Init(); OCC_CATCH_SIGNALS
if (myErrorStatus) { //
return; Init();
} if (myErrorStatus) {
// 00 return;
PerformVV(); }
if (myErrorStatus) { // 00
return; PerformVV();
} if (myErrorStatus) {
// 01 return;
PerformVE(); }
if (myErrorStatus) { // 01
return; PerformVE();
} if (myErrorStatus) {
// return;
myDS->UpdatePaveBlocks(); }
// 11 //
PerformEE(); myDS->UpdatePaveBlocks();
if (myErrorStatus) { // 11
return; PerformEE();
} if (myErrorStatus) {
// 02 return;
PerformVF(); }
if (myErrorStatus) { // 02
return; PerformVF();
} if (myErrorStatus) {
// 12 return;
PerformEF(); }
if (myErrorStatus) { // 12
return; PerformEF();
} if (myErrorStatus) {
// return;
MakeSplitEdges(); }
if (myErrorStatus) { //
return; MakeSplitEdges();
} if (myErrorStatus) {
// return;
// 22 }
PerformFF(); //
if (myErrorStatus) { // 22
return; PerformFF();
} if (myErrorStatus) {
// return;
MakeBlocks(); }
if (myErrorStatus) { //
return; MakeBlocks();
} if (myErrorStatus) {
// return;
RefineFaceInfoOn(); }
// //
MakePCurves(); RefineFaceInfoOn();
if (myErrorStatus) { //
return; MakePCurves();
} if (myErrorStatus) {
// return;
ProcessDE(); }
if (myErrorStatus) { //
return; ProcessDE();
} if (myErrorStatus) {
// return;
}
} // try {
catch (Standard_Failure) {
myErrorStatus=11;
}
} }

View File

@ -63,20 +63,25 @@ static
// Chapter's name // Chapter's name
const char* g = "CCR commands"; const char* g = "CCR commands";
// //
theCommands.Add("bopcheck" , "Use >bopcheck Shape [level of check: 0(V/V) - 5(all)]", __FILE__, bopcheck, g); theCommands.Add("bopcheck",
theCommands.Add("bopargcheck" , "Use bopargcheck without parameters to get ", __FILE__, bopargcheck, g); "Use >bopcheck Shape [level of check: 0(V/V) - 5(all)]",
__FILE__, bopcheck, g);
theCommands.Add("bopargcheck" ,
"Use bopargcheck without parameters to get ",
__FILE__, bopargcheck, g);
} }
//======================================================================= //=======================================================================
//function : bopcheck //function : bopcheck
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Integer bopcheck (Draw_Interpretor& di, Standard_Integer n, const char** a ) Standard_Integer bopcheck
(Draw_Interpretor& di, Standard_Integer n, const char** a )
{ {
if (n<2) { if (n<2) {
di << " Use >bopcheck Shape [level of check: 0 - 5" << "\n"; di << " Use >bopcheck Shape [level of check: 0 - 5" << "\n";
di << " The level of check defines which interferferences will be checked:\n"; di << " The level of check defines ";
di << " which interferferences will be checked:\n";
di << " 0 - only V/V;\n"; di << " 0 - only V/V;\n";
di << " 1 - V/V and V/E;\n"; di << " 1 - V/V and V/E;\n";
di << " 2 - V/V, V/E and E/E;\n"; di << " 2 - V/V, V/E and E/E;\n";
@ -91,7 +96,7 @@ Standard_Integer bopcheck (Draw_Interpretor& di, Standard_Integer n, const char
di << "null shapes are not allowed here!"; di << "null shapes are not allowed here!";
return 1; return 1;
} }
TopoDS_Shape aS = BRepBuilderAPI_Copy(aS1).Shape(); TopoDS_Shape aS = aS1;
// //
Standard_Integer iErr, aTypeInt, i, ind, j; Standard_Integer iErr, aTypeInt, i, ind, j;
Standard_Integer nI1, nI2, theLevelOfCheck; Standard_Integer nI1, nI2, theLevelOfCheck;
@ -101,8 +106,8 @@ Standard_Integer bopcheck (Draw_Interpretor& di, Standard_Integer n, const char
theLevelOfCheck = (n==3) ? Draw::Atoi(a[2]) : 5; theLevelOfCheck = (n==3) ? Draw::Atoi(a[2]) : 5;
if (theLevelOfCheck >= 0 && theLevelOfCheck < 5) { if (theLevelOfCheck >= 0 && theLevelOfCheck < 5) {
di << "Info:\nThe level of check is set to " << type[theLevelOfCheck] di << "Info:\nThe level of check is set to "
<< ", i.e. intersection(s)\n"; << type[theLevelOfCheck] << ", i.e. intersection(s)\n";
for (i=theLevelOfCheck+1; i<=5; ++i) { for (i=theLevelOfCheck+1; i<=5; ++i) {
di << type[i]; di << type[i];
if (i<5) { if (i<5) {
@ -129,18 +134,22 @@ Standard_Integer bopcheck (Draw_Interpretor& di, Standard_Integer n, const char
BOPDS_VectorOfInterfEF& aEFs=theDS->InterfEF(); BOPDS_VectorOfInterfEF& aEFs=theDS->InterfEF();
BOPDS_VectorOfInterfFF& aFFs=theDS->InterfFF(); BOPDS_VectorOfInterfFF& aFFs=theDS->InterfFF();
// //
Standard_Integer aNb[6] = {aVVs.Extent(), aVEs.Extent(), aEEs.Extent(), Standard_Integer aNb[6] ={
aVFs.Extent(), aEFs.Extent(), aFFs.Extent()}; aVVs.Extent(), aVEs.Extent(), aEEs.Extent(),
aVFs.Extent(), aEFs.Extent(), aFFs.Extent()
};
// //
bSelfInt = Standard_False; bSelfInt = Standard_False;
ind = 0; ind = 0;
for (aTypeInt = 0; aTypeInt < 6; ++aTypeInt) { for (aTypeInt = 0; aTypeInt < 6; ++aTypeInt) {
for (i = 0; i < aNb[aTypeInt]; ++i) { for (i = 0; i < aNb[aTypeInt]; ++i) {
BOPDS_Interf* aInt = (aTypeInt==0) ? (BOPDS_Interf*)(&aVVs(i)) : BOPDS_Interf* aInt =
((aTypeInt==1) ? (BOPDS_Interf*)(&aVEs(i)) : (aTypeInt==0) ? (BOPDS_Interf*)(&aVVs(i)) :
((aTypeInt==2) ? (BOPDS_Interf*)(&aEEs(i)) : ((aTypeInt==1) ? (BOPDS_Interf*)(&aVEs(i)) :
((aTypeInt==3) ? (BOPDS_Interf*)(&aVFs(i)) : ((aTypeInt==2) ? (BOPDS_Interf*)(&aEEs(i)) :
((aTypeInt==4) ? (BOPDS_Interf*)(&aEFs(i)) : (BOPDS_Interf*)(&aFFs(i)))))); ((aTypeInt==3) ? (BOPDS_Interf*)(&aVFs(i)) :
((aTypeInt==4) ? (BOPDS_Interf*)(&aEFs(i)) :
(BOPDS_Interf*)(&aFFs(i))))));
// //
nI1 = aInt->Index1(); nI1 = aInt->Index1();
nI2 = aInt->Index2(); nI2 = aInt->Index2();
@ -200,23 +209,28 @@ Standard_Integer bopcheck (Draw_Interpretor& di, Standard_Integer n, const char
bSelfInt = Standard_True; bSelfInt = Standard_True;
} }
} }
//
if (iErr) { if (iErr) {
di << "There were errors during the operation, so the list may be incomplete." << "\n"; di << "There were errors during the operation, ";
di << "so the list may be incomplete." << "\n";
} }
//
if (!bSelfInt) { if (!bSelfInt) {
di << " This shape seems to be OK." << "\n"; di << " This shape seems to be OK." << "\n";
} }
return 0; return 0;
} }
static void MakeShapeForFullOutput(const TCollection_AsciiString & aBaseName, //=======================================================================
const Standard_Integer aIndex, //function : MakeShapeForFullOutput
const BOPCol_ListOfShape & aList, //purpose :
Standard_Integer& aCount, //=======================================================================
Draw_Interpretor& di) static void MakeShapeForFullOutput
(const TCollection_AsciiString & aBaseName,
const Standard_Integer aIndex,
const BOPCol_ListOfShape & aList,
Standard_Integer& aCount,
Draw_Interpretor& di)
{ {
TCollection_AsciiString aNum(aIndex); TCollection_AsciiString aNum(aIndex);
TCollection_AsciiString aName = aBaseName + aNum; TCollection_AsciiString aName = aBaseName + aNum;
@ -237,11 +251,17 @@ static void MakeShapeForFullOutput(const TCollection_AsciiString & aBaseName,
} }
Standard_Integer bopargcheck (Draw_Interpretor& di, Standard_Integer n, const char** a ) //=======================================================================
//function : bopargcheck
//purpose :
//=======================================================================
Standard_Integer bopargcheck
(Draw_Interpretor& di, Standard_Integer n, const char** a )
{ {
if (n<2) { if (n<2) {
di << "\n"; di << "\n";
di << " Use >bopargcheck Shape1 [[Shape2] [-F/O/C/T/S/U] [/R|F|T|V|E|I|P]] [#BF]" << "\n" << "\n"; di << " Use >bopargcheck Shape1 [[Shape2] ";
di << "[-F/O/C/T/S/U] [/R|F|T|V|E|I|P]] [#BF]" << "\n" << "\n";
di << " -<Boolean Operation>" << "\n"; di << " -<Boolean Operation>" << "\n";
di << " F (fuse)" << "\n"; di << " F (fuse)" << "\n";
di << " O (common)" << "\n"; di << " O (common)" << "\n";
@ -249,7 +269,8 @@ Standard_Integer bopargcheck (Draw_Interpretor& di, Standard_Integer n, const c
di << " T (cut21)" << "\n"; di << " T (cut21)" << "\n";
di << " S (section)" << "\n"; di << " S (section)" << "\n";
di << " U (unknown)" << "\n"; di << " U (unknown)" << "\n";
di << " For example: \"bopargcheck s1 s2 -F\" enables checking for Fuse operation" << "\n"; di << " For example: \"bopargcheck s1 s2 -F\" enables" ;
di << "checking for Fuse operation" << "\n";
di << " default - section" << "\n" << "\n"; di << " default - section" << "\n" << "\n";
di << " /<Test Options>" << "\n"; di << " /<Test Options>" << "\n";
di << " R (disable small edges (shrank range) test)" << "\n"; di << " R (disable small edges (shrank range) test)" << "\n";
@ -260,26 +281,30 @@ Standard_Integer bopargcheck (Draw_Interpretor& di, Standard_Integer n, const c
di << " I (disable self-interference test)" << "\n"; di << " I (disable self-interference test)" << "\n";
di << " P (disable shape type test)" << "\n"; di << " P (disable shape type test)" << "\n";
di << " C (disable test for shape continuity)" << "\n"; di << " C (disable test for shape continuity)" << "\n";
di << " For example: \"bopargcheck s1 s2 /RI\" disables small edge detection and self-intersection detection" << "\n"; di << " For example: \"bopargcheck s1 s2 /RI\" disables ";
di << "small edge detection and self-intersection detection" << "\n";
di << " default - all options are enabled" << "\n" << "\n"; di << " default - all options are enabled" << "\n" << "\n";
di << " #<Additional Test Options>" << "\n"; di << " #<Additional Test Options>" << "\n";
di << " B (stop test on first faulty found); default OFF" << "\n"; di << " B (stop test on first faulty found); default OFF" << "\n";
di << " F (full output for faulty shapes); default - output in a short format" << "\n" << "\n"; di << " F (full output for faulty shapes); default - output ";
di << " NOTE: <Boolean Operation> and <Test Options> are used only for couple" << "\n"; di << "in a short format" << "\n" << "\n";
di << " of argument shapes, except I and P options that are always used for" << "\n"; di << " NOTE: <Boolean Operation> and <Test Options> are ";
di << " couple of shapes as well as for single shape test." << "\n"; di << "used only for couple" << "\n";
di << " of argument shapes, except I and P options ";
di << "that are always used for" << "\n";
di << " couple of shapes as well as for ";
di <<"single shape test." << "\n";
return 1; return 1;
} }
TopoDS_Shape aS11 = DBRep::Get(a[1]); TopoDS_Shape aS1 = DBRep::Get(a[1]);
if(aS11.IsNull()) { if(aS1.IsNull()) {
di << "Error: null shape not allowed!" << "\n"; di << "Error: null shape not allowed!" << "\n";
di << "Type bopargcheck without arguments for more information" << "\n"; di << "Type bopargcheck without arguments for more ";
di <<"information" << "\n";
return 1; return 1;
} }
TopoDS_Shape aS1 = BRepBuilderAPI_Copy(aS11).Shape();
Standard_Boolean isBO = Standard_False; Standard_Boolean isBO = Standard_False;
Standard_Integer indxBO = 0; Standard_Integer indxBO = 0;

31
tests/bugs/modalg_5/bug24620 Executable file
View File

@ -0,0 +1,31 @@
puts "============"
puts "OCC24620"
puts "============"
puts ""
#######################################################################
# BOPAlgo_CheckerSI returns interferences that are not sub-shapes of the source shape
#######################################################################
vertex v1 0 0 0
vertex v2 10 0 0
vertex v3 4 -5 0
vertex v4 4 5 0
edge e1 v1 v2
edge e2 v3 v4
compound e1 e2 b1
bopcheck b1
compound x0 x1 b1 result
set nb_v_good 4
set nb_e_good 2
set nb_w_good 0
set nb_f_good 0
set nb_sh_good 0
set nb_sol_good 0
set nb_compsol_good 0
set nb_compound_good 2
set nb_shape_good 8
set 2dviewer 1

View File

@ -1,6 +1,7 @@
puts "TODO OCC12345 ALL: An exception was caught" #puts "TODO OCC12345 ALL: An exception was caught"
puts "TODO OCC12345 ALL: \\*\\* Exception \\*\\*.*" #puts "TODO OCC12345 ALL: \\*\\* Exception \\*\\*.*"
puts "TODO OCC12345 ALL: TEST INCOMPLETE" puts "TODO OCC12345 ALL: TEST INCOMPLETE"
puts "TODO OCC12345 ALL: xception"
puts "========================" puts "========================"
puts " OCC469 " puts " OCC469 "