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