X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Session.cpp;h=e7f21bf88a8470860d5c3bfba731f94b743dc564;hb=a731f82dccbfdb67cbf8e8d617222a4d3e32018a;hp=23e7a2621633170b0ecf97ec6034c8a62dfc54a1;hpb=e0982cb7a97874070e00a25c7c4c0faf1716afc2;p=modules%2Fshaper.git diff --git a/src/Model/Model_Session.cpp b/src/Model/Model_Session.cpp index 23e7a2621..e7f21bf88 100644 --- a/src/Model/Model_Session.cpp +++ b/src/Model/Model_Session.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Session.cxx // Created: 20 Mar 2014 // Author: Mikhail PONIKAROV @@ -10,12 +12,15 @@ #include #include #include +#include #include #include #include #include #include #include +#include +#include #include #include @@ -27,11 +32,12 @@ using namespace std; static Model_Session* myImpl = new Model_Session(); // t oredirect all calls to the root document -#define ROOT_DOC boost::dynamic_pointer_cast(moduleDocument()) +#define ROOT_DOC std::dynamic_pointer_cast(moduleDocument()) bool Model_Session::load(const char* theFileName) { - return ROOT_DOC->load(theFileName); + bool aRes = ROOT_DOC->load(theFileName); + return aRes; } bool Model_Session::save(const char* theFileName, std::list& theResults) @@ -39,25 +45,45 @@ bool Model_Session::save(const char* theFileName, std::list& theRes return ROOT_DOC->save(theFileName, theResults); } -void Model_Session::startOperation() +void Model_Session::closeAll() +{ + ROOT_DOC->close(true); + Model_Application::getApplication()->deleteAllDocuments(); +} + +void Model_Session::startOperation(const std::string& theId) { ROOT_DOC->startOperation(); - static boost::shared_ptr aStartedMsg + ROOT_DOC->operationId(theId); + static std::shared_ptr aStartedMsg (new Events_Message(Events_Loop::eventByName("StartOperation"))); Events_Loop::loop()->send(aStartedMsg); + // remove all useless documents that has been closed: on start of operation undo/redo is cleared + std::list > aUsedDocs = allOpenedDocuments(); + Model_Application::getApplication()->removeUselessDocuments(aUsedDocs); } void Model_Session::finishOperation() { + setCheckTransactions(false); ROOT_DOC->finishOperation(); + setCheckTransactions(true); } void Model_Session::abortOperation() { + setCheckTransactions(false); ROOT_DOC->abortOperation(); - static boost::shared_ptr anAbortMsg + setCheckTransactions(true); + // here the update mechanism may work after abort, so, supress the warnings about + // modifications outside of the transactions + bool aWasCheck = myCheckTransactions; + myCheckTransactions = false; + static std::shared_ptr anAbortMsg (new Events_Message(Events_Loop::eventByName("AbortOperation"))); Events_Loop::loop()->send(anAbortMsg); + myCheckTransactions = true; + myCheckTransactions = aWasCheck; } bool Model_Session::isOperation() @@ -77,7 +103,9 @@ bool Model_Session::canUndo() void Model_Session::undo() { + setCheckTransactions(false); ROOT_DOC->undo(); + setCheckTransactions(true); } bool Model_Session::canRedo() @@ -87,13 +115,30 @@ bool Model_Session::canRedo() void Model_Session::redo() { + setCheckTransactions(false); ROOT_DOC->redo(); + setCheckTransactions(true); +} + +//! Returns stack of performed operations +std::list Model_Session::undoList() +{ + return ROOT_DOC->undoList(); +} +//! Returns stack of rolled back operations +std::list Model_Session::redoList() +{ + return ROOT_DOC->redoList(); } FeaturePtr Model_Session::createFeature(string theFeatureID) { - if (this != myImpl) + if (this != myImpl) { return myImpl->createFeature(theFeatureID); + } + + // load all information about plugins, features and attributes + LoadPluginsInfo(); if (myPlugins.find(theFeatureID) != myPlugins.end()) { std::pair& aPlugin = myPlugins[theFeatureID]; // plugin and doc kind @@ -106,7 +151,7 @@ FeaturePtr Model_Session::createFeature(string theFeatureID) myCurrentPluginName = aPlugin.first; if (myPluginObjs.find(myCurrentPluginName) == myPluginObjs.end()) { // load plugin library if not yet done - Config_ModuleReader::loadLibrary(myCurrentPluginName); + Config_ModuleReader::loadPlugin(myCurrentPluginName); } if (myPluginObjs.find(myCurrentPluginName) != myPluginObjs.end()) { FeaturePtr aCreated = myPluginObjs[myCurrentPluginName]->createFeature(theFeatureID); @@ -126,10 +171,26 @@ FeaturePtr Model_Session::createFeature(string theFeatureID) return FeaturePtr(); // return nothing } -boost::shared_ptr Model_Session::moduleDocument() +std::shared_ptr Model_Session::moduleDocument() { - return boost::shared_ptr( + bool aFirstCall = !Model_Application::getApplication()->hasDocument("root"); + if (aFirstCall) { + // creation of the root document is always outside of the transaction, so, avoid checking it + setCheckTransactions(false); + } + std::shared_ptr aDoc = std::shared_ptr( Model_Application::getApplication()->getDocument("root")); + if (aFirstCall) { + // creation of the root document is always outside of the transaction, so, avoid checking it + setCheckTransactions(true); + } + return aDoc; +} + +std::shared_ptr Model_Session::document(std::string theDocID) +{ + return std::shared_ptr( + Model_Application::getApplication()->getDocument(theDocID)); } bool Model_Session::hasModuleDocument() @@ -137,7 +198,7 @@ bool Model_Session::hasModuleDocument() return Model_Application::getApplication()->hasDocument("root"); } -boost::shared_ptr Model_Session::activeDocument() +std::shared_ptr Model_Session::activeDocument() { if (!myCurrentDoc || !Model_Application::getApplication()->hasDocument(myCurrentDoc->id())) myCurrentDoc = moduleDocument(); @@ -145,29 +206,40 @@ boost::shared_ptr Model_Session::activeDocument() } void Model_Session::setActiveDocument( - boost::shared_ptr theDoc, bool theSendSignal) + std::shared_ptr theDoc, bool theSendSignal) { if (myCurrentDoc != theDoc) { myCurrentDoc = theDoc; - if (theSendSignal) { - static boost::shared_ptr aMsg(new Events_Message(Events_Loop::eventByName("CurrentDocumentChanged"))); + if (theDoc.get() && theSendSignal) { + // syncronize the document: it may be just opened or opened but removed before + std::shared_ptr aDoc = std::dynamic_pointer_cast(theDoc); + if (aDoc.get()) { + bool aWasChecked = myCheckTransactions; + setCheckTransactions(false); + aDoc->synchronizeFeatures(false, true); + if (aWasChecked) + setCheckTransactions(true); + } + static std::shared_ptr aMsg( + new Events_Message(Events_Loop::eventByName(EVENT_DOCUMENT_CHANGED))); Events_Loop::loop()->send(aMsg); } } } -std::list > Model_Session::allOpenedDocuments() +std::list > Model_Session::allOpenedDocuments() { - list > aResult; + list > aResult; aResult.push_back(moduleDocument()); // add subs recursively - list >::iterator aDoc = aResult.begin(); + list >::iterator aDoc = aResult.begin(); for(; aDoc != aResult.end(); aDoc++) { DocumentPtr anAPIDoc = *aDoc; - boost::shared_ptr aDoc = boost::dynamic_pointer_cast(anAPIDoc); + std::shared_ptr aDoc = std::dynamic_pointer_cast(anAPIDoc); if (aDoc) { - std::set::const_iterator aSubIter = aDoc->subDocuments().cbegin(); - for(; aSubIter != aDoc->subDocuments().cend(); aSubIter++) { + const std::set aSubs = aDoc->subDocuments(true); + std::set::const_iterator aSubIter = aSubs.cbegin(); + for(; aSubIter != aSubs.cend(); aSubIter++) { if (!Model_Application::getApplication()->isLoadByDemand(*aSubIter)) { aResult.push_back(Model_Application::getApplication()->getDocument(*aSubIter)); } @@ -177,14 +249,14 @@ std::list > Model_Session::allOpenedDocumen return aResult; } -boost::shared_ptr Model_Session::copy( - boost::shared_ptr theSource, std::string theID) +std::shared_ptr Model_Session::copy( + std::shared_ptr theSource, std::string theID) { // create a new document - boost::shared_ptr aNew = boost::dynamic_pointer_cast( + std::shared_ptr aNew = std::dynamic_pointer_cast( Model_Application::getApplication()->getDocument(theID)); // make a copy of all labels - TDF_Label aSourceRoot = boost::dynamic_pointer_cast(theSource)->document()->Main() + TDF_Label aSourceRoot = std::dynamic_pointer_cast(theSource)->document()->Main() .Father(); TDF_Label aTargetRoot = aNew->document()->Main().Father(); Handle(TDF_DataSet) aDS = new TDF_DataSet; @@ -202,27 +274,26 @@ Model_Session::Model_Session() { myPluginsInfoLoaded = false; myCheckTransactions = true; - ModelAPI_Session::setSession(boost::shared_ptr(this)); + ModelAPI_Session::setSession(std::shared_ptr(this)); // register the configuration reading listener Events_Loop* aLoop = Events_Loop::loop(); - static const Events_ID kFeatureEvent = Events_Loop::eventByName(Config_FeatureMessage::MODEL_EVENT()); + static const Events_ID kFeatureEvent = + Events_Loop::eventByName(Config_FeatureMessage::MODEL_EVENT()); aLoop->registerListener(this, kFeatureEvent); aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED), 0, true); aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED), 0, true); aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_DELETED), 0, true); aLoop->registerListener(this, Events_Loop::eventByName(EVENT_VALIDATOR_LOADED)); - - // load all information about plugins, features and attributes - LoadPluginsInfo(); } -void Model_Session::processEvent(const boost::shared_ptr& theMessage) +void Model_Session::processEvent(const std::shared_ptr& theMessage) { - static const Events_ID kFeatureEvent = Events_Loop::eventByName(Config_FeatureMessage::MODEL_EVENT()); + static const Events_ID kFeatureEvent = + Events_Loop::eventByName(Config_FeatureMessage::MODEL_EVENT()); static const Events_ID kValidatorEvent = Events_Loop::eventByName(EVENT_VALIDATOR_LOADED); if (theMessage->eventID() == kFeatureEvent) { - const boost::shared_ptr aMsg = - boost::dynamic_pointer_cast(theMessage); + const std::shared_ptr aMsg = + std::dynamic_pointer_cast(theMessage); if (aMsg) { // proccess the plugin info, load plugin if (myPlugins.find(aMsg->id()) == myPlugins.end()) { @@ -230,8 +301,8 @@ void Model_Session::processEvent(const boost::shared_ptr& theMes aMsg->pluginLibrary(), aMsg->documentKind()); } } else { - const boost::shared_ptr aMsgAttr = - boost::dynamic_pointer_cast(theMessage); + const std::shared_ptr aMsgAttr = + std::dynamic_pointer_cast(theMessage); if (aMsgAttr) { if (!aMsgAttr->isObligatory()) { validators()->registerNotObligatory(aMsgAttr->featureId(), aMsgAttr->attributeId()); @@ -239,14 +310,17 @@ void Model_Session::processEvent(const boost::shared_ptr& theMes if(aMsgAttr->isConcealment()) { validators()->registerConcealment(aMsgAttr->featureId(), aMsgAttr->attributeId()); } - + if (!aMsgAttr->caseId().empty()) { + validators()->registerCase(aMsgAttr->featureId(), aMsgAttr->attributeId(), + aMsgAttr->switchId(), aMsgAttr->caseId()); + } } } // plugins information was started to load, so, it will be loaded myPluginsInfoLoaded = true; } else if (theMessage->eventID() == kValidatorEvent) { - boost::shared_ptr aMsg = - boost::dynamic_pointer_cast(theMessage); + std::shared_ptr aMsg = + std::dynamic_pointer_cast(theMessage); if (aMsg) { if (aMsg->attributeId().empty()) { // feature validator validators()->assignValidator(aMsg->validatorId(), aMsg->featureId(), aMsg->parameters()); @@ -258,6 +332,17 @@ void Model_Session::processEvent(const boost::shared_ptr& theMes } else { // create/update/delete if (myCheckTransactions && !isOperation()) Events_Error::send("Modification of data structure outside of the transaction"); + // if part is deleted, make the root as the current document (on undo of Parts creations) + static const Events_ID kDeletedEvent = Events_Loop::eventByName(EVENT_OBJECT_DELETED); + if (theMessage->eventID() == kDeletedEvent) { + std::shared_ptr aDeleted = + std::dynamic_pointer_cast(theMessage); + if (aDeleted && + aDeleted->groups().find(ModelAPI_ResultPart::group()) != aDeleted->groups().end()) + { + setActiveDocument(moduleDocument()); + } + } } } @@ -267,8 +352,15 @@ void Model_Session::LoadPluginsInfo() return; // Read plugins information from XML files - Config_ModuleReader aXMLReader(Config_FeatureMessage::MODEL_EVENT()); - aXMLReader.readAll(); + Config_ModuleReader aModuleReader(Config_FeatureMessage::MODEL_EVENT()); + aModuleReader.readAll(); + std::set aFiles = aModuleReader.modulePluginFiles(); + std::set::iterator it = aFiles.begin(); + for ( ; it != aFiles.end(); it++ ) { + Config_ValidatorReader aValidatorReader (*it); + aValidatorReader.readAll(); + }; + } void Model_Session::registerPlugin(ModelAPI_Plugin* thePlugin) @@ -277,6 +369,14 @@ void Model_Session::registerPlugin(ModelAPI_Plugin* thePlugin) static Events_ID EVENT_LOAD = Events_Loop::loop()->eventByName(EVENT_PLUGIN_LOADED); ModelAPI_EventCreator::get()->sendUpdated(ObjectPtr(), EVENT_LOAD); Events_Loop::loop()->flush(EVENT_LOAD); + // If the plugin has an ability to process GUI events, register it + Events_Listener* aListener = dynamic_cast(thePlugin); + if (aListener) { + Events_Loop* aLoop = Events_Loop::loop(); + static Events_ID aStateRequestEventId = + Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_REQUEST); + aLoop->registerListener(aListener, aStateRequestEventId); + } } ModelAPI_ValidatorsFactory* Model_Session::validators()