X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_FeatureValidator.cpp;h=a809abe461a5d1653edcd6a4e8e5b3af2c817858;hb=2df56fe9d65461225eb0e622944862010dee54b0;hp=2f9894dced86249bc335504808f999e26c1255a2;hpb=cb7a02e2d7e5f4c675571888b8119a8c58069a0d;p=modules%2Fshaper.git diff --git a/src/Model/Model_FeatureValidator.cpp b/src/Model/Model_FeatureValidator.cpp index 2f9894dce..a809abe46 100644 --- a/src/Model/Model_FeatureValidator.cpp +++ b/src/Model/Model_FeatureValidator.cpp @@ -1,28 +1,60 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_FeatureValidator.cpp // Created: 8 Jul 2014 // Author: Vitaly SMETANNIKOV #include +#include #include #include #include #include +#include #include -#include +#include -bool Model_FeatureValidator::isValid(const boost::shared_ptr& theFeature, +bool Model_FeatureValidator::isValid(const std::shared_ptr& theFeature, const std::list& theArguments) const { - boost::shared_ptr aData = theFeature->data(); + static Model_ValidatorsFactory* aValidators = + static_cast(ModelAPI_Session::get()->validators()); + + std::shared_ptr aData = theFeature->data(); + // "Action" features has no data, but still valid. e.g "Remove Part" + if (!aData) { + return theFeature->isAction(); + } if (!aData->isValid()) return false; const std::string kAllTypes = ""; - std::list aLtAttributes = aData->attributes(kAllTypes); - std::list::iterator it = aLtAttributes.begin(); + std::list aLtAttributes = aData->attributesIDs(kAllTypes); + std::list::iterator it = aLtAttributes.begin(); for (; it != aLtAttributes.end(); it++) { - if (!(*it)->isInitialized()) - return false; + AttributePtr anAttr = aData->attribute(*it); + 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() || // and it is obligatory for filling + aFeatureFind->second.find(*it) == aFeatureFind->second.end()) { + return false; + } + } } return true; } + +void Model_FeatureValidator::registerNotObligatory(std::string theFeature, std::string theAttribute) +{ + std::set& anAttrs = myNotObligatory[theFeature]; + anAttrs.insert(theAttribute); +} + +bool Model_FeatureValidator::isNotObligatory(std::string theFeature, std::string theAttribute) +{ + std::set& anAttrs = myNotObligatory[theFeature]; + return anAttrs.find(theAttribute) != anAttrs.end(); +}