]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_Document.h
Salome HOME
Merge branch 'master' of newgeom:newgeom
[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_HeaderFile
6 #define Model_Document_HeaderFile
7
8 #include <Model.h>
9 #include <ModelAPI_Document.h>
10
11 #include <TDocStd_Document.hxx>
12 #include <map>
13 #include <set>
14
15 class Handle_Model_Document;
16
17 /**\class Model_Document
18  * \ingroup DataModel
19  * \brief Document for internal data structure of any object storage.
20  * Document contains all data that must be stored/retrived in the file.
21  * Also it provides acces to this data: open/save, transactions management etc.
22  */
23 class Model_Document: public ModelAPI_Document
24 {
25 public:
26
27   //! Loads the OCAF document from the file.
28   //! \param theFileName full name of the file to load
29   //! \param theStudyID identifier of the SALOME study to associate with loaded file
30   //! \returns true if file was loaded successfully
31   MODEL_EXPORT virtual bool load(const char* theFileName);
32
33   //! Saves the OCAF document to the file.
34   //! \param theFileName full name of the file to store
35   //! \returns true if file was stored successfully
36   MODEL_EXPORT virtual bool save(const char* theFileName);
37
38   //! Removes document data
39   MODEL_EXPORT virtual void close();
40
41   //! Starts a new operation (opens a tansaction)
42   MODEL_EXPORT virtual void startOperation();
43   //! Finishes the previously started operation (closes the transaction)
44   //! Returns true if transaction in this document is not empty and really was performed
45   MODEL_EXPORT virtual void finishOperation();
46   //! Aborts the operation 
47   MODEL_EXPORT virtual void abortOperation();
48   //! Returns true if operation has been started, but not yet finished or aborted
49   MODEL_EXPORT virtual bool isOperation();
50   //! Returns true if document was modified (since creation/opening)
51   MODEL_EXPORT virtual bool isModified();
52
53   //! Returns True if there are available Undos
54   MODEL_EXPORT virtual bool canUndo();
55   //! Undoes last operation
56   MODEL_EXPORT virtual void undo();
57   //! Returns True if there are available Redos
58   MODEL_EXPORT virtual bool canRedo();
59   //! Redoes last operation
60   MODEL_EXPORT virtual void redo();
61
62   //! Adds to the document the new feature of the given feature id
63   //! \param creates feature and puts it in the document
64   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Feature> addFeature(std::string theID);
65
66   //! Returns the existing feature by the label
67   //! \param theLabel base label of the feature
68   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Feature> feature(TDF_Label& theLabel);
69
70   //! Adds a new sub-document by the identifier, or returns existing one if it is already exist
71   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Document> subDocument(std::string theDocID);
72
73   ///! Returns the id of hte document
74   MODEL_EXPORT virtual const std::string& id() const {return myID;}
75
76   //! Returns the feature in the group by the index (started from zero)
77   //! \param theGroupID group that contains a feature
78   //! \param theIndex zero-based index of feature in the group
79   //! \param isOperation if it is true, returns feature (not Object)
80   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Feature> 
81     feature(const std::string& theGroupID, const int theIndex, const bool isOperation = false);
82
83   //! Returns the number of features in the group
84   MODEL_EXPORT virtual int size(const std::string& theGroupID);
85
86 protected:
87
88   //! Returns (creates if needed) the group label
89   TDF_Label groupLabel(const std::string theGroup);
90
91   //! Initializes feature with a unique name in this group (unique name is generated as 
92   //! feature type + "_" + index
93   void setUniqueName(boost::shared_ptr<ModelAPI_Feature> theFeature);
94
95   //! Adds to the document the new feature
96   void addFeature(const boost::shared_ptr<ModelAPI_Feature> theFeature);
97
98   //! Returns the object by the feature
99   boost::shared_ptr<ModelAPI_Feature> objectByFeature(
100     const boost::shared_ptr<ModelAPI_Feature> theFeature);
101
102   //! Synchronizes myFeatures list with the updated document
103   void synchronizeFeatures();
104
105   //! Creates new document with binary file format
106   Model_Document(const std::string theID);
107
108   friend class Model_Application;
109
110 private:
111   std::string myID; ///< identifier of the document in the application
112   Handle_TDocStd_Document myDoc; ///< OCAF document
113   /// number of transactions after the last "save" call, used for "IsModified" method
114   int myTransactionsAfterSave;
115   /// number of myTransactionsAfterSave for the nested transaction start
116   int myNestedStart;
117   /// All features managed by this document (not only in history of OB)
118   std::vector<boost::shared_ptr<ModelAPI_Feature> > myFeatures;
119
120   ///< set of identifiers of sub-documents of this document
121   std::set<std::string> mySubs;
122   /// transaction indexes (related to myTransactionsAfterSave) which were empty in this doc
123   std::map<int, bool> myIsEmptyTr;
124 };
125
126 #endif