X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.cpp;h=9875f74274a9af41843c9140761b3273f224734d;hb=f7a976b98d8cadadcb54a61e42ddb66e00759689;hp=c2c994da9cd65dc1b194115c8250aa524760ae1c;hpb=3d7368386762b057fff327d24d0079b4a73c3004;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.cpp b/src/Model/Model_Validator.cpp index c2c994da9..9875f7427 100644 --- a/src/Model/Model_Validator.cpp +++ b/src/Model/Model_Validator.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include void Model_ValidatorsFactory::registerValidator(const std::string& theID, @@ -260,3 +261,34 @@ bool Model_ValidatorsFactory::isConcealed(std::string theFeature, std::string th 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, + std::string theSwitchId, std::string theCaseId) +{ + std::map > >::iterator + aFindFeature = myCases.find(theFeature); + if (aFindFeature == myCases.end()) { + myCases[theFeature] = std::map >(); + aFindFeature = myCases.find(theFeature); + } + (aFindFeature->second)[theAttribute] = std::pair(theSwitchId, theCaseId); +} + +bool Model_ValidatorsFactory::isCase( + FeaturePtr theFeature, std::string theAttribute) +{ + std::map > >::iterator + aFindFeature = myCases.find(theFeature->getKind()); + if (aFindFeature != myCases.end()) { + std::map >::iterator + aFindAttr = aFindFeature->second.find(theAttribute); + if (aFindAttr != aFindFeature->second.end()) { + // the the switch-attribute that contains the case value + AttributeStringPtr aSwitch = theFeature->string(aFindAttr->second.first); + if (aSwitch.get()) { + return aSwitch->value() == aFindAttr->second.second; // the second is the case identifier + } + } + } + return true; // if no additional conditions, this attribute is the case to be validated +}