Salome HOME
Make TestIntersection work: no crash on remove of PaveFiller before all algorithm...
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Intersection.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "GeomAlgoAPI_Intersection.h"
22
23 #include <GeomAlgoAPI_DFLoader.h>
24
25 #include <BOPAlgo_PaveFiller.hxx>
26 #include <BOPAlgo_Section.hxx>
27
28 //==================================================================================================
29 GeomAlgoAPI_Intersection::GeomAlgoAPI_Intersection(const ListOfShape& theObjects)
30   : myFiller(0)
31 {
32   build(theObjects);
33 }
34
35 GeomAlgoAPI_Intersection::~GeomAlgoAPI_Intersection() {
36   if (myFiller)
37     delete (BOPAlgo_PaveFiller*)myFiller;
38 }
39 //==================================================================================================
40 void GeomAlgoAPI_Intersection::build(const ListOfShape& theObjects)
41 {
42   if (theObjects.empty()) {
43     return;
44   }
45
46   // Creating partition operation.
47   BOPAlgo_Section* anOperation = new BOPAlgo_Section;
48   this->setImpl(anOperation);
49   this->setBuilderType(OCCT_BOPAlgo_Builder);
50
51   // Getting objects.
52   TopTools_ListOfShape anObjects;
53   for (ListOfShape::const_iterator
54     anObjectsIt = theObjects.begin(); anObjectsIt != theObjects.end(); anObjectsIt++) {
55     const TopoDS_Shape& aShape = (*anObjectsIt)->impl<TopoDS_Shape>();
56     if(!aShape.IsNull()) {
57       anObjects.Append(aShape);
58     }
59   }
60
61   BOPAlgo_PaveFiller* aDSFiller = new BOPAlgo_PaveFiller;
62   myFiller = aDSFiller;
63   aDSFiller->SetArguments(anObjects);
64
65   aDSFiller->SetRunParallel(false);
66   aDSFiller->SetNonDestructive(false);
67   aDSFiller->SetGlue(BOPAlgo_GlueOff);
68
69   // optimization for the issue #2399
70   BOPAlgo_SectionAttribute theSecAttr(Standard_True,
71                                       Standard_True,
72                                       Standard_True);
73   aDSFiller->SetSectionAttribute(theSecAttr);
74
75   aDSFiller->Perform();
76   if (aDSFiller->HasErrors()) {
77     return;
78   }
79
80   anOperation->SetArguments(anObjects);
81   anOperation->SetRunParallel(false);
82   anOperation->SetCheckInverted(true);
83
84   anOperation->PerformWithFiller(*aDSFiller); // it references a filler fields, so keep the filler
85   if(anOperation->HasErrors()) {
86     return;
87   }
88   TopoDS_Shape aResult = anOperation->Shape();
89
90   if(aResult.ShapeType() == TopAbs_COMPOUND) {
91     aResult = GeomAlgoAPI_DFLoader::refineResult(aResult);
92   }
93
94   std::shared_ptr<GeomAPI_Shape> aShape(new GeomAPI_Shape());
95   aShape->setImpl(new TopoDS_Shape(aResult));
96   this->setShape(aShape);
97   this->setDone(true);
98 }