2022-01-19 13:48:59 +02:00
|
|
|
/* WirePlumber
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2022 Collabora Ltd.
|
|
|
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "event-dispatcher.h"
|
|
|
|
|
#include "log.h"
|
|
|
|
|
|
2022-03-25 15:34:55 +02:00
|
|
|
#include <spa/support/plugin.h>
|
|
|
|
|
#include <spa/support/system.h>
|
2023-06-13 19:20:33 +03:00
|
|
|
#include <pipewire/pipewire.h>
|
2022-03-25 15:34:55 +02:00
|
|
|
|
log: implement a log topics system, like pipewire
The intention is to make checks for enabled log topics faster.
Every topic has its own structure that is statically defined in the file
where the logs are printed from. The structure is initialized transparently
when it is first used and it contains all the log level flags for the levels
that this topic should print messages. It is then checked on the wp_log()
macro before printing the message.
Topics from SPA/PipeWire are also handled natively, so messages are printed
directly without checking if the topic is enabled, since the PipeWire and SPA
macros do the checking themselves.
Messages coming from GLib are checked inside the handler.
An internal WpLogFields object is used to manage the state of each log
message, populating all the fields appropriately from the place they
are coming from (wp_log, spa_log, glib log), formatting the message and
then printing it. For printing to the journald, we still use the glib
message handler, converting all the needed fields to GLogField on demand.
That message handler does not do any checks for the topic or the level, so
we can just call it to send the message.
2023-05-16 11:51:29 +03:00
|
|
|
WP_DEFINE_LOCAL_LOG_TOPIC ("wp-event-dispatcher")
|
|
|
|
|
|
2022-11-29 20:08:13 +02:00
|
|
|
typedef struct _EventData EventData;
|
|
|
|
|
struct _EventData
|
2022-08-15 06:51:21 +05:30
|
|
|
{
|
|
|
|
|
WpEvent *event;
|
2022-11-29 20:08:13 +02:00
|
|
|
WpIterator *hooks_iter;
|
|
|
|
|
WpEventHook *current_hook_in_async;
|
2023-09-03 17:23:27 +03:00
|
|
|
gint64 seq;
|
2022-08-15 06:51:21 +05:30
|
|
|
};
|
|
|
|
|
|
2022-11-29 20:08:13 +02:00
|
|
|
static inline EventData *
|
|
|
|
|
event_data_new (WpEvent * event)
|
2022-07-13 06:32:11 +05:30
|
|
|
{
|
2023-09-03 17:23:27 +03:00
|
|
|
static gint64 seqn = 0;
|
2022-11-29 20:08:13 +02:00
|
|
|
EventData *event_data = g_new0 (EventData, 1);
|
|
|
|
|
event_data->event = wp_event_ref (event);
|
|
|
|
|
event_data->hooks_iter = wp_event_new_hooks_iterator (event);
|
2023-09-03 17:23:27 +03:00
|
|
|
event_data->seq = seqn++;
|
2022-11-29 20:08:13 +02:00
|
|
|
return event_data;
|
2022-01-19 13:48:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2022-11-29 20:08:13 +02:00
|
|
|
event_data_free (EventData * self)
|
2022-01-19 13:48:59 +02:00
|
|
|
{
|
2022-11-29 20:08:13 +02:00
|
|
|
g_clear_pointer (&self->event, wp_event_unref);
|
|
|
|
|
g_clear_pointer (&self->hooks_iter, wp_iterator_unref);
|
|
|
|
|
g_clear_object (&self->current_hook_in_async);
|
|
|
|
|
g_free (self);
|
2022-11-07 10:45:48 +02:00
|
|
|
}
|
|
|
|
|
|
2022-01-19 13:48:59 +02:00
|
|
|
struct _WpEventDispatcher
|
|
|
|
|
{
|
|
|
|
|
GObject parent;
|
|
|
|
|
|
|
|
|
|
GWeakRef core;
|
|
|
|
|
GPtrArray *hooks; /* registered hooks */
|
|
|
|
|
GSource *source; /* the event loop source */
|
|
|
|
|
GList *events; /* the events stack */
|
2022-03-25 15:34:55 +02:00
|
|
|
struct spa_system *system;
|
|
|
|
|
int eventfd;
|
2022-01-19 13:48:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (WpEventDispatcher, wp_event_dispatcher, G_TYPE_OBJECT)
|
|
|
|
|
|
|
|
|
|
#define WP_EVENT_SOURCE_DISPATCHER(x) \
|
|
|
|
|
WP_EVENT_DISPATCHER (((WpEventSource *) x)->dispatcher)
|
|
|
|
|
|
|
|
|
|
typedef struct _WpEventSource WpEventSource;
|
|
|
|
|
struct _WpEventSource
|
|
|
|
|
{
|
|
|
|
|
GSource parent;
|
|
|
|
|
WpEventDispatcher *dispatcher;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
wp_event_source_check (GSource * s)
|
|
|
|
|
{
|
|
|
|
|
WpEventDispatcher *d = WP_EVENT_SOURCE_DISPATCHER (s);
|
2022-03-25 15:34:55 +02:00
|
|
|
return d && d->events &&
|
2022-11-29 20:08:13 +02:00
|
|
|
!((EventData *) g_list_first (d->events)->data)->current_hook_in_async;
|
2022-01-19 13:48:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2022-11-29 20:08:13 +02:00
|
|
|
on_event_hook_done (WpEventHook * hook, GAsyncResult * res, EventData * data)
|
2022-01-19 13:48:59 +02:00
|
|
|
{
|
|
|
|
|
g_autoptr (GError) error = NULL;
|
2022-03-25 15:34:55 +02:00
|
|
|
g_autoptr (WpEventDispatcher) dispatcher =
|
|
|
|
|
wp_event_hook_get_dispatcher (hook);
|
2022-01-19 13:48:59 +02:00
|
|
|
|
2022-11-29 20:08:13 +02:00
|
|
|
g_assert (data->current_hook_in_async == hook);
|
2022-01-19 13:48:59 +02:00
|
|
|
|
|
|
|
|
if (!wp_event_hook_finish (hook, res, &error) && error &&
|
|
|
|
|
error->domain != G_IO_ERROR && error->code != G_IO_ERROR_CANCELLED)
|
2023-05-18 16:19:49 +03:00
|
|
|
wp_notice_object (hook, "failed: %s", error->message);
|
2022-01-19 13:48:59 +02:00
|
|
|
|
2022-11-29 20:08:13 +02:00
|
|
|
g_clear_object (&data->current_hook_in_async);
|
2022-03-25 15:34:55 +02:00
|
|
|
spa_system_eventfd_write (dispatcher->system, dispatcher->eventfd, 1);
|
2022-01-19 13:48:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
wp_event_source_dispatch (GSource * s, GSourceFunc callback, gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
WpEventDispatcher *d = WP_EVENT_SOURCE_DISPATCHER (s);
|
2022-03-25 15:34:55 +02:00
|
|
|
uint64_t count;
|
|
|
|
|
|
|
|
|
|
/* clear the eventfd */
|
|
|
|
|
spa_system_eventfd_read (d->system, d->eventfd, &count);
|
2022-01-19 13:48:59 +02:00
|
|
|
|
|
|
|
|
/* get the highest priority event */
|
|
|
|
|
GList *levent = g_list_first (d->events);
|
|
|
|
|
while (levent) {
|
2022-11-29 20:08:13 +02:00
|
|
|
EventData *event_data = (EventData *) (levent->data);
|
|
|
|
|
WpEvent *event = event_data->event;
|
|
|
|
|
GCancellable *cancellable = wp_event_get_cancellable (event);
|
|
|
|
|
g_auto (GValue) value = G_VALUE_INIT;
|
|
|
|
|
gboolean has_next = FALSE;
|
2022-01-19 13:48:59 +02:00
|
|
|
|
|
|
|
|
/* event hook is still in progress, we will continue later */
|
2022-11-29 20:08:13 +02:00
|
|
|
if (event_data->current_hook_in_async)
|
2022-01-19 13:48:59 +02:00
|
|
|
return G_SOURCE_CONTINUE;
|
|
|
|
|
|
2022-11-29 20:08:13 +02:00
|
|
|
/* check if the event was cancelled */
|
|
|
|
|
if (g_cancellable_is_cancelled (cancellable)) {
|
|
|
|
|
wp_debug_object (d, "event(%p) cancelled remove it", event);
|
|
|
|
|
has_next = FALSE;
|
|
|
|
|
} else {
|
|
|
|
|
/* get the highest priority hook */
|
|
|
|
|
has_next = wp_iterator_next (event_data->hooks_iter, &value);
|
2022-07-19 11:37:11 +05:30
|
|
|
}
|
2022-11-29 20:08:13 +02:00
|
|
|
|
|
|
|
|
if (has_next) {
|
|
|
|
|
WpEventHook *hook = g_value_get_object (&value);
|
2022-10-18 12:54:04 +03:00
|
|
|
const gchar *name = wp_event_hook_get_name (hook);
|
2022-06-30 10:03:18 +05:30
|
|
|
|
2022-11-29 20:08:13 +02:00
|
|
|
event_data->current_hook_in_async = g_object_ref (hook);
|
2022-01-19 13:48:59 +02:00
|
|
|
|
2023-07-12 12:36:32 +05:30
|
|
|
wp_trace_object(d, "dispatching event (%s) running hook <%p>(%s)",
|
|
|
|
|
wp_event_get_name(event), hook, name);
|
2022-08-15 06:51:21 +05:30
|
|
|
|
2022-11-24 17:39:21 +02:00
|
|
|
/* execute the hook, possibly async */
|
2022-11-29 20:08:13 +02:00
|
|
|
wp_event_hook_run (hook, event, cancellable,
|
|
|
|
|
(GAsyncReadyCallback) on_event_hook_done, event_data);
|
|
|
|
|
} else {
|
|
|
|
|
/* clear the event after all hooks are done */
|
2022-01-19 13:48:59 +02:00
|
|
|
d->events = g_list_delete_link (d->events, g_steal_pointer (&levent));
|
2022-11-29 20:08:13 +02:00
|
|
|
g_clear_pointer (&event_data, event_data_free);
|
2022-01-19 13:48:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* get the next event */
|
|
|
|
|
levent = g_list_first (d->events);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return G_SOURCE_CONTINUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GSourceFuncs source_funcs = {
|
|
|
|
|
NULL,
|
|
|
|
|
wp_event_source_check,
|
|
|
|
|
wp_event_source_dispatch,
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
wp_event_dispatcher_init (WpEventDispatcher * self)
|
|
|
|
|
{
|
|
|
|
|
g_weak_ref_init (&self->core, NULL);
|
|
|
|
|
self->hooks = g_ptr_array_new_with_free_func (g_object_unref);
|
|
|
|
|
|
|
|
|
|
self->source = g_source_new (&source_funcs, sizeof (WpEventSource));
|
|
|
|
|
((WpEventSource *) self->source)->dispatcher = self;
|
|
|
|
|
|
|
|
|
|
/* this is higher than normal "idle" operations but lower than the default
|
|
|
|
|
priority, which is used for events from the PipeWire socket and timers */
|
|
|
|
|
g_source_set_priority (self->source, G_PRIORITY_HIGH_IDLE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
wp_event_dispatcher_finalize (GObject * object)
|
|
|
|
|
{
|
|
|
|
|
WpEventDispatcher *self = WP_EVENT_DISPATCHER (object);
|
|
|
|
|
|
|
|
|
|
g_list_free_full (g_steal_pointer (&self->events),
|
2022-11-29 20:08:13 +02:00
|
|
|
(GDestroyNotify) event_data_free);
|
2022-01-19 13:48:59 +02:00
|
|
|
|
|
|
|
|
((WpEventSource *) self->source)->dispatcher = NULL;
|
|
|
|
|
g_source_destroy (self->source);
|
|
|
|
|
g_clear_pointer (&self->source, g_source_unref);
|
|
|
|
|
|
2022-03-25 15:34:55 +02:00
|
|
|
close (self->eventfd);
|
|
|
|
|
|
2022-01-19 13:48:59 +02:00
|
|
|
g_clear_pointer (&self->hooks, g_ptr_array_unref);
|
|
|
|
|
g_weak_ref_clear (&self->core);
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (wp_event_dispatcher_parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
wp_event_dispatcher_class_init (WpEventDispatcherClass * klass)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *object_class = (GObjectClass *) klass;
|
|
|
|
|
|
|
|
|
|
object_class->finalize = wp_event_dispatcher_finalize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Returns the event dispatcher instance that is associated with the
|
|
|
|
|
* given core.
|
|
|
|
|
*
|
2022-06-30 10:03:18 +05:30
|
|
|
* This method will also create the instance and register it with the core,
|
2022-01-19 13:48:59 +02:00
|
|
|
* if it had not been created before.
|
|
|
|
|
*
|
2022-06-30 10:03:18 +05:30
|
|
|
* \ingroup wpeventdispatcher
|
2022-01-19 13:48:59 +02:00
|
|
|
* \param core the core
|
|
|
|
|
* \return (transfer full): the event dispatcher instance
|
|
|
|
|
*/
|
|
|
|
|
WpEventDispatcher *
|
|
|
|
|
wp_event_dispatcher_get_instance (WpCore * core)
|
|
|
|
|
{
|
2023-06-13 19:20:33 +03:00
|
|
|
WpEventDispatcher *dispatcher = wp_core_find_object (core,
|
2022-01-19 13:48:59 +02:00
|
|
|
(GEqualFunc) WP_IS_EVENT_DISPATCHER, NULL);
|
|
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!dispatcher)) {
|
|
|
|
|
dispatcher = g_object_new (WP_TYPE_EVENT_DISPATCHER, NULL);
|
|
|
|
|
g_weak_ref_set (&dispatcher->core, core);
|
2022-03-25 15:34:55 +02:00
|
|
|
|
|
|
|
|
struct pw_context *context = wp_core_get_pw_context (core);
|
|
|
|
|
uint32_t n_support;
|
|
|
|
|
const struct spa_support *support =
|
|
|
|
|
pw_context_get_support (context, &n_support);
|
|
|
|
|
dispatcher->system =
|
|
|
|
|
spa_support_find (support, n_support, SPA_TYPE_INTERFACE_System);
|
|
|
|
|
|
|
|
|
|
dispatcher->eventfd = spa_system_eventfd_create (dispatcher->system, 0);
|
|
|
|
|
g_source_add_unix_fd (dispatcher->source, dispatcher->eventfd, G_IO_IN);
|
|
|
|
|
|
2022-01-19 13:48:59 +02:00
|
|
|
g_source_attach (dispatcher->source, wp_core_get_g_main_context (core));
|
2023-06-13 19:20:33 +03:00
|
|
|
wp_core_register_object (core, g_object_ref (dispatcher));
|
2023-07-12 12:36:32 +05:30
|
|
|
|
|
|
|
|
wp_info_object (dispatcher, "event-dispatcher inited");
|
2022-01-19 13:48:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dispatcher;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gint
|
2022-11-29 20:08:13 +02:00
|
|
|
event_cmp_func (const EventData *a, const EventData *b)
|
2022-01-19 13:48:59 +02:00
|
|
|
{
|
2023-09-03 17:23:27 +03:00
|
|
|
gint c = wp_event_get_priority (b->event) - wp_event_get_priority (a->event);
|
|
|
|
|
return (c != 0) ? c : (gint)(a->seq - b->seq);
|
2022-08-15 06:51:21 +05:30
|
|
|
}
|
|
|
|
|
|
2022-01-19 13:48:59 +02:00
|
|
|
/*!
|
2022-07-19 11:37:11 +05:30
|
|
|
* \brief Pushes a new event onto the event stack for dispatching only if there
|
|
|
|
|
* are any hooks are available for it.
|
2022-06-30 10:03:18 +05:30
|
|
|
* \ingroup wpeventdispatcher
|
2022-01-19 13:48:59 +02:00
|
|
|
*
|
|
|
|
|
* \param self the dispatcher
|
|
|
|
|
* \param event (transfer full): the new event
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
wp_event_dispatcher_push_event (WpEventDispatcher * self, WpEvent * event)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (WP_IS_EVENT_DISPATCHER (self));
|
|
|
|
|
g_return_if_fail (event != NULL);
|
2022-08-15 06:51:21 +05:30
|
|
|
|
2022-11-29 20:08:13 +02:00
|
|
|
if (wp_event_collect_hooks (event, self)) {
|
|
|
|
|
EventData *event_data = event_data_new (event);
|
2022-03-25 15:34:55 +02:00
|
|
|
|
2022-11-29 20:08:13 +02:00
|
|
|
self->events = g_list_insert_sorted (self->events, event_data,
|
|
|
|
|
(GCompareFunc) event_cmp_func);
|
2024-01-08 12:10:46 +02:00
|
|
|
wp_debug_object (self, "pushed event (%s)", wp_event_get_name (event));
|
2022-07-19 11:37:11 +05:30
|
|
|
|
|
|
|
|
/* wakeup the GSource */
|
|
|
|
|
spa_system_eventfd_write (self->system, self->eventfd, 1);
|
2022-11-24 17:39:21 +02:00
|
|
|
}
|
2022-11-29 20:08:13 +02:00
|
|
|
|
|
|
|
|
wp_event_unref (event);
|
2022-01-19 13:48:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Registers an event hook
|
2022-06-30 10:03:18 +05:30
|
|
|
* \ingroup wpeventdispatcher
|
2022-01-19 13:48:59 +02:00
|
|
|
*
|
|
|
|
|
* \param self the event dispatcher
|
|
|
|
|
* \param hook (transfer none): the hook to register
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
wp_event_dispatcher_register_hook (WpEventDispatcher * self,
|
|
|
|
|
WpEventHook * hook)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (WP_IS_EVENT_DISPATCHER (self));
|
|
|
|
|
g_return_if_fail (WP_IS_EVENT_HOOK (hook));
|
|
|
|
|
|
|
|
|
|
g_autoptr (WpEventDispatcher) already_registered_dispatcher =
|
|
|
|
|
wp_event_hook_get_dispatcher (hook);
|
|
|
|
|
g_return_if_fail (already_registered_dispatcher == NULL);
|
|
|
|
|
|
|
|
|
|
wp_event_hook_set_dispatcher (hook, self);
|
|
|
|
|
g_ptr_array_add (self->hooks, g_object_ref (hook));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Unregisters an event hook
|
2024-01-05 09:31:08 -05:00
|
|
|
* \ingroup wpeventdispatcher
|
2022-01-19 13:48:59 +02:00
|
|
|
*
|
|
|
|
|
* \param self the event dispatcher
|
|
|
|
|
* \param hook (transfer none): the hook to unregister
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
wp_event_dispatcher_unregister_hook (WpEventDispatcher * self,
|
|
|
|
|
WpEventHook * hook)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (WP_IS_EVENT_DISPATCHER (self));
|
|
|
|
|
g_return_if_fail (WP_IS_EVENT_HOOK (hook));
|
|
|
|
|
|
|
|
|
|
g_autoptr (WpEventDispatcher) already_registered_dispatcher =
|
|
|
|
|
wp_event_hook_get_dispatcher (hook);
|
|
|
|
|
g_return_if_fail (already_registered_dispatcher == self);
|
|
|
|
|
|
|
|
|
|
wp_event_hook_set_dispatcher (hook, NULL);
|
|
|
|
|
g_ptr_array_remove_fast (self->hooks, hook);
|
|
|
|
|
}
|
2022-11-25 21:26:34 +02:00
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Returns an iterator to iterate over all the registered hooks
|
|
|
|
|
* \ingroup wpeventdispatcher
|
|
|
|
|
*
|
|
|
|
|
* \param self the event dispatcher
|
|
|
|
|
* \return (transfer full): a new iterator
|
|
|
|
|
*/
|
|
|
|
|
WpIterator *
|
|
|
|
|
wp_event_dispatcher_new_hooks_iterator (WpEventDispatcher * self)
|
|
|
|
|
{
|
|
|
|
|
GPtrArray *items =
|
|
|
|
|
g_ptr_array_copy (self->hooks, (GCopyFunc) g_object_ref, NULL);
|
|
|
|
|
return wp_iterator_new_ptr_array (items, WP_TYPE_EVENT_HOOK);
|
|
|
|
|
}
|