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