Salome HOME
6021e3951cefc42df7e2442b465d786d0aa020c1
[modules/shaper.git] / src / FiltersPlugin / FiltersPlugin_ExternalFaces.cpp
1 // Copyright (C) 2014-2023  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 email : webmaster.salome@opencascade.com
18 //
19
20 #include "FiltersPlugin_ExternalFaces.h"
21
22 #include <ModelAPI_Tools.h>
23
24 #include <TopExp.hxx>
25 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
26
27 bool FiltersPlugin_ExternalFaces::isSupported(GeomAPI_Shape::ShapeType theType) const
28 {
29   return theType == GeomAPI_Shape::FACE;
30 }
31
32 bool FiltersPlugin_ExternalFaces::isOk(const GeomShapePtr& theShape,
33                                        const ResultPtr& theResult,
34                                        const ModelAPI_FiltersArgs& /*theArgs*/) const
35 {
36   if (!theShape->isFace())
37     return false;
38
39   // verify INTERNAL flag
40   TopoDS_Shape aShape = theShape->impl<TopoDS_Shape>();
41   if (aShape.Orientation() == TopAbs_INTERNAL)
42     return false;
43
44   // check number of solids containing the face
45   ResultBodyPtr anOwner = ModelAPI_Tools::bodyOwner(theResult, true);
46   if (!anOwner) {
47     anOwner = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theResult);
48     if (!anOwner)
49       return false;
50   }
51   GeomShapePtr anOwnerShape = anOwner->shape();
52
53   TopTools_IndexedDataMapOfShapeListOfShape aMapFS;
54   TopExp::MapShapesAndUniqueAncestors(anOwnerShape->impl<TopoDS_Shape>(),
55                                       TopAbs_FACE, TopAbs_SOLID, aMapFS);
56   const TopTools_ListOfShape& aSolids = aMapFS.FindFromKey(aShape);
57   return aSolids.Extent() <= 1;
58 }