-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvent.cc
74 lines (65 loc) · 1.73 KB
/
Event.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include "Event.hh"
#include <algorithm>
EventBase::EventBase()
{
}
EventBase::~EventBase()
{
}
ListenerBase::ListenerBase()
{
}
std::vector<EventBase::Topic> getAllPossibleTopics(EventBase::Topic topic) //given a topic like MachineEvent::Memory::Read, returns the topics *, MachineEvent::*, MachineEvent::Memory::*, and MachineEvent::Memory::Read
{
std::vector<EventBase::Topic> ret;
size_t pos = 0;
while( true )
{
size_t new_pos = topic.find("::", pos);
if( new_pos == std::string::npos )
{
ret.push_back(topic);
break;
}
new_pos += 2; //length of "::"
ret.push_back(topic.substr(0, new_pos)+"*");
pos = new_pos;
}
return ret;
}
EventRouter::EventRouter()
{
}
void EventRouter::registerListener(std::shared_ptr<ListenerBase> listener, EventBase::Topic topic)
{
listeners[topic].push_back(listener);
}
void EventRouter::unregisterListener(std::shared_ptr<ListenerBase> listener, EventBase::Topic topic)
{
while( true )
{
std::vector<std::shared_ptr<ListenerBase> >::iterator LI = std::find(listeners[topic].begin(), listeners[topic].end(), listener);
if(LI == listeners[topic].end() )
break;
listeners[topic].erase(LI);
}
}
void EventRouter::publishEvent(std::shared_ptr<EventBase> event)
{
if( !event )
return;
std::vector<EventBase::Topic> topic_matches = getAllPossibleTopics(event->getTopic());
for(std::vector<EventBase::Topic>::iterator TI = topic_matches.begin(); TI != topic_matches.end(); ++TI)
{
for(std::vector<std::shared_ptr<ListenerBase> >::iterator LI = listeners[*TI].begin(); LI != listeners[*TI].end(); ++LI)
{
if( *LI == NULL )
continue;
(*LI)->processEvent(event);
}
}
}
void EventRouter::publishEvent(EventBase* event)
{
publishEvent(std::shared_ptr<EventBase>(event));
}