Salome HOME
If extrusion loses sketch contour, it becomes invalid and no results are displayed
[modules/shaper.git] / src / Model / Model_Validator.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_Validator.hxx
4 // Created:     2 Jul 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef Model_Validator_H_
8 #define Model_Validator_H_
9
10 #include <Model.h>
11 #include <ModelAPI_Validator.h>
12 #include <map>
13 #include <set>
14
15 /**\class Model_ValidatorsFactory
16  * \ingroup DataModel
17  * \brief Manages the registered validators
18  *
19  * Allows to get a validator by the feature identifier and 
20  * the attribute identifier (if attribute is validated).
21  * All accessible validators mustbe registered by the ID string first.
22  * The instance of this factory can be get in the Session.
23  * Keeps the validator objects alive and just returns one of it by request.
24  * All the needed information is provided to the validator as an argument,
25  * this allows to work with them independently from the feature specific object.
26  */
27 class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory
28 {
29  private:
30   std::map<std::string, ModelAPI_Validator*> myIDs;  ///< map from ID to registered validator
31   /// validators IDs to list of arguments
32   typedef std::map<std::string, std::list<std::string> > AttrValidators;
33   /// validators IDs by feature ID
34   std::map<std::string, AttrValidators> myFeatures;
35   /// validators IDs and arguments by feature and attribute IDs
36   std::map<std::string, std::map<std::string, AttrValidators> > myAttrs;
37   /// Stores the registered attributes that leads to the concealment of referenced objects in 
38   /// data tree. Map from feature kind to set of attribute IDs.
39   std::map<std::string, std::set<std::string> > myConcealed;
40   /// Stores the registered attributes must be checked only if the particular case is activated
41   /// Map from feature kind to map of attribute IDs to pair 
42   // (switchId (ID of the attribute) and case Id (possible values of the switch attribute))
43   std::map<std::string, std::map<std::string, std::pair<std::string, std::string> > > myCases;
44
45  public:
46   /// Registers the instance of the validator by the ID
47   MODEL_EXPORT virtual void registerValidator(const std::string& theID,
48                                               ModelAPI_Validator* theValidator);
49
50   /// Assigns validator to the feature
51   MODEL_EXPORT virtual void assignValidator(const std::string& theID,
52                                             const std::string& theFeatureID);
53
54   /// Assigns validator to the feature with arguments of the validator
55   MODEL_EXPORT virtual void assignValidator(const std::string& theID,
56                                             const std::string& theFeatureID,
57                                             const std::list<std::string>& theArguments);
58
59   /// Assigns validator to the attribute of the feature
60   MODEL_EXPORT virtual void assignValidator(const std::string& theID,
61                                             const std::string& theFeatureID,
62                                             const std::string& theAttrID,
63                                             const std::list<std::string>& theArguments);
64
65   /// Provides a validator for the feature, returns NULL if no validator
66   MODEL_EXPORT virtual void validators(const std::string& theFeatureID,
67                                        std::list<ModelAPI_Validator*>& theResult,
68                                        std::list<std::list<std::string> >& theArguments) const;
69   /// Provides a validator for the attribute, returns NULL if no validator
70   MODEL_EXPORT virtual void validators(const std::string& theFeatureID,
71                                        const std::string& theAttrID,
72                                        std::list<ModelAPI_Validator*>& theValidators,
73                                        std::list<std::list<std::string> >& theArguments) const;
74
75   /// Returns registered validator by its Id
76   MODEL_EXPORT virtual const ModelAPI_Validator* validator(const std::string& theID) const;
77
78   /// Returns true if feature and all its attributes are valid.
79   MODEL_EXPORT virtual bool validate(const std::shared_ptr<ModelAPI_Feature>& theFeature) const;
80
81   /// register that this attribute in feature is not obligatory for the feature execution
82   /// so, it is not needed for the standard validation mechanism
83   virtual void registerNotObligatory(std::string theFeature, std::string theAttribute);
84
85   /// Returns true if the attribute in feature is not obligatory for the feature execution
86   virtual bool isNotObligatory(std::string theFeature, std::string theAttribute);
87
88   /// register that this attribute conceals in the object browser
89   /// all referenced features after execution
90   virtual void registerConcealment(std::string theFeature, std::string theAttribute);
91
92   /// Returns true that it was registered that attribute conceals the referenced result
93   virtual bool isConcealed(std::string theFeature, std::string theAttribute);
94
95   /// register the case-attribute (\a myCases set definition)
96   virtual void registerCase(std::string theFeature, std::string theAttribute,
97     std::string theSwitchId, std::string theCaseId);
98
99   /// Returns true if the attribute must be checked (the case is selected)
100   virtual bool isCase(FeaturePtr theFeature, std::string theAttribute);
101
102
103 protected:
104   /// Adds the defualt validators that are usefull for all features.
105   void addDefaultValidators(std::list<ModelAPI_Validator*>& theValidators,
106                             std::list<std::list<std::string> >& theArguments) const;
107   /// Get instance from Session
108   Model_ValidatorsFactory();
109
110   friend class Model_Session;
111 };
112
113 #endif