1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #ifndef ModelAPI_Document_H_
22 #define ModelAPI_Document_H_
25 #include "ModelAPI_Entity.h"
33 class ModelAPI_Feature;
34 class ModelAPI_Folder;
35 class ModelAPI_Object;
36 class ModelAPI_Result;
37 class ModelAPI_ResultConstruction;
38 class ModelAPI_ResultBody;
39 class ModelAPI_ResultPart;
40 class ModelAPI_ResultGroup;
41 class ModelAPI_ResultField;
42 class ModelAPI_ResultParameter;
46 /**\class ModelAPI_Document
48 * \brief Document for internal data structure of any object storage.
49 * Document contains all data that must be stored/retrived in the file.
50 * Also it provides acces to this data: open/save, transactions management etc.
52 class ModelAPI_Document: public ModelAPI_Entity
55 //! Returns the kind of the document: "PartSet", "Part", or something else.
56 //! This kind is used for feature buttons enable/disable depending on active document
57 //! (it uses workbench "document" identifier in XML configuration file for this)
58 virtual const std::string& kind() const = 0;
60 //! Removes document data
61 //! \param theForever if it is false, document is just hiden
62 //! (to keep possibility make it back on Undo/Redo)
63 virtual void close(const bool theForever = false) = 0;
65 //! Adds to the document the new feature of the given feature id
66 //! \param theID creates feature and puts it in the document (if it is not action)
67 //! \param theMakeCurrent to make current this new feature in this document
68 virtual std::shared_ptr<ModelAPI_Feature> addFeature(std::string theID,
69 const bool theMakeCurrent = true) = 0;
71 //! Return a list of features, which refers to the feature
72 //! \param theFeature a feature
73 //! \param theRefs a list of features
74 //! \param isSendError a flag whether the error message should be send
75 virtual void refsToFeature(std::shared_ptr<ModelAPI_Feature> theFeature,
76 std::set<std::shared_ptr<ModelAPI_Feature> >& theRefs,
77 const bool isSendError = true) = 0;
79 //! Removes the feature from the document
80 //! \param theFeature a feature to be removed
81 virtual void removeFeature(std::shared_ptr<ModelAPI_Feature> theFeature) = 0;
83 //! Moves the feature to make it after the given one in the history.
84 virtual void moveFeature(std::shared_ptr<ModelAPI_Feature> theMoved,
85 std::shared_ptr<ModelAPI_Feature> theAfterThis) = 0;
87 ///! Returns the id of the document
88 virtual const int id() const = 0;
90 //! Returns the object in the group by the index (started from zero)
91 //! \param theGroupID group that contains an object
92 //! \param theIndex zero-based index of feature in the group
93 //! \param theAllowFolder take into account grouping feature by folders
94 virtual std::shared_ptr<ModelAPI_Object> object(const std::string& theGroupID,
96 const bool theAllowFolder = false) = 0;
98 //! Returns the first found object in the group by the object name
99 //! \param theGroupID group that contains an object
100 //! \param theName name of the object to search
101 //! \returns null if such object is not found
102 virtual std::shared_ptr<ModelAPI_Object> objectByName(const std::string& theGroupID,
103 const std::string& theName) = 0;
105 //! Returns the object index in the group. Object must be visible. Otherwise returns -1.
106 //! \param theObject object of this document
107 //! \param theAllowFolder take into account grouping feature by folders
108 //! \returns index started from zero, or -1 if object is invisible or belongs to another document
109 virtual const int index(std::shared_ptr<ModelAPI_Object> theObject,
110 const bool theAllowFolder = false) = 0;
112 //! Returns the number of objects in the group of objects
113 //! \param theGroupID group of objects
114 //! \param theAllowFolder take into account grouping feature by folders
115 virtual int size(const std::string& theGroupID, const bool theAllowFolder = false) = 0;
117 //! Returns the feature that is currently edited in this document, normally
118 //! this is the latest created feature
119 //! \param theVisible use visible features only: flag is true for Object Browser functionality
120 //! \returns null if next created feature must be the first
121 virtual std::shared_ptr<ModelAPI_Feature> currentFeature(const bool theVisible) = 0;
123 //! Sets the current feature: all features below will be disabled, new features
124 //! will be appended after this one. This method does not flushes the events appeared:
125 //! it will be done by the finishOperation, or direct flushes
126 //! \param theCurrent the selected feature as current: blow it everythin become disabled
127 //! \param theVisible use visible features only: flag is true for Object Browser functionality
128 virtual void setCurrentFeature(std::shared_ptr<ModelAPI_Feature> theCurrent,
129 const bool theVisible) = 0;
130 //! Makes the current feature one feature upper
131 virtual void setCurrentFeatureUp() = 0;
133 //! Returns the number of all features: in the history or not
134 virtual int numInternalFeatures() = 0;
135 //! Returns the feature by zero-based index: features in the history or not
136 virtual std::shared_ptr<ModelAPI_Feature> internalFeature(const int theIndex) = 0;
137 //! Performs synchronization of transactions with the module document:
138 //! If some document is not active (by undo of activation) but in memory,
139 //! on activation the transactions must be synchronised because all redos performed
140 //! wihtout this participation
141 virtual void synchronizeTransactions() = 0;
143 //! Returns feature by the id of the feature (produced by the Data "featureId" method)
144 virtual std::shared_ptr<ModelAPI_Feature> featureById(const int theId) = 0;
146 //! To virtually destroy the fields of successors
147 MODELAPI_EXPORT virtual ~ModelAPI_Document();
149 //! Creates a construction result
150 virtual std::shared_ptr<ModelAPI_ResultConstruction> createConstruction(
151 const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0) = 0;
152 //! Creates a body result
153 virtual std::shared_ptr<ModelAPI_ResultBody> createBody(
154 const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0) = 0;
155 //! Creates a part result
156 virtual std::shared_ptr<ModelAPI_ResultPart> createPart(
157 const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0) = 0;
158 //! Copies a part result, keeping the reference to the origin
159 virtual std::shared_ptr<ModelAPI_ResultPart> copyPart(
160 const std::shared_ptr<ModelAPI_ResultPart>& theOrigin,
161 const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0) = 0;
162 //! Creates a group result
163 virtual std::shared_ptr<ModelAPI_ResultGroup> createGroup(
164 const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0) = 0;
165 //! Creates a field result
166 virtual std::shared_ptr<ModelAPI_ResultField> createField(
167 const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0) = 0;
168 //! Creates a parameter result
169 virtual std::shared_ptr<ModelAPI_ResultParameter> createParameter(
170 const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0) = 0;
172 //! Returns a feature by result (owner of result)
173 virtual std::shared_ptr<ModelAPI_Feature> feature(
174 const std::shared_ptr<ModelAPI_Result>& theResult) = 0;
176 //! Returns all features of the document including the hidden features which are not in
177 //! history. Not very fast method, for calling once, not in big cycles.
178 virtual std::list<std::shared_ptr<ModelAPI_Feature> > allFeatures() = 0;
180 //! Returns all objects of the document including the hidden features which are not in
181 //! history. Not very fast method, for calling once, not in big cycles.
182 virtual std::list<std::shared_ptr<ModelAPI_Object> > allObjects() = 0;
184 //! Creates a folder (group of the features in the object browser)
185 //! \param theAddBefore a feature, the folder is added before
186 //! (if empty, the folder is added after the last feature)
187 virtual std::shared_ptr<ModelAPI_Folder> addFolder(
188 std::shared_ptr<ModelAPI_Feature> theAddBefore = std::shared_ptr<ModelAPI_Feature>()) = 0;
189 //! Removes the folder from the document (all features in the folder will be kept).
190 virtual void removeFolder(std::shared_ptr<ModelAPI_Folder> theFolder) = 0;
191 //! Search a folder above the list of features applicable to store them
192 //! (it means the list of features stored in the folder should be consequential)
193 //! \return Empty pointer if there is no applicable folder
194 virtual std::shared_ptr<ModelAPI_Folder> findFolderAbove(
195 const std::list<std::shared_ptr<ModelAPI_Feature> >& theFeatures) = 0;
196 //! Search a folder below the list of features applicable to store them
197 //! (it means the list of features stored in the folder should be consequential)
198 //! \return Empty pointer if there is no applicable folder
199 virtual std::shared_ptr<ModelAPI_Folder> findFolderBelow(
200 const std::list<std::shared_ptr<ModelAPI_Feature> >& theFeatures) = 0;
201 //! Search a folder containing the given feature.
202 //! Addtionally calculates a zero-based index of the feature in this folder.
203 //! \param theFeature feature to search
204 //! \param theIndexInFolder zero-based index in the folder or -1 if the feature is top-level.
205 //! \return the folder containing the feature or empty pointer if the feature is top-level.
206 virtual std::shared_ptr<ModelAPI_Folder> findContainingFolder(
207 const std::shared_ptr<ModelAPI_Feature>& theFeature,
208 int& theIndexInFolder) = 0;
209 //! Add a list of features to the folder. The correctness of the adding is not performed
210 //! (such checks have been done in corresponding find.. method).
211 //! \return \c true if the movement is successfull
212 virtual bool moveToFolder(const std::list<std::shared_ptr<ModelAPI_Feature> >& theFeatures,
213 const std::shared_ptr<ModelAPI_Folder>& theFolder) = 0;
214 //! Remove features from the folder
215 //! \param theFeatures list of features to be removed
216 //! \param theBefore extract features before the folder (this parameter is applicable only
217 //! when all features in the folder are taking out,
218 //! in other cases the direction is taken automatically)
219 //! \return \c true if the features have been moved out
220 virtual bool removeFromFolder(
221 const std::list<std::shared_ptr<ModelAPI_Feature> >& theFeatures,
222 const bool theBefore = true) = 0;
224 //! Informs the document that it becomes active and some actions must be performed
225 virtual void setActive(const bool theFlag) = 0;
226 //! Returns true if this document is currently active
227 virtual bool isActive() const = 0;
229 /// Returns true if document is opened and valid
230 virtual bool isOpened() = 0;
232 /// Returns the feature that produced the given face of the given result.
233 virtual std::shared_ptr<ModelAPI_Feature> producedByFeature(
234 std::shared_ptr<ModelAPI_Result> theResult,
235 const std::shared_ptr<GeomAPI_Shape>& theShape) = 0;
237 /// Returns true if theLater is in history of features creation later than theCurrent
238 virtual bool isLater(std::shared_ptr<ModelAPI_Feature> theLater,
239 std::shared_ptr<ModelAPI_Feature> theCurrent) const = 0;
241 //! Internally makes document know that feature was removed or added in history after creation
242 MODELAPI_EXPORT virtual void updateHistory(const std::string theGroup) = 0;
244 /// Stores in the document boolean flags: states of the nodes in the object browser.
245 /// Normally is called outside of the transaction, just before "save".
246 MODELAPI_EXPORT virtual void storeNodesState(const std::list<bool>& theStates) = 0;
248 /// Returns the stored nodes states. Normally it is calles just after "open".
249 /// Appends the values to theStates list.
250 MODELAPI_EXPORT virtual void restoreNodesState(std::list<bool>& theStates) const = 0;
252 /// Just removes all features without touching the document data (to be able undo)
253 MODELAPI_EXPORT virtual void eraseAllFeatures() = 0;
256 //! Only for SWIG wrapping it is here
257 MODELAPI_EXPORT ModelAPI_Document();
259 //! Internally makes document know that feature was removed or added in history after creation
260 MODELAPI_EXPORT virtual void updateHistory(const std::shared_ptr<ModelAPI_Object> theObject) = 0;
262 friend class ModelAPI_Object; // to add or remove from the history
263 friend class ModelAPI_Result; // to add or remove from the history
266 //! Pointer on document object
267 typedef std::shared_ptr<ModelAPI_Document> DocumentPtr;