X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Application.cpp;h=7ffbf61a5712f1ba4423ec53a578a9e04a834597;hb=81baa77e52cb1ade2bfbe5b21e893cc34b03c323;hp=6f315ee0ebd58b3ade943dba1e30af618981d7c7;hpb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;p=modules%2Fshaper.git diff --git a/src/Model/Model_Application.cpp b/src/Model/Model_Application.cpp index 6f315ee0e..7ffbf61a5 100644 --- a/src/Model/Model_Application.cpp +++ b/src/Model/Model_Application.cpp @@ -1,14 +1,34 @@ -// File: Model_Application.cxx -// Created: Fri Sep 2 2011 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2020 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include #include -IMPLEMENT_STANDARD_HANDLE(Model_Application, TDocStd_Application) -IMPLEMENT_STANDARD_RTTIEXT(Model_Application, TDocStd_Application) +#include +#include + +#include -using namespace std; +#include +#include + +IMPLEMENT_STANDARD_RTTIEXT(Model_Application, TDocStd_Application) static Handle_Model_Application TheApplication = new Model_Application; @@ -19,26 +39,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::wstring 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(), Locale::Convert::toString(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); @@ -47,18 +92,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) { @@ -66,15 +129,43 @@ void Model_Application::setLoadPath(std::string thePath) } //======================================================================= -void Model_Application::setLoadByDemand(std::string theID) +const std::string& Model_Application::loadPath() const { - myLoadedByDemand.insert(theID); + return myPath; } //======================================================================= -bool Model_Application::isLoadByDemand(std::string theID) +void Model_Application::setLoadByDemand(std::wstring theID, const int theDocID) { - return myLoadedByDemand.find(theID) != myLoadedByDemand.end(); + myLoadedByDemand[theID] = theDocID; +} + +//======================================================================= +bool Model_Application::isLoadByDemand(std::wstring theID, const int theDocIndex) +{ + return myLoadedByDemand.find(theID) != myLoadedByDemand.end() && + myLoadedByDemand[theID] == theDocIndex; +} + +//======================================================================= +int Model_Application::generateDocumentId() +{ + int aResult; + // count until the result id is unique + for(aResult = int(myDocs.size()); true; aResult++) { + if (myDocs.find(aResult) == myDocs.end()) { + bool aFound = false; + std::map::iterator aLBDIter = myLoadedByDemand.begin(); + for(; aLBDIter != myLoadedByDemand.end(); aLBDIter++) { + if (aLBDIter->second == aResult) { + aFound = true; + break; + } + } + if (!aFound) break; + } + } + return aResult; } //======================================================================= @@ -83,6 +174,13 @@ Model_Application::Model_Application() // store handle to the application to avoid nullification static Handle(Model_Application) TheKeepHandle; TheKeepHandle = this; + // additional file format supported + static TCollection_ExtendedString THE_DOC_FORMAT("BinShaperPart"); + static TCollection_ExtendedString THE_FILE_EXT("shaperpart"); + Handle(PCDM_RetrievalDriver) aReader = new BinDrivers_DocumentRetrievalDriver; + Handle(PCDM_StorageDriver) aWriter = new BinDrivers_DocumentStorageDriver; + TheKeepHandle->DefineFormat(THE_DOC_FORMAT, "Shaper Part document", THE_FILE_EXT, + aReader, aWriter); } //=======================================================================