Salome HOME
4c807763ac2f2cd104415b062846b1fc8e23444f
[modules/shaper.git] / src / ModelAPI / ModelAPI_Validator.h
1 // File:        ModelAPI_Validator.hxx
2 // Created:     2 Jul 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef ModelAPI_Validator_HeaderFile
6 #define ModelAPI_Validator_HeaderFile
7
8 #include <ModelAPI.h>
9 #include <boost/shared_ptr.hpp>
10 #include <list>
11
12 class ModelAPI_Feature;
13
14 /**\class ModelAPI_Validator
15  * \ingroup DataModel
16  * \brief Allows to validate the attribute value of a feature or the whole feature.
17  *
18  * This object is assigned by the name
19  * in the XML file to the specific attribute or to the whole feature.
20  * If validator returns "false", it is signalized in user interface
21  * and feature is not executed.
22  * Validators must be registered in the validators factory to be
23  * correctly identified by the XML string-ID.
24  */
25 class MODELAPI_EXPORT ModelAPI_Validator
26 {
27 public:
28   // Make virtual destructor in order to make the class polymorphic
29   virtual ~ModelAPI_Validator() {};
30
31   /// Returns true if feature and/or attributes are valid
32   /// \param theFeature the validated feature
33   /// \param theAttr the validated attribute ID, empty string of feature is validated
34   /// \param theArguments list of string, feature attribute names: dependent attributes
35   //virtual bool validate(const boost::shared_ptr<ModelAPI_Feature>& theFeature,
36   //  const std::string theAttr, std::list<std::string> theArguments) const = 0;
37 };
38
39 typedef boost::shared_ptr<ModelAPI_Validator> ValidatorPtr;
40
41 /**\class ModelAPI_ValidatorsFactory
42  * \ingroup DataModel
43  * \breif Manages the registered validators
44  *
45  * Allows to get a validator by the feature identifier and 
46  * the attribute identifier (if attribute is validated).
47  * All accessible validators mustbe registered by the ID string first.
48  * The instance of this factory can be get in the PluginManager.
49  * Keeps the validator objects alive and just returns one of it by request.
50  * All the needed information is provided to the validator as an argument,
51  * this allows to work with them independently from the feature specific object.
52  */
53 class MODELAPI_EXPORT ModelAPI_ValidatorsFactory
54 {
55 public:
56   /// Registers the instance of the validator by the ID
57   virtual void registerValidator(const std::string& theID, ModelAPI_Validator* theValidator) = 0;
58
59   /// Assigns validator to the feature
60   virtual void assignValidator(const std::string& theID, const std::string& theFeatureID) = 0;
61
62   /// Assigns validator to the attribute of the feature
63   virtual void assignValidator(const std::string& theID, 
64     const std::string& theFeatureID, const std::string& theAttrID,
65     const std::list<std::string>& theArguments) = 0;
66
67   /// Provides a validator for the feature, returns NULL if no validator
68   virtual const ModelAPI_Validator* validator(const std::string& theFeatureID) const = 0;
69
70   /// Returns the result of "validate" method for attribute of validator.
71   /// If validator is not exists, returns true: everything is valid by default.
72   //virtual bool validate(
73   //  const boost::shared_ptr<ModelAPI_Feature>& theFeature, const std::string& theAttrID) const = 0;
74
75 protected:
76   /// Get instance from PluginManager
77   ModelAPI_ValidatorsFactory() {}
78 };
79
80 #endif