Salome HOME
136e4504ffa310ce30d8179a2c45237c00358f52
[modules/shaper.git] / src / Model / Model_Data.h
1 // File:        Model_Data.hxx
2 // Created:     21 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef Model_Data_H_
6 #define Model_Data_H_
7
8 #include <Model.h>
9 #include <ModelAPI_Attribute.h>
10 #include <ModelAPI_AttributeBoolean.h>
11 #include <ModelAPI_AttributeDocRef.h>
12 #include <ModelAPI_AttributeDouble.h>
13 #include <ModelAPI_AttributeInteger.h>
14 #include <ModelAPI_AttributeRefAttr.h>
15 #include <ModelAPI_AttributeReference.h>
16 #include <ModelAPI_AttributeRefList.h>
17 #include <ModelAPI_AttributeString.h>
18 #include <ModelAPI_Data.h>
19 #include <ModelAPI_Feature.h>
20 #include <ModelAPI_Object.h>
21
22 #include <TDF_Label.hxx>
23
24 #include <boost/smart_ptr/shared_ptr.hpp>
25
26 #include <map>
27 #include <list>
28 #include <string>
29
30 class ModelAPI_Attribute;
31
32 /**\class Model_Data
33  * \ingroup DataModel
34  * \brief General object of the application that allows
35  * to get/set attributes from the document and compute result of an operation.
36  */
37
38 class Model_Data : public ModelAPI_Data
39 {
40   TDF_Label myLab;  ///< label of the feature in the document
41   /// All attributes of the object identified by the attribute ID
42   std::map<std::string, boost::shared_ptr<ModelAPI_Attribute> > myAttrs;
43
44   /// needed here to emit signal that object changed on change of the attribute
45   ObjectPtr myObject;
46
47   Model_Data();
48
49   /// Returns label of this feature
50   TDF_Label label()
51   {
52     return myLab;
53   }
54
55   friend class Model_Document;
56   friend class Model_AttributeReference;
57   friend class Model_AttributeRefAttr;
58   friend class Model_AttributeRefList;
59
60  public:
61   /// Returns the name of the feature visible by the user in the object browser
62   MODEL_EXPORT virtual std::string name();
63   /// Defines the name of the feature visible by the user in the object browser
64   MODEL_EXPORT virtual void setName(const std::string& theName);
65   /// Returns the attribute that references to another document
66   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeDocRef> document(const std::string& theID);
67   /// Returns the attribute that contains real value with double precision
68   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeDouble> real(const std::string& theID);
69   /// Returns the attribute that contains integer value
70   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeInteger>
71     integer(const std::string& theID);
72   /// Returns the attribute that contains reference to a feature
73   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeReference>
74     reference(const std::string& theID);
75   /// Returns the attribute that contains reference to an attribute of a feature
76   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeRefAttr>
77     refattr(const std::string& theID);
78   /// Returns the attribute that contains list of references to features
79   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeRefList>
80     reflist(const std::string& theID);
81   /// Returns the attribute that contains boolean value
82   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeBoolean>
83     boolean(const std::string& theID);
84   /// Returns the attribute that contains real value with double precision
85   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_AttributeString>
86     string(const std::string& theID);
87   /// Returns the generic attribute by identifier
88   /// \param theID identifier of the attribute
89   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Attribute> attribute(const std::string& theID);
90   /// Returns all attributes of the feature of the given type
91   /// or all attributes if "theType" is empty
92   MODEL_EXPORT virtual std::list<boost::shared_ptr<ModelAPI_Attribute> >
93     attributes(const std::string& theType);
94   /// Returns all attributes ids of the feature of the given type
95   /// or all attributes if "theType" is empty
96   MODEL_EXPORT virtual std::list<std::string> attributesIDs(const std::string& theType);
97
98   /// Identifier by the id (not fast, iteration by map)
99   /// \param theAttr attribute already created in this data
100   MODEL_EXPORT virtual const std::string& id(const boost::shared_ptr<ModelAPI_Attribute>& theAttr);
101   /// Returns true if data belongs to same features
102   MODEL_EXPORT virtual bool isEqual(const boost::shared_ptr<ModelAPI_Data>& theData);
103   /// Returns true if it is correctly connected t othe data model
104   MODEL_EXPORT virtual bool isValid();
105
106   /// Returns the label where the shape must be stored (used in ResultBody)
107   TDF_Label& shapeLab()
108   {
109     return myLab;
110   }
111
112   /// Initializes object by the attributes: must be called just after the object is created
113   /// for each attribute of the object
114   /// \param theID identifier of the attribute that can be referenced by this ID later
115   /// \param theAttrType type of the created attribute (received from the type method)
116   MODEL_EXPORT virtual void addAttribute(const std::string& theID, const std::string theAttrType);
117
118   /// Useful method for "set" methods of the attributes: sends an UPDATE event and
119   /// makes attribute initialized
120   MODEL_EXPORT virtual void sendAttributeUpdated(ModelAPI_Attribute* theAttr);
121
122   /// Puts feature to the document data sub-structure
123   MODEL_EXPORT void setLabel(TDF_Label theLab);
124
125   /// Sets the object of this data
126   MODEL_EXPORT virtual void setObject(ObjectPtr theObject)
127   {
128     myObject = theObject;
129   }
130
131   MODEL_EXPORT virtual void erase();
132
133   /// Makes feature must be updated later (on rebuild). Normally the Updater must call it
134   /// in case of not-automatic update to true
135   MODEL_EXPORT virtual void mustBeUpdated(const bool theFlag);
136
137   /// Returns true if feature must be updated (re-executed) on rebuild
138   MODEL_EXPORT virtual bool mustBeUpdated();
139 };
140
141 #endif