2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2020-02-14 22:29:06 +01:00
|
|
|
#include <AK/Badge.h>
|
2021-01-24 15:28:26 +01:00
|
|
|
#include <AK/Debug.h>
|
2021-04-14 10:29:33 +02:00
|
|
|
#include <AK/Format.h>
|
2020-01-05 12:28:42 +13:00
|
|
|
#include <AK/IDAllocator.h>
|
2019-08-17 11:35:09 +02:00
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonValue.h>
|
2020-03-10 10:31:37 +00:00
|
|
|
#include <AK/NeverDestroyed.h>
|
2021-01-08 12:09:39 -07:00
|
|
|
#include <AK/Singleton.h>
|
2020-07-06 15:48:02 -06:00
|
|
|
#include <AK/TemporaryChange.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <AK/Time.h>
|
2020-02-06 15:04:03 +01:00
|
|
|
#include <LibCore/Event.h>
|
|
|
|
#include <LibCore/EventLoop.h>
|
2020-02-14 22:29:06 +01:00
|
|
|
#include <LibCore/LocalServer.h>
|
2020-02-06 15:04:03 +01:00
|
|
|
#include <LibCore/LocalSocket.h>
|
|
|
|
#include <LibCore/Notifier.h>
|
|
|
|
#include <LibCore/Object.h>
|
2021-07-09 11:14:57 +02:00
|
|
|
#include <LibThreading/Mutex.h>
|
2019-06-22 21:21:57 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2020-07-06 15:48:02 -06:00
|
|
|
#include <signal.h>
|
2019-06-22 21:21:57 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
2019-04-10 17:30:34 +02:00
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
namespace Core {
|
|
|
|
|
2021-05-13 22:42:11 +02:00
|
|
|
class InspectorServerConnection;
|
|
|
|
|
|
|
|
[[maybe_unused]] static bool connect_to_inspector_server();
|
2020-01-03 20:27:48 +01:00
|
|
|
|
2020-02-15 02:09:00 +01:00
|
|
|
struct EventLoopTimer {
|
|
|
|
int timer_id { 0 };
|
2021-08-14 16:50:16 -07:00
|
|
|
Time interval;
|
|
|
|
Time fire_time;
|
2020-02-15 02:09:00 +01:00
|
|
|
bool should_reload { false };
|
|
|
|
TimerShouldFireWhenNotVisible fire_when_not_visible { TimerShouldFireWhenNotVisible::No };
|
|
|
|
WeakPtr<Object> owner;
|
|
|
|
|
2021-08-14 16:50:16 -07:00
|
|
|
void reload(const Time& now);
|
|
|
|
bool has_expired(const Time& now) const;
|
2020-02-15 02:09:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct EventLoop::Private {
|
2021-07-09 11:14:57 +02:00
|
|
|
Threading::Mutex lock;
|
2020-02-15 02:09:00 +01:00
|
|
|
};
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
static EventLoop* s_main_event_loop;
|
2021-06-08 19:36:27 +04:30
|
|
|
static Vector<EventLoop&>* s_event_loop_stack;
|
2020-03-10 10:31:37 +00:00
|
|
|
static NeverDestroyed<IDAllocator> s_id_allocator;
|
2020-02-15 02:09:00 +01:00
|
|
|
static HashMap<int, NonnullOwnPtr<EventLoopTimer>>* s_timers;
|
|
|
|
static HashTable<Notifier*>* s_notifiers;
|
2022-01-07 00:45:27 +01:00
|
|
|
static Threading::Mutex s_notifiers_mutex;
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
int EventLoop::s_wake_pipe_fds[2];
|
2021-05-13 22:42:11 +02:00
|
|
|
static RefPtr<InspectorServerConnection> s_inspector_server_connection;
|
2019-04-10 17:30:34 +02:00
|
|
|
|
2021-08-25 19:59:45 +02:00
|
|
|
bool EventLoop::has_been_instantiated()
|
|
|
|
{
|
|
|
|
return s_main_event_loop;
|
|
|
|
}
|
|
|
|
|
2021-01-08 12:09:39 -07:00
|
|
|
class SignalHandlers : public RefCounted<SignalHandlers> {
|
|
|
|
AK_MAKE_NONCOPYABLE(SignalHandlers);
|
|
|
|
AK_MAKE_NONMOVABLE(SignalHandlers);
|
|
|
|
|
|
|
|
public:
|
|
|
|
SignalHandlers(int signo, void (*handle_signal)(int));
|
|
|
|
~SignalHandlers();
|
|
|
|
|
|
|
|
void dispatch();
|
|
|
|
int add(Function<void(int)>&& handler);
|
|
|
|
bool remove(int handler_id);
|
|
|
|
|
|
|
|
bool is_empty() const
|
|
|
|
{
|
|
|
|
if (m_calling_handlers) {
|
|
|
|
for (auto& handler : m_handlers_pending) {
|
|
|
|
if (handler.value)
|
|
|
|
return false; // an add is pending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return m_handlers.is_empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool have(int handler_id) const
|
|
|
|
{
|
|
|
|
if (m_calling_handlers) {
|
|
|
|
auto it = m_handlers_pending.find(handler_id);
|
|
|
|
if (it != m_handlers_pending.end()) {
|
|
|
|
if (!it->value)
|
|
|
|
return false; // a deletion is pending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return m_handlers.contains(handler_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
int m_signo;
|
|
|
|
void (*m_original_handler)(int); // TODO: can't use sighandler_t?
|
|
|
|
HashMap<int, Function<void(int)>> m_handlers;
|
|
|
|
HashMap<int, Function<void(int)>> m_handlers_pending;
|
|
|
|
bool m_calling_handlers { false };
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SignalHandlersInfo {
|
|
|
|
HashMap<int, NonnullRefPtr<SignalHandlers>> signal_handlers;
|
|
|
|
int next_signal_id { 0 };
|
|
|
|
};
|
|
|
|
|
2021-08-07 21:34:11 +02:00
|
|
|
static Singleton<SignalHandlersInfo> s_signals;
|
2021-01-08 12:09:39 -07:00
|
|
|
template<bool create_if_null = true>
|
|
|
|
inline SignalHandlersInfo* signals_info()
|
|
|
|
{
|
2021-06-24 10:28:36 +02:00
|
|
|
return s_signals.ptr();
|
2021-01-08 12:09:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pid_t EventLoop::s_pid;
|
|
|
|
|
2021-05-13 22:42:11 +02:00
|
|
|
class InspectorServerConnection : public Object {
|
|
|
|
C_OBJECT(InspectorServerConnection)
|
2021-10-31 23:38:04 +01:00
|
|
|
private:
|
2021-05-13 22:42:11 +02:00
|
|
|
explicit InspectorServerConnection(RefPtr<LocalSocket> socket)
|
2019-09-21 10:28:02 +02:00
|
|
|
: m_socket(move(socket))
|
2020-03-10 10:31:37 +00:00
|
|
|
, m_client_id(s_id_allocator->allocate())
|
2019-09-11 21:19:23 +02:00
|
|
|
{
|
2021-01-12 17:38:52 +03:30
|
|
|
#ifdef __serenity__
|
2019-09-21 10:28:02 +02:00
|
|
|
add_child(*m_socket);
|
|
|
|
m_socket->on_ready_to_read = [this] {
|
2020-02-20 12:54:15 +01:00
|
|
|
u32 length;
|
2019-09-21 10:28:02 +02:00
|
|
|
int nread = m_socket->read((u8*)&length, sizeof(length));
|
2019-09-11 21:19:23 +02:00
|
|
|
if (nread == 0) {
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "RPC client disconnected");
|
2019-09-22 00:17:53 +02:00
|
|
|
shutdown();
|
2019-09-11 21:19:23 +02:00
|
|
|
return;
|
|
|
|
}
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(nread == sizeof(length));
|
2019-09-21 10:28:02 +02:00
|
|
|
auto request = m_socket->read(length);
|
2019-09-11 21:19:23 +02:00
|
|
|
|
|
|
|
auto request_json = JsonValue::from_string(request);
|
2021-11-15 01:46:51 +01:00
|
|
|
if (request_json.is_error() || !request_json.value().is_object()) {
|
2020-10-15 13:21:23 +02:00
|
|
|
dbgln("RPC client sent invalid request");
|
2019-09-22 00:17:53 +02:00
|
|
|
shutdown();
|
2019-09-11 21:19:23 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-10 21:40:27 -07:00
|
|
|
handle_request(request_json.value().as_object());
|
2019-09-11 21:19:23 +02:00
|
|
|
};
|
2021-01-12 17:38:52 +03:30
|
|
|
#else
|
|
|
|
warnln("RPC Client constructed outside serenity, this is very likely a bug!");
|
|
|
|
#endif
|
2019-09-11 21:19:23 +02:00
|
|
|
}
|
2021-05-13 22:42:11 +02:00
|
|
|
virtual ~InspectorServerConnection() override
|
2019-09-11 21:19:23 +02:00
|
|
|
{
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
if (auto inspected_object = m_inspected_object.strong_ref())
|
|
|
|
inspected_object->decrement_inspector_count({});
|
2019-09-11 21:19:23 +02:00
|
|
|
}
|
|
|
|
|
2021-10-31 23:38:04 +01:00
|
|
|
public:
|
2019-09-11 21:19:23 +02:00
|
|
|
void send_response(const JsonObject& response)
|
|
|
|
{
|
|
|
|
auto serialized = response.to_string();
|
2020-02-20 12:54:15 +01:00
|
|
|
u32 length = serialized.length();
|
2019-09-21 10:28:02 +02:00
|
|
|
m_socket->write((const u8*)&length, sizeof(length));
|
|
|
|
m_socket->write(serialized);
|
2019-09-11 21:19:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_request(const JsonObject& request)
|
|
|
|
{
|
|
|
|
auto type = request.get("type").as_string_or({});
|
|
|
|
|
|
|
|
if (type.is_null()) {
|
2020-10-15 13:21:23 +02:00
|
|
|
dbgln("RPC client sent request without type field");
|
2019-09-11 21:19:23 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == "Identify") {
|
|
|
|
JsonObject response;
|
|
|
|
response.set("type", type);
|
|
|
|
response.set("pid", getpid());
|
|
|
|
#ifdef __serenity__
|
|
|
|
char buffer[1024];
|
|
|
|
if (get_process_name(buffer, sizeof(buffer)) >= 0) {
|
|
|
|
response.set("process_name", buffer);
|
|
|
|
} else {
|
|
|
|
response.set("process_name", JsonValue());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
send_response(response);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == "GetAllObjects") {
|
|
|
|
JsonObject response;
|
|
|
|
response.set("type", type);
|
|
|
|
JsonArray objects;
|
2020-02-02 12:34:39 +01:00
|
|
|
for (auto& object : Object::all_objects()) {
|
2019-09-11 21:19:23 +02:00
|
|
|
JsonObject json_object;
|
|
|
|
object.save_to(json_object);
|
|
|
|
objects.append(move(json_object));
|
|
|
|
}
|
|
|
|
response.set("objects", move(objects));
|
|
|
|
send_response(response);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-05 14:40:47 +01:00
|
|
|
if (type == "SetInspectedObject") {
|
2020-03-08 10:36:51 +01:00
|
|
|
auto address = request.get("address").to_number<FlatPtr>();
|
2020-03-05 14:40:47 +01:00
|
|
|
for (auto& object : Object::all_objects()) {
|
2020-03-08 10:36:51 +01:00
|
|
|
if ((FlatPtr)&object == address) {
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
if (auto inspected_object = m_inspected_object.strong_ref())
|
|
|
|
inspected_object->decrement_inspector_count({});
|
|
|
|
m_inspected_object = object;
|
|
|
|
object.increment_inspector_count({});
|
2020-03-05 15:46:00 +01:00
|
|
|
break;
|
2020-03-05 14:40:47 +01:00
|
|
|
}
|
|
|
|
}
|
2020-03-05 15:46:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == "SetProperty") {
|
2020-03-08 10:36:51 +01:00
|
|
|
auto address = request.get("address").to_number<FlatPtr>();
|
2020-03-05 15:46:00 +01:00
|
|
|
for (auto& object : Object::all_objects()) {
|
2020-03-08 10:36:51 +01:00
|
|
|
if ((FlatPtr)&object == address) {
|
2020-03-05 15:46:00 +01:00
|
|
|
bool success = object.set_property(request.get("name").to_string(), request.get("value"));
|
|
|
|
JsonObject response;
|
|
|
|
response.set("type", "SetProperty");
|
|
|
|
response.set("success", success);
|
|
|
|
send_response(response);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
2020-03-05 14:40:47 +01:00
|
|
|
}
|
|
|
|
|
2019-09-11 21:19:23 +02:00
|
|
|
if (type == "Disconnect") {
|
2019-09-22 00:17:53 +02:00
|
|
|
shutdown();
|
2019-09-11 21:19:23 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-22 00:17:53 +02:00
|
|
|
void shutdown()
|
|
|
|
{
|
2020-03-10 10:31:37 +00:00
|
|
|
s_id_allocator->deallocate(m_client_id);
|
2019-09-22 00:17:53 +02:00
|
|
|
}
|
|
|
|
|
2019-09-11 21:19:23 +02:00
|
|
|
private:
|
2020-02-02 12:34:39 +01:00
|
|
|
RefPtr<LocalSocket> m_socket;
|
2020-03-05 14:40:47 +01:00
|
|
|
WeakPtr<Object> m_inspected_object;
|
2020-01-03 20:27:48 +01:00
|
|
|
int m_client_id { -1 };
|
2019-09-11 21:19:23 +02:00
|
|
|
};
|
|
|
|
|
2021-05-13 22:42:11 +02:00
|
|
|
EventLoop::EventLoop([[maybe_unused]] MakeInspectable make_inspectable)
|
2020-02-15 02:09:00 +01:00
|
|
|
: m_private(make<Private>())
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
|
|
|
if (!s_event_loop_stack) {
|
2021-06-08 19:36:27 +04:30
|
|
|
s_event_loop_stack = new Vector<EventLoop&>;
|
2020-02-15 02:09:00 +01:00
|
|
|
s_timers = new HashMap<int, NonnullOwnPtr<EventLoopTimer>>;
|
2020-02-02 12:34:39 +01:00
|
|
|
s_notifiers = new HashTable<Notifier*>;
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!s_main_event_loop) {
|
|
|
|
s_main_event_loop = this;
|
2020-07-06 15:48:02 -06:00
|
|
|
s_pid = getpid();
|
2019-12-25 17:09:52 +01:00
|
|
|
#if defined(SOCK_NONBLOCK)
|
2019-08-05 15:31:38 +03:00
|
|
|
int rc = pipe2(s_wake_pipe_fds, O_CLOEXEC);
|
2019-12-25 17:09:52 +01:00
|
|
|
#else
|
|
|
|
int rc = pipe(s_wake_pipe_fds);
|
|
|
|
fcntl(s_wake_pipe_fds[0], F_SETFD, FD_CLOEXEC);
|
|
|
|
fcntl(s_wake_pipe_fds[1], F_SETFD, FD_CLOEXEC);
|
|
|
|
|
|
|
|
#endif
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(rc == 0);
|
2021-06-08 19:36:27 +04:30
|
|
|
s_event_loop_stack->append(*this);
|
2019-08-17 11:35:09 +02:00
|
|
|
|
2021-01-12 17:38:52 +03:30
|
|
|
#ifdef __serenity__
|
2021-05-14 22:10:11 +02:00
|
|
|
if (getuid() != 0
|
|
|
|
&& make_inspectable == MakeInspectable::Yes
|
|
|
|
&& !s_inspector_server_connection) {
|
|
|
|
if (!connect_to_inspector_server())
|
|
|
|
dbgln("Core::EventLoop: Failed to connect to InspectorServer");
|
2019-08-17 11:35:09 +02:00
|
|
|
}
|
2021-01-12 17:38:52 +03:30
|
|
|
#endif
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "{} Core::EventLoop constructed :)", getpid());
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
EventLoop::~EventLoop()
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-10-23 23:10:55 +02:00
|
|
|
// NOTE: Pop the main event loop off of the stack when destroyed.
|
|
|
|
if (this == s_main_event_loop) {
|
|
|
|
s_event_loop_stack->take_last();
|
|
|
|
s_main_event_loop = nullptr;
|
|
|
|
}
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2021-05-13 22:42:11 +02:00
|
|
|
bool connect_to_inspector_server()
|
2020-05-28 18:19:49 +03:00
|
|
|
{
|
2021-01-12 17:38:52 +03:30
|
|
|
#ifdef __serenity__
|
2021-05-13 22:42:11 +02:00
|
|
|
auto socket = Core::LocalSocket::construct();
|
|
|
|
if (!socket->connect(SocketAddress::local("/tmp/portal/inspectables")))
|
|
|
|
return false;
|
|
|
|
s_inspector_server_connection = InspectorServerConnection::construct(move(socket));
|
|
|
|
return true;
|
2021-01-12 17:38:52 +03:30
|
|
|
#else
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2021-01-12 17:38:52 +03:30
|
|
|
#endif
|
2020-05-28 18:19:49 +03:00
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
EventLoop& EventLoop::main()
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(s_main_event_loop);
|
2019-04-10 17:30:34 +02:00
|
|
|
return *s_main_event_loop;
|
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
EventLoop& EventLoop::current()
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-06-08 19:36:27 +04:30
|
|
|
return s_event_loop_stack->last();
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
void EventLoop::quit(int code)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::quit({})", code);
|
2019-04-10 17:30:34 +02:00
|
|
|
m_exit_requested = true;
|
|
|
|
m_exit_code = code;
|
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
void EventLoop::unquit()
|
2019-10-25 00:18:31 -05:00
|
|
|
{
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::unquit()");
|
2019-10-25 00:18:31 -05:00
|
|
|
m_exit_requested = false;
|
|
|
|
m_exit_code = 0;
|
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
struct EventLoopPusher {
|
2019-04-10 17:30:34 +02:00
|
|
|
public:
|
2020-02-02 12:34:39 +01:00
|
|
|
EventLoopPusher(EventLoop& event_loop)
|
2019-05-28 11:53:16 +02:00
|
|
|
: m_event_loop(event_loop)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
|
|
|
if (&m_event_loop != s_main_event_loop) {
|
2020-02-02 12:34:39 +01:00
|
|
|
m_event_loop.take_pending_events_from(EventLoop::current());
|
2021-06-08 19:36:27 +04:30
|
|
|
s_event_loop_stack->append(event_loop);
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
}
|
2020-02-02 12:34:39 +01:00
|
|
|
~EventLoopPusher()
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
|
|
|
if (&m_event_loop != s_main_event_loop) {
|
|
|
|
s_event_loop_stack->take_last();
|
2020-02-02 12:34:39 +01:00
|
|
|
EventLoop::current().take_pending_events_from(m_event_loop);
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-28 11:53:16 +02:00
|
|
|
|
2019-04-10 17:30:34 +02:00
|
|
|
private:
|
2020-02-02 12:34:39 +01:00
|
|
|
EventLoop& m_event_loop;
|
2019-04-10 17:30:34 +02:00
|
|
|
};
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
int EventLoop::exec()
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2020-02-02 12:34:39 +01:00
|
|
|
EventLoopPusher pusher(*this);
|
2019-04-10 17:30:34 +02:00
|
|
|
for (;;) {
|
|
|
|
if (m_exit_requested)
|
|
|
|
return m_exit_code;
|
2019-05-18 13:39:21 +02:00
|
|
|
pump();
|
|
|
|
}
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2019-05-18 13:39:21 +02:00
|
|
|
}
|
2019-04-29 15:57:49 +02:00
|
|
|
|
2021-09-25 19:32:14 +02:00
|
|
|
void EventLoop::spin_until(Function<bool()> goal_condition)
|
|
|
|
{
|
|
|
|
EventLoopPusher pusher(*this);
|
|
|
|
while (!goal_condition())
|
|
|
|
pump();
|
|
|
|
}
|
|
|
|
|
2022-01-06 00:55:48 +01:00
|
|
|
size_t EventLoop::pump(WaitMode mode)
|
2019-05-18 13:39:21 +02:00
|
|
|
{
|
2020-05-16 22:02:53 +02:00
|
|
|
wait_for_event(mode);
|
2019-07-20 15:50:03 +02:00
|
|
|
|
2019-05-18 13:39:21 +02:00
|
|
|
decltype(m_queued_events) events;
|
|
|
|
{
|
2021-07-09 11:14:57 +02:00
|
|
|
Threading::MutexLocker locker(m_private->lock);
|
2019-05-18 13:39:21 +02:00
|
|
|
events = move(m_queued_events);
|
|
|
|
}
|
2019-04-29 15:57:49 +02:00
|
|
|
|
2022-01-06 00:55:48 +01:00
|
|
|
size_t processed_events = 0;
|
2020-02-25 14:49:47 +01:00
|
|
|
for (size_t i = 0; i < events.size(); ++i) {
|
2019-07-21 10:17:20 +02:00
|
|
|
auto& queued_event = events.at(i);
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
auto receiver = queued_event.receiver.strong_ref();
|
2019-05-18 13:39:21 +02:00
|
|
|
auto& event = *queued_event.event;
|
2019-07-26 16:00:56 +02:00
|
|
|
if (receiver)
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop: {} event {}", *receiver, event.type());
|
|
|
|
|
2019-05-18 13:39:21 +02:00
|
|
|
if (!receiver) {
|
|
|
|
switch (event.type()) {
|
2020-02-02 12:34:39 +01:00
|
|
|
case Event::Quit:
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2019-05-18 13:39:21 +02:00
|
|
|
default:
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Event type {} with no receiver :(", event.type());
|
2020-06-02 12:46:21 +02:00
|
|
|
break;
|
2019-05-18 13:39:21 +02:00
|
|
|
}
|
2020-02-02 12:34:39 +01:00
|
|
|
} else if (event.type() == Event::Type::DeferredInvoke) {
|
2021-05-01 21:10:08 +02:00
|
|
|
dbgln_if(DEFERRED_INVOKE_DEBUG, "DeferredInvoke: receiver = {}", *receiver);
|
2021-08-30 10:43:28 +00:00
|
|
|
static_cast<DeferredInvocationEvent&>(event).m_invokee();
|
2019-05-18 13:39:21 +02:00
|
|
|
} else {
|
2020-02-02 12:34:39 +01:00
|
|
|
NonnullRefPtr<Object> protector(*receiver);
|
2019-09-20 20:37:31 +02:00
|
|
|
receiver->dispatch_event(event);
|
2019-05-18 13:39:21 +02:00
|
|
|
}
|
2022-01-06 00:55:48 +01:00
|
|
|
++processed_events;
|
2019-04-10 17:30:34 +02:00
|
|
|
|
2019-05-18 13:39:21 +02:00
|
|
|
if (m_exit_requested) {
|
2021-07-09 11:14:57 +02:00
|
|
|
Threading::MutexLocker locker(m_private->lock);
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop: Exit requested. Rejigging {} events.", events.size() - i);
|
2019-07-25 16:12:51 +02:00
|
|
|
decltype(m_queued_events) new_event_queue;
|
|
|
|
new_event_queue.ensure_capacity(m_queued_events.size() + events.size());
|
2020-04-03 22:55:48 +02:00
|
|
|
for (++i; i < events.size(); ++i)
|
2019-07-25 16:12:51 +02:00
|
|
|
new_event_queue.unchecked_append(move(events[i]));
|
2021-06-12 13:24:45 +02:00
|
|
|
new_event_queue.extend(move(m_queued_events));
|
2019-07-25 16:12:51 +02:00
|
|
|
m_queued_events = move(new_event_queue);
|
2022-01-06 00:55:48 +01:00
|
|
|
break;
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
}
|
2022-01-06 00:55:48 +01:00
|
|
|
|
|
|
|
return processed_events;
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
void EventLoop::post_event(Object& receiver, NonnullOwnPtr<Event>&& event)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-07-09 11:14:57 +02:00
|
|
|
Threading::MutexLocker lock(m_private->lock);
|
2022-01-06 07:07:15 -07:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::post_event: ({}) << receiver={}, event={}", m_queued_events.size(), receiver, event);
|
2020-02-14 22:29:06 +01:00
|
|
|
m_queued_events.empend(receiver, move(event));
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2021-01-08 12:09:39 -07:00
|
|
|
SignalHandlers::SignalHandlers(int signo, void (*handle_signal)(int))
|
2020-07-06 15:48:02 -06:00
|
|
|
: m_signo(signo)
|
2021-01-08 12:09:39 -07:00
|
|
|
, m_original_handler(signal(signo, handle_signal))
|
2020-07-06 15:48:02 -06:00
|
|
|
{
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop: Registered handler for signal {}", m_signo);
|
2020-07-06 15:48:02 -06:00
|
|
|
}
|
|
|
|
|
2021-01-08 12:09:39 -07:00
|
|
|
SignalHandlers::~SignalHandlers()
|
2020-07-06 15:48:02 -06:00
|
|
|
{
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop: Unregistering handler for signal {}", m_signo);
|
2021-01-08 10:29:11 -07:00
|
|
|
signal(m_signo, m_original_handler);
|
2020-07-06 15:48:02 -06:00
|
|
|
}
|
|
|
|
|
2021-01-08 12:09:39 -07:00
|
|
|
void SignalHandlers::dispatch()
|
2020-07-06 15:48:02 -06:00
|
|
|
{
|
2021-01-08 10:29:11 -07:00
|
|
|
TemporaryChange change(m_calling_handlers, true);
|
2020-07-06 15:48:02 -06:00
|
|
|
for (auto& handler : m_handlers)
|
|
|
|
handler.value(m_signo);
|
2021-01-08 10:29:11 -07:00
|
|
|
if (!m_handlers_pending.is_empty()) {
|
|
|
|
// Apply pending adds/removes
|
|
|
|
for (auto& handler : m_handlers_pending) {
|
|
|
|
if (handler.value) {
|
|
|
|
auto result = m_handlers.set(handler.key, move(handler.value));
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(result == AK::HashSetResult::InsertedNewEntry);
|
2021-01-08 10:29:11 -07:00
|
|
|
} else {
|
|
|
|
m_handlers.remove(handler.key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_handlers_pending.clear();
|
|
|
|
}
|
2020-07-06 15:48:02 -06:00
|
|
|
}
|
|
|
|
|
2021-01-08 12:09:39 -07:00
|
|
|
int SignalHandlers::add(Function<void(int)>&& handler)
|
2020-07-06 15:48:02 -06:00
|
|
|
{
|
2021-01-08 12:09:39 -07:00
|
|
|
int id = ++signals_info()->next_signal_id; // TODO: worry about wrapping and duplicates?
|
2021-01-08 10:29:11 -07:00
|
|
|
if (m_calling_handlers)
|
|
|
|
m_handlers_pending.set(id, move(handler));
|
|
|
|
else
|
|
|
|
m_handlers.set(id, move(handler));
|
2020-07-06 15:48:02 -06:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2021-01-08 12:09:39 -07:00
|
|
|
bool SignalHandlers::remove(int handler_id)
|
2020-07-06 15:48:02 -06:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(handler_id != 0);
|
2021-01-08 10:29:11 -07:00
|
|
|
if (m_calling_handlers) {
|
|
|
|
auto it = m_handlers.find(handler_id);
|
|
|
|
if (it != m_handlers.end()) {
|
|
|
|
// Mark pending remove
|
2021-01-10 16:29:28 -07:00
|
|
|
m_handlers_pending.set(handler_id, {});
|
2021-01-08 10:29:11 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
it = m_handlers_pending.find(handler_id);
|
|
|
|
if (it != m_handlers_pending.end()) {
|
|
|
|
if (!it->value)
|
|
|
|
return false; // already was marked as deleted
|
|
|
|
it->value = nullptr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2020-07-06 15:48:02 -06:00
|
|
|
return m_handlers.remove(handler_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventLoop::dispatch_signal(int signo)
|
|
|
|
{
|
2021-01-08 12:09:39 -07:00
|
|
|
auto& info = *signals_info();
|
|
|
|
auto handlers = info.signal_handlers.find(signo);
|
|
|
|
if (handlers != info.signal_handlers.end()) {
|
2021-01-08 10:29:11 -07:00
|
|
|
// Make sure we bump the ref count while dispatching the handlers!
|
|
|
|
// This allows a handler to unregister/register while the handlers
|
|
|
|
// are being called!
|
|
|
|
auto handler = handlers->value;
|
2021-04-14 10:29:33 +02:00
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop: dispatching signal {}", signo);
|
2021-01-08 10:29:11 -07:00
|
|
|
handler->dispatch();
|
2020-07-06 15:48:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventLoop::handle_signal(int signo)
|
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(signo != 0);
|
2020-07-06 15:48:02 -06:00
|
|
|
// We MUST check if the current pid still matches, because there
|
|
|
|
// is a window between fork() and exec() where a signal delivered
|
2022-01-06 07:07:15 -07:00
|
|
|
// to our fork could be inadvertently routed to the parent process!
|
2020-07-06 15:48:02 -06:00
|
|
|
if (getpid() == s_pid) {
|
|
|
|
int nwritten = write(s_wake_pipe_fds[1], &signo, sizeof(signo));
|
|
|
|
if (nwritten < 0) {
|
|
|
|
perror("EventLoop::register_signal: write");
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-07-06 15:48:02 -06:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// We're a fork who received a signal, reset s_pid
|
|
|
|
s_pid = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int EventLoop::register_signal(int signo, Function<void(int)> handler)
|
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(signo != 0);
|
2021-01-08 12:09:39 -07:00
|
|
|
auto& info = *signals_info();
|
|
|
|
auto handlers = info.signal_handlers.find(signo);
|
|
|
|
if (handlers == info.signal_handlers.end()) {
|
2021-04-23 16:46:57 +02:00
|
|
|
auto signal_handlers = adopt_ref(*new SignalHandlers(signo, EventLoop::handle_signal));
|
2021-01-08 10:29:11 -07:00
|
|
|
auto handler_id = signal_handlers->add(move(handler));
|
2021-01-08 12:09:39 -07:00
|
|
|
info.signal_handlers.set(signo, move(signal_handlers));
|
2020-07-06 15:48:02 -06:00
|
|
|
return handler_id;
|
|
|
|
} else {
|
2021-01-08 10:29:11 -07:00
|
|
|
return handlers->value->add(move(handler));
|
2020-07-06 15:48:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventLoop::unregister_signal(int handler_id)
|
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(handler_id != 0);
|
2020-07-06 15:48:02 -06:00
|
|
|
int remove_signo = 0;
|
2021-01-08 12:09:39 -07:00
|
|
|
auto& info = *signals_info();
|
|
|
|
for (auto& h : info.signal_handlers) {
|
2021-01-08 10:29:11 -07:00
|
|
|
auto& handlers = *h.value;
|
|
|
|
if (handlers.remove(handler_id)) {
|
2020-07-06 15:48:02 -06:00
|
|
|
if (handlers.is_empty())
|
|
|
|
remove_signo = handlers.m_signo;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (remove_signo != 0)
|
2021-01-08 12:09:39 -07:00
|
|
|
info.signal_handlers.remove(remove_signo);
|
2020-07-06 15:48:02 -06:00
|
|
|
}
|
|
|
|
|
2020-09-07 22:44:42 +04:30
|
|
|
void EventLoop::notify_forked(ForkEvent event)
|
|
|
|
{
|
|
|
|
switch (event) {
|
|
|
|
case ForkEvent::Child:
|
|
|
|
s_main_event_loop = nullptr;
|
|
|
|
s_event_loop_stack->clear();
|
|
|
|
s_timers->clear();
|
|
|
|
s_notifiers->clear();
|
2021-01-08 12:09:39 -07:00
|
|
|
if (auto* info = signals_info<false>()) {
|
|
|
|
info->signal_handlers.clear();
|
|
|
|
info->next_signal_id = 0;
|
|
|
|
}
|
2020-09-07 22:44:42 +04:30
|
|
|
s_pid = 0;
|
2021-01-12 17:38:52 +03:30
|
|
|
#ifdef __serenity__
|
2021-05-13 22:42:11 +02:00
|
|
|
s_inspector_server_connection = nullptr;
|
2021-01-12 17:38:52 +03:30
|
|
|
#endif
|
2020-09-07 22:44:42 +04:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-09-07 22:44:42 +04:30
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
void EventLoop::wait_for_event(WaitMode mode)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
|
|
|
fd_set rfds;
|
|
|
|
fd_set wfds;
|
2020-07-06 15:48:02 -06:00
|
|
|
retry:
|
2019-04-10 17:30:34 +02:00
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_ZERO(&wfds);
|
|
|
|
|
|
|
|
int max_fd = 0;
|
2019-05-28 11:53:16 +02:00
|
|
|
auto add_fd_to_set = [&max_fd](int fd, fd_set& set) {
|
2019-04-10 17:30:34 +02:00
|
|
|
FD_SET(fd, &set);
|
|
|
|
if (fd > max_fd)
|
|
|
|
max_fd = fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
int max_fd_added = -1;
|
2019-07-14 14:28:24 +02:00
|
|
|
add_fd_to_set(s_wake_pipe_fds[0], rfds);
|
2019-04-10 17:30:34 +02:00
|
|
|
max_fd = max(max_fd, max_fd_added);
|
2022-01-07 00:45:27 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
Threading::MutexLocker locker(s_notifiers_mutex);
|
|
|
|
for (auto& notifier : *s_notifiers) {
|
|
|
|
if (notifier->event_mask() & Notifier::Read)
|
|
|
|
add_fd_to_set(notifier->fd(), rfds);
|
|
|
|
if (notifier->event_mask() & Notifier::Write)
|
|
|
|
add_fd_to_set(notifier->fd(), wfds);
|
|
|
|
if (notifier->event_mask() & Notifier::Exceptional)
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
}
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2019-04-29 15:57:49 +02:00
|
|
|
bool queued_events_is_empty;
|
|
|
|
{
|
2021-07-09 11:14:57 +02:00
|
|
|
Threading::MutexLocker locker(m_private->lock);
|
2019-04-29 15:57:49 +02:00
|
|
|
queued_events_is_empty = m_queued_events.is_empty();
|
|
|
|
}
|
|
|
|
|
2021-08-14 16:50:16 -07:00
|
|
|
Time now;
|
2019-04-10 17:30:34 +02:00
|
|
|
struct timeval timeout = { 0, 0 };
|
2019-05-18 13:39:21 +02:00
|
|
|
bool should_wait_forever = false;
|
2020-05-15 18:21:40 +03:00
|
|
|
if (mode == WaitMode::WaitForEvents && queued_events_is_empty) {
|
|
|
|
auto next_timer_expiration = get_next_timer_expiration();
|
|
|
|
if (next_timer_expiration.has_value()) {
|
2021-08-14 16:50:16 -07:00
|
|
|
now = Time::now_monotonic_coarse();
|
|
|
|
auto computed_timeout = next_timer_expiration.value() - now;
|
|
|
|
if (computed_timeout.is_negative())
|
|
|
|
computed_timeout = Time::zero();
|
|
|
|
timeout = computed_timeout.to_timeval();
|
2019-05-18 13:39:21 +02:00
|
|
|
} else {
|
|
|
|
should_wait_forever = true;
|
|
|
|
}
|
2019-05-18 02:00:01 +02:00
|
|
|
}
|
2019-04-10 17:30:34 +02:00
|
|
|
|
2020-07-06 15:48:02 -06:00
|
|
|
try_select_again:
|
2020-06-17 12:27:48 +04:30
|
|
|
int marked_fd_count = select(max_fd + 1, &rfds, &wfds, nullptr, should_wait_forever ? nullptr : &timeout);
|
|
|
|
if (marked_fd_count < 0) {
|
|
|
|
int saved_errno = errno;
|
|
|
|
if (saved_errno == EINTR) {
|
|
|
|
if (m_exit_requested)
|
|
|
|
return;
|
|
|
|
goto try_select_again;
|
|
|
|
}
|
2021-12-19 10:56:50 +01:00
|
|
|
dbgln("Core::EventLoop::wait_for_event: {} ({}: {})", marked_fd_count, saved_errno, strerror(saved_errno));
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-06-17 12:27:48 +04:30
|
|
|
}
|
2019-07-14 14:28:24 +02:00
|
|
|
if (FD_ISSET(s_wake_pipe_fds[0], &rfds)) {
|
2020-07-06 15:48:02 -06:00
|
|
|
int wake_events[8];
|
|
|
|
auto nread = read(s_wake_pipe_fds[0], wake_events, sizeof(wake_events));
|
2019-07-14 14:28:24 +02:00
|
|
|
if (nread < 0) {
|
|
|
|
perror("read from wake pipe");
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2019-07-14 14:28:24 +02:00
|
|
|
}
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(nread > 0);
|
2020-07-06 15:48:02 -06:00
|
|
|
bool wake_requested = false;
|
|
|
|
int event_count = nread / sizeof(wake_events[0]);
|
|
|
|
for (int i = 0; i < event_count; i++) {
|
|
|
|
if (wake_events[i] != 0)
|
|
|
|
dispatch_signal(wake_events[i]);
|
|
|
|
else
|
|
|
|
wake_requested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!wake_requested && nread == sizeof(wake_events))
|
|
|
|
goto retry;
|
2019-07-14 10:20:57 +02:00
|
|
|
}
|
|
|
|
|
2019-05-18 02:00:01 +02:00
|
|
|
if (!s_timers->is_empty()) {
|
2021-08-14 16:50:16 -07:00
|
|
|
now = Time::now_monotonic_coarse();
|
2019-05-18 02:00:01 +02:00
|
|
|
}
|
2019-04-18 01:37:23 +02:00
|
|
|
|
2019-04-10 17:30:34 +02:00
|
|
|
for (auto& it : *s_timers) {
|
|
|
|
auto& timer = *it.value;
|
2019-04-18 01:37:23 +02:00
|
|
|
if (!timer.has_expired(now))
|
2019-04-10 17:30:34 +02:00
|
|
|
continue;
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
auto owner = timer.owner.strong_ref();
|
|
|
|
if (timer.fire_when_not_visible == TimerShouldFireWhenNotVisible::No
|
|
|
|
&& owner && !owner->is_visible_for_timer_purposes()) {
|
2019-12-29 15:58:07 +01:00
|
|
|
continue;
|
|
|
|
}
|
2021-04-14 10:29:33 +02:00
|
|
|
|
|
|
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop: Timer {} has expired, sending Core::TimerEvent to {}", timer.timer_id, *owner);
|
|
|
|
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
if (owner)
|
|
|
|
post_event(*owner, make<TimerEvent>(timer.timer_id));
|
2019-04-10 17:30:34 +02:00
|
|
|
if (timer.should_reload) {
|
2019-04-18 01:37:23 +02:00
|
|
|
timer.reload(now);
|
2019-04-10 17:30:34 +02:00
|
|
|
} else {
|
|
|
|
// FIXME: Support removing expired timers that don't want to reload.
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-05 01:57:28 -07:00
|
|
|
if (!marked_fd_count)
|
|
|
|
return;
|
|
|
|
|
2022-01-07 00:45:27 +01:00
|
|
|
Threading::MutexLocker locker(s_notifiers_mutex);
|
2019-04-10 17:30:34 +02:00
|
|
|
for (auto& notifier : *s_notifiers) {
|
|
|
|
if (FD_ISSET(notifier->fd(), &rfds)) {
|
2020-07-06 23:02:07 +02:00
|
|
|
if (notifier->event_mask() & Notifier::Event::Read)
|
2020-02-02 12:34:39 +01:00
|
|
|
post_event(*notifier, make<NotifierReadEvent>(notifier->fd()));
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
if (FD_ISSET(notifier->fd(), &wfds)) {
|
2020-07-06 23:02:07 +02:00
|
|
|
if (notifier->event_mask() & Notifier::Event::Write)
|
2020-02-02 12:34:39 +01:00
|
|
|
post_event(*notifier, make<NotifierWriteEvent>(notifier->fd()));
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-14 16:50:16 -07:00
|
|
|
bool EventLoopTimer::has_expired(const Time& now) const
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-08-14 16:50:16 -07:00
|
|
|
return now > fire_time;
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-14 16:50:16 -07:00
|
|
|
void EventLoopTimer::reload(const Time& now)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-08-14 16:50:16 -07:00
|
|
|
fire_time = now + interval;
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-14 16:50:16 -07:00
|
|
|
Optional<Time> EventLoop::get_next_timer_expiration()
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-08-14 16:50:16 -07:00
|
|
|
Optional<Time> soonest {};
|
2019-04-10 17:30:34 +02:00
|
|
|
for (auto& it : *s_timers) {
|
|
|
|
auto& fire_time = it.value->fire_time;
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
auto owner = it.value->owner.strong_ref();
|
2019-12-29 15:58:07 +01:00
|
|
|
if (it.value->fire_when_not_visible == TimerShouldFireWhenNotVisible::No
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
&& owner && !owner->is_visible_for_timer_purposes()) {
|
2019-12-29 15:58:07 +01:00
|
|
|
continue;
|
|
|
|
}
|
2021-08-14 16:50:16 -07:00
|
|
|
if (!soonest.has_value() || fire_time < soonest.value())
|
2019-04-10 17:30:34 +02:00
|
|
|
soonest = fire_time;
|
|
|
|
}
|
2020-05-15 18:21:40 +03:00
|
|
|
return soonest;
|
2019-04-10 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
int EventLoop::register_timer(Object& object, int milliseconds, bool should_reload, TimerShouldFireWhenNotVisible fire_when_not_visible)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(milliseconds >= 0);
|
2019-04-10 17:30:34 +02:00
|
|
|
auto timer = make<EventLoopTimer>();
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
timer->owner = object;
|
2021-08-14 16:50:16 -07:00
|
|
|
timer->interval = Time::from_milliseconds(milliseconds);
|
|
|
|
timer->reload(Time::now_monotonic_coarse());
|
2019-04-10 17:30:34 +02:00
|
|
|
timer->should_reload = should_reload;
|
2019-12-29 15:58:07 +01:00
|
|
|
timer->fire_when_not_visible = fire_when_not_visible;
|
2020-03-10 10:31:37 +00:00
|
|
|
int timer_id = s_id_allocator->allocate();
|
2019-04-10 17:30:34 +02:00
|
|
|
timer->timer_id = timer_id;
|
2019-07-23 14:55:12 +02:00
|
|
|
s_timers->set(timer_id, move(timer));
|
2019-04-10 17:30:34 +02:00
|
|
|
return timer_id;
|
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
bool EventLoop::unregister_timer(int timer_id)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2020-03-10 10:31:37 +00:00
|
|
|
s_id_allocator->deallocate(timer_id);
|
2019-04-10 17:30:34 +02:00
|
|
|
auto it = s_timers->find(timer_id);
|
|
|
|
if (it == s_timers->end())
|
|
|
|
return false;
|
|
|
|
s_timers->remove(it);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
void EventLoop::register_notifier(Badge<Notifier>, Notifier& notifier)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2022-01-07 00:45:27 +01:00
|
|
|
Threading::MutexLocker locker(s_notifiers_mutex);
|
2019-04-10 17:30:34 +02:00
|
|
|
s_notifiers->set(¬ifier);
|
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
void EventLoop::unregister_notifier(Badge<Notifier>, Notifier& notifier)
|
2019-04-10 17:30:34 +02:00
|
|
|
{
|
2022-01-07 00:45:27 +01:00
|
|
|
Threading::MutexLocker locker(s_notifiers_mutex);
|
2019-04-10 17:30:34 +02:00
|
|
|
s_notifiers->remove(¬ifier);
|
|
|
|
}
|
2019-07-14 10:20:57 +02:00
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
void EventLoop::wake()
|
2019-07-14 10:20:57 +02:00
|
|
|
{
|
2020-07-06 15:48:02 -06:00
|
|
|
int wake_event = 0;
|
|
|
|
int nwritten = write(s_wake_pipe_fds[1], &wake_event, sizeof(wake_event));
|
2019-07-14 10:20:57 +02:00
|
|
|
if (nwritten < 0) {
|
2020-02-02 12:34:39 +01:00
|
|
|
perror("EventLoop::wake: write");
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2019-07-14 10:20:57 +02:00
|
|
|
}
|
|
|
|
}
|
2020-02-02 12:34:39 +01:00
|
|
|
|
2020-02-14 22:29:06 +01:00
|
|
|
EventLoop::QueuedEvent::QueuedEvent(Object& receiver, NonnullOwnPtr<Event> event)
|
AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe
This makes most operations thread safe, especially so that they
can safely be used in the Kernel. This includes obtaining a strong
reference from a weak reference, which now requires an explicit
call to WeakPtr::strong_ref(). Another major change is that
Weakable::make_weak_ref() may require the explicit target type.
Previously we used reinterpret_cast in WeakPtr, assuming that it
can be properly converted. But WeakPtr does not necessarily have
the knowledge to be able to do this. Instead, we now ask the class
itself to deliver a WeakPtr to the type that we want.
Also, WeakLink is no longer specific to a target type. The reason
for this is that we want to be able to safely convert e.g. WeakPtr<T>
to WeakPtr<U>, and before this we just reinterpret_cast the internal
WeakLink<T> to WeakLink<U>, which is a bold assumption that it would
actually produce the correct code. Instead, WeakLink now operates
on just a raw pointer and we only make those constructors/operators
available if we can verify that it can be safely cast.
In order to guarantee thread safety, we now use the least significant
bit in the pointer for locking purposes. This also means that only
properly aligned pointers can be used.
2020-09-29 16:26:13 -06:00
|
|
|
: receiver(receiver)
|
2020-02-14 22:29:06 +01:00
|
|
|
, event(move(event))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
EventLoop::QueuedEvent::QueuedEvent(QueuedEvent&& other)
|
|
|
|
: receiver(other.receiver)
|
|
|
|
, event(move(other.event))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
EventLoop::QueuedEvent::~QueuedEvent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
}
|