Salome HOME
Fix for the issue #2718 : results will be removed in case feature is invalid anyway...
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Placement.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 "FeaturesPlugin_Placement.h"
22
23 #include <ModelAPI_ResultConstruction.h>
24 #include <ModelAPI_ResultBody.h>
25 #include <ModelAPI_ResultPart.h>
26 #include <ModelAPI_AttributeSelection.h>
27 #include <ModelAPI_AttributeBoolean.h>
28 #include <ModelAPI_AttributeSelectionList.h>
29 #include <ModelAPI_BodyBuilder.h>
30
31 #include <GeomAPI_Edge.h>
32 #include <GeomAPI_Face.h>
33 #include <GeomAPI_Pln.h>
34 #include <GeomAPI_ShapeIterator.h>
35 #include <GeomAlgoAPI_Placement.h>
36 #include <GeomAlgoAPI_Transform.h>
37
38 #include <FeaturesPlugin_Tools.h>
39
40 FeaturesPlugin_Placement::FeaturesPlugin_Placement()
41 {
42 }
43
44 void FeaturesPlugin_Placement::initAttributes()
45 {
46
47   AttributeSelectionListPtr aSelection =
48     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(data()->addAttribute(
49     OBJECTS_LIST_ID(), ModelAPI_AttributeSelectionList::typeId()));
50
51   data()->addAttribute(START_SHAPE_ID(), ModelAPI_AttributeSelection::typeId());
52   data()->addAttribute(END_SHAPE_ID(), ModelAPI_AttributeSelection::typeId());
53   data()->addAttribute(REVERSE_ID(), ModelAPI_AttributeBoolean::typeId());
54   data()->addAttribute(CENTERING_ID(), ModelAPI_AttributeBoolean::typeId());
55 }
56
57 void FeaturesPlugin_Placement::execute()
58 {
59   // Getting objects.
60   ListOfShape anObjects;
61   std::list<ResultPtr> aContextes;
62   AttributeSelectionListPtr anObjectsSelList = selectionList(OBJECTS_LIST_ID());
63   if(anObjectsSelList->size() == 0) {
64     return;
65   }
66   for(int anObjectsIndex = 0; anObjectsIndex < anObjectsSelList->size(); anObjectsIndex++) {
67     std::shared_ptr<ModelAPI_AttributeSelection> anObjectAttr =
68       anObjectsSelList->value(anObjectsIndex);
69     std::shared_ptr<GeomAPI_Shape> anObject = anObjectAttr->value();
70     if(!anObject.get()) { // may be for not-activated parts
71       return;
72     }
73     anObjects.push_back(anObject);
74     aContextes.push_back(anObjectAttr->context());
75   }
76
77   // Verify the start shape
78   AttributeSelectionPtr anObjRef = selection(START_SHAPE_ID());
79   if(!anObjRef) {
80     return;
81   }
82   std::shared_ptr<GeomAPI_Shape> aStartShape = anObjRef->value();
83   if(!aStartShape) {
84     static const std::string aSelectionError = "Error: The start shape selection is bad.";
85     setError(aSelectionError);
86     return;
87   }
88
89
90   std::shared_ptr<GeomAPI_Shape> aStartShapeContext;
91   ResultPtr aContextRes = anObjRef->context();
92   if (aContextRes.get()) {
93     aStartShapeContext = aContextRes->shape();
94   }
95   if(!aStartShapeContext.get()) {
96     static const std::string aContextError = "Error: The start shape selection context is bad.";
97     setError(aContextError);
98     return;
99   }
100
101   // Verify the end shape
102   anObjRef = selection(END_SHAPE_ID());
103   std::shared_ptr<GeomAPI_Shape> anEndShape = anObjRef->value();
104   if(!anEndShape) {
105     static const std::string aSelectionError = "Error: The end shape selection is bad.";
106     setError(aSelectionError);
107     return;
108   }
109
110   std::shared_ptr<GeomAPI_Shape> anEndShapeContext;
111   aContextRes = anObjRef->context();
112   if(aContextRes.get()) {
113     anEndShapeContext = aContextRes->shape();
114   }
115   if(!anEndShapeContext.get()) {
116     static const std::string aContextError = "Error: The end shape selection context is bad.";
117     setError(aContextError);
118     return;
119   }
120
121   // Verify planarity of faces and linearity of edges
122   std::shared_ptr<GeomAPI_Shape> aShapes[2] = {aStartShape, anEndShape};
123   for (int i = 0; i < 2; i++) {
124     if (!isShapeValid(aShapes[i])) {
125       return;
126     }
127   }
128
129   // Flags of the Placement
130   bool isReverse = boolean(REVERSE_ID())->value();
131   bool isCentering = boolean(CENTERING_ID())->value();
132
133   // Getting transformation.
134   GeomAlgoAPI_Placement aPlacementAlgo(
135     aStartShapeContext, anEndShapeContext, aStartShape, anEndShape, isReverse, isCentering, true);
136   if(!aPlacementAlgo.isDone()) {
137     static const std::string aFeatureError = "Error: Placement algorithm failed.";
138     setError(aFeatureError);
139     return;
140   }
141   std::shared_ptr<GeomAPI_Trsf> aTrsf = aPlacementAlgo.transformation();
142
143   // Applying transformation to each object.
144   int aResultIndex = 0;
145   std::list<ResultPtr>::iterator aContext = aContextes.begin();
146   for(ListOfShape::iterator anObjectsIt = anObjects.begin(); anObjectsIt != anObjects.end();
147       anObjectsIt++, aContext++) {
148
149     // for part results just set transformation
150     if (aContext->get() && (*aContext)->groupName() == ModelAPI_ResultPart::group()) {
151       ResultPartPtr anOrigin = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aContext);
152       ResultPartPtr aResultPart = document()->copyPart(anOrigin, data(), aResultIndex);
153       aResultPart->setTrsf(aContextRes, aTrsf);
154       setResult(aResultPart, aResultIndex);
155     } else {
156       std::shared_ptr<GeomAPI_Shape> aBaseShape = *anObjectsIt;
157       std::shared_ptr<GeomAlgoAPI_Transform> aTransformAlgo(new GeomAlgoAPI_Transform(aBaseShape,
158                                                                                       aTrsf));
159
160       // Checking that the algorithm worked properly.
161       if(!aTransformAlgo->isDone()) {
162         static const std::string aFeatureError = "Error: Transform algorithm failed.";
163         setError(aFeatureError);
164         break;
165       }
166       if(aTransformAlgo->shape()->isNull()) {
167         static const std::string aShapeError = "Error: Resulting shape is Null.";
168         setError(aShapeError);
169         break;
170       }
171       if(!aTransformAlgo->isValid()) {
172         std::string aFeatureError = "Error: Resulting shape is not valid.";
173         setError(aFeatureError);
174         break;
175       }
176
177       //LoadNamingDS
178       ResultBodyPtr aResultBody = document()->createBody(data(), aResultIndex);
179       aResultBody->storeModified(aBaseShape, aTransformAlgo->shape());
180       FeaturesPlugin_Tools::loadModifiedShapes(aResultBody, aBaseShape, aTransformAlgo, "Placed");
181       setResult(aResultBody, aResultIndex);
182     }
183     aResultIndex++;
184   }
185
186   // Remove the rest results if there were produced in the previous pass.
187   removeResults(aResultIndex);
188 }
189
190 //==================================================================================================
191 bool FeaturesPlugin_Placement::isShapeValid(GeomShapePtr theShape)
192 {
193   if (theShape->isCompound()) {
194     GeomAPI_Shape::ShapeType aShapeType = GeomAPI_Shape::SHAPE;
195     for (GeomAPI_ShapeIterator anIt(theShape); anIt.more(); anIt.next()) {
196       GeomShapePtr aCurrentShape = anIt.current();
197       if (aShapeType == GeomAPI_Shape::SHAPE) {
198         aShapeType = aCurrentShape->shapeType();
199       }
200       else if (aShapeType != aCurrentShape->shapeType()) {
201         static const std::string aLinearityError =
202           "Error: Selected compound contains shapes with different types.";
203         setError(aLinearityError);
204         return false;
205       }
206
207       if (!isShapeValid(aCurrentShape)) {
208         return false;
209       }
210     }
211   }
212   else if (theShape->isFace()) {
213     std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(theShape));
214     if (!aFace->isPlanar()) {
215       static const std::string aPlanarityError = "Error: One of selected faces is not planar.";
216       setError(aPlanarityError);
217       return false;
218     }
219   }
220   else if (theShape->isEdge()) {
221     std::shared_ptr<GeomAPI_Edge> anEdge(new GeomAPI_Edge(theShape));
222     if (!anEdge->isLine()) {
223       static const std::string aLinearityError = "Error: One of selected edges is not linear.";
224       setError(aLinearityError);
225       return false;
226     }
227   }
228
229   return true;
230 }