X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Events.cpp;h=34d9522d86c42182630f13c92a9a121754a634d8;hb=45400ecc7d183dd2d2edb875bdb36f8fc031bc2c;hp=76655e1eec43a70b28f347420a9983c2883bcbfe;hpb=fa1c75ea3a8cf13fb87c4ed8ba43ac7d59fcdd92;p=modules%2Fshaper.git diff --git a/src/Model/Model_Events.cpp b/src/Model/Model_Events.cpp index 76655e1ee..34d9522d8 100644 --- a/src/Model/Model_Events.cpp +++ b/src/Model/Model_Events.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Events.cxx // Created: 10 Apr 2014 // Author: Mikhail PONIKAROV @@ -5,46 +7,111 @@ #include #include -// UPDATED methods -Events_MessageGroup* Model_FeatureUpdatedMessage::newEmpty() { - boost::shared_ptr anEmptyFeature; - return new Model_FeatureUpdatedMessage(anEmptyFeature, eventID()); +/// Alone instance of the creator per application +Model_EventCreator MY_CREATOR; + +/////////////////////// CREATOR ///////////////////////////// +void Model_EventCreator::sendUpdated(const ObjectPtr& theObject, const Events_ID& theEvent, + const bool isGroupped) const +{ + std::shared_ptr aMsg( + new Model_ObjectUpdatedMessage(theObject, theEvent)); + Events_Loop::loop()->send(aMsg, isGroupped); +} + +void Model_EventCreator::sendDeleted(const std::shared_ptr& theDoc, + const std::string& theGroup) const +{ + std::shared_ptr aMsg( + new Model_ObjectDeletedMessage(theDoc, theGroup)); + Events_Loop::loop()->send(aMsg, true); } -void Model_FeatureUpdatedMessage::Join(Events_MessageGroup& theJoined) +void Model_EventCreator::sendReordered(const std::shared_ptr& theReordered) const { - Model_FeatureUpdatedMessage* aJoined = dynamic_cast(&theJoined); - std::set >::iterator aFIter = aJoined->myFeatures.begin(); - for(; aFIter != aJoined->myFeatures.end(); aFIter++) { - myFeatures.insert(*aFIter); + std::shared_ptr aMsg( + new Model_OrderUpdatedMessage(theReordered)); + Events_Loop::loop()->send(aMsg, true); +} + +Model_EventCreator::Model_EventCreator() +{ + ModelAPI_EventCreator::set(this); +} + +/////////////////////// UPDATED MESSAGE ///////////////////////////// +Model_ObjectUpdatedMessage::Model_ObjectUpdatedMessage(const ObjectPtr& theObject, + const Events_ID& theEvent) + : ModelAPI_ObjectUpdatedMessage(theEvent, 0) +{ + if (theObject) { + myObjects.insert(theObject); } } -// DELETED methods -Events_MessageGroup* Model_FeatureDeletedMessage::newEmpty() { - return new Model_FeatureDeletedMessage(myDoc, ""); +const std::set& Model_ObjectUpdatedMessage::objects() const +{ + return myObjects; } -Model_FeatureDeletedMessage::Model_FeatureDeletedMessage( - const boost::shared_ptr& theDoc, const std::string& theGroup) - : Events_MessageGroup(messageId(), 0), myDoc(theDoc) +std::shared_ptr Model_ObjectUpdatedMessage::newEmpty() +{ + ObjectPtr anEmptyObject; + return std::shared_ptr( + new Model_ObjectUpdatedMessage(anEmptyObject, eventID())); +} +void Model_ObjectUpdatedMessage::Join(const std::shared_ptr& theJoined) +{ + std::shared_ptr aJoined = + std::dynamic_pointer_cast(theJoined); + std::set::iterator aFIter = aJoined->myObjects.begin(); + for (; aFIter != aJoined->myObjects.end(); aFIter++) { + myObjects.insert(*aFIter); + } +} + +/////////////////////// DELETED MESSAGE ///////////////////////////// +Model_ObjectDeletedMessage::Model_ObjectDeletedMessage( + const std::shared_ptr& theDoc, const std::string& theGroup) + : ModelAPI_ObjectDeletedMessage(messageId(), 0), + myDoc(theDoc) { if (!theGroup.empty()) myGroups.insert(theGroup); } -const Events_ID Model_FeatureDeletedMessage::messageId() +std::shared_ptr Model_ObjectDeletedMessage::newEmpty() +{ + return std::shared_ptr(new Model_ObjectDeletedMessage(myDoc, "")); +} + +const Events_ID Model_ObjectDeletedMessage::messageId() { - static Events_ID MY_ID = Events_Loop::eventByName(EVENT_FEATURE_DELETED); + static Events_ID MY_ID = Events_Loop::eventByName(EVENT_OBJECT_DELETED); return MY_ID; } -void Model_FeatureDeletedMessage::Join(Events_MessageGroup& theJoined) +void Model_ObjectDeletedMessage::Join(const std::shared_ptr& theJoined) { - Model_FeatureDeletedMessage* aJoined = dynamic_cast(&theJoined); + std::shared_ptr aJoined = + std::dynamic_pointer_cast(theJoined); std::set::iterator aGIter = aJoined->myGroups.begin(); - for(; aGIter != aJoined->myGroups.end(); aGIter++) { + for (; aGIter != aJoined->myGroups.end(); aGIter++) { myGroups.insert(*aGIter); } } + +/////////////////////// REORDERED MESSAGE ///////////////////////////// +Model_OrderUpdatedMessage::Model_OrderUpdatedMessage( + FeaturePtr theReordered, const void* theSender) + : ModelAPI_OrderUpdatedMessage(messageId(), theSender), + myReordered(theReordered) +{ +} + +const Events_ID Model_OrderUpdatedMessage::messageId() +{ + static Events_ID MY_ID = Events_Loop::eventByName(EVENT_ORDER_UPDATED); + return MY_ID; +}