X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomValidators%2FGeomValidators_Finite.cpp;h=3393f9b6984f67ff2a790388b601082bda51e810;hb=b928c27cd38f150c23d182df53c23ab266aa6b49;hp=e4f623104adc10b66c2305bd98c3ea3fe0f9c27e;hpb=d42b3c64fb51ebaaacc8b79fb0e86977b488476d;p=modules%2Fshaper.git diff --git a/src/GeomValidators/GeomValidators_Finite.cpp b/src/GeomValidators/GeomValidators_Finite.cpp old mode 100755 new mode 100644 index e4f623104..3393f9b69 --- a/src/GeomValidators/GeomValidators_Finite.cpp +++ b/src/GeomValidators/GeomValidators_Finite.cpp @@ -1,30 +1,59 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomValidators_Finite.cpp -// Created: 27 Aug 2015 -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2022 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include +#include + #include #include bool GeomValidators_Finite::isValid(const AttributePtr& theAttribute, - const std::list& theArguments, - std::string& theError) const + const std::list& /*theArguments*/, + Events_InfoMessage& theError) const { bool aValid = true; - if (theAttribute->attributeType() == ModelAPI_AttributeSelectionList::typeId()) { - AttributeSelectionListPtr aSelectionListAttr = + const std::string anAttributeType = theAttribute->attributeType(); + + if(anAttributeType == ModelAPI_AttributeSelection::typeId()) { + AttributeSelectionPtr aSelectionAttr = + std::dynamic_pointer_cast(theAttribute); + ResultPtr aResult = aSelectionAttr->context(); + ResultConstructionPtr aConstruction = + std::dynamic_pointer_cast(aResult); + if (aConstruction.get() && aConstruction->isInfinite()) { + aValid = false; + theError = "Infinite result is selected."; + } + } else if(anAttributeType == ModelAPI_AttributeSelectionList::typeId()) { + AttributeSelectionListPtr aSelectionListAttr = std::dynamic_pointer_cast(theAttribute); for (int i = 0, aSize = aSelectionListAttr->size(); i < aSize; i++) { AttributeSelectionPtr aSelectAttr = aSelectionListAttr->value(i); ResultPtr aResult = aSelectAttr->context(); if (aResult.get() && aResult->groupName() == ModelAPI_ResultConstruction::group()) { - ResultConstructionPtr aConstruction = std::dynamic_pointer_cast(aResult); + ResultConstructionPtr aConstruction = + std::dynamic_pointer_cast(aResult); if (aConstruction.get() && aConstruction->isInfinite()) { aValid = false; + theError = "Infinite result is selected."; } } }