]> SALOME platform Git repositories - modules/shaper.git/blob - src/BuildPlugin/BuildPlugin_Shell.cpp
Salome HOME
[Code coverage]: Move checking the algorithm's result into separate function
[modules/shaper.git] / src / BuildPlugin / BuildPlugin_Shell.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 "BuildPlugin_Shell.h"
22
23 #include <ModelAPI_AttributeSelectionList.h>
24 #include <ModelAPI_ResultBody.h>
25 #include <ModelAPI_ResultConstruction.h>
26
27 #include <GeomAlgoAPI_Sewing.h>
28 #include <GeomAlgoAPI_Tools.h>
29 #include <GeomAPI_ShapeExplorer.h>
30
31 //=================================================================================================
32 BuildPlugin_Shell::BuildPlugin_Shell()
33 {
34 }
35
36 //=================================================================================================
37 void BuildPlugin_Shell::initAttributes()
38 {
39   data()->addAttribute(BASE_OBJECTS_ID(), ModelAPI_AttributeSelectionList::typeId());
40 }
41
42 //=================================================================================================
43 void BuildPlugin_Shell::execute()
44 {
45   // Get base objects list.
46   AttributeSelectionListPtr aSelectionList = selectionList(BASE_OBJECTS_ID());
47
48   // Collect base shapes.
49   ListOfShape aShapes;
50   for(int anIndex = 0; anIndex < aSelectionList->size(); ++anIndex) {
51     AttributeSelectionPtr aSelection = aSelectionList->value(anIndex);
52     GeomShapePtr aShape = aSelection->value();
53     if(!aShape.get()) {
54       aShape = aSelection->context()->shape();
55     }
56     aShapes.push_back(aShape);
57   }
58
59   // Sew faces.
60   GeomMakeShapePtr aSewingAlgo(new GeomAlgoAPI_Sewing(aShapes));
61
62   std::string anError;
63   if (GeomAlgoAPI_Tools::AlgoError::isAlgorithmFailed(aSewingAlgo, getKind(), anError)) {
64     setError(anError);
65     return;
66   }
67
68   // Store result.
69   GeomShapePtr aResult = aSewingAlgo->shape();
70
71   int anIndex = 0;
72   for(GeomAPI_ShapeExplorer anExp(aResult, GeomAPI_Shape::SHELL); anExp.more(); anExp.next()) {
73     GeomShapePtr aShell = anExp.current();
74     ResultBodyPtr aResultBody = document()->createBody(data(), anIndex);
75     aResultBody->store(aShell);
76     for(ListOfShape::const_iterator anIt = aShapes.cbegin(); anIt != aShapes.cend(); ++anIt) {
77       for (GeomAPI_ShapeExplorer aFaceExp(*anIt, GeomAPI_Shape::FACE);
78            aFaceExp.more();
79            aFaceExp.next())
80       {
81         GeomShapePtr aFace = aFaceExp.current();
82         ListOfShape aHistory;
83         aSewingAlgo->modified(aFace, aHistory);
84         for (ListOfShape::const_iterator aHistoryIt = aHistory.cbegin();
85              aHistoryIt != aHistory.cend();
86              ++aHistoryIt)
87         {
88           GeomShapePtr aHistoryShape = *aHistoryIt;
89           if (aShell->isSubShape(aHistoryShape, false)) {
90             aResultBody->loadModifiedShapes(aSewingAlgo,
91                                             aFace,
92                                             GeomAPI_Shape::EDGE);
93             aResultBody->loadModifiedShapes(aSewingAlgo,
94                                             aFace,
95                                             GeomAPI_Shape::FACE);
96             break;
97           }
98         }
99       }
100     }
101     setResult(aResultBody, anIndex);
102     ++anIndex;
103   }
104
105   removeResults(anIndex);
106 }