Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / GeomValidators / GeomValidators_DifferentShapes.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_DifferentShapes.h"
22
23 #include <Events_InfoMessage.h>
24
25 #include <ModelAPI_AttributeSelection.h>
26 #include "ModelAPI_Object.h"
27
28 #include <GeomAPI_Shape.h>
29
30 bool GeomValidators_DifferentShapes::isValid(const AttributePtr& theAttribute,
31                                       const std::list<std::string>& theArguments,
32                                       Events_InfoMessage& theError) const
33 {
34   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttribute->owner());
35   AttributeSelectionPtr aSelectionAttribute =
36                      std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(theAttribute);
37   GeomShapePtr aShape = aSelectionAttribute->value();
38   if (!aShape.get()) {
39     ResultPtr aResult = aSelectionAttribute->context();
40     if (aResult.get())
41       aShape = aResult->shape();
42   }
43
44   std::string aCurrentAttributeId = theAttribute->id();
45   // get all feature attributes
46   std::list<AttributePtr> anAttrs =
47       aFeature->data()->attributes(ModelAPI_AttributeSelection::typeId());
48   if (anAttrs.size() > 0 && aShape.get() != NULL) {
49     std::list<AttributePtr>::iterator anAttr = anAttrs.begin();
50     for(; anAttr != anAttrs.end(); anAttr++) {
51       AttributePtr anAttribute = *anAttr;
52       // take into concideration only other attributes
53       if (anAttribute.get() != NULL && anAttribute->id() != aCurrentAttributeId) {
54         aSelectionAttribute =
55           std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(anAttribute);
56         // the shape of the attribute should be not the same
57         if (aSelectionAttribute.get() != NULL) {
58           GeomShapePtr anAttrShape = aSelectionAttribute->value();
59           if (!anAttrShape.get()) {
60             ResultPtr aResult = aSelectionAttribute->context();
61             if (aResult.get())
62               anAttrShape = aResult->shape();
63           }
64           if (aShape->isEqual(anAttrShape)) {
65             theError = "The feature uses equal shapes.";
66             return false;
67           }
68         }
69       }
70     }
71   }
72   return true;
73 }