Salome HOME
Fix for the issue #2718 : results will be removed in case feature is invalid anyway...
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_ValidatorTransform.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 "FeaturesPlugin_ValidatorTransform.h"
22
23 #include <Events_InfoMessage.h>
24
25 #include "ModelAPI_AttributeSelectionList.h"
26 #include "ModelAPI_ResultPart.h"
27 #include "ModelAPI_ResultBody.h"
28 #include "ModelAPI_Session.h"
29
30 bool FeaturesPlugin_ValidatorTransform::isValid(const AttributePtr& theAttribute,
31                                                 const std::list<std::string>& theArguments,
32                                                 Events_InfoMessage& theError) const
33 {
34   bool aValid = true;
35   std::string anAttributeType = theAttribute->attributeType();
36   if (anAttributeType != ModelAPI_AttributeSelectionList::typeId()) {
37     theError = "The attribute with the %1 type is not processed";
38     theError.arg(theAttribute->attributeType());
39     return false;
40   }
41
42   std::shared_ptr<ModelAPI_AttributeSelectionList> aCurSelList =
43                            std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(theAttribute);
44
45   DocumentPtr aDocument = theAttribute->owner()->document();
46   SessionPtr aMgr = ModelAPI_Session::get();
47   bool isPartSetDocument = aDocument == aMgr->moduleDocument();
48
49   std::string anErrorGroupName;
50   for(int i = 0; i < aCurSelList->size() && aValid; i++) {
51     std::shared_ptr<ModelAPI_AttributeSelection> aSelAttribute = aCurSelList->value(i);
52     ResultPtr aResult = aSelAttribute->context();
53     if (!aResult) {
54       // this could be a whole feature selected
55       FeaturePtr aFeature = aSelAttribute->contextFeature();
56       if (aFeature.get() && aFeature->results().size() > 0) {
57         if (aFeature->firstResult()->groupName() != ModelAPI_ResultBody::group()) {
58           anErrorGroupName = aFeature->firstResult()->groupName();
59           aValid = false;
60           break;
61         }
62         continue;
63       }
64       theError = "Invalid selection.";
65       return false;
66     }
67     if (isPartSetDocument) // PartSet document: Result Part is valid
68       aValid = aResult->groupName() == ModelAPI_ResultPart::group();
69     else { // Part document: Result CompSolid is valid
70       aValid = aResult->groupName() == ModelAPI_ResultBody::group();
71       if (aValid) {
72         ResultBodyPtr aComp = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
73         aValid = aComp.get() != NULL;
74       }
75     }
76     if (!aValid)
77       anErrorGroupName = aResult->groupName();
78   }
79   if (!aValid) {
80     std::string aResultGroupName = isPartSetDocument ? ModelAPI_ResultPart::group()
81                                                      : ModelAPI_ResultBody::group();
82     theError = "Objects from the %1 group can be selected in the %2 document, "
83                "but an objects from the %3 group is selected.";
84     theError.arg(aResultGroupName).arg(aDocument->kind()).arg(anErrorGroupName);
85   }
86   return aValid;
87 }