summaryrefslogtreecommitdiffstats
path: root/src/Event.cpp
blob: 1ca933fb8063d7260e09acad7f606872fb040451 (plain) (blame)
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
75
76
77
#include "Event.hpp"

#include <optick.h>

std::list<EventListener*> EventSystem::listeners;
std::recursive_mutex EventSystem::listenersMutex;

EventListener::EventListener() {
	std::lock_guard<std::recursive_mutex> lock(EventSystem::listenersMutex);
	EventSystem::listeners.push_back(this);
}

EventListener::~EventListener() {
	std::lock_guard<std::recursive_mutex> lock(EventSystem::listenersMutex);
	EventSystem::listeners.remove(this);
}

void EventListener::HandleEvent() {
	OPTICK_EVENT();
	if (Empty())
		return;

	std::lock_guard<std::recursive_mutex> eventsLock (eventsMutex);
	Event event = events.front();
	events.pop();
	std::lock_guard<std::recursive_mutex> handlersLock (handlersMutex);
	if (handlers[event.id]) {
		handlers[event.id](event);
	}
}

void EventListener::HandleAllEvents() {
	OPTICK_EVENT();

	//This mutexes will locked in PollEvents
	std::lock_guard<std::recursive_mutex> eventsLock (eventsMutex);
	std::lock_guard<std::recursive_mutex> handlersLock (handlersMutex);

	if (Empty())
		return;

	while (!events.empty()) {
		Event event = events.front();
		events.pop();
		if (handlers[event.id]) {
			handlers[event.id](event);
		}
	}
}

bool EventListener::Empty() {
	std::lock_guard<std::recursive_mutex> eventsLock (eventsMutex);
	PollEvents();
	return events.empty();
}

void EventListener::RegisterHandler(size_t eventId, const EventListener::HandlerType &data) {
	std::lock_guard<std::recursive_mutex> handlersLock (handlersMutex);
	handlers[eventId] = data;
}

void EventListener::PollEvents() {
	OPTICK_EVENT();
	std::lock_guard<std::recursive_mutex> eventsLock (eventsMutex);
	std::lock_guard<std::recursive_mutex> handlersLock (handlersMutex);//To prevent inverse lock order

	std::lock_guard<std::recursive_mutex> rawLock (rawEventsMutex);
	if (rawEvents.empty())
		return;

	while (!rawEvents.empty()) {
		Event event = rawEvents.front();
		rawEvents.pop();
		if (handlers[event.id])
			events.push(event);
	}
}