From b009754d1bc09d9cb26b35e41146029491044b6d Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Fri, 12 Jan 2018 16:48:42 +0500 Subject: Added more mutexes -> It's working fine now --- src/Event.cpp | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) (limited to 'src/Event.cpp') diff --git a/src/Event.cpp b/src/Event.cpp index 7604609..08c9ee7 100644 --- a/src/Event.cpp +++ b/src/Event.cpp @@ -17,9 +17,10 @@ void EventListener::HandleEvent() { if (!NotEmpty()) return; - std::lock_guard lock(EventSystem::listenersMutex); + std::lock_guard eventsLock (eventsMutex); Event event = events.front(); - events.pop(); + events.pop(); + std::lock_guard handlersLock (handlersMutex); if (handlers[event.id]) { handlers[event.id](event); } @@ -29,7 +30,8 @@ void EventListener::HandleAllEvents() { if (!NotEmpty()) return; - std::lock_guard lock(EventSystem::listenersMutex); + std::lock_guard eventsLock (eventsMutex); + std::lock_guard handlersLock (handlersMutex); while (!events.empty()) { Event event = events.front(); events.pop(); @@ -40,19 +42,27 @@ void EventListener::HandleAllEvents() { } bool EventListener::NotEmpty() { + PollEvents(); + std::lock_guard eventsLock (eventsMutex); bool ret = !events.empty(); return ret; } -void EventListener::WaitEvent() { - std::lock_guard lock(EventSystem::listenersMutex); - while (events.empty()) { - mutex.unlock(); - mutex.lock(); - } -} - void EventListener::RegisterHandler(size_t eventId, const EventListener::HandlerType &data) { - std::lock_guard lock(EventSystem::listenersMutex); + std::lock_guard handlersLock (handlersMutex); handlers[eventId] = data; } + +void EventListener::PollEvents() { + std::lock_guard rawLock (rawEventsMutex); + if (rawEvents.empty()) + return; + std::lock_guard eventsLock (eventsMutex); + std::lock_guard handlersLock (handlersMutex); + while (!rawEvents.empty()) { + Event event = rawEvents.front(); + rawEvents.pop(); + if (handlers[event.id]) + events.push(event); + } +} -- cgit v1.2.3