Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / Model / Model_Application.h
1 // File:        Model_Application.hxx
2 // Created:     28 Dec 2011
3 // Author:      Mikhail PONIKAROV
4 // Copyright:   CEA 2011
5
6 #ifndef Model_Application_H_
7 #define Model_Application_H_
8
9 #include <Model_Document.h> 
10 #include <TDocStd_Application.hxx>
11 #include <map>
12
13 // Define handle class 
14 DEFINE_STANDARD_HANDLE(Model_Application, TDocStd_Application)
15
16 /**\class Model_Application
17  * \ingroup DataModel
18  * \brief Realization of Open CASCADE application abstraction. Class for internal use only.
19  * Application supports the formats and document management. It is uses OCAF-lke
20  * architecture and just implements specific features of the module.
21  */
22 class Model_Application : public TDocStd_Application
23 {
24  public:
25   // useful methods inside of the module
26
27   // CASCADE RTTI
28   DEFINE_STANDARD_RTTI(Model_Application)
29   ;
30
31   //! Retuns the application: one per process    
32   MODEL_EXPORT static Handle_Model_Application getApplication();
33   //! Returns the main document (on first call creates it) by the string identifier
34   MODEL_EXPORT const boost::shared_ptr<Model_Document>& getDocument(std::string theDocID);
35   //! Returns true if document has been created
36   MODEL_EXPORT bool hasDocument(std::string theDocID);
37   //! Deletes the document from the application
38   MODEL_EXPORT void deleteDocument(std::string theDocID);
39
40   //! Set path for the loaded by demand documents
41   void setLoadPath(std::string thePath);
42   //! Defines that specified document must be loaded by demand
43   void setLoadByDemand(std::string theID);
44
45  public:
46   // Redefined OCAF methods
47   //! Return name of resource (i.e. "Standard")
48   Standard_CString ResourcesName();
49   //! Return format (i.e "MDTV-Standard")
50   //! \param theFormats sequence of allowed formats for input/output
51   virtual void Formats(TColStd_SequenceOfExtendedString& theFormats);
52   //! Constructor
53   //! Use method GetInstance() method to obtain 
54   //! the static instance of the object (or derive your own application)
55   Model_Application();
56
57  private:
58   /// Map from string identifiers to created documents of an application
59   std::map<std::string, boost::shared_ptr<Model_Document> > myDocs;
60   /// Path for the loaded by demand documents
61   std::string myPath;
62   /// Path for the loaded by demand documents
63   std::set<std::string> myLoadedByDemand;
64 };
65
66 #endif