X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.h;h=bda886ec9509c4811f497a27b17456991a6857ab;hb=ca5c4cc6ea4aa54000fe0e8729f9c14b8a59abfd;hp=b3324c45862a0703a711823bd145063cbb681c92;hpb=83e925a876b26a470e513b0a229258b145c82bc8;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.h b/src/Model/Model_Validator.h index b3324c458..bda886ec9 100644 --- a/src/Model/Model_Validator.h +++ b/src/Model/Model_Validator.h @@ -9,7 +9,6 @@ #include #include -#include #include #include @@ -38,10 +37,15 @@ 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; + /// Stored the unconcealed results and features that caused the canceled concealment (Recover). + /// If the feature is empty, unconcealment is persistent. + std::map, std::list > > + myUnconcealed; /// 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 Id (possible values of the switch attribute)) - std::map > > myCases; + // (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 @@ -65,13 +69,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; @@ -79,6 +80,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, Events_InfoMessage& 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); @@ -93,9 +98,22 @@ 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); + /// Registers (by Recover feature) cancel of concealment of specific result by specific feature. + /// If theCanceledFeat is empty, the concealment is canceled for this result forever. + virtual void registerUnconcealment(std::shared_ptr theUnconcealed, + std::shared_ptr theCanceledFeat); + + /// Disables cancel of concealment of specific result by specific feature. + virtual void disableUnconcealment(std::shared_ptr theUnconcealed, + std::shared_ptr theCanceledFeat); + + /// Returns true if concealment is canceled. + virtual bool isUnconcealed(std::shared_ptr theUnconcealed, + std::shared_ptr theCanceledFeat); + /// register the case-attribute (\a myCases set definition) virtual void registerCase(std::string theFeature, std::string theAttribute, - std::string theSwitchId, std::string theCaseId); + const std::list >& theCases); /// Returns true if the attribute must be checked (the case is selected) virtual bool isCase(FeaturePtr theFeature, std::string theAttribute); @@ -103,8 +121,9 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory 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();