]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_Document.h
Salome HOME
The save returns the list of saved files
[modules/shaper.git] / src / Model / Model_Document.h
1 // File:        Model_Document.h
2 // Created:     28 Feb 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef Model_Document_H_
6 #define Model_Document_H_
7
8 #include <Model.h>
9 #include <ModelAPI_Document.h>
10 #include <ModelAPI_Feature.h>
11 #include <ModelAPI_Result.h>
12
13 #include <TDocStd_Document.hxx>
14 #include <NCollection_DataMap.hxx>
15 #include <TDF_Label.hxx>
16 #include <map>
17 #include <set>
18
19 class Handle_Model_Document;
20
21 // for TDF_Label map usage
22 static Standard_Integer HashCode(const TDF_Label& theLab, const Standard_Integer theUpper);
23 static Standard_Boolean IsEqual(const TDF_Label& theLab1, const TDF_Label& theLab2);
24
25 /**\class Model_Document
26  * \ingroup DataModel
27  * \brief Document for internal data structure of any object storage.
28  * Document contains all data that must be stored/retrived in the file.
29  * Also it provides acces to this data: open/save, transactions management etc.
30  */
31 class Model_Document : public ModelAPI_Document
32 {
33  public:
34
35   //! Loads the OCAF document from the file.
36   //! \param theFileName full name of the file to load
37   //! \param theStudyID identifier of the SALOME study to associate with loaded file
38   //! \returns true if file was loaded successfully
39   MODEL_EXPORT virtual bool load(const char* theFileName);
40
41   //! Saves the OCAF document to the file.
42   //! \param theFileName full name of the file to store
43   //! \param theResults the result full file names that were stored by "save"
44   //! \returns true if file was stored successfully
45   MODEL_EXPORT virtual bool save(const char* theFileName, std::list<std::string>& theResults);
46
47   //! Removes document data
48   MODEL_EXPORT virtual void close();
49
50   //! Starts a new operation (opens a tansaction)
51   MODEL_EXPORT virtual void startOperation();
52   //! Finishes the previously started operation (closes the transaction)
53   //! Returns true if transaction in this document is not empty and really was performed
54   MODEL_EXPORT virtual void finishOperation();
55   //! Aborts the operation 
56   MODEL_EXPORT virtual void abortOperation();
57   //! Returns true if operation has been started, but not yet finished or aborted
58   MODEL_EXPORT virtual bool isOperation();
59   //! Returns true if document was modified (since creation/opening)
60   MODEL_EXPORT virtual bool isModified();
61
62   //! Returns True if there are available Undos
63   MODEL_EXPORT virtual bool canUndo();
64   //! Undoes last operation
65   MODEL_EXPORT virtual void undo();
66   //! Returns True if there are available Redos
67   MODEL_EXPORT virtual bool canRedo();
68   //! Redoes last operation
69   MODEL_EXPORT virtual void redo();
70
71   //! Adds to the document the new feature of the given feature id
72   //! \param creates feature and puts it in the document
73   MODEL_EXPORT virtual FeaturePtr addFeature(std::string theID);
74
75   //! Removes the feature from the document (with result)
76   MODEL_EXPORT virtual void removeFeature(FeaturePtr theFeature);
77
78   //! Returns the existing feature by the label
79   //! \param theLabel base label of the feature
80   MODEL_EXPORT virtual FeaturePtr feature(TDF_Label& theLabel);
81
82   //! Returns the existing object: result or feature
83   //! \param theLabel base label of the object
84   MODEL_EXPORT virtual ObjectPtr object(TDF_Label theLabel);
85
86   //! Adds a new sub-document by the identifier, or returns existing one if it is already exist
87   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Document> subDocument(std::string theDocID);
88
89   ///! Returns the id of hte document
90   MODEL_EXPORT virtual const std::string& id() const
91   {
92     return myID;
93   }
94
95   //! Returns the feature in the group by the index (started from zero)
96   //! \param theGroupID group that contains a feature
97   //! \param theIndex zero-based index of feature in the group
98   //! \param isOperation if it is true, returns feature (not Object)
99   //! \param theHidden if it is true, it counts also the features that are not in tree
100   MODEL_EXPORT virtual ObjectPtr object(const std::string& theGroupID, const int theIndex,
101                                         const bool theHidden = false);
102
103   //! Returns the number of features in the group
104   //! If theHidden is true, it counts also the features that are not in tree
105   MODEL_EXPORT virtual int size(const std::string& theGroupID, const bool theHidden = false);
106
107   /// Creates a construction cresults
108   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_ResultConstruction> createConstruction(
109       const boost::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0);
110   /// Creates a body results
111   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_ResultBody> createBody(
112       const boost::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0);
113   /// Creates a part results
114   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_ResultPart> createPart(
115       const boost::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0);
116
117   //! Returns a feature by result (owner of result)
118   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Feature>
119     feature(const boost::shared_ptr<ModelAPI_Result>& theResult);
120
121   ///! Returns true if parametric updater need to execute feature on recomputartion
122   ///! On abort, undo or redo it is not necessary: results in document are updated automatically
123   bool executeFeatures() {return myExecuteFeatures;}
124
125  protected:
126
127   //! Returns (creates if needed) the features label
128   TDF_Label featuresLabel();
129
130   //! Initializes feature with a unique name in this group (unique name is generated as 
131   //! feature type + "_" + index
132   void setUniqueName(FeaturePtr theFeature);
133
134   //! Synchronizes myFeatures list with the updated document
135   void synchronizeFeatures(const bool theMarkUpdated = false);
136
137   //! Creates new document with binary file format
138   Model_Document(const std::string theID);
139
140   Handle_TDocStd_Document document()
141   {
142     return myDoc;
143   }
144
145   //! performas compactification of all nested operations into one
146   void compactNested();
147
148   //! Initializes the data fields of the feature
149   void initData(ObjectPtr theObj, TDF_Label theLab, const int theTag);
150
151   //! Allows to store the result in the data tree of the document (attaches 'data' of result to tree)
152   MODEL_EXPORT virtual void storeResult(boost::shared_ptr<ModelAPI_Data> theFeatureData,
153                                         boost::shared_ptr<ModelAPI_Result> theResult,
154                                         const int theResultIndex = 0);
155
156   //! returns the label of result by index; creates this label if it was not created before
157   TDF_Label resultLabel(const boost::shared_ptr<ModelAPI_Data>& theFeatureData, const int theResultIndex);
158
159   //! Updates the results list of the feature basing on the current data tree
160   void updateResults(FeaturePtr theFeature);
161
162   friend class Model_Application;
163   friend class Model_PluginManager;
164   friend class DFBrowser;
165
166  private:
167   std::string myID;  ///< identifier of the document in the application
168   Handle_TDocStd_Document myDoc;  ///< OCAF document
169   /// number of transactions after the last "save" call, used for "IsModified" method
170   int myTransactionsAfterSave;
171   /// number of nested transactions performed (or -1 if not nested)
172   int myNestedNum;
173   /// All features managed by this document (not only in history of OB)
174   /// For optimization mapped by labels
175   NCollection_DataMap<TDF_Label, FeaturePtr> myObjs;
176
177   ///< set of identifiers of sub-documents of this document
178   std::set<std::string> mySubs;
179   /// transaction indexes (related to myTransactionsAfterSave) which were empty in this doc
180   std::map<int, bool> myIsEmptyTr;
181   /// If it is true, features are not executed on update (on abort, undo, redo)
182   bool myExecuteFeatures;
183 };
184
185 #endif