Salome HOME
Issue #2547: Measurement - Angle – if selected pair of edges do not intersect, add...
[modules/shaper.git] / src / GeomValidators / GeomValidators_Intersected.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_Intersected.h"
22
23 #include <GeomAPI_Shape.h>
24
25 #include <Events_InfoMessage.h>
26
27 #include <ModelAPI_AttributeSelection.h>
28 #include <ModelAPI_Feature.h>
29
30 bool GeomValidators_Intersected::isValid(const AttributePtr& theAttribute,
31                                          const std::list<std::string>& theArguments,
32                                          Events_InfoMessage& theError) const
33 {
34   if (!theAttribute) {
35     theError = "Error: empty selection.";
36     return false;
37   }
38
39   if (theArguments.empty()) {
40     theError = "Error: compare with nothing";
41     return false;
42   }
43
44   FeaturePtr aFeature = ModelAPI_Feature::feature(theAttribute->owner());
45
46   // get shape selected by theAttribute
47   AttributeSelectionPtr aSelection =
48       std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(theAttribute);
49   GeomShapePtr aBaseShape;
50   if (aSelection)
51     aBaseShape = aSelection->value();
52   if (!aBaseShape && aSelection->context())
53     aBaseShape = aSelection->context()->shape();
54   if (!aBaseShape)
55     return true; // nothing selected, thus applicable
56
57   // check intersection with all arguments
58   bool isOk = true;
59   for (std::list<std::string>::const_iterator anIt = theArguments.begin();
60        anIt != theArguments.end() && isOk; ++anIt) {
61     aSelection = aFeature->selection(*anIt);
62     if (!aSelection) {
63       theError = "Error: incorrect type of attribute";
64       return false;
65     }
66
67     GeomShapePtr aShape;
68     if (aSelection)
69       aShape = aSelection->value();
70     if (!aShape && aSelection->context())
71       aShape = aSelection->context()->shape();
72     if (aShape) {
73       isOk = aBaseShape->isIntersect(aShape);
74     }
75   }
76
77   if (!isOk)
78     theError = "Error: arguments are not intersected";
79   return isOk;
80 }