summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/EventLoopImplementation.cpp
blob: bc6a39e3178cd940dbeaef75d088dca8ed471186 (plain)
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
/*
 * Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <AK/NonnullOwnPtr.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoopImplementation.h>
#include <LibCore/EventLoopImplementationUnix.h>
#include <LibCore/ThreadEventQueue.h>

namespace Core {

EventLoopImplementation::EventLoopImplementation() = default;

EventLoopImplementation::~EventLoopImplementation() = default;

static EventLoopManager* s_event_loop_manager;
EventLoopManager& EventLoopManager::the()
{
    if (!s_event_loop_manager)
        s_event_loop_manager = new EventLoopManagerUnix;
    return *s_event_loop_manager;
}

void EventLoopManager::install(Core::EventLoopManager& manager)
{
    s_event_loop_manager = &manager;
}

EventLoopManager::EventLoopManager()
    : m_thread_event_queue(ThreadEventQueue::current())
{
}

EventLoopManager::~EventLoopManager() = default;

void EventLoopManager::post_event(Object& receiver, NonnullOwnPtr<Event>&& event)
{
    m_thread_event_queue.post_event(receiver, move(event));

    // Wake up this EventLoopImplementation if this is a cross-thread event posting.
    if (&ThreadEventQueue::current() != &m_thread_event_queue)
        wake();
}

}