Salome HOME
Added CPP High API for FeaturesPlugin_Pipe
[modules/shaper.git] / src / Model / Model_Events.cpp
index dc35573ebae8a405ab2eab7f77800ebcdb2d41f0..34d9522d86c42182630f13c92a9a121754a634d8 100644 (file)
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        Model_Events.cxx
 // Created:     10 Apr 2014
 // Author:      Mikhail PONIKAROV
 
 #include <Model_Events.h>
-#include <Event_Loop.h>
+#include <Events_Loop.h>
+
+/// 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<Model_ObjectUpdatedMessage> aMsg(
+    new Model_ObjectUpdatedMessage(theObject, theEvent));
+  Events_Loop::loop()->send(aMsg, isGroupped);
+}
 
-ModelAPI_FeatureUpdatedMessage::ModelAPI_FeatureUpdatedMessage(
-  const std::shared_ptr<ModelAPI_Document>& theDoc,
-  const std::shared_ptr<ModelAPI_Feature>& theFeature, const Event_ID& theEvent)
-  : Event_Message(theEvent, 0), myFeature(theFeature), myDoc(theDoc)
-{}
+void Model_EventCreator::sendDeleted(const std::shared_ptr<ModelAPI_Document>& theDoc,
+                                     const std::string& theGroup) const
+{
+  std::shared_ptr<Model_ObjectDeletedMessage> aMsg(
+    new Model_ObjectDeletedMessage(theDoc, theGroup));
+  Events_Loop::loop()->send(aMsg, true);
+}
+
+void Model_EventCreator::sendReordered(const std::shared_ptr<ModelAPI_Feature>& theReordered) const
+{
+  std::shared_ptr<Model_OrderUpdatedMessage> 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);
+  }
+}
+
+const std::set<ObjectPtr>& Model_ObjectUpdatedMessage::objects() const
+{
+  return myObjects;
+}
 
-ModelAPI_FeatureDeletedMessage::ModelAPI_FeatureDeletedMessage(
-  const std::shared_ptr<ModelAPI_Document>& theDoc, const std::string& theGroup)
-  : Event_Message(messageId(), 0), myDoc(theDoc), myGroup(theGroup)
+std::shared_ptr<Events_MessageGroup> Model_ObjectUpdatedMessage::newEmpty()
+{
+  ObjectPtr anEmptyObject;
+  return std::shared_ptr<Model_ObjectUpdatedMessage>(
+    new Model_ObjectUpdatedMessage(anEmptyObject, eventID()));
+}
+
+void Model_ObjectUpdatedMessage::Join(const std::shared_ptr<Events_MessageGroup>& theJoined)
+{
+  std::shared_ptr<Model_ObjectUpdatedMessage> aJoined = 
+    std::dynamic_pointer_cast<Model_ObjectUpdatedMessage>(theJoined);
+  std::set<ObjectPtr>::iterator aFIter = aJoined->myObjects.begin();
+  for (; aFIter != aJoined->myObjects.end(); aFIter++) {
+    myObjects.insert(*aFIter);
+  }
+}
+
+/////////////////////// DELETED MESSAGE /////////////////////////////
+Model_ObjectDeletedMessage::Model_ObjectDeletedMessage(
+    const std::shared_ptr<ModelAPI_Document>& theDoc, const std::string& theGroup)
+    : ModelAPI_ObjectDeletedMessage(messageId(), 0),
+      myDoc(theDoc)
+{
+  if (!theGroup.empty())
+    myGroups.insert(theGroup);
+}
+
+std::shared_ptr<Events_MessageGroup> Model_ObjectDeletedMessage::newEmpty()
+{
+  return std::shared_ptr<Model_ObjectDeletedMessage>(new Model_ObjectDeletedMessage(myDoc, ""));
+}
+
+const Events_ID Model_ObjectDeletedMessage::messageId()
+{
+  static Events_ID MY_ID = Events_Loop::eventByName(EVENT_OBJECT_DELETED);
+  return MY_ID;
+}
+
+void Model_ObjectDeletedMessage::Join(const std::shared_ptr<Events_MessageGroup>& theJoined)
+{
+  std::shared_ptr<Model_ObjectDeletedMessage> aJoined = 
+    std::dynamic_pointer_cast<Model_ObjectDeletedMessage>(theJoined);
+  std::set<std::string>::iterator aGIter = aJoined->myGroups.begin();
+  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 Event_ID ModelAPI_FeatureDeletedMessage::messageId()
+const Events_ID Model_OrderUpdatedMessage::messageId()
 {
-  static Event_ID MY_ID = Event_Loop::eventByName(EVENT_FEATURE_DELETED);
+  static Events_ID MY_ID = Events_Loop::eventByName(EVENT_ORDER_UPDATED);
   return MY_ID;
 }