Salome HOME
380b95ea3969b2c4b87ba263d223cbb345060955
[modules/geom.git] / src / GEOMImpl / GEOMImpl_BooleanDriver.cxx
1 // Copyright (C) 2007-2021  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include <GEOMImpl_BooleanDriver.hxx>
24 #include <GEOMImpl_IBoolean.hxx>
25 #include <GEOMImpl_Types.hxx>
26 #include <GEOMImpl_GlueDriver.hxx>
27 #include <GEOM_Function.hxx>
28 #include <GEOMUtils.hxx>
29 #include <BlockFix_BlockFixAPI.hxx>
30 #include <ShHealOper_ShapeProcess.hxx>
31
32 #include <TNaming_CopyShape.hxx>
33
34 #include <BRep_Builder.hxx>
35 #include <BRepAlgoAPI_Common.hxx>
36 #include <BRepAlgoAPI_Cut.hxx>
37 #include <BRepAlgoAPI_Fuse.hxx>
38 #include <BRepAlgoAPI_Section.hxx>
39 #include <BOPAlgo_CheckerSI.hxx>
40 #include <BOPDS_DS.hxx>
41 #include <BOPTools_AlgoTools.hxx>
42
43 #include <TopExp_Explorer.hxx>
44 #include <TopoDS_Compound.hxx>
45 #include <TopoDS_Iterator.hxx>
46 #include <TopTools_MapOfShape.hxx>
47 #include <TopTools_ListOfShape.hxx>
48 #include <TopTools_ListIteratorOfListOfShape.hxx>
49
50 #include <TColStd_IndexedDataMapOfTransientTransient.hxx>
51
52 #include <Precision.hxx>
53
54 #include <Standard_ConstructionError.hxx>
55 #include <StdFail_NotDone.hxx>
56
57 // Depth of self-intersection check (see BOPAlgo_CheckerSI::SetLevelOfCheck() for more details)
58 // Default value for BOPAlgo_CheckerSI gives very long computation when checking face-to-face intersections;
59 // here check level is decreased to more appropriate value to avoid problems with performance).
60 #define BOP_SELF_INTERSECTIONS_LEVEL 4
61
62 /**
63  * This function performs extra edges removal.
64  *
65  * \param theShape the shape to be processed.
66  * \return the modified shape or null shape in case of failure.
67  */
68 static TopoDS_Shape RemoveExtraEdges(const TopoDS_Shape &theShape)
69 {
70   TopoDS_Shape aResult;
71
72   if (!theShape.IsNull()) {
73     BlockFix_BlockFixAPI aTool;
74
75     aTool.OptimumNbFaces() = 0;
76     aTool.SetShape(theShape);
77     aTool.Perform();
78     TopoDS_Shape aShape = aTool.Shape();
79
80     if (GEOMUtils::CheckShape(aShape)) {
81       aResult = aShape;
82     }
83     else {
84       TopoDS_Shape aFixed;
85       ShHealOper_ShapeProcess aHealer;
86       aHealer.Perform(aShape, aFixed);
87       if (aHealer.isDone() && GEOMUtils::CheckShape(aFixed))
88         aResult = aFixed;
89     }
90   }
91
92   return aResult;
93 }
94
95 //=======================================================================
96 //function : GetID
97 //purpose  :
98 //=======================================================================
99 const Standard_GUID& GEOMImpl_BooleanDriver::GetID()
100 {
101   static Standard_GUID aBooleanDriver("FF1BBB21-5D14-4df2-980B-3A668264EA16");
102   return aBooleanDriver;
103 }
104
105 //=======================================================================
106 //function : GEOMImpl_BooleanDriver
107 //purpose  :
108 //=======================================================================
109 GEOMImpl_BooleanDriver::GEOMImpl_BooleanDriver()
110 {
111 }
112
113 //=======================================================================
114 //function : Execute
115 //purpose  :
116 //=======================================================================
117 Standard_Integer GEOMImpl_BooleanDriver::Execute(Handle(TFunction_Logbook)& log) const
118 {
119   if (Label().IsNull()) return 0;
120   Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
121
122   GEOMImpl_IBoolean aCI (aFunction);
123   Standard_Integer aType = aFunction->GetType();
124   const Standard_Boolean isCheckSelfInte = aCI.GetCheckSelfIntersection();
125   const Standard_Boolean isRmExtraEdges  = aCI.GetRmExtraEdges();
126
127   TopoDS_Shape aShape;
128
129   switch (aType) {
130   case BOOLEAN_COMMON:
131   case BOOLEAN_CUT:
132   case BOOLEAN_FUSE:
133   case BOOLEAN_SECTION:
134     {
135       Handle(GEOM_Function) aRefShape1 = aCI.GetShape1();
136       Handle(GEOM_Function) aRefShape2 = aCI.GetShape2();
137       TopoDS_Shape aShape1 = aRefShape1->GetValue();
138       TopoDS_Shape aShape2 = aRefShape2->GetValue();
139
140       if (!aShape1.IsNull() && !aShape2.IsNull()) {
141         // check arguments for Mantis issue 0021019
142         if (!GEOMUtils::CheckShape(aShape1, true) || !GEOMUtils::CheckShape(aShape2, true))
143           StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is not valid");
144
145         if (isCheckSelfInte) {
146           BOPAlgo_CheckerSI aCSI;  // checker of self-interferences
147           aCSI.SetLevelOfCheck(BOP_SELF_INTERSECTIONS_LEVEL);
148           TopTools_ListOfShape aList1, aList2;
149           aList1.Append(aShape1);
150           aList2.Append(aShape2);
151           aCSI.SetArguments(aList1);
152           aCSI.Perform();
153           if (aCSI.HasErrors() || aCSI.DS().Interferences().Extent() > 0)
154             StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is self-intersected");
155           aCSI.SetArguments(aList2);
156           aCSI.Perform();
157           if (aCSI.HasErrors() || aCSI.DS().Interferences().Extent() > 0)
158             StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is self-intersected");
159         }
160
161         // Make a copy to prevent the original shape changes.
162         TopoDS_Shape aShapeCopy1;
163         TopoDS_Shape aShapeCopy2;
164         TColStd_IndexedDataMapOfTransientTransient aMapTShapes;
165         TNaming_CopyShape::CopyTool(aShape1, aMapTShapes, aShapeCopy1);
166         TNaming_CopyShape::CopyTool(aShape2, aMapTShapes, aShapeCopy2);
167
168         aShape = performOperation (aShapeCopy1, aShapeCopy2, aType);
169
170         if (isRmExtraEdges) {
171           aShape = RemoveExtraEdges(aShape);
172         }
173
174         if (aShape.IsNull()) {
175           return 0;
176         }
177       }
178     }
179     break;
180   case BOOLEAN_COMMON_LIST:
181   case BOOLEAN_FUSE_LIST:
182     {
183       Handle(TColStd_HSequenceOfTransient) aShapes = aCI.GetShapes();
184       const Standard_Integer nbShapes = aShapes->Length();
185       Standard_Integer i;
186       Handle(GEOM_Function) aRefShape;
187       TopoDS_Shape aShape2;
188       Standard_Integer aSimpleType =
189         (aType == BOOLEAN_FUSE_LIST ? BOOLEAN_FUSE : BOOLEAN_COMMON);
190
191       if (nbShapes > 0) {
192         aRefShape = Handle(GEOM_Function)::DownCast(aShapes->Value(1));
193         aShape = aRefShape->GetValue();
194
195         if (!aShape.IsNull()) {
196           // check arguments for Mantis issue 0021019
197           if (!GEOMUtils::CheckShape(aShape, true))
198             StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is not valid");
199
200           BOPAlgo_CheckerSI aCSI;  // checker of self-interferences
201
202           if (isCheckSelfInte) {
203             aCSI.SetLevelOfCheck(BOP_SELF_INTERSECTIONS_LEVEL);
204             TopTools_ListOfShape aList1;
205             aList1.Append(aShape);
206             aCSI.SetArguments(aList1);
207             aCSI.Perform();
208             if (aCSI.HasErrors() || aCSI.DS().Interferences().Extent() > 0) {
209               StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is self-intersected");
210             }
211           }
212
213           // Copy shape
214           TopoDS_Shape aShapeCopy;
215           TColStd_IndexedDataMapOfTransientTransient aMapTShapes;
216
217           TNaming_CopyShape::CopyTool(aShape, aMapTShapes, aShapeCopy);
218           aShape = aShapeCopy;
219
220           for (i = 2; i <= nbShapes; i++) {
221             aRefShape = Handle(GEOM_Function)::DownCast(aShapes->Value(i));
222             aShape2 = aRefShape->GetValue();
223
224             if (!GEOMUtils::CheckShape(aShape2, true))
225               StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is not valid");
226
227             if (isCheckSelfInte) {
228               TopTools_ListOfShape aList2;
229               aList2.Append(aShape2);
230               aCSI.SetArguments(aList2);
231               aCSI.Perform();
232               if (aCSI.HasErrors() || aCSI.DS().Interferences().Extent() > 0) {
233                 StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is self-intersected");
234               }
235             }
236
237             // Copy shape
238             aShapeCopy.Nullify();
239             TNaming_CopyShape::CopyTool(aShape2, aMapTShapes, aShapeCopy);
240             aShape = performOperation (aShape, aShapeCopy, aSimpleType);
241
242             if (isRmExtraEdges) {
243               aShape = RemoveExtraEdges(aShape);
244             }
245
246             if (aShape.IsNull()) {
247               return 0;
248             }
249           }
250         }
251       }
252     }
253     break;
254   case BOOLEAN_CUT_LIST:
255     {
256       Handle(GEOM_Function) aRefObject = aCI.GetShape1();
257
258       aShape = aRefObject->GetValue();
259
260       if (!aShape.IsNull()) {
261         // check arguments for Mantis issue 0021019
262         if (!GEOMUtils::CheckShape(aShape, true))
263           StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is not valid");
264
265         BOPAlgo_CheckerSI aCSI;  // checker of self-interferences
266
267         if (isCheckSelfInte) {
268           aCSI.SetLevelOfCheck(BOP_SELF_INTERSECTIONS_LEVEL);
269           TopTools_ListOfShape aList1;
270           aList1.Append(aShape);
271           aCSI.SetArguments(aList1);
272           aCSI.Perform();
273           if (aCSI.HasErrors() || aCSI.DS().Interferences().Extent() > 0) {
274             StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is self-intersected");
275           }
276         }
277
278         // Copy shape
279         TopoDS_Shape aShapeCopy;
280         TColStd_IndexedDataMapOfTransientTransient aMapTShapes;
281
282         TNaming_CopyShape::CopyTool(aShape, aMapTShapes, aShapeCopy);
283         aShape = aShapeCopy;
284
285         Handle(TColStd_HSequenceOfTransient) aTools = aCI.GetShapes();
286         const Standard_Integer nbShapes = aTools->Length();
287         Standard_Integer i;
288         Handle(GEOM_Function) aRefTool;
289         TopoDS_Shape aTool;
290
291         for (i = 1; i <= nbShapes; i++) {
292           aRefTool = Handle(GEOM_Function)::DownCast(aTools->Value(i));
293           aTool = aRefTool->GetValue();
294
295           if (!GEOMUtils::CheckShape(aTool, true))
296             StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is not valid");
297
298           if (isCheckSelfInte) {
299             TopTools_ListOfShape aList2;
300             aList2.Append(aTool);
301             aCSI.SetArguments(aList2);
302             aCSI.Perform();
303             if (aCSI.HasErrors() || aCSI.DS().Interferences().Extent() > 0) {
304               StdFail_NotDone::Raise("Boolean operation will not be performed, because argument shape is self-intersected");
305             }
306           }
307
308           // Copy shape
309           aShapeCopy.Nullify();
310           TNaming_CopyShape::CopyTool(aTool, aMapTShapes, aShapeCopy);
311           aShape = performOperation (aShape, aShapeCopy, BOOLEAN_CUT);
312
313           if (aShape.IsNull()) {
314             return 0;
315           }
316         }
317       }
318     }
319     break;
320   default:
321     break;
322   }
323
324   aFunction->SetValue(aShape);
325
326   log->SetTouched(Label());
327
328   return 1;
329 }
330
331 //=======================================================================
332 //function : makeCompoundShellFromFaces
333 //purpose  :
334 //=======================================================================
335 TopoDS_Shape GEOMImpl_BooleanDriver::makeCompoundShellFromFaces
336                                (const TopoDS_Shape theShape)const
337 {
338   if (theShape.ShapeType() != TopAbs_COMPOUND)
339     return theShape;
340
341   BRep_Builder B;
342   TopoDS_Compound aFaces;
343   B.MakeCompound(aFaces);
344
345   // simplify compound structure for
346   // Mantis issue 0023419 (note 0021712)
347   TopExp_Explorer aExp;
348   TopTools_MapOfShape aMapFaces;
349   aExp.Init(theShape, TopAbs_FACE);
350   for (; aExp.More(); aExp.Next()) {
351     const TopoDS_Shape& aFace = aExp.Current();
352     if (aMapFaces.Add(aFace)) {
353       B.Add(aFaces, aFace);
354     }
355   }
356
357   TopTools_ListOfShape aListShapes;
358   BOPTools_AlgoTools::MakeConnexityBlocks(aFaces, TopAbs_EDGE, TopAbs_FACE, aListShapes);
359
360   if (aListShapes.IsEmpty())
361     return theShape;
362
363   TopoDS_Compound aResult;
364   B.MakeCompound(aResult);
365   TopTools_ListIteratorOfListOfShape anIter(aListShapes);
366
367   for (; anIter.More(); anIter.Next()) {
368     TopoDS_Shell aShell;
369     B.MakeShell(aShell);
370     TopoDS_Shape aShapeFromFaces = anIter.Value();
371     aExp.Init(aShapeFromFaces, TopAbs_FACE);
372     for (; aExp.More(); aExp.Next()) {
373       const TopoDS_Shape& aFace = aExp.Current();
374       B.Add(aShell, aFace);
375     }
376     if (!aShell.IsNull()) {
377       BOPTools_AlgoTools::OrientFacesOnShell(aShell);
378       B.Add(aResult, aShell);
379     }
380     else
381       B.Add(aResult, aShapeFromFaces);
382   }
383
384   return aResult;
385 }
386
387 //=======================================================================
388 //function : performOperation
389 //purpose  :
390 //=======================================================================
391 TopoDS_Shape GEOMImpl_BooleanDriver::performOperation
392                                (const TopoDS_Shape theShape1,
393                                 const TopoDS_Shape theShape2,
394                                 const Standard_Integer theType)const
395 {
396   TopoDS_Shape aShape;
397
398   // perform COMMON operation
399   if (theType == BOOLEAN_COMMON) {
400     BRep_Builder B;
401     TopoDS_Compound C;
402     B.MakeCompound(C);
403
404     TopTools_ListOfShape listShape1, listShape2;
405     GEOMUtils::AddSimpleShapes(theShape1, listShape1);
406     GEOMUtils::AddSimpleShapes(theShape2, listShape2);
407
408     Standard_Boolean isCompound =
409       (listShape1.Extent() > 1 || listShape2.Extent() > 1);
410
411     TopTools_ListIteratorOfListOfShape itSub1 (listShape1);
412     for (; itSub1.More(); itSub1.Next()) {
413       TopoDS_Shape aValue1 = itSub1.Value();
414       TopTools_ListIteratorOfListOfShape itSub2 (listShape2);
415       for (; itSub2.More(); itSub2.Next()) {
416         TopoDS_Shape aValue2 = itSub2.Value();
417         BRepAlgoAPI_Common BO (aValue1, aValue2);
418         if (!BO.IsDone()) {
419           StdFail_NotDone::Raise("Common operation can not be performed on the given shapes");
420         }
421         if (isCompound) {
422           TopoDS_Shape aStepResult = BO.Shape();
423
424           // check result of this step: if it is a compound (boolean operations
425           // always return a compound), we add all sub-shapes of it.
426           // This allows to avoid adding empty compounds,
427           // resulting from COMMON on two non-intersecting shapes.
428           if (aStepResult.ShapeType() == TopAbs_COMPOUND) {
429             if ((aValue1.ShapeType() == TopAbs_FACE || aValue1.ShapeType() == TopAbs_SHELL) &&
430                 (aValue2.ShapeType() == TopAbs_FACE || aValue2.ShapeType() == TopAbs_SHELL)) {
431               aStepResult = makeCompoundShellFromFaces(aStepResult);
432             }
433             TopoDS_Iterator aCompIter (aStepResult);
434             for (; aCompIter.More(); aCompIter.Next()) {
435               // add shape in a result
436               B.Add(C, aCompIter.Value());
437             }
438           }
439           else {
440             // add shape in a result
441             B.Add(C, aStepResult);
442           }
443         }
444         else
445           aShape = BO.Shape();
446       }
447     }
448
449     if (isCompound) {
450       // As GlueFaces has been improved to keep all kind of shapes
451       TopExp_Explorer anExp (C, TopAbs_VERTEX);
452       if (anExp.More())
453         aShape = GEOMImpl_GlueDriver::GlueFaces(C, Precision::Confusion(), Standard_True);
454       else
455         aShape = C;
456     }
457   }
458
459   // perform CUT operation
460   else if (theType == BOOLEAN_CUT) {
461     BRep_Builder B;
462     TopoDS_Compound C;
463     B.MakeCompound(C);
464
465     TopTools_ListOfShape listShapes, listTools;
466     GEOMUtils::AddSimpleShapes(theShape1, listShapes);
467     GEOMUtils::AddSimpleShapes(theShape2, listTools);
468
469     Standard_Boolean isCompound = (listShapes.Extent() > 1);
470
471     TopTools_ListIteratorOfListOfShape itSub1 (listShapes);
472     for (; itSub1.More(); itSub1.Next()) {
473       TopoDS_Shape aCut = itSub1.Value();
474       // tools
475       TopTools_ListIteratorOfListOfShape itSub2 (listTools);
476       for (; itSub2.More(); itSub2.Next()) {
477         TopoDS_Shape aTool = itSub2.Value();
478         BRepAlgoAPI_Cut BO (aCut, aTool);
479         if (!BO.IsDone()) {
480           StdFail_NotDone::Raise("Cut operation can not be performed on the given shapes");
481         }
482         aCut = BO.Shape();
483       }
484       if (isCompound) {
485         // check result of this step: if it is a compound (boolean operations
486         // always return a compound), we add all sub-shapes of it.
487         // This allows to avoid adding empty compounds,
488         // resulting from CUT of parts
489         if (aCut.ShapeType() == TopAbs_COMPOUND) {
490           if (itSub1.Value().ShapeType() == TopAbs_FACE ||
491               itSub1.Value().ShapeType() == TopAbs_SHELL) {
492             aCut = makeCompoundShellFromFaces(aCut);
493           }
494           TopoDS_Iterator aCompIter (aCut);
495           for (; aCompIter.More(); aCompIter.Next()) {
496             // add shape in a result
497             B.Add(C, aCompIter.Value());
498           }
499         }
500         else {
501           // add shape in a result
502           B.Add(C, aCut);
503         }
504       }
505       else
506         aShape = aCut;
507     }
508
509     if (isCompound) {
510       // As GlueFaces has been improved to keep all kind of shapes
511       TopExp_Explorer anExp (C, TopAbs_VERTEX);
512       if (anExp.More())
513         aShape = GEOMImpl_GlueDriver::GlueFaces(C, Precision::Confusion(), Standard_True);
514       else
515         aShape = C;
516     }
517   }
518
519   // perform FUSE operation
520   else if (theType == BOOLEAN_FUSE) {
521     Standard_Boolean isFaces = Standard_False;
522     TopTools_ListOfShape listShape1, listShape2;
523     GEOMUtils::AddSimpleShapes(theShape1, listShape1);
524     GEOMUtils::AddSimpleShapes(theShape2, listShape2);
525
526     TopTools_ListIteratorOfListOfShape itSub1 (listShape1);
527     for (; itSub1.More(); itSub1.Next()) {
528       TopoDS_Shape aValue1 = itSub1.Value();
529       TopTools_ListIteratorOfListOfShape itSub2 (listShape2);
530       for (; itSub2.More(); itSub2.Next()) {
531         TopoDS_Shape aValue2 = itSub2.Value();
532         if ((aValue1.ShapeType() == TopAbs_FACE || aValue1.ShapeType() == TopAbs_SHELL) &&
533             (aValue2.ShapeType() == TopAbs_FACE || aValue2.ShapeType() == TopAbs_SHELL)) {
534           isFaces = Standard_True;
535         }
536       }
537     }
538
539     // Perform
540     BRepAlgoAPI_Fuse BO (theShape1, theShape2);
541     if (!BO.IsDone()) {
542       StdFail_NotDone::Raise("Fuse operation can not be performed on the given shapes");
543     }
544     aShape = BO.Shape();
545     if (isFaces)
546       aShape = makeCompoundShellFromFaces(aShape);
547   }
548
549   // perform SECTION operation
550   else if (theType == BOOLEAN_SECTION) {
551     BRep_Builder B;
552     TopoDS_Compound C;
553     B.MakeCompound(C);
554
555     TopTools_ListOfShape listShape1, listShape2;
556     GEOMUtils::AddSimpleShapes(theShape1, listShape1);
557     GEOMUtils::AddSimpleShapes(theShape2, listShape2);
558
559     Standard_Boolean isCompound =
560       (listShape1.Extent() > 1 || listShape2.Extent() > 1);
561
562     TopTools_ListIteratorOfListOfShape itSub1 (listShape1);
563     for (; itSub1.More(); itSub1.Next()) {
564       TopoDS_Shape aValue1 = itSub1.Value();
565       TopTools_ListIteratorOfListOfShape itSub2 (listShape2);
566       for (; itSub2.More(); itSub2.Next()) {
567         TopoDS_Shape aValue2 = itSub2.Value();
568         BRepAlgoAPI_Section BO (aValue1, aValue2, Standard_False);
569         // Set approximation to have an attached 3D BSpline geometry to each edge,
570         // where analytic curve is not possible. Without this flag in some cases
571         // we obtain BSpline curve of degree 1 (C0), which is slowly
572         // processed by some algorithms (Partition for example).
573         BO.Approximation(Standard_True);
574         //modified by NIZNHY-PKV Tue Oct 18 14:34:16 2011f
575         BO.ComputePCurveOn1(Standard_True);
576         BO.ComputePCurveOn2(Standard_True);
577         //modified by NIZNHY-PKV Tue Oct 18 14:34:18 2011t
578
579         BO.Build();
580         if (!BO.IsDone()) {
581           StdFail_NotDone::Raise("Section operation can not be performed on the given shapes");
582         }
583         if (isCompound) {
584           TopoDS_Shape aStepResult = BO.Shape();
585
586           // check result of this step: if it is a compound (boolean operations
587           // always return a compound), we add all sub-shapes of it.
588           // This allows to avoid adding empty compounds,
589           // resulting from SECTION on two non-intersecting shapes.
590           if (aStepResult.ShapeType() == TopAbs_COMPOUND) {
591             TopoDS_Iterator aCompIter (aStepResult);
592             for (; aCompIter.More(); aCompIter.Next()) {
593               // add shape in a result
594               B.Add(C, aCompIter.Value());
595             }
596           }
597           else {
598             // add shape in a result
599             B.Add(C, aStepResult);
600           }
601         }
602         else
603           aShape = BO.Shape();
604       }
605     }
606
607     if (isCompound) {
608       // As GlueFaces has been improved to keep all kind of shapes
609       TopExp_Explorer anExp (C, TopAbs_VERTEX);
610       if (anExp.More())
611         aShape = GEOMImpl_GlueDriver::GlueFaces(C, Precision::Confusion(), Standard_True);
612       else
613         aShape = C;
614     }
615   }
616
617   // UNKNOWN operation
618   else {
619   }
620
621   if (aShape.IsNull()) return aShape;
622
623   // as boolean operations always produce compound, lets simplify it
624   // for the case, if it contains only one sub-shape
625   TopTools_ListOfShape listShapeRes;
626   GEOMUtils::AddSimpleShapes(aShape, listShapeRes);
627   if (listShapeRes.Extent() == 1) {
628     aShape = listShapeRes.First();
629     if (aShape.IsNull()) return aShape;
630   }
631
632   // 08.07.2008 skl for bug 19761 from Mantis
633   if ( !GEOMUtils::CheckShape(aShape, true) && !GEOMUtils::FixShapeTolerance(aShape) )
634     Standard_ConstructionError::Raise("Boolean operation aborted : non valid shape result");
635
636   return aShape;
637 }
638
639 //================================================================================
640 /*!
641  * \brief Returns a name of creation operation and names and values of creation parameters
642  */
643 //================================================================================
644
645 bool GEOMImpl_BooleanDriver::
646 GetCreationInformation(std::string&             theOperationName,
647                        std::vector<GEOM_Param>& theParams)
648 {
649   if (Label().IsNull()) return 0;
650   Handle(GEOM_Function) function = GEOM_Function::GetFunction(Label());
651
652   GEOMImpl_IBoolean aCI (function);
653   Standard_Integer aType = function->GetType();
654   Standard_Boolean isCheckSelfInte = aCI.GetCheckSelfIntersection();
655
656   switch ( aType ) {
657   case BOOLEAN_COMMON:
658     theOperationName = "COMMON";
659     AddParam( theParams, "Object 1", aCI.GetShape1() );
660     AddParam( theParams, "Object 2", aCI.GetShape2() );
661     AddParam( theParams, "Check self-intersections", isCheckSelfInte );
662     break;
663   case BOOLEAN_CUT:
664     theOperationName = "CUT";
665     AddParam( theParams, "Main Object", aCI.GetShape1() );
666     AddParam( theParams, "Tool Object", aCI.GetShape2() );
667     AddParam( theParams, "Check self-intersections", isCheckSelfInte );
668     break;
669   case BOOLEAN_FUSE:
670     theOperationName = "FUSE";
671     AddParam( theParams, "Object 1", aCI.GetShape1() );
672     AddParam( theParams, "Object 2", aCI.GetShape2() );
673     AddParam( theParams, "Check self-intersections", isCheckSelfInte );
674     AddParam( theParams, "Remove extra edges", aCI.GetRmExtraEdges() );
675     break;
676   case BOOLEAN_SECTION:
677     theOperationName = "SECTION";
678     AddParam( theParams, "Object 1", aCI.GetShape1() );
679     AddParam( theParams, "Object 2", aCI.GetShape2() );
680     AddParam( theParams, "Check self-intersections", isCheckSelfInte );
681     break;
682   case BOOLEAN_COMMON_LIST:
683     theOperationName = "COMMON";
684     AddParam( theParams, "Selected objects", aCI.GetShapes() );
685     AddParam( theParams, "Check self-intersections", isCheckSelfInte );
686     break;
687   case BOOLEAN_FUSE_LIST:
688     theOperationName = "FUSE";
689     AddParam( theParams, "Selected objects", aCI.GetShapes() );
690     AddParam( theParams, "Check self-intersections", isCheckSelfInte );
691     AddParam( theParams, "Remove extra edges", aCI.GetRmExtraEdges() );
692     break;
693   case BOOLEAN_CUT_LIST:
694     theOperationName = "CUT";
695     AddParam( theParams, "Main Object", aCI.GetShape1() );
696     AddParam( theParams, "Tool Objects", aCI.GetShapes() );
697     AddParam( theParams, "Check self-intersections", isCheckSelfInte );
698     break;
699   default:
700     return false;
701   }
702
703   return true;
704 }
705
706 IMPLEMENT_STANDARD_RTTIEXT (GEOMImpl_BooleanDriver,GEOM_BaseDriver)