X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_FeatureValidator.cpp;h=2db766fc6523b6a5155021c3e9533597291a08bc;hb=883ac186ac2c764c6209cb8ea8043e3bcadc3de9;hp=2bbad12d176b27e3f24b3067235b69657732e48a;hpb=3c3d2b36e230e15ee8384554118ea13ca1415772;p=modules%2Fshaper.git diff --git a/src/Model/Model_FeatureValidator.cpp b/src/Model/Model_FeatureValidator.cpp index 2bbad12d1..2db766fc6 100644 --- a/src/Model/Model_FeatureValidator.cpp +++ b/src/Model/Model_FeatureValidator.cpp @@ -1,34 +1,65 @@ -// File: Model_FeatureValidator.cpp -// Created: 8 Jul 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2019 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 #include #include #include +#include #include #include bool Model_FeatureValidator::isValid(const std::shared_ptr& theFeature, - const std::list& theArguments) const + const std::list& theArguments, + Events_InfoMessage& theError) const { + static Model_ValidatorsFactory* aValidators = + static_cast(ModelAPI_Session::get()->validators()); + std::shared_ptr aData = theFeature->data(); - if (!aData) - return false; - if (!aData->isValid()) - return false; + // "Action" features has no data, but still valid. e.g "Remove Part" + if (!aData->isValid()) { + if (!theFeature->isAction()) + theError = "There is no data."; + return theFeature->isAction(); + } const std::string kAllTypes = ""; std::list aLtAttributes = aData->attributesIDs(kAllTypes); std::list::iterator it = aLtAttributes.begin(); for (; it != aLtAttributes.end(); it++) { AttributePtr anAttr = aData->attribute(*it); - if (!anAttr->isInitialized()) { - std::map >::const_iterator aFeatureFind = + if (!aValidators->isCase(theFeature, anAttr->id())) + continue; // this attribute is not participated in the current case + if (!anAttr->isInitialized()) { // attribute is not initialized + std::map >::const_iterator aFeatureFind = myNotObligatory.find(theFeature->getKind()); - if (aFeatureFind == myNotObligatory.end() || + if (aFeatureFind == myNotObligatory.end() || // and it is obligatory for filling aFeatureFind->second.find(*it) == aFeatureFind->second.end()) { + theError = "Attribute \"%1\" is not initialized."; + theError.addParameter(anAttr->id()); + theError.setContext(theFeature->getKind() + ":" + anAttr->id()); return false; } }