Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[modules/shaper.git] / src / ModelAPI / ModelAPI_Events.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModelAPI_Events.h
4 // Created:     10 Apr 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef MODELAPI_EVENTS_H_
8 #define MODELAPI_EVENTS_H_
9
10 #include <ModelAPI.h>
11 #include <ModelAPI_Object.h>
12 #include <ModelAPI_Feature.h>
13 #include <Events_MessageGroup.h>
14
15 #include <memory>
16 #include <string>
17 #include <set>
18 #include <map>
19
20
21 class ModelAPI_Document;
22
23 /// Event ID that feature is created (comes with ModelAPI_ObjectUpdatedMessage)
24 static const char * EVENT_OBJECT_CREATED = "ObjectCreated";
25 /// Event ID that data of feature is updated (comes with Model_ObjectUpdatedMessage)
26 static const char * EVENT_OBJECT_UPDATED = "ObjectUpdated";
27 /// Event ID that data of feature is deleted (comes with Model_ObjectDeletedMessage)
28 static const char * EVENT_OBJECT_DELETED = "ObjectDeleted";
29 /// Event ID that data of feature is updated (comes with ModelAPI_ObjectUpdatedMessage)
30 static const char * EVENT_OBJECT_MOVED = "ObjectsMoved";
31 /// Event ID that visualization must be redisplayed (comes with ModelAPI_ObjectUpdatedMessage)
32 static const char * EVENT_OBJECT_TO_REDISPLAY = "ObjectsToRedisplay";
33 /// Event ID that visualization must be redisplayed (comes with ModelAPI_ObjectUpdatedMessage)
34 static const char * EVENT_OPERATION_LAUNCHED = "OperationLaunched";
35 /// Event ID that plugin is loaded (comes with ModelAPI_ObjectUpdatedMessage)
36 static const char * EVENT_PLUGIN_LOADED = "PliginLoaded";
37 /// Event ID that data of feature has to be shown (comes with ModelAPI_ObjectUpdatedMessage)
38 static const char * EVENT_OBJECT_TOSHOW = "ObjectShow";
39 /// Event ID that data of feature has to be shown (comes with ModelAPI_ObjectUpdatedMessage)
40 static const char * EVENT_OBJECT_TOHIDE = "ObjectHide";
41
42 static const char * EVENT_FEATURE_STATE_REQUEST = "FeatureStateRequest";
43 static const char * EVENT_FEATURE_STATE_RESPONSE = "FeatureStateResponse";
44
45 /// Message that feature was changed (used for Object Browser update): moved, updated and deleted
46 class MODELAPI_EXPORT ModelAPI_ObjectUpdatedMessage : public Events_MessageGroup
47 {
48  protected:
49   ModelAPI_ObjectUpdatedMessage(const Events_ID theID, const void* theSender = 0);
50   virtual ~ModelAPI_ObjectUpdatedMessage();
51
52  public:
53   /// Returns the feature that has been updated
54   virtual const std::set<ObjectPtr>& objects() const = 0;
55
56   //! Creates a new empty group (to store it in the loop before flush)
57   virtual std::shared_ptr<Events_MessageGroup> newEmpty() = 0;
58
59   //! Allows to join the given message with the current one
60   virtual void Join(const std::shared_ptr<Events_MessageGroup>& theJoined) = 0;
61 };
62
63 /// Message that feature was deleted (used for Object Browser update)
64 class MODELAPI_EXPORT ModelAPI_ObjectDeletedMessage : public Events_MessageGroup
65 {
66  protected:
67   ModelAPI_ObjectDeletedMessage(const Events_ID theID, const void* theSender = 0);
68   virtual ~ModelAPI_ObjectDeletedMessage();
69
70  public:
71   /// Returns the feature that has been updated
72   virtual std::shared_ptr<ModelAPI_Document> document() const = 0;
73
74   /// Returns the group where the feature was deleted
75   virtual const std::set<std::string>& groups() const = 0;
76
77   virtual std::shared_ptr<Events_MessageGroup> newEmpty() = 0;
78
79   virtual const Events_ID messageId() = 0;
80
81   virtual void Join(const std::shared_ptr<Events_MessageGroup>& theJoined) = 0;
82 };
83
84 /// Allows to create ModelAPI messages
85 class MODELAPI_EXPORT ModelAPI_EventCreator
86 {
87  public:
88   /// creates created, updated or moved messages and sends to the loop
89   virtual void sendUpdated(const ObjectPtr& theObject, const Events_ID& theEvent,
90                            const bool isGroupped = true) const = 0;
91   /// creates deleted message and sends to the loop
92   virtual void sendDeleted(const std::shared_ptr<ModelAPI_Document>& theDoc,
93                            const std::string& theGroup) const = 0;
94
95   /// returns the creator instance
96   static const ModelAPI_EventCreator* get();
97
98   /// sets the creator instance
99   static void set(const ModelAPI_EventCreator* theCreator);
100 };
101
102 // TODO(sbh): Move this message into a separate package, like "GuiAPI"
103 class ModelAPI_FeatureStateMessage : public Events_Message
104 {
105  public:
106   MODELAPI_EXPORT ModelAPI_FeatureStateMessage(const Events_ID theID, const void* theSender = 0);
107   MODELAPI_EXPORT virtual ~ModelAPI_FeatureStateMessage();
108
109   // For request
110   MODELAPI_EXPORT std::shared_ptr<ModelAPI_Feature> feature() const;
111   MODELAPI_EXPORT void setFeature(std::shared_ptr<ModelAPI_Feature>& theFeature);
112   // For response
113   MODELAPI_EXPORT bool hasState(const std::string& theFeatureId) const;
114   MODELAPI_EXPORT bool state(const  std::string& theFeatureId, bool theDefault = false) const;
115   MODELAPI_EXPORT void setState(const std::string& theFeatureId, bool theValue);
116   MODELAPI_EXPORT std::list<std::string> features() const;
117
118  private:
119   // For Request
120   std::shared_ptr<ModelAPI_Feature> myCurrentFeature;
121   // For response
122   std::map<std::string, bool> myFeatureState;
123 };
124
125 #endif