X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.h;h=0040d8c2b2c2c0c11e363549fc804c100d6be135;hb=8ab0ae98e90b50e4bc2d8280f5734a1fad142a76;hp=4747c534ba87a7711b7ae1125058ff2ab35e1131;hpb=db0e21ea2f1117dd9af3320009ba8b50dc2e828b;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.h b/src/Model/Model_Validator.h index 4747c534b..0040d8c2b 100644 --- a/src/Model/Model_Validator.h +++ b/src/Model/Model_Validator.h @@ -37,6 +37,11 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// Stores the registered attributes that leads to the concealment of referenced objects in /// data tree. Map from feature kind to set of attribute IDs. std::map > myConcealed; + /// Stores the registered attributes must be checked only if the particular case is activated + /// Map from feature kind to map of attribute IDs to pair + // (switchId (ID of the attribute) and case Ids (possible values of the switch attribute)) + std::map > > > myCases; public: /// Registers the instance of the validator by the ID @@ -60,13 +65,10 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// Provides a validator for the feature, returns NULL if no validator MODEL_EXPORT virtual void validators(const std::string& theFeatureID, - std::list& theResult, - std::list >& theArguments) const; + Validators& theResult) const; /// Provides a validator for the attribute, returns NULL if no validator - MODEL_EXPORT virtual void validators(const std::string& theFeatureID, - const std::string& theAttrID, - std::list& theValidators, - std::list >& theArguments) const; + MODEL_EXPORT virtual void validators(const std::string& theFeatureID, const std::string& theAttrID, + Validators& theResult) const; /// Returns registered validator by its Id MODEL_EXPORT virtual const ModelAPI_Validator* validator(const std::string& theID) const; @@ -74,6 +76,10 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// Returns true if feature and all its attributes are valid. MODEL_EXPORT virtual bool validate(const std::shared_ptr& theFeature) const; + /// Returns true if the attribute is valid. + MODEL_EXPORT virtual bool validate(const std::shared_ptr& theAttribute, + std::string& theValidator, std::string& theError) const; + /// register that this attribute in feature is not obligatory for the feature execution /// so, it is not needed for the standard validation mechanism virtual void registerNotObligatory(std::string theFeature, std::string theAttribute); @@ -88,10 +94,19 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// Returns true that it was registered that attribute conceals the referenced result virtual bool isConcealed(std::string theFeature, std::string theAttribute); + /// register the case-attribute (\a myCases set definition) + virtual void registerCase(std::string theFeature, std::string theAttribute, + std::string theSwitchId, std::string theCaseId); + + /// Returns true if the attribute must be checked (the case is selected) + virtual bool isCase(FeaturePtr theFeature, std::string theAttribute); + + protected: /// Adds the defualt validators that are usefull for all features. - void addDefaultValidators(std::list& theValidators, - std::list >& theArguments) const; + void addDefaultValidators(Validators& theValidators) const; + /// Adds the defualt validators that are usefull for all attributes. + void addDefaultAttributeValidators(Validators& theValidators) const; /// Get instance from Session Model_ValidatorsFactory();