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