
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.
366 lines
12 KiB
C
366 lines
12 KiB
C
/* WirePlumber
|
|
*
|
|
* Copyright © 2020 Collabora Ltd.
|
|
* @author Julian Bouzas <julian.bouzas@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <wp/wp.h>
|
|
#include <pipewire/pipewire.h>
|
|
#include <spa/param/format.h>
|
|
#include <spa/param/audio/raw.h>
|
|
#include <spa/param/param.h>
|
|
|
|
WP_DEFINE_LOCAL_LOG_TOPIC ("m-si-audio-virtual")
|
|
|
|
#define SI_FACTORY_NAME "si-audio-virtual"
|
|
|
|
struct _WpSiAudioVirtual
|
|
{
|
|
WpSessionItem parent;
|
|
|
|
/* configuration */
|
|
gchar name[96];
|
|
gchar media_class[32];
|
|
WpDirection direction;
|
|
gchar role[32];
|
|
guint priority;
|
|
gboolean disable_dsp;
|
|
|
|
/* activation */
|
|
WpNode *node;
|
|
WpSiAdapter *adapter;
|
|
};
|
|
|
|
static void si_audio_virtual_linkable_init (WpSiLinkableInterface * iface);
|
|
static void si_audio_virtual_adapter_init (WpSiAdapterInterface * iface);
|
|
|
|
G_DECLARE_FINAL_TYPE(WpSiAudioVirtual, si_audio_virtual, WP,
|
|
SI_AUDIO_VIRTUAL, WpSessionItem)
|
|
G_DEFINE_TYPE_WITH_CODE (WpSiAudioVirtual, si_audio_virtual,
|
|
WP_TYPE_SESSION_ITEM,
|
|
G_IMPLEMENT_INTERFACE (WP_TYPE_SI_LINKABLE,
|
|
si_audio_virtual_linkable_init)
|
|
G_IMPLEMENT_INTERFACE (WP_TYPE_SI_ADAPTER, si_audio_virtual_adapter_init))
|
|
|
|
static void
|
|
si_audio_virtual_init (WpSiAudioVirtual * self)
|
|
{
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_reset (WpSessionItem * item)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (item);
|
|
|
|
/* deactivate first */
|
|
wp_object_deactivate (WP_OBJECT (self),
|
|
WP_SESSION_ITEM_FEATURE_ACTIVE | WP_SESSION_ITEM_FEATURE_EXPORTED);
|
|
|
|
/* reset */
|
|
self->name[0] = '\0';
|
|
self->media_class[0] = '\0';
|
|
self->direction = WP_DIRECTION_INPUT;
|
|
self->role[0] = '\0';
|
|
self->priority = 0;
|
|
self->disable_dsp = FALSE;
|
|
|
|
WP_SESSION_ITEM_CLASS (si_audio_virtual_parent_class)->reset (item);
|
|
}
|
|
|
|
static gboolean
|
|
si_audio_virtual_configure (WpSessionItem * item, WpProperties *p)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (item);
|
|
g_autoptr (WpProperties) si_props = wp_properties_ensure_unique_owner (p);
|
|
const gchar *str;
|
|
|
|
/* reset previous config */
|
|
si_audio_virtual_reset (item);
|
|
|
|
str = wp_properties_get (si_props, "name");
|
|
if (!str)
|
|
return FALSE;
|
|
strncpy (self->name, str, sizeof (self->name) - 1);
|
|
|
|
str = wp_properties_get (si_props, "media.class");
|
|
if (!str)
|
|
return FALSE;
|
|
strncpy (self->media_class, str, sizeof (self->media_class) - 1);
|
|
|
|
if (strstr (self->media_class, "Source") ||
|
|
strstr (self->media_class, "Output"))
|
|
self->direction = WP_DIRECTION_OUTPUT;
|
|
wp_properties_set (si_props, "item.node.direction",
|
|
self->direction == WP_DIRECTION_OUTPUT ? "output" : "input");
|
|
|
|
str = wp_properties_get (si_props, "role");
|
|
if (str) {
|
|
strncpy (self->role, str, sizeof (self->role) - 1);
|
|
} else {
|
|
strncpy (self->role, "Unknown", sizeof (self->role) - 1);
|
|
wp_properties_set (si_props, "role", self->role);
|
|
}
|
|
|
|
str = wp_properties_get (si_props, "priority");
|
|
if (str && sscanf(str, "%u", &self->priority) != 1)
|
|
return FALSE;
|
|
if (!str)
|
|
wp_properties_setf (si_props, "priority", "%u", self->priority);
|
|
|
|
str = wp_properties_get (si_props, "item.features.no-dsp");
|
|
self->disable_dsp = str && pw_properties_parse_bool (str);
|
|
|
|
/* We always want virtual sources to autoconnect */
|
|
wp_properties_set (si_props, PW_KEY_NODE_AUTOCONNECT, "true");
|
|
wp_properties_set (si_props, "media.type", "Audio");
|
|
|
|
wp_properties_set (si_props, "item.factory.name", SI_FACTORY_NAME);
|
|
wp_session_item_set_properties (WP_SESSION_ITEM (self),
|
|
g_steal_pointer (&si_props));
|
|
return TRUE;
|
|
}
|
|
|
|
static gpointer
|
|
si_audio_virtual_get_associated_proxy (WpSessionItem * item, GType proxy_type)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (item);
|
|
|
|
return wp_session_item_get_associated_proxy (
|
|
WP_SESSION_ITEM (self->adapter), proxy_type);
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_disable_active (WpSessionItem *si)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (si);
|
|
|
|
g_clear_object (&self->adapter);
|
|
g_clear_object (&self->node);
|
|
wp_object_update_features (WP_OBJECT (self), 0,
|
|
WP_SESSION_ITEM_FEATURE_ACTIVE);
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_disable_exported (WpSessionItem *si)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (si);
|
|
|
|
wp_object_update_features (WP_OBJECT (self), 0,
|
|
WP_SESSION_ITEM_FEATURE_EXPORTED);
|
|
}
|
|
|
|
static void
|
|
on_adapter_activate_done (WpObject * adapter, GAsyncResult * res,
|
|
WpTransition * transition)
|
|
{
|
|
WpSiAudioVirtual *self = wp_transition_get_source_object (transition);
|
|
g_autoptr (GError) error = NULL;
|
|
|
|
if (!wp_object_activate_finish (adapter, res, &error)) {
|
|
wp_transition_return_error (transition, g_steal_pointer (&error));
|
|
return;
|
|
}
|
|
|
|
wp_object_update_features (WP_OBJECT (self),
|
|
WP_SESSION_ITEM_FEATURE_ACTIVE, 0);
|
|
}
|
|
|
|
static void
|
|
on_adapter_port_state_changed (WpSiAdapter *item,
|
|
WpSiAdapterPortsState old_state, WpSiAdapterPortsState new_state,
|
|
WpSiAudioVirtual *self)
|
|
{
|
|
g_signal_emit_by_name (self, "adapter-ports-state-changed", old_state,
|
|
new_state);
|
|
}
|
|
|
|
static void
|
|
on_node_activate_done (WpObject * node, GAsyncResult * res,
|
|
WpTransition * transition)
|
|
{
|
|
WpSiAudioVirtual *self = wp_transition_get_source_object (transition);
|
|
g_autoptr (GError) error = NULL;
|
|
g_autoptr (WpCore) core = NULL;
|
|
g_autoptr (WpProperties) props = NULL;
|
|
|
|
if (!wp_object_activate_finish (node, res, &error)) {
|
|
wp_transition_return_error (transition, g_steal_pointer (&error));
|
|
return;
|
|
}
|
|
|
|
/* create adapter */
|
|
core = wp_object_get_core (WP_OBJECT (self));
|
|
self->adapter = WP_SI_ADAPTER (wp_session_item_make (core,
|
|
"si-audio-adapter"));
|
|
if (!self->adapter) {
|
|
wp_transition_return_error (transition,
|
|
g_error_new (WP_DOMAIN_LIBRARY, WP_LIBRARY_ERROR_INVARIANT,
|
|
"si-audio-virtual: could not create si-audio-adapter"));
|
|
}
|
|
|
|
/* Set node.id and node.name properties in this session item */
|
|
{
|
|
g_autoptr (WpProperties) si_props = wp_session_item_get_properties (
|
|
WP_SESSION_ITEM (self));
|
|
g_autoptr (WpProperties) new_props = wp_properties_new_empty ();
|
|
guint32 node_id = wp_proxy_get_bound_id (WP_PROXY (node));
|
|
wp_properties_setf (new_props, "node.id", "%u", node_id);
|
|
wp_properties_set (new_props, "node.name",
|
|
wp_pipewire_object_get_property (WP_PIPEWIRE_OBJECT (node),
|
|
PW_KEY_NODE_NAME));
|
|
wp_properties_update (si_props, new_props);
|
|
wp_session_item_set_properties (WP_SESSION_ITEM (self),
|
|
g_steal_pointer (&si_props));
|
|
}
|
|
|
|
/* Forward adapter-ports-state-changed signal */
|
|
g_signal_connect_object (self->adapter, "adapter-ports-state-changed",
|
|
G_CALLBACK (on_adapter_port_state_changed), self, 0);
|
|
|
|
/* configure adapter */
|
|
props = wp_properties_new_empty ();
|
|
wp_properties_setf (props, "item.node", "%p", node);
|
|
wp_properties_set (props, "name", self->name);
|
|
wp_properties_set (props, "media.class", "Audio/Sink");
|
|
wp_properties_set (props, "item.features.no-format", "true");
|
|
wp_properties_set (props, "item.features.monitor", "true");
|
|
if (self->disable_dsp)
|
|
wp_properties_set (props, "item.features.no-dsp", "true");
|
|
if (!wp_session_item_configure (WP_SESSION_ITEM (self->adapter),
|
|
g_steal_pointer (&props))) {
|
|
wp_transition_return_error (transition,
|
|
g_error_new (WP_DOMAIN_LIBRARY, WP_LIBRARY_ERROR_INVARIANT,
|
|
"si-audio-virtual: could not configure si-audio-adapter"));
|
|
}
|
|
|
|
/* activate adapter */
|
|
wp_object_activate (WP_OBJECT (self->adapter), WP_SESSION_ITEM_FEATURE_ACTIVE,
|
|
NULL, (GAsyncReadyCallback) on_adapter_activate_done, transition);
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_enable_active (WpSessionItem *si, WpTransition *transition)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (si);
|
|
g_autoptr (WpCore) core = wp_object_get_core (WP_OBJECT (self));
|
|
g_autofree gchar *name = g_strdup_printf ("control.%s", self->name);
|
|
g_autofree gchar *desc = g_strdup_printf ("%s %s Virtual", self->role,
|
|
(self->direction == WP_DIRECTION_OUTPUT) ? "Capture" : "Playback");
|
|
g_autofree gchar *media = g_strdup_printf ("Audio/%s",
|
|
(self->direction == WP_DIRECTION_OUTPUT) ? "Source" : "Sink");
|
|
|
|
if (!wp_session_item_is_configured (si)) {
|
|
wp_transition_return_error (transition,
|
|
g_error_new (WP_DOMAIN_LIBRARY, WP_LIBRARY_ERROR_INVARIANT,
|
|
"si-audio-virtual: item is not configured"));
|
|
return;
|
|
}
|
|
|
|
/* create the node */
|
|
self->node = wp_node_new_from_factory (core, "adapter",
|
|
wp_properties_new (
|
|
PW_KEY_NODE_NAME, name,
|
|
PW_KEY_MEDIA_CLASS, media,
|
|
PW_KEY_FACTORY_NAME, "support.null-audio-sink",
|
|
PW_KEY_NODE_DESCRIPTION, desc,
|
|
PW_KEY_NODE_AUTOCONNECT, "true",
|
|
"monitor.channel-volumes", "true",
|
|
"wireplumber.is-virtual", "true",
|
|
NULL));
|
|
if (!self->node) {
|
|
wp_transition_return_error (transition,
|
|
g_error_new (WP_DOMAIN_LIBRARY, WP_LIBRARY_ERROR_INVARIANT,
|
|
"si-audio-virtual: could not create null-audio-sink node"));
|
|
return;
|
|
}
|
|
|
|
/* activate node */
|
|
wp_object_activate (WP_OBJECT (self->node),
|
|
WP_PIPEWIRE_OBJECT_FEATURES_MINIMAL | WP_NODE_FEATURE_PORTS, NULL,
|
|
(GAsyncReadyCallback) on_node_activate_done, transition);
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_enable_exported (WpSessionItem *si, WpTransition *transition)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (si);
|
|
|
|
wp_object_update_features (WP_OBJECT (self),
|
|
WP_SESSION_ITEM_FEATURE_EXPORTED, 0);
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_class_init (WpSiAudioVirtualClass * klass)
|
|
{
|
|
WpSessionItemClass *si_class = (WpSessionItemClass *) klass;
|
|
|
|
si_class->reset = si_audio_virtual_reset;
|
|
si_class->configure = si_audio_virtual_configure;
|
|
si_class->get_associated_proxy = si_audio_virtual_get_associated_proxy;
|
|
si_class->disable_active = si_audio_virtual_disable_active;
|
|
si_class->disable_exported = si_audio_virtual_disable_exported;
|
|
si_class->enable_active = si_audio_virtual_enable_active;
|
|
si_class->enable_exported = si_audio_virtual_enable_exported;
|
|
}
|
|
|
|
static GVariant *
|
|
si_audio_virtual_get_ports (WpSiLinkable * item, const gchar * context)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (item);
|
|
return wp_si_linkable_get_ports (WP_SI_LINKABLE (self->adapter), context);
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_linkable_init (WpSiLinkableInterface * iface)
|
|
{
|
|
iface->get_ports = si_audio_virtual_get_ports;
|
|
}
|
|
|
|
static WpSiAdapterPortsState
|
|
si_audio_virtual_get_ports_state (WpSiAdapter * item)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (item);
|
|
return wp_si_adapter_get_ports_state (self->adapter);
|
|
}
|
|
|
|
static WpSpaPod *
|
|
si_audio_virtual_get_ports_format (WpSiAdapter * item, const gchar **mode)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (item);
|
|
return wp_si_adapter_get_ports_format (self->adapter, mode);
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_set_ports_format (WpSiAdapter * item, WpSpaPod *f,
|
|
const gchar *mode, GAsyncReadyCallback callback, gpointer data)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (item);
|
|
wp_si_adapter_set_ports_format (self->adapter, f, mode, callback, data);
|
|
}
|
|
|
|
static gboolean
|
|
si_audio_virtual_set_ports_format_finish (WpSiAdapter * item,
|
|
GAsyncResult * res, GError ** error)
|
|
{
|
|
WpSiAudioVirtual *self = WP_SI_AUDIO_VIRTUAL (item);
|
|
return wp_si_adapter_set_ports_format_finish (self->adapter, res, error);
|
|
}
|
|
|
|
static void
|
|
si_audio_virtual_adapter_init (WpSiAdapterInterface * iface)
|
|
{
|
|
iface->get_ports_state = si_audio_virtual_get_ports_state;
|
|
iface->get_ports_format = si_audio_virtual_get_ports_format;
|
|
iface->set_ports_format = si_audio_virtual_set_ports_format;
|
|
iface->set_ports_format_finish = si_audio_virtual_set_ports_format_finish;
|
|
}
|
|
|
|
WP_PLUGIN_EXPORT GObject *
|
|
wireplumber__module_init (WpCore * core, GVariant * args, GError ** error)
|
|
{
|
|
return G_OBJECT (wp_si_factory_new_simple (SI_FACTORY_NAME,
|
|
si_audio_virtual_get_type ()));
|
|
}
|