Salome HOME
Merge branch 'V9_4_BR'
[modules/shaper.git] / src / Model / Model_Data.h
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef Model_Data_H_
21 #define Model_Data_H_
22
23 #include <Model.h>
24 #include <ModelAPI_Attribute.h>
25 #include <ModelAPI_AttributeBoolean.h>
26 #include <ModelAPI_AttributeDocRef.h>
27 #include <ModelAPI_AttributeDouble.h>
28 #include <ModelAPI_AttributeInteger.h>
29 #include <ModelAPI_AttributeRefAttr.h>
30 #include <ModelAPI_AttributeReference.h>
31 #include <ModelAPI_AttributeRefList.h>
32 #include <ModelAPI_AttributeRefAttrList.h>
33 #include <ModelAPI_AttributeString.h>
34 #include <ModelAPI_AttributeStringArray.h>
35 #include <ModelAPI_AttributeIntArray.h>
36 #include <ModelAPI_Data.h>
37 #include <ModelAPI_Feature.h>
38 #include <ModelAPI_Folder.h>
39 #include <ModelAPI_Object.h>
40
41 #include <TDF_Label.hxx>
42 #include <TDataStd_BooleanArray.hxx>
43
44 #include <memory>
45
46 #include <map>
47 #include <list>
48 #include <string>
49 #include <set>
50
51 class ModelAPI_Attribute;
52
53 /**\class Model_Data
54  * \ingroup DataModel
55  * \brief General object of the application that allows
56  * to get/set attributes from the document and compute result of an operation.
57  */
58
59 class Model_Data : public ModelAPI_Data
60 {
61   typedef std::map<std::string, std::pair<std::shared_ptr<ModelAPI_Attribute>, int> > AttributeMap;
62
63   TDF_Label myLab;  ///< label of the feature in the document
64   /// All attributes of the object identified by the attribute ID
65   /// (the attribute is stored together with its index in the feature)
66   AttributeMap myAttrs;
67   /// Array of flags of this data
68   Handle(TDataStd_BooleanArray) myFlags;
69
70   /// needed here to emit signal that object changed on change of the attribute
71   ObjectPtr myObject;
72
73   /// List of attributes referenced to owner (updated only during the transaction change)
74   std::set<AttributePtr> myRefsToMe;
75   /// flag that may block the "attribute updated" sending
76   bool mySendAttributeUpdated;
77   /// if some attribute was changed, but mySendAttributeUpdated was false, this stores this
78   std::list<ModelAPI_Attribute*> myWasChangedButBlocked;
79
80   /// Returns label of this feature
81   TDF_Label label()
82   {
83     return myLab;
84   }
85
86   friend class Model_Document;
87   friend class Model_Objects;
88   friend class Model_Update;
89   friend class Model_AttributeReference;
90   friend class Model_AttributeRefAttr;
91   friend class Model_AttributeRefList;
92   friend class Model_AttributeRefAttrList;
93   friend class Model_AttributeSelection;
94   friend class Model_AttributeSelectionList;
95   friend class Model_ValidatorsFactory;
96   friend class Model_SelectionNaming;
97   friend class Model_ResultConstruction;
98   friend class Model_ResultBody;
99   friend class Model_Tools;
100
101  public:
102   /// The simplest constructor. "setLabel" must be called just after to initialize correctly.
103   Model_Data();
104   /// Returns the name of the feature visible by the user in the object browser
105   MODEL_EXPORT virtual std::string name();
106   /// Defines the name of the feature visible by the user in the object browser
107   MODEL_EXPORT virtual void setName(const std::string& theName);
108   /// Return \c true if the object has been renamed by the user
109   MODEL_EXPORT virtual bool hasUserDefinedName() const;
110   /// Returns the attribute that references to another document
111   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeDocRef> document(const std::string& theID);
112   /// Returns the attribute that contains real value with double precision
113   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeDouble> real(const std::string& theID);
114   /// Returns the attribute that contains double values array
115   MODEL_EXPORT virtual
116     std::shared_ptr<ModelAPI_AttributeDoubleArray> realArray(const std::string& theID);
117   /// Returns the attribute that contains integer value
118   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeInteger>
119     integer(const std::string& theID);
120   /// Returns the attribute that contains reference to a feature
121   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeReference>
122     reference(const std::string& theID);
123   /// Returns the attribute that contains selection to a shape
124   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeSelection>
125     selection(const std::string& theID);
126   /// Returns the attribute that contains selection to a shape
127   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeSelectionList>
128     selectionList(const std::string& theID);
129   /// Returns the attribute that contains reference to an attribute of a feature
130   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeRefAttr>
131     refattr(const std::string& theID);
132   /// Returns the attribute that contains list of references to features
133   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeRefList>
134     reflist(const std::string& theID);
135   /// Returns the attribute that contains list of references to features
136   /// or reference to an attribute of a feature
137   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeRefAttrList>
138     refattrlist(const std::string& theID);
139   /// Returns the attribute that contains boolean value
140   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeBoolean>
141     boolean(const std::string& theID);
142   /// Returns the attribute that contains real value with double precision
143   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeString>
144     string(const std::string& theID);
145   /// Returns the attribute that contains integer values array
146   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeIntArray>
147     intArray(const std::string& theID);
148   /// Returns the attribute that contains string values array
149   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeStringArray>
150     stringArray(const std::string& theID);
151   /// Returns the attribute that contains string values array
152   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeTables>
153     tables(const std::string& theID);
154
155   /// Returns the generic attribute by identifier
156   /// \param theID identifier of the attribute
157   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Attribute> attribute(const std::string& theID);
158   /// Returns all attributes of the feature of the given type
159   /// or all attributes if "theType" is empty
160   MODEL_EXPORT virtual std::list<std::shared_ptr<ModelAPI_Attribute> >
161     attributes(const std::string& theType);
162   /// Returns all attributes ids of the feature of the given type
163   /// or all attributes if "theType" is empty
164   MODEL_EXPORT virtual std::list<std::string> attributesIDs(const std::string& theType);
165
166   /// Identifier by the id (not fast, iteration by map)
167   /// \param theAttr attribute already created in this data
168   MODEL_EXPORT virtual const std::string& id(const std::shared_ptr<ModelAPI_Attribute>& theAttr);
169   /// Returns true if data belongs to same features
170   MODEL_EXPORT virtual bool isEqual(const std::shared_ptr<ModelAPI_Data>& theData);
171   /// Returns true if it is correctly connected to the data model
172   MODEL_EXPORT virtual bool isValid();
173
174   /// Returns the label where the shape must be stored (used in ResultBody)
175   TDF_Label shapeLab() const
176   {
177     return myLab.IsNull() ? myLab : myLab.Father().FindChild(2);
178   }
179
180   /// Initializes object by the attributes: must be called just after the object is created
181   /// for each attribute of the object
182   /// \param theID identifier of the attribute that can be referenced by this ID later
183   /// \param theAttrType type of the created attribute (received from the type method)
184   /// \param theIndex index of the attribute in the internal data structure, for not-floating
185   ///                 attributes it is -1 to let it automatically be added
186   /// \returns the just created attribute
187   MODEL_EXPORT virtual AttributePtr
188     addAttribute(const std::string& theID, const std::string theAttrType, const int theIndex = -1);
189
190   /// Adds a floating attribute (that may be added/removed during the data life)
191   /// \param theID identifier of the attribute that can be referenced by this ID later
192   /// \param theAttrType type of the created attribute (received from the type method)
193   /// \param theGroup identifier of the group this attribute belongs to, may be an empty string
194   MODEL_EXPORT virtual AttributePtr
195     addFloatingAttribute(const std::string& theID, const std::string theAttrType,
196       const std::string& theGroup);
197
198   /// Returns all groups of this data (ordered).
199   MODEL_EXPORT virtual void allGroups(std::list<std::string>& theGroups);
200
201   /// Returns an ordered list of attributes that belong to the given group
202   MODEL_EXPORT virtual void attributesOfGroup(const std::string& theGroup,
203     std::list<std::shared_ptr<ModelAPI_Attribute> >& theAttrs);
204
205   /// Remove all attributes of the given group
206   MODEL_EXPORT virtual void removeAttributes(const std::string& theGroup);
207
208   /// Useful method for "set" methods of the attributes: sends an UPDATE event and
209   /// makes attribute initialized
210   MODEL_EXPORT virtual void sendAttributeUpdated(ModelAPI_Attribute* theAttr);
211   /// Blocks sending "attribute updated" if theBlock is true
212   /// \param theBlock allows switching on/off the blocking state
213   /// \param theSendMessage if false, it does not send the update message
214   ///            even if something is changed
215   ///            (normally is it used in attributeChanged because this message will be sent anyway)
216   /// \returns the previous state of block
217   MODEL_EXPORT virtual bool blockSendAttributeUpdated(
218     const bool theBlock, const bool theSendMessage = true);
219
220   /// Puts feature to the document data sub-structure
221   MODEL_EXPORT void setLabel(TDF_Label theLab);
222
223   /// Sets the object of this data
224   MODEL_EXPORT virtual void setObject(ObjectPtr theObject)
225   {
226     myObject = theObject;
227   }
228
229   /// Erases all the data from the data model
230   MODEL_EXPORT virtual void erase();
231
232   /// Stores the state of the object to execute it later accordingly
233   MODEL_EXPORT virtual void execState(const ModelAPI_ExecState theState);
234
235   /// Returns the state of the latest execution of the feature
236   MODEL_EXPORT virtual ModelAPI_ExecState execState();
237
238   /// Registers error during the execution, causes the ExecutionFailed state
239   MODEL_EXPORT virtual void setError(const std::string& theError, bool theSend = true);
240
241   /// Erases the error string if it is not empty
242   void eraseErrorString();
243
244   /// Registers error during the execution, causes the ExecutionFailed state
245   MODEL_EXPORT virtual std::string error() const;
246
247   /// Returns the identifier of feature-owner, unique in this document
248   MODEL_EXPORT virtual int featureId() const;
249
250   /// returns all objects referenced to this
251   MODEL_EXPORT virtual const std::set<AttributePtr>& refsToMe() {return myRefsToMe;}
252
253   /// returns all references by attributes of this data
254   /// \param theRefs returned list of pairs:
255   ///                id of referenced attribute and list of referenced objects
256   MODEL_EXPORT virtual void referencesToObjects(
257     std::list<std::pair<std::string, std::list<ObjectPtr> > >& theRefs);
258
259   /// Copies all attributes content into theTarget data
260   MODEL_EXPORT virtual void copyTo(std::shared_ptr<ModelAPI_Data> theTarget);
261
262   /// Returns the invalid data pointer (to avoid working with NULL shared pointers in swig)
263   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Data> invalidPtr();
264
265   /// Returns the invalid data pointer: static method
266   static std::shared_ptr<ModelAPI_Data> invalidData();
267
268   /// Identifier of the transaction when object (feature or result) was updated last time.
269   MODEL_EXPORT virtual int updateID();
270
271   /// Identifier of the transaction when object (feature or result) was updated last time.
272   /// This method is called by the updater.
273   MODEL_EXPORT virtual void setUpdateID(const int theID);
274
275   /// Returns true if the given object is owner of this data (needed for correct erase of object
276   /// with duplicated data)
277   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Object> owner();
278
279 protected:
280   /// Returns true if "is in history" custom behaviors is defined for the feature
281   MODEL_EXPORT virtual bool isInHistory();
282
283   /// Defines the custom "is in history" behavior
284   MODEL_EXPORT virtual void setIsInHistory(const bool theFlag);
285
286   /// Returns true if the object is deleted, but some data is still kept in memory
287   MODEL_EXPORT virtual bool isDeleted();
288
289   /// Sets true if the object is deleted, but some data is still kept in memory
290   MODEL_EXPORT virtual void setIsDeleted(const bool theFlag);
291
292   /// Erases all attributes from myAttrs, but keeping them in the data structure
293   void clearAttributes();
294
295 private:
296   /// Removes a back reference (with identifier which attribute references to this object)
297   /// \param theFeature feature referenced to this
298   /// \param theAttrID identifier of the attribute that is references from theFeature to this
299   void removeBackReference(ObjectPtr theObject, std::string theAttrID);
300   /// Removes a back reference (by the attribute)
301   /// \param theAttr the referenced attribute
302   void removeBackReference(AttributePtr theAttr);
303   /// Adds a back reference (with identifier which attribute references to this object
304   /// \param theFeature feature referenced to this
305   /// \param theAttrID identifier of the attribute that is references from theFeature to this
306   /// \param theApplyConcealment applies concealment flag changes
307   void addBackReference(FeaturePtr theFeature, std::string theAttrID,
308     const bool theApplyConcealment = true);
309   /// Adds a back reference to an object
310   /// \param theObject object referenced to this
311   /// \param theAttrID identifier of the attribute that is references from theFolder to this
312   void addBackReference(ObjectPtr theObject, std::string theAttrID);
313
314   /// Makes the concealment flag up to date for this object-owner.
315   MODEL_EXPORT virtual void updateConcealmentFlag();
316
317   /// Returns true if object must be displayed in the viewer: flag is stored in the
318   /// data model, so on undo/redo, open/save or recreation of object by history-playing it keeps
319   /// the original state in the current transaction.
320   MODEL_EXPORT virtual bool isDisplayed();
321
322   /// Sets the displayed/hidden state of the object. If it is changed, sends the "redisplay"
323   /// signal.
324   MODEL_EXPORT virtual void setDisplayed(const bool theDisplay);
325
326   /// Returns \c true if theAttribute1 is going earlier than theAttribute2 in the data
327   MODEL_EXPORT virtual bool isPrecedingAttribute(const std::string& theAttribute1,
328                                                  const std::string& theAttribute2) const;
329
330 };
331
332 /// Generic method to register back reference, used in referencing attributes.
333 /// Without concealment change, it will be done later, on synchronization.
334 #define ADD_BACK_REF(TARGET) \
335   if (TARGET.get() != NULL) { \
336     std::shared_ptr<Model_Data> aTargetData = \
337         std::dynamic_pointer_cast<Model_Data>((TARGET)->data()); \
338     FeaturePtr anAttributeOwnerFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner()); \
339     if (anAttributeOwnerFeature.get()) \
340       aTargetData->addBackReference(anAttributeOwnerFeature, id(), false); \
341     else { \
342       FolderPtr anAttributeOwnerFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(owner()); \
343       if (anAttributeOwnerFolder.get()) \
344         aTargetData->addBackReference(ObjectPtr(anAttributeOwnerFolder), id()); \
345     } \
346   }
347
348 /// Generic method to unregister back reference, used in referencing attributes.
349 /// Without concealment change, it will be done later, on synchronization.
350 #define REMOVE_BACK_REF(TARGET) \
351   if (TARGET.get() != NULL) { \
352     std::shared_ptr<Model_Data> aTargetData = \
353         std::dynamic_pointer_cast<Model_Data>((TARGET)->data()); \
354     FeaturePtr anAttOwnerFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner()); \
355     if (anAttOwnerFeature.get()) \
356       aTargetData->removeBackReference(anAttOwnerFeature, id()); \
357     else { \
358       FolderPtr anAttributeOwnerFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(owner()); \
359       if (anAttributeOwnerFolder.get()) \
360         aTargetData->removeBackReference(ObjectPtr(anAttributeOwnerFolder), id()); \
361     } \
362   }
363
364 #endif