X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Application.cpp;h=a5688b66e5e7f1150ec8bec91434ae16c32cc82c;hb=94dff38fb908803e58a60e48a97bec3ae223bc1a;hp=324cefee0cf882997a9d530f08786ae8284faf1c;hpb=49c180426b47ea37eee3a779362fef3b78ab7cb9;p=modules%2Fshaper.git diff --git a/src/Model/Model_Application.cpp b/src/Model/Model_Application.cpp index 324cefee0..a5688b66e 100644 --- a/src/Model/Model_Application.cpp +++ b/src/Model/Model_Application.cpp @@ -1,19 +1,30 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_Application.cxx -// Created: Fri Sep 2 2011 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 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 #include -IMPLEMENT_STANDARD_HANDLE(Model_Application, TDocStd_Application) IMPLEMENT_STANDARD_RTTIEXT(Model_Application, TDocStd_Application) -using namespace std; - static Handle_Model_Application TheApplication = new Model_Application; //======================================================================= @@ -119,15 +130,16 @@ const std::string& Model_Application::loadPath() const } //======================================================================= -void Model_Application::setLoadByDemand(std::string theID) +void Model_Application::setLoadByDemand(std::string theID, const int theDocID) { - myLoadedByDemand.insert(theID); + myLoadedByDemand[theID] = theDocID; } //======================================================================= -bool Model_Application::isLoadByDemand(std::string theID) +bool Model_Application::isLoadByDemand(std::string theID, const int theDocIndex) { - return myLoadedByDemand.find(theID) != myLoadedByDemand.end(); + return myLoadedByDemand.find(theID) != myLoadedByDemand.end() && + myLoadedByDemand[theID] == theDocIndex; } //======================================================================= @@ -153,8 +165,21 @@ void Model_Application::removeUselessDocuments( int Model_Application::generateDocumentId() { - int aResult = int(myDocs.size()); - for(; myDocs.find(aResult) != myDocs.end(); aResult++); // count until the result id is unique + 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; }