X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Application.cpp;h=24a16b9adc591dabeb538e99cede5adc840288fa;hb=4fc2dc9fdc0c14fab5f2780598eccdc1368d81b9;hp=204cafe1418d99d1e690eb87fe5b6242cc46003a;hpb=2abc569e2ad23e1015317793f03bf30832f40851;p=modules%2Fshaper.git diff --git a/src/Model/Model_Application.cpp b/src/Model/Model_Application.cpp index 204cafe14..24a16b9ad 100644 --- a/src/Model/Model_Application.cpp +++ b/src/Model/Model_Application.cpp @@ -7,6 +7,8 @@ #include #include +#include + IMPLEMENT_STANDARD_HANDLE(Model_Application, TDocStd_Application) IMPLEMENT_STANDARD_RTTIEXT(Model_Application, TDocStd_Application) @@ -21,26 +23,51 @@ Handle(Model_Application) Model_Application::getApplication() } //======================================================================= -const std::shared_ptr& Model_Application::getDocument(string theDocID) +std::shared_ptr Model_Application::document(const int theDocID) { if (myDocs.find(theDocID) != myDocs.end()) return myDocs[theDocID]; + return std::shared_ptr(); // not loaded, so return null +} +//======================================================================= +void Model_Application::createDocument(const int theDocID) +{ static const std::string thePartSetKind("PartSet"); static const std::string thePartKind("Part"); std::shared_ptr aNew( - new Model_Document(theDocID, theDocID == "root" ? thePartSetKind : thePartKind)); + new Model_Document(theDocID, theDocID == 0 ? thePartSetKind : thePartKind)); myDocs[theDocID] = aNew; + + aNew->setThis(aNew); + static Events_ID anId = ModelAPI_DocumentCreatedMessage::eventId(); + std::shared_ptr aMessage = std::shared_ptr + (new ModelAPI_DocumentCreatedMessage(anId, this)); + aMessage->setDocument(aNew); + Events_Loop::loop()->send(aMessage); +} + +//======================================================================= +bool Model_Application::loadDocument(const std::string theDocName, const int theDocID) +{ + static const std::string thePartKind("Part"); // root document is never loaded here + std::shared_ptr aNew(new Model_Document(theDocID, thePartKind)); + myDocs[theDocID] = aNew; + + bool aRes = true; // load it if it must be loaded by demand - if (myLoadedByDemand.find(theDocID) != myLoadedByDemand.end() && !myPath.empty()) { - aNew->load(myPath.c_str()); - myLoadedByDemand.erase(theDocID); // done, don't do it anymore + if (myLoadedByDemand.find(theDocName) != myLoadedByDemand.end() && !myPath.empty()) { + aRes = aNew->load(myPath.c_str(), theDocName.c_str(), aNew); + myLoadedByDemand.erase(theDocName); // done, don't do it anymore + } else { // error + aRes = false; } - return myDocs[theDocID]; + return aRes; } -void Model_Application::deleteDocument(string theDocID) +//======================================================================= +void Model_Application::deleteDocument(const int theDocID) { if (myDocs.find(theDocID) != myDocs.end()) { myDocs[theDocID]->close(true); @@ -49,18 +76,36 @@ void Model_Application::deleteDocument(string theDocID) myLoadedByDemand.clear(); } +//======================================================================= void Model_Application::deleteAllDocuments() { + std::map >::iterator aDoc = myDocs.begin(); + for(; aDoc != myDocs.end(); aDoc++) { + if (!aDoc->second->isOpened()) // here is main document was closed before subs and closed subs + aDoc->second->close(true); + } myDocs.clear(); myLoadedByDemand.clear(); } //======================================================================= -bool Model_Application::hasDocument(std::string theDocID) +bool Model_Application::hasDocument(const int theDocID) { return myDocs.find(theDocID) != myDocs.end(); } +//======================================================================= +bool Model_Application::hasRoot() +{ + return !myDocs.empty(); +} + +//======================================================================= +std::shared_ptr Model_Application::rootDocument() +{ + return myDocs[0]; +} + //======================================================================= void Model_Application::setLoadPath(std::string thePath) { @@ -89,7 +134,7 @@ bool Model_Application::isLoadByDemand(std::string theID) void Model_Application::removeUselessDocuments( std::list > theUsedDocs) { - std::map >::iterator aDoc = myDocs.begin(); + std::map >::iterator aDoc = myDocs.begin(); while(aDoc != myDocs.end()) { bool aFound = false; std::list >::iterator aUsed = theUsedDocs.begin(); @@ -98,13 +143,21 @@ void Model_Application::removeUselessDocuments( } if (!aFound) { // remove the useless aDoc->second->close(); - aDoc = myDocs.erase(aDoc); + myDocs.erase(aDoc); + aDoc = myDocs.begin(); } else { aDoc++; } } } +int Model_Application::generateDocumentId() +{ + int aResult = myDocs.size(); + for(; myDocs.find(aResult) != myDocs.end(); aResult++); // count until the result id is unique + return aResult; +} + //======================================================================= Model_Application::Model_Application() {