]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_Validator.h
Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / Model / Model_Validator.h
1 // File:        Model_Validator.hxx
2 // Created:     2 Jul 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef Model_Validator_H_
6 #define Model_Validator_H_
7
8 #include <Model.h>
9 #include <ModelAPI_Validator.h>
10 #include <map>
11 #include <set>
12
13 /**\class Model_ValidatorsFactory
14  * \ingroup DataModel
15  * \breif Manages the registered validators
16  *
17  * Allows to get a validator by the feature identifier and 
18  * the attribute identifier (if attribute is validated).
19  * All accessible validators mustbe registered by the ID string first.
20  * The instance of this factory can be get in the PluginManager.
21  * Keeps the validator objects alive and just returns one of it by request.
22  * All the needed information is provided to the validator as an argument,
23  * this allows to work with them independently from the feature specific object.
24  */
25 class Model_ValidatorsFactory: public ModelAPI_ValidatorsFactory
26 {
27 private:
28   std::map<std::string, ModelAPI_Validator*> myIDs; ///< map from ID to registered validator
29   /// validators IDs by feature ID
30   std::map<std::string, std::set<std::string> > myFeatures; 
31   /// set of pairs: validators IDs, list of arguments
32   typedef std::set<std::pair<std::string, std::list<std::string> > > AttrValidators;
33   /// validators IDs and arguments by feature and attribute IDs
34   std::map<std::string, std::map<std::string, AttrValidators> > myAttrs;
35 public:
36   /// Registers the instance of the validator by the ID
37   MODEL_EXPORT virtual void registerValidator(
38     const std::string& theID, ModelAPI_Validator* theValidator);
39
40   /// Assigns validator to the feature
41   MODEL_EXPORT virtual void assignValidator(
42     const std::string& theID, const std::string& theFeatureID);
43
44   /// Assigns validator to the attribute of the feature
45   MODEL_EXPORT virtual void assignValidator(const std::string& theID, 
46     const std::string& theFeatureID, const std::string& theAttrID,
47     const std::list<std::string>& theArguments);
48
49   /// Provides a validator for the feature, returns NULL if no validator
50   MODEL_EXPORT virtual void validators(const std::string& theFeatureID, 
51     std::list<ModelAPI_Validator*>& theResult) const;
52   /// Provides a validator for the attribute, returns NULL if no validator
53   MODEL_EXPORT virtual void validators(
54     const std::string& theFeatureID, const std::string& theAttrID,
55     std::list<ModelAPI_Validator*>& theValidators, 
56     std::list<std::list<std::string> >& theArguments) const;
57
58   /// Returns registered validator by its Id
59   virtual const ModelAPI_Validator* validator(const std::string& theID) const;
60
61   /// Returns the result of "validate" method for attribute of validator.
62   /// If validator is not exists, returns true: everything is valid by default.
63   //MODEL_EXPORT virtual bool validate(
64   //  const boost::shared_ptr<ModelAPI_Feature>& theFeature, const std::string& theAttrID) const;
65
66 protected:
67   /// Get instance from PluginManager
68   Model_ValidatorsFactory();
69
70   friend class Model_PluginManager;
71 };
72
73 #endif