Salome HOME
[Code coverage GeomValidators]: Exclude validations related to GUI. Remove unused...
[modules/shaper.git] / src / GeomValidators / GeomValidators_FeatureKind.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_FeatureKind.h"
22
23 #include <Events_InfoMessage.h>
24
25 #include <ModelAPI_AttributeSelectionList.h>
26 #include <ModelAPI_AttributeRefList.h>
27 #include <ModelAPI_AttributeRefAttr.h>
28 #include <ModelAPI_AttributeReference.h>
29 #include <ModelAPI_Object.h>
30
31 #define DEBUG_EXTRUSION_INVALID_SKETCH
32 #ifdef DEBUG_EXTRUSION_INVALID_SKETCH
33   #include <ModelAPI_CompositeFeature.h>
34 #endif
35
36 bool GeomValidators_FeatureKind::isValid(const AttributePtr& theAttribute,
37                                       const std::list<std::string>& theArguments,
38                                       Events_InfoMessage& theError) const
39 {
40   bool isSketchEntities = true;
41   std::set<std::string> anEntityKinds;
42   std::string anEntityKindsStr;
43   std::list<std::string>::const_iterator anIt = theArguments.begin(), aLast = theArguments.end();
44   for (; anIt != aLast; anIt++) {
45     anEntityKinds.insert(*anIt);
46     if (!anEntityKindsStr.empty())
47       anEntityKindsStr += ", ";
48     anEntityKindsStr += *anIt;
49   }
50
51   std::string anAttributeType = theAttribute->attributeType();
52   if (anAttributeType == ModelAPI_AttributeSelection::typeId()) {
53     AttributeSelectionPtr aSelectAttr =
54                       std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(theAttribute);
55     ObjectPtr anObject = aSelectAttr->context();
56     // a context of the selection attribute is a feature result. It can be a case when the result
57     // of the feature is null, e.g. the feature is modified and has not been executed yet.
58     // The validator returns an invalid result here. The case is an extrusion built on a sketch
59     // feature. A new sketch element creation leads to an empty result.
60     if (!anObject.get())
61       isSketchEntities = false;
62     else {
63       FeaturePtr aFeature = ModelAPI_Feature::feature(anObject);
64       isSketchEntities = anEntityKinds.find(aFeature->getKind()) != anEntityKinds.end();
65     }
66   }
67   if (!isSketchEntities) {
68     theError = "It refers to feature, which kind is not in the list: " + anEntityKindsStr;
69   }
70
71   return isSketchEntities;
72 }