X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.h;h=e2f67b617dde97fb7a9024be9d37217d8a2fd95b;hb=7ba8e2b57ff8965ae644b538c167b7b301e6e41b;hp=8655b91a92ceda8203ed0825a028777b44c21e9b;hpb=9d39123efbd6bde772377542ce40fb51f7925c1f;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.h b/src/Model/Model_Validator.h index 8655b91a9..e2f67b617 100644 --- a/src/Model/Model_Validator.h +++ b/src/Model/Model_Validator.h @@ -1,13 +1,16 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Validator.hxx // Created: 2 Jul 2014 // Author: Mikhail PONIKAROV -#ifndef Model_Validator_HeaderFile -#define Model_Validator_HeaderFile +#ifndef Model_Validator_H_ +#define Model_Validator_H_ #include #include #include +#include /**\class Model_ValidatorsFactory * \ingroup DataModel @@ -16,47 +19,82 @@ * Allows to get a validator by the feature identifier and * the attribute identifier (if attribute is validated). * All accessible validators mustbe registered by the ID string first. - * The instance of this factory can be get in the PluginManager. + * The instance of this factory can be get in the Session. * Keeps the validator objects alive and just returns one of it by request. * All the needed information is provided to the validator as an argument, * this allows to work with them independently from the feature specific object. */ -class Model_ValidatorsFactory: public ModelAPI_ValidatorsFactory +class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory { - std::map myIDs; ///< map from ID to registered validator - std::map myFeatures; ///< validators by feature ID - std::map > > > myAttrs; ///< validators and arguments by feature and attribute IDs -public: + private: + std::map myIDs; ///< map from ID to registered validator + /// validators IDs to list of arguments + typedef std::map > AttrValidators; + /// validators IDs by feature ID + std::map myFeatures; + /// validators IDs and arguments by feature and attribute IDs + std::map > myAttrs; + /// 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; + + public: /// Registers the instance of the validator by the ID - MODEL_EXPORT virtual void registerValidator( - const std::string& theID, ModelAPI_Validator* theValidator); + MODEL_EXPORT virtual void registerValidator(const std::string& theID, + ModelAPI_Validator* theValidator); /// Assigns validator to the feature - MODEL_EXPORT virtual void assignValidator( - const std::string& theID, const std::string& theFeatureID); + MODEL_EXPORT virtual void assignValidator(const std::string& theID, + const std::string& theFeatureID); + + /// Assigns validator to the feature with arguments of the validator + MODEL_EXPORT virtual void assignValidator(const std::string& theID, + const std::string& theFeatureID, + const std::list& theArguments); /// Assigns validator to the attribute of the feature - MODEL_EXPORT virtual void assignValidator(const std::string& theID, - const std::string& theFeatureID, const std::string& theAttrID, - const std::list& theArguments); + MODEL_EXPORT virtual void assignValidator(const std::string& theID, + const std::string& theFeatureID, + const std::string& theAttrID, + const std::list& theArguments); /// Provides a validator for the feature, returns NULL if no validator - MODEL_EXPORT virtual const ModelAPI_Validator* validator(const std::string& theFeatureID) const; + MODEL_EXPORT virtual void validators(const std::string& theFeatureID, + std::list& theResult, + std::list >& theArguments) const; /// Provides a validator for the attribute, returns NULL if no validator - MODEL_EXPORT virtual const ModelAPI_Validator* validator( - const std::string& theFeatureID, const std::string& theAttrID) const; + MODEL_EXPORT virtual void validators(const std::string& theFeatureID, + const std::string& theAttrID, + std::list& theValidators, + std::list >& theArguments) const; + + /// Returns registered validator by its Id + MODEL_EXPORT virtual const ModelAPI_Validator* validator(const std::string& theID) const; + + /// Returns true if feature and all its attributes are valid. + MODEL_EXPORT virtual bool validate(const std::shared_ptr& theFeature) 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); + + /// Returns true if the attribute in feature is not obligatory for the feature execution + virtual bool isNotObligatory(std::string theFeature, std::string theAttribute); + + /// register that this attribute conceals in the object browser + /// all referenced features after execution + virtual void registerConcealment(std::string theFeature, std::string theAttribute); - /// Returns the result of "validate" method for attribute of validator. - /// If validator is not exists, returns true: everything is valid by default. - //MODEL_EXPORT virtual bool validate( - // const boost::shared_ptr& theFeature, const std::string& theAttrID) const; + /// Returns true that it was registered that attribute conceals the referenced result + virtual bool isConcealed(std::string theFeature, std::string theAttribute); protected: - /// Get instance from PluginManager + void addDefaultValidators(std::list& theValidators, + std::list >& theArguments) const; + /// Get instance from Session Model_ValidatorsFactory(); - friend class Model_PluginManager; + friend class Model_Session; }; #endif