Salome HOME
Make referenced Bodies no more displayed in the Object Browser
[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   static const std::string thePartSetKind("PartSet");
28   static const std::string thePartKind("Part");
29   boost::shared_ptr<Model_Document> aNew(
30     new Model_Document(theDocID, theDocID == "root" ? thePartSetKind : thePartKind));
31   myDocs[theDocID] = aNew;
32   // load it if it must be loaded by demand
33   if (myLoadedByDemand.find(theDocID) != myLoadedByDemand.end() && !myPath.empty()) {
34     aNew->load(myPath.c_str());
35     myLoadedByDemand.erase(theDocID);  // done, don't do it anymore
36   }
37
38   return myDocs[theDocID];
39 }
40
41 void Model_Application::deleteDocument(string theDocID)
42 {
43   myDocs.erase(theDocID);
44 }
45
46 //=======================================================================
47 bool Model_Application::hasDocument(std::string theDocID)
48 {
49   return myDocs.find(theDocID) != myDocs.end();
50 }
51
52 //=======================================================================
53 void Model_Application::setLoadPath(std::string thePath)
54 {
55   myPath = thePath;
56 }
57
58 //=======================================================================
59 void Model_Application::setLoadByDemand(std::string theID)
60 {
61   myLoadedByDemand.insert(theID);
62 }
63
64 //=======================================================================
65 Model_Application::Model_Application()
66 {
67   // store handle to the application to avoid nullification
68   static Handle(Model_Application) TheKeepHandle;
69   TheKeepHandle = this;
70 }
71
72 //=======================================================================
73 void Model_Application::Formats(TColStd_SequenceOfExtendedString& theFormats)
74 {
75   theFormats.Append(TCollection_ExtendedString("BinOcaf"));  // standard binary schema
76 }
77
78 //=======================================================================
79 Standard_CString Model_Application::ResourcesName()
80 {
81   return Standard_CString("Standard");
82 }