Salome HOME
Merge remote-tracking branch 'remotes/origin/MessagesGroups' into SolveSpace_MessageG...
[modules/shaper.git] / src / Events / Events_Loop.h
1 // File:        Events_Loop.hxx
2 // Created:     Thu Mar 13 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef Events_Loop_HeaderFile
6 #define Events_Loop_HeaderFile
7
8 #include <Events_Message.h>
9 #include <Events_Listener.h>
10
11 #include <map>
12 #include <list>
13
14 class Events_MessageGroup;
15
16 /**\class Events_Lopp
17  * \ingroup EventsLoop
18  * \brief Base class that manages the receiving and sending of all
19  * not Qt-events in the application.
20  *
21  * One per application, initialized on start. Listeners must register in this loop
22  * to get events, called by senders. Sending of events is very fast (just adding to container).
23  * Performing of events is processed in separated thread, so, sender takes 
24  * control back immideately.
25  */
26 class Events_Loop {
27   /// map from event ID to sender pointer to listeners that must be called for this
28   std::map<char*, std::map<void*, std::list<Events_Listener*> > >
29     myListeners;
30
31   /// map from event ID to groupped messages (accumulated on flush)
32   std::map<char*, Events_MessageGroup*> myGroups;
33
34   //! The empty constructor, will be called at startup of the application, only once
35   Events_Loop() {};
36 public:
37   ///! Returns the main object of the loop, one per application.
38   EVENTS_EXPORT static Events_Loop* loop();
39   //! Returns the unique event by the given name. Call this method only on initialization of object
40   //! to speedup the events processing without parsing of the string.
41   EVENTS_EXPORT static Events_ID eventByName(const char* theName);
42
43   //! Allows to send an event
44   EVENTS_EXPORT void send(Events_Message& theMessage);
45
46   //! Registers (or adds if such listener is already registered) a listener 
47   //! that will be called on the event and from the defined sender
48   EVENTS_EXPORT void registerListener(Events_Listener* theListener, const Events_ID theID, 
49     void* theSender = 0);
50
51   //! Initializes sending of a group-message by the given ID
52   EVENTS_EXPORT void flush(const Events_ID& theID);
53 };
54
55 #endif