Salome HOME
Implementation of open/save documents functionality
[modules/shaper.git] / src / Model / Model_Application.cpp
1 // File:        Model_Application.cxx
2 // Created:     Fri Sep 2 2011
3 // Author:      Mikhail PONIKAROV
4
5 #include <Model_Application.h>
6 #include <Model_Document.h>
7
8 IMPLEMENT_STANDARD_HANDLE(Model_Application, TDocStd_Application)
9 IMPLEMENT_STANDARD_RTTIEXT(Model_Application, TDocStd_Application)
10
11 using namespace std;
12
13 static Handle_Model_Application TheApplication = new Model_Application;
14
15 //=======================================================================
16 Handle(Model_Application) Model_Application::getApplication()
17 {
18   return TheApplication;
19 }
20
21 //=======================================================================
22 const boost::shared_ptr<Model_Document>& Model_Application::getDocument(string theDocID)
23 {
24   if (myDocs.find(theDocID) != myDocs.end())
25     return myDocs[theDocID];
26
27   boost::shared_ptr<Model_Document> aNew(new Model_Document(theDocID));
28   myDocs[theDocID] = aNew;
29   // load it if it must be loaded by demand
30   if (myLoadedByDemand.find(theDocID) != myLoadedByDemand.end() && !myPath.empty()) {
31     aNew->load(myPath.c_str());
32     myLoadedByDemand.erase(theDocID); // done, don't do it anymore
33   }
34
35   return myDocs[theDocID];
36 }
37
38 void Model_Application::deleteDocument(string theDocID)
39 {
40   myDocs.erase(theDocID);
41 }
42
43 //=======================================================================
44 bool Model_Application::hasDocument(std::string theDocID)
45 {
46   return myDocs.find(theDocID) != myDocs.end();
47 }
48
49 //=======================================================================
50 void Model_Application::setLoadPath(std::string thePath)
51 {
52   myPath = thePath;
53 }
54
55 //=======================================================================
56 void Model_Application::setLoadByDemand(std::string theID)
57 {
58   myLoadedByDemand.insert(theID);
59 }
60
61 //=======================================================================
62 Model_Application::Model_Application()
63 {
64   // store handle to the application to avoid nullification
65   static Handle(Model_Application) TheKeepHandle;
66   TheKeepHandle = this;
67 }
68
69 //=======================================================================
70 void Model_Application::Formats(TColStd_SequenceOfExtendedString& theFormats)
71 {
72   theFormats.Append(TCollection_ExtendedString("BinOcaf")); // standard binary schema
73 }
74
75 //=======================================================================
76 Standard_CString Model_Application::ResourcesName()
77 {
78   return Standard_CString("Standard");
79 }