X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.cpp;h=8ac870edd88424c88ac037d260761053ed4362c5;hb=745c72679f6346375d5e886b25cc3865f3c4daae;hp=987db716ea98142151bf654ad24eda776f23bb18;hpb=caeb775daadc87ddd310c9cd718987f0e55d8a18;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.cpp b/src/Model/Model_Validator.cpp index 987db716e..8ac870edd 100644 --- a/src/Model/Model_Validator.cpp +++ b/src/Model/Model_Validator.cpp @@ -1,22 +1,43 @@ -// File: Model_Validator.cpp -// Created: 2 Jul 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2021 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 "Model_Validator.h" + +#include "Model_AttributeValidator.h" +#include "Model_FeatureValidator.h" -#include -#include -#include #include -#include +#include #include -#include +#include +#include +#include + +#include -const static std::string kDefaultId = "Model_FeatureValidator"; +#include void Model_ValidatorsFactory::registerValidator(const std::string& theID, ModelAPI_Validator* theValidator) { if (myIDs.find(theID) != myIDs.end()) { - Events_Error::send(std::string("Validator ") + theID + " is already registered"); + Events_InfoMessage("Model_Validator", "Validator %1 is already registered").arg(theID).send(); } else { myIDs[theID] = theValidator; } @@ -29,7 +50,7 @@ void Model_ValidatorsFactory::assignValidator(const std::string& theID, myFeatures[theFeatureID] = AttrValidators(); } if (myFeatures[theFeatureID].find(theID) != myFeatures[theFeatureID].end()) { - //Events_Error::send(std::string("Validator ") + theID + + //Events_Error::send(std::string("Validator ") + theID + // " for feature " + theFeatureID + "is already registered"); } else { myFeatures[theFeatureID][theID] = std::list(); @@ -45,7 +66,7 @@ void Model_ValidatorsFactory::assignValidator(const std::string& theID, } if (myFeatures[theFeatureID].find(theID) != myFeatures[theFeatureID].end()) { - //Events_Error::send(std::string("Validator ") + theID + + //Events_Error::send(std::string("Validator ") + theID + // " for feature " + theFeatureID + "is already registered"); } else { myFeatures[theFeatureID][theID] = theArguments; @@ -73,55 +94,53 @@ void Model_ValidatorsFactory::assignValidator(const std::string& theID, } void Model_ValidatorsFactory::validators(const std::string& theFeatureID, - std::list& theResult, - std::list >& theArguments) const -{ - std::map::const_iterator aFeature = myFeatures.find(theFeatureID); - if (aFeature != myFeatures.cend()) { - AttrValidators::const_iterator aValIter = aFeature->second.cbegin(); - for (; aValIter != aFeature->second.cend(); aValIter++) { - std::map::const_iterator aFound = - myIDs.find(aValIter->first); - if (aFound == myIDs.end()) { - Events_Error::send(std::string("Validator ") + aValIter->first + " was not registered"); + Validators& theValidators) const +{ + std::map::const_iterator aFeatureIt = + myFeatures.find(theFeatureID); + if (aFeatureIt != myFeatures.cend()) { + AttrValidators::const_iterator aValidatorsIt = aFeatureIt->second.cbegin(); + for (; aValidatorsIt != aFeatureIt->second.cend(); aValidatorsIt++) { + if (!validator(aValidatorsIt->first)) { + Events_InfoMessage("Model_Validator", "Validator %1 was not registered") + .arg(aValidatorsIt->first).send(); } else { - theResult.push_back(aFound->second); - theArguments.push_back(aValIter->second); + theValidators.push_back(std::make_pair(aValidatorsIt->first, aValidatorsIt->second)); } } } - addDefaultValidators(theResult); + addDefaultValidators(theValidators); } void Model_ValidatorsFactory::validators(const std::string& theFeatureID, - const std::string& theAttrID, - std::list& theValidators, - std::list >& theArguments) const -{ - std::map >::const_iterator aFeature = - myAttrs.find(theFeatureID); - if (aFeature != myAttrs.cend()) { - std::map::const_iterator anAttr = aFeature->second.find(theAttrID); - if (anAttr != aFeature->second.end()) { - AttrValidators::const_iterator aValIter = anAttr->second.cbegin(); - for (; aValIter != anAttr->second.cend(); aValIter++) { - std::map::const_iterator aFound = myIDs.find( - aValIter->first); - if (aFound == myIDs.end()) { - Events_Error::send(std::string("Validator ") + aValIter->first + " was not registered"); + const std::string& theAttrID, + Validators& theValidators) const +{ + std::map >::const_iterator aFeatureIt = + myAttrs.find(theFeatureID); + if (aFeatureIt != myAttrs.cend()) { + std::map::const_iterator anAttrIt = + aFeatureIt->second.find(theAttrID); + if (anAttrIt != aFeatureIt->second.end()) { + AttrValidators::const_iterator aValidatorsIt = anAttrIt->second.cbegin(); + for (; aValidatorsIt != anAttrIt->second.cend(); aValidatorsIt++) { + if (!validator(aValidatorsIt->first)) { + Events_InfoMessage("Model_Validator", "Validator %1 was not registered") + .arg(aValidatorsIt->first).send(); } else { - theValidators.push_back(aFound->second); - theArguments.push_back(aValIter->second); + theValidators.push_back(std::make_pair(aValidatorsIt->first, aValidatorsIt->second)); } } } } + addDefaultAttributeValidators(theValidators); } Model_ValidatorsFactory::Model_ValidatorsFactory() : ModelAPI_ValidatorsFactory() { - registerValidator(kDefaultId, new Model_FeatureValidator); + registerValidator("Model_FeatureValidator", new Model_FeatureValidator); + registerValidator("Model_AttributeValidator", new Model_AttributeValidator); } const ModelAPI_Validator* Model_ValidatorsFactory::validator(const std::string& theID) const @@ -133,87 +152,123 @@ const ModelAPI_Validator* Model_ValidatorsFactory::validator(const std::string& return NULL; } -void Model_ValidatorsFactory::addDefaultValidators(std::list& theValidators) const +void Model_ValidatorsFactory::addDefaultValidators(Validators& theValidators) const { - std::map::const_iterator it = myIDs.find(kDefaultId); - if(it == myIDs.end()) + const static std::string kDefaultId = "Model_FeatureValidator"; + if (!validator(kDefaultId)) + return; + theValidators.push_back(std::make_pair(kDefaultId, std::list())); +} + +void Model_ValidatorsFactory::addDefaultAttributeValidators(Validators& theValidators) const +{ + const static std::string kDefaultId = "Model_AttributeValidator"; + if (!validator(kDefaultId)) return; - theValidators.push_back(it->second); + theValidators.push_back(std::make_pair(kDefaultId, std::list())); } -bool Model_ValidatorsFactory::validate(const boost::shared_ptr& theFeature) const +bool Model_ValidatorsFactory::validate(const std::shared_ptr& theFeature) const { + std::shared_ptr aData = std::dynamic_pointer_cast(theFeature->data()); + if (aData.get() && aData->isValid()) { + if (aData->execState() == ModelAPI_StateDone) + aData->eraseErrorString(); // no error => erase the information string + } else { + return false; // feature is broken, already not presented in the data structure + } + // check feature validators first - std::map::const_iterator aFeature = - myFeatures.find(theFeature->getKind()); - if (aFeature != myFeatures.end()) { - AttrValidators::const_iterator aValidator = aFeature->second.begin(); - for(; aValidator != aFeature->second.end(); aValidator++) { - std::map::const_iterator aValFind = - myIDs.find(aValidator->first); - if (aValFind == myIDs.end()) { - Events_Error::send(std::string("Validator ") + aValidator->first + " was not registered"); - continue; - } - const ModelAPI_FeatureValidator* aFValidator = - dynamic_cast(aValFind->second); + Validators aValidators; + validators(theFeature->getKind(), aValidators); + + if (!aValidators.empty()) { + Validators::const_iterator aValidatorIt = aValidators.cbegin(); + for(; aValidatorIt != aValidators.cend(); aValidatorIt++) { + const std::string& aValidatorID = aValidatorIt->first; + const std::list& anArguments = aValidatorIt->second; + const ModelAPI_FeatureValidator* aFValidator = + dynamic_cast(validator(aValidatorID)); if (aFValidator) { - if (!aFValidator->isValid(theFeature, aValidator->second)) + Events_InfoMessage anError; + if (!aFValidator->isValid(theFeature, anArguments, anError)) { + if (anError.empty()) + anError = "Unknown error."; + if (anError.context().empty()) { + anError.setContext(theFeature->getKind() + ":" + aValidatorID); + } + theFeature->setError(Config_Translator::translate(anError), false, false); + theFeature->data()->execState(ModelAPI_StateInvalidArgument); return false; + } } } } - // check default validator - std::map::const_iterator aDefaultVal = myIDs.find(kDefaultId); - if(aDefaultVal != myIDs.end()) { - static const std::list anEmptyArgList; - const ModelAPI_FeatureValidator* aFValidator = - dynamic_cast(aDefaultVal->second); - if (aFValidator) { - if (!aFValidator->isValid(theFeature, anEmptyArgList)) - return false; - } - } + // check all attributes for validity - boost::shared_ptr aData = theFeature->data(); - if (!aData->isValid()) - return false; static const std::string kAllTypes = ""; - std::map >::const_iterator aFeatureIter = - myAttrs.find(theFeature->getKind()); - if (aFeatureIter != myAttrs.cend()) { - std::list aLtAttributes = aData->attributesIDs(kAllTypes); - std::list::iterator anAttrIter = aLtAttributes.begin(); - for (; anAttrIter != aLtAttributes.end(); anAttrIter++) { - std::map::const_iterator anAttr = - aFeatureIter->second.find(*anAttrIter); - if (anAttr != aFeatureIter->second.end()) { - AttrValidators::const_iterator aValIter = anAttr->second.cbegin(); - for (; aValIter != anAttr->second.cend(); aValIter++) { - std::map::const_iterator aFound = myIDs.find( - aValIter->first); - if (aFound == myIDs.end()) { - Events_Error::send(std::string("Validator ") + aValIter->first + " was not registered"); - } else { - const ModelAPI_AttributeValidator* anAttrValidator = - dynamic_cast(aFound->second); - if (anAttrValidator) { - AttributePtr anAttribute = theFeature->data()->attribute(*anAttrIter); - if (!anAttrValidator->isValid(anAttribute, aValIter->second)) { - return false; - } - } - } - } + std::list aLtAttributes = aData->attributesIDs(kAllTypes); + std::list::const_iterator anAttrIt = aLtAttributes.cbegin(); + for (; anAttrIt != aLtAttributes.cend(); anAttrIt++) { + const std::string& anAttributeID = *anAttrIt; + AttributePtr anAttribute = theFeature->data()->attribute(anAttributeID); + + std::string aValidatorID; + Events_InfoMessage anError; + if (!validate(anAttribute, aValidatorID, anError)) { + if (anError.empty()) + anError = "Unknown error."; + if (anError.context().empty()) { + anError.setContext(theFeature->getKind() + ":" + anAttributeID + ":" + aValidatorID); } + theFeature->setError(Config_Translator::translate(anError), false, false); + theFeature->data()->execState(ModelAPI_StateInvalidArgument); + return false; } } + return true; } -void Model_ValidatorsFactory::registerNotObligatory( - std::string theFeature, std::string theAttribute) +bool Model_ValidatorsFactory::validate(const std::shared_ptr& theAttribute, + std::string& theValidator, + Events_InfoMessage& theError) const { + FeaturePtr aFeature = ModelAPI_Feature::feature(theAttribute->owner()); + if (!aFeature.get()) { + theValidator = "Model_ValidatorsFactory"; + theError = "Attribute has no feature."; + return false; + } + + // skip not-case attributes, that really may be invalid (issue 671) + if (!const_cast(this)->isCase(aFeature, theAttribute->id())) + return true; + + Validators aValidators; + validators(aFeature->getKind(), theAttribute->id(), aValidators); + + Validators::iterator aValidatorIt = aValidators.begin(); + for (; aValidatorIt != aValidators.end(); ++aValidatorIt) { + const std::string& aValidatorID = aValidatorIt->first; + const std::list& anArguments = aValidatorIt->second; + const ModelAPI_AttributeValidator* anAttrValidator = + dynamic_cast(validator(aValidatorID)); + if (!anAttrValidator) + continue; + if (!anAttrValidator->isValid(theAttribute, anArguments, theError)) { + theValidator = aValidatorID; + return false; + } + } + + return true; +} + +void Model_ValidatorsFactory::registerNotObligatory(std::string theFeature, + std::string theAttribute) +{ + const static std::string kDefaultId = "Model_FeatureValidator"; std::map::const_iterator it = myIDs.find(kDefaultId); if (it != myIDs.end()) { Model_FeatureValidator* aValidator = dynamic_cast(it->second); @@ -222,3 +277,126 @@ void Model_ValidatorsFactory::registerNotObligatory( } } } + +bool Model_ValidatorsFactory::isNotObligatory(std::string theFeature, std::string theAttribute) +{ + const static std::string kDefaultId = "Model_FeatureValidator"; + std::map::const_iterator it = myIDs.find(kDefaultId); + if (it != myIDs.end()) { + Model_FeatureValidator* aValidator = dynamic_cast(it->second); + if (aValidator) { + return aValidator->isNotObligatory(theFeature, theAttribute); + } + } + return false; // default +} + +void Model_ValidatorsFactory::registerConcealment(std::string theFeature, std::string theAttribute) +{ + std::map >::iterator aFind = myConcealed.find(theFeature); + if (aFind == myConcealed.end()) { + std::set aNewSet; + aNewSet.insert(theAttribute); + myConcealed[theFeature] = aNewSet; + } else { + aFind->second.insert(theAttribute); + } +} + +bool Model_ValidatorsFactory::isConcealed(std::string theFeature, std::string theAttribute) +{ + std::map >::iterator aFind = myConcealed.find(theFeature); + return aFind != myConcealed.end() && aFind->second.find(theAttribute) != aFind->second.end(); +} + +void Model_ValidatorsFactory::registerCase(std::string theFeature, std::string theAttribute, + const std::list >& theCases) +{ + std::map > > > + ::iterator aFindFeature = myCases.find(theFeature); + if (aFindFeature == myCases.end()) { + myCases[theFeature] = std::map > >(); + aFindFeature = myCases.find(theFeature); + } + std::map > >::iterator aFindAttrID = + aFindFeature->second.find(theAttribute); + + if (aFindAttrID == aFindFeature->second.end()) { + aFindFeature->second[theAttribute] = + std::map >(); + aFindAttrID = aFindFeature->second.find(theAttribute); + } + std::list >::const_iterator aCasesIt = theCases.begin(), + aCasesLast = theCases.end(); + std::map > aFindCases = aFindAttrID->second; + for (; aCasesIt != aCasesLast; aCasesIt++) { + std::pair aCasePair = *aCasesIt; + std::string aSwitch = aCasePair.first; + if (aFindAttrID->second.find(aSwitch) == aFindAttrID->second.end()) { + aFindAttrID->second[aSwitch] = std::set(); + } + aFindAttrID->second[aSwitch].insert(aCasePair.second); + } +} + +bool Model_ValidatorsFactory::isCase(FeaturePtr theFeature, std::string theAttribute) +{ + bool anInCase = true; + std::map > > > + ::iterator aFindFeature = myCases.find(theFeature->getKind()); + if (aFindFeature != myCases.end()) { + std::map > >::iterator + aFindAttrID = aFindFeature->second.find(theAttribute); + if (aFindAttrID != aFindFeature->second.end()) { + std::map >::iterator + aCasesIt = aFindAttrID->second.begin(), aCasesLast = aFindAttrID->second.end(); + for (; aCasesIt != aCasesLast && anInCase; aCasesIt++) { + // the the switch-attribute that contains the case value + AttributeStringPtr aSwitch = theFeature->string(aCasesIt->first); + if (aSwitch.get()) { + // the second has the case identifier + anInCase = aCasesIt->second.find(aSwitch->value()) != aCasesIt->second.end(); + } + } + } + } + return anInCase; // if no additional conditions, this attribute is the case to be validated +} + +void Model_ValidatorsFactory::registerMainArgument(std::string theFeature, + std::string theAttribute) +{ + std::map::iterator aFound = myMainArgument.find(theFeature); + if (aFound == myMainArgument.end()) + myMainArgument[theFeature] = theAttribute; +} + +bool Model_ValidatorsFactory::isMainArgument(std::string theFeature, std::string theAttribute) +{ + std::map::iterator aFound = myMainArgument.find(theFeature); + return aFound != myMainArgument.end() && aFound->second == theAttribute; +} + +void Model_ValidatorsFactory::registerGeometricalSelection(std::string theFeature, + std::string theAttribute) +{ + std::map >::iterator aFind = + myGeometricalSelection.find(theFeature); + if (aFind == myGeometricalSelection.end()) { + std::set aNewSet; + aNewSet.insert(theAttribute); + myGeometricalSelection[theFeature] = aNewSet; + } + else { + aFind->second.insert(theAttribute); + } +} + +bool Model_ValidatorsFactory::isGeometricalSelection(std::string theFeature, + std::string theAttribute) +{ + std::map >::iterator aFind = + myGeometricalSelection.find(theFeature); + return aFind != myGeometricalSelection.end() + && aFind->second.find(theAttribute) != aFind->second.end(); +}