mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0. Basic tools for defining classes representing alerts (errors, warnings etc.) and collecting them during execution of algorithms are added in Message package. 1. Refactoring of the Error/Warning reporting system of the algorithms in Boolean Component. To dump the description of the Error/Warning status of the algorithm the DumpErrors/DumpWarnings method should be called. Also, the methods GerErrorMsg(int Error) and GetWarningMsg(int Warning) have been implemented to get the description for the given Error/Warning. All Error/Warning statuses are now listed in the enumeration ErrorStatusEnum/WarningStatusEnum of the algorithm. It is also possible to get the shapes for which the warning has been set by using the method GetWarningShapes(). 2. The new class BOPAlgo_Options has been created to unify the options of the BOPAlgo_* and BRepAlgoAPI* algorithms. 3. The new checks across the algorithms have been added to detect and report errors and warnings. 4. Test cases boolean bopcut_complex B9 E1 E5 E8 boolean bopfuse_complex B4 B5 C9 D1 D4 D5 D6 D7 have been rewritten to use Cells Builder algorithm instead of Boolean Operations algorithm, because latter always returns error "Unsupported Boolean operation" for these cases. 5. New chapter has been added in the user guide for Boolean Operations - Error / Warning reporting system. 6. Added comment to NCollection_List::Remove(Iterator&)
132 lines
3.9 KiB
C++
132 lines
3.9 KiB
C++
// Created by: Eugeny MALTCHIKOV
|
|
// Copyright (c) 2017 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#include <BRepAlgoAPI_Splitter.hxx>
|
|
|
|
#include <BOPAlgo_PaveFiller.hxx>
|
|
#include <BOPAlgo_Splitter.hxx>
|
|
#include <BOPAlgo_Alerts.hxx>
|
|
|
|
//=======================================================================
|
|
// function: Empty constructor
|
|
// purpose:
|
|
//=======================================================================
|
|
BRepAlgoAPI_Splitter::BRepAlgoAPI_Splitter()
|
|
: BRepAlgoAPI_BuilderAlgo() {}
|
|
|
|
//=======================================================================
|
|
// function: Constructor with already filled PaveFiller
|
|
// purpose:
|
|
//=======================================================================
|
|
BRepAlgoAPI_Splitter::BRepAlgoAPI_Splitter(const BOPAlgo_PaveFiller& thePF)
|
|
: BRepAlgoAPI_BuilderAlgo(thePF) {}
|
|
|
|
//=======================================================================
|
|
// function: Destructor
|
|
// purpose:
|
|
//=======================================================================
|
|
BRepAlgoAPI_Splitter::~BRepAlgoAPI_Splitter()
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
// function: SetTools
|
|
// purpose:
|
|
//=======================================================================
|
|
void BRepAlgoAPI_Splitter::SetTools(const TopTools_ListOfShape& theLS)
|
|
{
|
|
myTools = theLS;
|
|
}
|
|
|
|
//=======================================================================
|
|
// function: Tools
|
|
// purpose:
|
|
//=======================================================================
|
|
const TopTools_ListOfShape& BRepAlgoAPI_Splitter::Tools() const
|
|
{
|
|
return myTools;
|
|
}
|
|
|
|
//=======================================================================
|
|
// function: Build
|
|
// purpose:
|
|
//=======================================================================
|
|
void BRepAlgoAPI_Splitter::Build()
|
|
{
|
|
NotDone();
|
|
//
|
|
Clear();
|
|
//
|
|
if (myArguments.IsEmpty() ||
|
|
(myArguments.Extent() + myTools.Extent()) < 2) {
|
|
AddError (new BOPAlgo_AlertTooFewArguments);
|
|
return;
|
|
}
|
|
//
|
|
if (myEntryType) {
|
|
if (myDSFiller) {
|
|
delete myDSFiller;
|
|
}
|
|
myDSFiller = new BOPAlgo_PaveFiller(myAllocator);
|
|
//
|
|
TopTools_ListOfShape aLArgs;
|
|
TopTools_ListIteratorOfListOfShape aItLA(myArguments);
|
|
for (; aItLA.More(); aItLA.Next()) {
|
|
aLArgs.Append(aItLA.Value());
|
|
}
|
|
//
|
|
aItLA.Initialize(myTools);
|
|
for (; aItLA.More(); aItLA.Next()) {
|
|
aLArgs.Append(aItLA.Value());
|
|
}
|
|
//
|
|
myDSFiller->SetArguments(aLArgs);
|
|
//
|
|
myDSFiller->SetRunParallel(myRunParallel);
|
|
myDSFiller->SetProgressIndicator(myProgressIndicator);
|
|
myDSFiller->SetFuzzyValue(myFuzzyValue);
|
|
myDSFiller->SetNonDestructive(myNonDestructive);
|
|
myDSFiller->SetGlue(myGlue);
|
|
//
|
|
myDSFiller->Perform();
|
|
//
|
|
GetReport()->Merge (myDSFiller->GetReport());
|
|
if (HasErrors())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
//
|
|
if (myBuilder) {
|
|
delete myBuilder;
|
|
}
|
|
//
|
|
{
|
|
BOPAlgo_Splitter *pSplitter = new BOPAlgo_Splitter(myAllocator);
|
|
pSplitter->SetArguments(myArguments);
|
|
pSplitter->SetTools(myTools);
|
|
myBuilder = pSplitter;
|
|
}
|
|
//
|
|
myBuilder->SetRunParallel(myRunParallel);
|
|
myBuilder->SetProgressIndicator(myProgressIndicator);
|
|
//
|
|
myBuilder->PerformWithFiller(*myDSFiller);
|
|
//
|
|
GetReport()->Merge (myBuilder->GetReport());
|
|
//
|
|
Done();
|
|
myShape = myBuilder->Shape();
|
|
}
|