Salome HOME
Merge remote-tracking branch 'origin/Toolbars_Management'
[modules/shaper.git] / src / GeomValidators / GeomValidators_ConstructionComposite.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 "GeomValidators_ConstructionComposite.h"
22
23 #include <Events_InfoMessage.h>
24
25 #include "ModelAPI_AttributeSelection.h"
26 #include "ModelAPI_ResultConstruction.h"
27 #include "ModelAPI_CompositeFeature.h"
28
29 bool GeomValidators_ConstructionComposite::isValid(const AttributePtr& theAttribute,
30                                                    const std::list<std::string>& theArguments,
31                                                    Events_InfoMessage& theError) const
32 {
33   bool aValid = true;
34   if (theAttribute->attributeType() != ModelAPI_AttributeSelection::typeId()) {
35 // LCOV_EXCL_START
36     aValid = false;
37     theError = "The attribute with the %1 type is not processed";
38     theError.arg(theAttribute->attributeType());
39     return aValid;
40 // LCOV_EXCL_STOP
41   }
42
43   AttributeSelectionPtr aSelectionAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
44                                                                 (theAttribute);
45   ResultPtr aResult = aSelectionAttr->context();
46   // global selection should be ignored, the filter processes only selected sub-shapes
47   // that means, that the shape of the context result is equal to the shape value
48   ///*ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theSelectedObject);
49   if (!aResult.get()) {
50     aValid = false;
51     theError = "The result is empty";
52   }
53   else {
54     GeomShapePtr aShape = aSelectionAttr->value();
55     GeomShapePtr aShapePtr = aResult->shape();
56     // it is important to call isEqual of the shape of result.
57     // It is a GeomAPI_Vertex shape for the point. The shape of the parameter is
58     // GeomAPI_Shape. It is important to use the realization of the isEqual method from
59     // GeomAPI_Vertex class
60     if (!aShape.get()) {
61       // an empty shape is used in attribute selection if the shape of the result is equal to
62       // the selected shape, so according to the upper condition, the result is true
63       aValid = true;
64     }
65     else {
66       if (aShapePtr->isEqual(aShape)) {
67         aValid = true;
68       }
69       else {
70         ResultConstructionPtr aConstr =
71           std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aResult);
72         if (!aConstr.get()) {
73           // non-construction results should be accepted by this filter, e.g. body results
74           aValid = true;
75         }
76         else {
77           // it provides selection only on composite features, construction without composite
78           // feature is not selectable.
79           FeaturePtr aFeature = ModelAPI_Feature::feature(aConstr);
80           CompositeFeaturePtr aComposite =
81             std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
82           aValid = aComposite && aComposite->numberOfSubs() > 0;
83           if (!aValid)
84             theError = "Uses composite construction feature without sub-features.";
85         }
86       }
87     }
88   }
89   return aValid;
90 }