]> SALOME platform Git repositories - modules/shaper.git/blob - src/GeomValidators/GeomValidators_Intersected.cpp
Salome HOME
Merge remote-tracking branch 'origin/Toolbars_Management'
[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 // LCOV_EXCL_START
35   if (!theAttribute) {
36     theError = "Error: empty selection.";
37     return false;
38   }
39
40   if (theArguments.empty()) {
41     theError = "Error: compare with nothing";
42     return false;
43   }
44 // LCOV_EXCL_STOP
45
46   FeaturePtr aFeature = ModelAPI_Feature::feature(theAttribute->owner());
47
48   // get shape selected by theAttribute
49   AttributeSelectionPtr aSelection =
50       std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(theAttribute);
51   GeomShapePtr aBaseShape;
52   if (aSelection)
53     aBaseShape = aSelection->value();
54   if (!aBaseShape && aSelection->context())
55     aBaseShape = aSelection->context()->shape();
56   if (!aBaseShape)
57     return true; // nothing selected, thus applicable
58
59   // check intersection with all arguments
60   bool isOk = true;
61   for (std::list<std::string>::const_iterator anIt = theArguments.begin();
62        anIt != theArguments.end() && isOk; ++anIt) {
63     aSelection = aFeature->selection(*anIt);
64 // LCOV_EXCL_START
65     if (!aSelection) {
66       theError = "Error: incorrect type of attribute";
67       return false;
68     }
69 // LCOV_EXCL_STOP
70
71     GeomShapePtr aShape;
72     if (aSelection)
73       aShape = aSelection->value();
74     if (!aShape && aSelection->context())
75       aShape = aSelection->context()->shape();
76     if (aShape) {
77       isOk = aBaseShape->isIntersect(aShape);
78     }
79   }
80
81   if (!isOk)
82     theError = "Error: arguments are not intersected";
83   return isOk;
84 }