Salome HOME
3b5fa322bbd8e56adb4861e9c56afe9a92ceee96
[modules/shaper.git] / src / ModelAPI / ModelAPI_Data.h
1 // Copyright (C) 2014-2017  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<mailto:webmaster.salome@opencascade.com>
18 //
19
20 #ifndef ModelAPI_Data_H_
21 #define ModelAPI_Data_H_
22
23 #ifdef _WINDOWS // to avoid too long decorated name warning
24 #pragma warning( disable : 4503 )
25 #endif
26
27 #include "ModelAPI.h"
28 #include <string>
29 #include <list>
30 #include <set>
31 #include <memory>
32
33 class ModelAPI_Attribute;
34 class ModelAPI_AttributeDocRef;
35 class ModelAPI_AttributeInteger;
36 class ModelAPI_AttributeDouble;
37 class ModelAPI_AttributeDoubleArray;
38 class ModelAPI_AttributeReference;
39 class ModelAPI_AttributeRefAttr;
40 class ModelAPI_AttributeRefList;
41 class ModelAPI_AttributeRefAttrList;
42 class ModelAPI_AttributeBoolean;
43 class ModelAPI_AttributeString;
44 class ModelAPI_AttributeStringArray;
45 class ModelAPI_Document;
46 class ModelAPI_Attribute;
47 class ModelAPI_Feature;
48 class ModelAPI_AttributeSelection;
49 class ModelAPI_AttributeSelectionList;
50 class ModelAPI_AttributeIntArray;
51 class ModelAPI_AttributeTables;
52 class ModelAPI_Object;
53 class GeomAPI_Shape;
54
55 /// Enumeration that contains the execution status of the Object
56 enum ModelAPI_ExecState {
57   ModelAPI_StateDone, ///< execution was performed and result is up to date
58   ModelAPI_StateMustBeUpdated, ///< execution must be performed to obtain the up to date result
59   ModelAPI_StateExecFailed, ///< execution was failed (results are deleted in this case)
60   ModelAPI_StateInvalidArgument, ///< execution was not performed (results are deleted in this case)
61   ModelAPI_StateNothing ///< internal state that actually means that nothing must be changed
62 };
63
64 /**\class ModelAPI_Data
65  * \ingroup DataModel
66  * \brief General object of the application that allows
67  * to get/set attributes from the document and compute result of an operation.
68  */
69
70 class MODELAPI_EXPORT ModelAPI_Data
71 {
72  public:
73
74   /// Returns the name of the feature visible by the user in the object browser
75   virtual std::string name() = 0;
76
77   /// Defines the name of the feature visible by the user in the object browser
78   virtual void setName(const std::string& theName) = 0;
79
80   /// Returns the attribute that references to another document
81   virtual std::shared_ptr<ModelAPI_AttributeDocRef> document(const std::string& theID) = 0;
82   /// Returns the attribute that contains real value with double precision
83   virtual std::shared_ptr<ModelAPI_AttributeDouble> real(const std::string& theID) = 0;
84   /// Returns the attribute that contains double values array
85   virtual std::shared_ptr<ModelAPI_AttributeDoubleArray> realArray(const std::string& theID) = 0;
86   /// Returns the attribute that contains integer value
87   virtual std::shared_ptr<ModelAPI_AttributeInteger> integer(const std::string& theID) = 0;
88   /// Returns the attribute that contains reference to a feature
89   virtual std::shared_ptr<ModelAPI_AttributeReference> reference(const std::string& theID) = 0;
90   /// Returns the attribute that contains selection to a shape
91   virtual std::shared_ptr<ModelAPI_AttributeSelection> selection(const std::string& theID) = 0;
92   /// Returns the attribute that contains selection to a shape
93   virtual std::shared_ptr<ModelAPI_AttributeSelectionList>
94     selectionList(const std::string& theID) = 0;
95   /// Returns the attribute that contains reference to an attribute of a feature
96   virtual std::shared_ptr<ModelAPI_AttributeRefAttr> refattr(const std::string& theID) = 0;
97   /// Returns the attribute that contains list of references to features
98   virtual std::shared_ptr<ModelAPI_AttributeRefList> reflist(const std::string& theID) = 0;
99   /// Returns the attribute that contains list of references to features or reference to
100   /// an attribute of a feature
101   virtual std::shared_ptr<ModelAPI_AttributeRefAttrList> refattrlist(const std::string& theID) = 0;
102   /// Returns the attribute that contains boolean value
103   virtual std::shared_ptr<ModelAPI_AttributeBoolean> boolean(const std::string& theID) = 0;
104   /// Returns the attribute that contains boolean value
105   virtual std::shared_ptr<ModelAPI_AttributeString> string(const std::string& theID) = 0;
106   /// Returns the attribute that contains integer values array
107   virtual std::shared_ptr<ModelAPI_AttributeIntArray> intArray(const std::string& theID) = 0;
108   /// Returns the attribute that contains string values array
109   virtual std::shared_ptr<ModelAPI_AttributeStringArray> stringArray(const std::string& theID) = 0;
110   /// Returns the attribute that contains tables
111   virtual std::shared_ptr<ModelAPI_AttributeTables> tables(const std::string& theID) = 0;
112
113   /// Returns the generic attribute by identifier
114   /// \param theID identifier of the attribute
115   virtual std::shared_ptr<ModelAPI_Attribute> attribute(const std::string& theID) = 0;
116   /// Returns all attributes of the feature of the given type
117   /// or all attributes if "theType" is empty
118   virtual std::list<std::shared_ptr<ModelAPI_Attribute> >
119   attributes(const std::string& theType) = 0;
120   /// Returns all attributes ids of the feature of the given type
121   /// or all attributes if "theType" is empty
122   virtual std::list<std::string> attributesIDs(const std::string& theType) = 0;
123   /// Identifier by the id (not fast, iteration by map)
124   /// \param theAttr attribute already created in this data
125   virtual const std::string& id(const std::shared_ptr<ModelAPI_Attribute>& theAttr) = 0;
126   /// Returns true if data belongs to same features
127   virtual bool isEqual(const std::shared_ptr<ModelAPI_Data>& theData) = 0;
128   /// Returns true if it is correctly connected to the data model
129   virtual bool isValid() = 0;
130
131   /// Initializes object by the attributes: must be called just after the object is created
132   /// for each attribute of the object
133   /// \param theID identifier of the attribute that can be referenced by this ID later
134   /// \param theAttrType type of the created attribute (received from the type method)
135   /// \returns the just created attribute
136   virtual std::shared_ptr<ModelAPI_Attribute>
137     addAttribute(const std::string& theID, const std::string theAttrType) = 0;
138
139   /// Useful method for "set" methods of the attributes: sends an UPDATE event and
140   /// makes attribute initialized
141   virtual void sendAttributeUpdated(ModelAPI_Attribute* theAttr) = 0;
142   /// Blocks sending "attribute updated" if theBlock is true
143   /// \param theID identifier of the attribute that can be referenced by this ID later
144   /// \param theAttrType type of the created attribute (received from the type method)
145   /// \returns the previous state of block
146   virtual bool blockSendAttributeUpdated(
147     const bool theBlock, const bool theSendMessage = true) = 0;
148
149   /// Erases all the data from the data model
150   virtual void erase() = 0;
151
152   /// To virtually destroy the fields of successors
153   virtual ~ModelAPI_Data();
154
155   /// Stores the state of the object to execute it later accordingly
156   virtual void execState(const ModelAPI_ExecState theState) = 0;
157
158   /// Returns the state of the latest execution of the feature
159   virtual ModelAPI_ExecState execState() = 0;
160
161   /// Registers error during the execution, causes the ExecutionFailed state
162   virtual void setError(const std::string& theError, bool theSend = true) = 0;
163
164   /// Returns error, arose during the execution
165   virtual std::string error() const = 0;
166
167   /// Returns the identifier of feature-owner, unique in this document
168   virtual int featureId() const = 0;
169
170   /// returns all objects referenced to this
171   virtual const std::set<std::shared_ptr<ModelAPI_Attribute> >& refsToMe() = 0;
172
173   /// returns all references by attributes of this data
174   /// \param theRefs returned list of pairs: id of referenced attribute and
175   ///                list of referenced objects
176   virtual void referencesToObjects(
177     std::list<std::pair<std::string, std::list<std::shared_ptr<ModelAPI_Object> > > >& theRefs) =0;
178
179   /// Copies all attributes content into theTarget data
180   virtual void copyTo(std::shared_ptr<ModelAPI_Data> theTarget) = 0;
181
182   /// Returns the invalid data pointer (to avoid working with NULL shared ptrs in swig)
183   virtual std::shared_ptr<ModelAPI_Data> invalidPtr() = 0;
184
185   /// Identifier of the transaction when object (feature or result) was updated last time.
186   virtual int updateID() = 0;
187
188   /// Identifier of the transaction when object (feature or result) was updated last time.
189   /// This method is called by the updater.
190   virtual void setUpdateID(const int theID) = 0;
191
192   /// Returns the owner of htis data
193   virtual std::shared_ptr<ModelAPI_Object> owner() = 0;
194
195   /// Returns true if the object is deleted, but some data is still keept in memory
196   virtual bool isDeleted() = 0;
197
198   /// Sets true if the object is deleted, but some data is still keept in memory
199   virtual void setIsDeleted(const bool theFlag) = 0;
200
201  protected:
202   /// Objects are created for features automatically
203   ModelAPI_Data();
204
205   /// Returns true if "is in history" custom behaviors is defined for the feature
206   virtual bool isInHistory() = 0;
207
208   /// Defines the custom "is in history" behavior
209   virtual void setIsInHistory(const bool theFlag) = 0;
210
211   /// Returns true if object must be displayed in the viewer: flag is stored in the
212   /// data model, so on undo/redo, open/save or recreation of object by history-playing it keeps
213   /// the original state i nthe current transaction.
214   virtual bool isDisplayed() = 0;
215
216   /// Sets the displayed/hidden state of the object. If it is changed, sends the "redisplay"
217   /// signal.
218   virtual void setDisplayed(const bool theDisplay) = 0;
219
220   friend class ModelAPI_Object;
221 };
222
223 typedef std::shared_ptr<ModelAPI_Data> DataPtr;
224
225 #endif