Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / GeomValidators / GeomValidators_IntersectionSelection.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_IntersectionSelection.h"
21
22 #include <GeomAPI_Shape.h>
23
24 #include <Events_InfoMessage.h>
25
26 #include <ModelAPI_AttributeInteger.h>
27 #include <ModelAPI_AttributeSelectionList.h>
28 #include <ModelAPI_Feature.h>
29
30 bool GeomValidators_IntersectionSelection::isValid(const AttributePtr& theAttribute,
31                                                    const std::list<std::string>& theArguments,
32                                                    Events_InfoMessage& theError) const
33 {
34   if(!theAttribute.get()) {
35     theError = "Error: empty selection.";
36     return false;
37   }
38   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
39   AttributeSelectionListPtr anAttrSelectionList =
40     std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(theAttribute);
41   for(int anIndex = 0; anIndex < anAttrSelectionList->size(); ++anIndex) {
42     AttributeSelectionPtr anAttrSelection = anAttrSelectionList->value(anIndex);
43     if(!anAttrSelection.get()) {
44       theError = "Error: empty attribute selection.";
45       return false;
46     }
47     ResultPtr aContext = anAttrSelection->context();
48     if(!aContext.get()) {
49       theError = "Error: empty selection context.";
50       return false;
51     }
52     FeaturePtr aFeature = ModelAPI_Feature::feature(aContext);
53     if(!aFeature.get()) {
54       theError = "Error: empty feature.";
55       return false;
56     }
57     std::string aFeatureKind = aFeature->getKind();
58     if(aFeatureKind == "Sketch" ||
59        aFeatureKind == "Plane" ||
60        aFeatureKind == "Axis") {
61       theError = "Error: %1 shape is not allowed for selection.";
62       theError.arg(aFeatureKind);
63       return false;
64     }
65     std::shared_ptr<GeomAPI_Shape> aShape = anAttrSelection->value();
66     GeomShapePtr aContextShape = aContext->shape();
67     if(!aShape.get()) {
68       aShape = aContextShape;
69     }
70     if(!aShape.get()) {
71       theError = "Error: empty shape.";
72       return false;
73     }
74     if(!aShape->isEqual(aContextShape)) {
75       theError = "Error: Local selection not allowed.";
76       return false;
77     }
78
79     int aShapeType = aShape->shapeType();
80     // Allow to select edges, faces and solids.
81     if(aShapeType != GeomAPI_Shape::EDGE &&
82        aShapeType != GeomAPI_Shape::FACE &&
83        aShapeType != GeomAPI_Shape::SOLID &&
84        aShapeType != GeomAPI_Shape::COMPSOLID &&
85        aShapeType != GeomAPI_Shape::COMPOUND) {
86       theError = "Error: selected shape has the wrong type.";
87       return false;
88     }
89   }
90
91   return true;
92 }