515 lines
17 KiB
C
515 lines
17 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/utils/names.h>
|
|
#include <spa/param/format.h>
|
|
#include <spa/param/audio/raw.h>
|
|
#include <spa/param/param.h>
|
|
|
|
enum {
|
|
STEP_VERIFY_CONFIG = WP_TRANSITION_STEP_CUSTOM_START,
|
|
STEP_CREATE_NODE,
|
|
STEP_INSTALL_LINKS_WATCH,
|
|
};
|
|
|
|
struct _WpSiConvert
|
|
{
|
|
WpSessionItem parent;
|
|
|
|
/* configuration */
|
|
WpSessionItem *target;
|
|
gchar name[96];
|
|
WpDirection direction;
|
|
gboolean control_port;
|
|
|
|
WpNode *node;
|
|
WpObjectManager *links_watch;
|
|
WpSessionItem *link_to_target;
|
|
};
|
|
|
|
static void si_convert_stream_init (WpSiStreamInterface * iface);
|
|
static void si_convert_port_info_init (WpSiPortInfoInterface * iface);
|
|
|
|
G_DECLARE_FINAL_TYPE(WpSiConvert, si_convert, WP, SI_CONVERT, WpSessionItem)
|
|
G_DEFINE_TYPE_WITH_CODE (WpSiConvert, si_convert, WP_TYPE_SESSION_ITEM,
|
|
G_IMPLEMENT_INTERFACE (WP_TYPE_SI_STREAM, si_convert_stream_init)
|
|
G_IMPLEMENT_INTERFACE (WP_TYPE_SI_PORT_INFO, si_convert_port_info_init))
|
|
|
|
static void
|
|
si_convert_init (WpSiConvert * self)
|
|
{
|
|
}
|
|
|
|
static void
|
|
si_convert_reset (WpSessionItem * item)
|
|
{
|
|
WpSiConvert *self = WP_SI_CONVERT (item);
|
|
|
|
/* unexport & deactivate first */
|
|
WP_SESSION_ITEM_CLASS (si_convert_parent_class)->reset (item);
|
|
|
|
g_clear_object (&self->target);
|
|
self->name[0] = '\0';
|
|
self->control_port = FALSE;
|
|
|
|
wp_session_item_clear_flag (item, WP_SI_FLAG_CONFIGURED);
|
|
}
|
|
|
|
static gpointer
|
|
si_convert_get_associated_proxy (WpSessionItem * item, GType proxy_type)
|
|
{
|
|
WpSiConvert *self = WP_SI_CONVERT (item);
|
|
|
|
if (proxy_type == WP_TYPE_NODE)
|
|
return self->node ? g_object_ref (self->node) : NULL;
|
|
|
|
return WP_SESSION_ITEM_CLASS (si_convert_parent_class)->get_associated_proxy (
|
|
item, proxy_type);
|
|
}
|
|
|
|
static gboolean
|
|
si_convert_configure (WpSessionItem * item, GVariant * args)
|
|
{
|
|
WpSiConvert *self = WP_SI_CONVERT (item);
|
|
guint64 target_i;
|
|
g_autoptr (GVariant) target_config = NULL;
|
|
const gchar *tmp_str;
|
|
|
|
if (wp_session_item_get_flags (item) & (WP_SI_FLAG_ACTIVATING | WP_SI_FLAG_ACTIVE))
|
|
return FALSE;
|
|
|
|
/* reset previous config */
|
|
g_clear_object (&self->target);
|
|
self->name[0] = '\0';
|
|
self->control_port = FALSE;
|
|
|
|
if (!g_variant_lookup (args, "target", "t", &target_i) ||
|
|
!g_variant_lookup (args, "name", "&s", &tmp_str))
|
|
return FALSE;
|
|
|
|
g_return_val_if_fail (WP_IS_SESSION_ITEM (GUINT_TO_POINTER (target_i)), FALSE);
|
|
self->target = g_object_ref (GUINT_TO_POINTER (target_i));
|
|
|
|
target_config = wp_session_item_get_configuration (GUINT_TO_POINTER (target_i));
|
|
if (!g_variant_lookup (target_config, "direction", "y", &self->direction))
|
|
wp_warning_object (item, "direction not found in target endpoint");
|
|
|
|
strncpy (self->name, tmp_str, sizeof (self->name) - 1);
|
|
|
|
g_variant_lookup (args, "enable-control-port", "b", &self->control_port);
|
|
|
|
wp_session_item_set_flag (item, WP_SI_FLAG_CONFIGURED);
|
|
return TRUE;
|
|
}
|
|
|
|
static GVariant *
|
|
si_convert_get_configuration (WpSessionItem * item)
|
|
{
|
|
WpSiConvert *self = WP_SI_CONVERT (item);
|
|
GVariantBuilder b;
|
|
|
|
/* Set the properties */
|
|
g_variant_builder_init (&b, G_VARIANT_TYPE_VARDICT);
|
|
g_variant_builder_add (&b, "{sv}",
|
|
"target", g_variant_new_uint64 ((guint64) self->target));
|
|
g_variant_builder_add (&b, "{sv}",
|
|
"name", g_variant_new_string (self->name));
|
|
g_variant_builder_add (&b, "{sv}",
|
|
"enable-control-port", g_variant_new_boolean (self->control_port));
|
|
return g_variant_builder_end (&b);
|
|
}
|
|
|
|
static guint
|
|
si_convert_activate_get_next_step (WpSessionItem * item,
|
|
WpTransition * transition, guint step)
|
|
{
|
|
switch (step) {
|
|
case WP_TRANSITION_STEP_NONE:
|
|
return STEP_VERIFY_CONFIG;
|
|
|
|
case STEP_VERIFY_CONFIG:
|
|
return STEP_CREATE_NODE;
|
|
|
|
case STEP_CREATE_NODE:
|
|
return STEP_INSTALL_LINKS_WATCH;
|
|
|
|
case STEP_INSTALL_LINKS_WATCH:
|
|
return WP_TRANSITION_STEP_NONE;
|
|
|
|
default:
|
|
return WP_TRANSITION_STEP_ERROR;
|
|
}
|
|
}
|
|
|
|
static void
|
|
on_link_activated (WpSessionItem * item, GAsyncResult * res, WpSiConvert * self)
|
|
{
|
|
g_autoptr (GError) error = NULL;
|
|
if (!wp_session_item_activate_finish (item, res, &error)) {
|
|
wp_warning_object (item, "failed to activate link to the target node");
|
|
}
|
|
}
|
|
|
|
static void
|
|
do_link_to_target (WpSiConvert *self)
|
|
{
|
|
g_autoptr (WpCore) core = wp_object_get_core (WP_OBJECT (self->node));
|
|
g_autoptr (WpSessionItem) link = wp_session_item_make (core,
|
|
"si-standard-link");
|
|
g_auto (GVariantBuilder) b = G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE_VARDICT);
|
|
|
|
if (G_UNLIKELY (!link)) {
|
|
wp_warning_object (self, "could not create si-standard-link; "
|
|
"is the module loaded?");
|
|
return;
|
|
}
|
|
|
|
if (self->direction == WP_DIRECTION_INPUT) {
|
|
/* Playback */
|
|
g_variant_builder_add (&b, "{sv}", "out-stream",
|
|
g_variant_new_uint64 ((guint64) WP_SI_STREAM (self)));
|
|
g_variant_builder_add (&b, "{sv}", "out-stream-port-context",
|
|
g_variant_new_string ("reverse"));
|
|
g_variant_builder_add (&b, "{sv}", "in-stream",
|
|
g_variant_new_uint64 ((guint64) WP_SI_STREAM (self->target)));
|
|
} else {
|
|
/* Capture */
|
|
g_variant_builder_add (&b, "{sv}", "out-stream",
|
|
g_variant_new_uint64 ((guint64) WP_SI_STREAM (self->target)));
|
|
g_variant_builder_add (&b, "{sv}", "in-stream",
|
|
g_variant_new_uint64 ((guint64) WP_SI_STREAM (self)));
|
|
g_variant_builder_add (&b, "{sv}", "in-stream-port-context",
|
|
g_variant_new_string ("reverse"));
|
|
}
|
|
|
|
/* always create passive links; that means that they won't hold the graph
|
|
running if they are the only links left around */
|
|
g_variant_builder_add (&b, "{sv}", "passive", g_variant_new_boolean (TRUE));
|
|
|
|
wp_session_item_configure (link, g_variant_builder_end (&b));
|
|
wp_session_item_activate (link, (GAsyncReadyCallback) on_link_activated, self);
|
|
self->link_to_target = g_steal_pointer (&link);
|
|
}
|
|
|
|
static void
|
|
on_links_changed (WpObjectManager * om, WpSiConvert * self)
|
|
{
|
|
if (wp_object_manager_get_n_objects (om) == 0)
|
|
g_clear_object (&self->link_to_target);
|
|
else if (!self->link_to_target)
|
|
do_link_to_target (self);
|
|
}
|
|
|
|
static void
|
|
on_node_activate_done (WpObject * node, GAsyncResult * res,
|
|
WpTransition * transition)
|
|
{
|
|
g_autoptr (GError) error = NULL;
|
|
if (!wp_object_activate_finish (node, res, &error)) {
|
|
wp_transition_return_error (transition, g_steal_pointer (&error));
|
|
return;
|
|
}
|
|
wp_transition_advance (transition);
|
|
}
|
|
|
|
static void
|
|
si_convert_activate_execute_step (WpSessionItem * item,
|
|
WpTransition * transition, guint step)
|
|
{
|
|
WpSiConvert *self = WP_SI_CONVERT (item);
|
|
|
|
switch (step) {
|
|
case STEP_VERIFY_CONFIG:
|
|
if (!self->target) {
|
|
wp_transition_return_error (transition,
|
|
g_error_new (WP_DOMAIN_LIBRARY, WP_LIBRARY_ERROR_INVARIANT,
|
|
"si-convert: target was not set on the configuration"));
|
|
}
|
|
if (!(wp_session_item_get_flags (self->target) & WP_SI_FLAG_CONFIGURED)) {
|
|
wp_transition_return_error (transition,
|
|
g_error_new (WP_DOMAIN_LIBRARY, WP_LIBRARY_ERROR_INVARIANT,
|
|
"si-convert: target is not configured"));
|
|
}
|
|
wp_transition_advance (transition);
|
|
break;
|
|
|
|
case STEP_CREATE_NODE: {
|
|
g_autoptr (WpNode) node = NULL;
|
|
g_autoptr (WpCore) core = NULL;
|
|
g_autoptr (WpProperties) node_props = NULL;
|
|
g_autoptr (WpProperties) props = NULL;
|
|
g_autoptr (GVariant) target_config = NULL;
|
|
g_autoptr (WpSpaPod) format = NULL;
|
|
guint32 channels = 2;
|
|
guint32 rate;
|
|
|
|
/* Get the node and core */
|
|
node = wp_session_item_get_associated_proxy (self->target, WP_TYPE_NODE);
|
|
core = wp_object_get_core (WP_OBJECT (node));
|
|
|
|
/* set channels & rate */
|
|
target_config = wp_session_item_get_configuration (self->target);
|
|
g_variant_lookup (target_config, "channels", "u", &channels);
|
|
rate = ({
|
|
g_autoptr (WpProperties) props = wp_core_get_remote_properties (core);
|
|
const gchar *rate_str = wp_properties_get (props, "default.clock.rate");
|
|
rate_str ? atoi (rate_str) : 48000;
|
|
});
|
|
|
|
/* Create the convert properties based on the adapter properties */
|
|
node_props = wp_pipewire_object_get_properties (WP_PIPEWIRE_OBJECT (node));
|
|
props = wp_properties_new (
|
|
PW_KEY_MEDIA_CLASS, "Audio/Convert",
|
|
PW_KEY_FACTORY_NAME, SPA_NAME_AUDIO_CONVERT,
|
|
/* the default mode is 'split', which breaks audio in this case */
|
|
"factory.mode", "convert",
|
|
NULL);
|
|
wp_properties_setf (props, PW_KEY_OBJECT_PATH, "%s:%s",
|
|
wp_properties_get (node_props, PW_KEY_OBJECT_PATH),
|
|
self->name);
|
|
wp_properties_setf (props, PW_KEY_NODE_NAME, "%s.%s.%s",
|
|
SPA_NAME_AUDIO_CONVERT,
|
|
wp_properties_get (node_props, PW_KEY_NODE_NAME),
|
|
self->name);
|
|
wp_properties_setf (props, PW_KEY_NODE_DESCRIPTION,
|
|
"Stream volume for %s: %s",
|
|
wp_properties_get (node_props, PW_KEY_NODE_DESCRIPTION), self->name);
|
|
|
|
/* Create the node */
|
|
self->node = wp_node_new_from_factory (core, "spa-node-factory",
|
|
g_steal_pointer (&props));
|
|
|
|
format = wp_spa_pod_new_object (
|
|
"Spa:Pod:Object:Param:Format", "Format",
|
|
"mediaType", "K", "audio",
|
|
"mediaSubtype", "K", "raw",
|
|
"format", "K", "F32P",
|
|
"rate", "i", rate,
|
|
"channels", "i", channels,
|
|
NULL);
|
|
|
|
/* Configure audioconvert to be both merger and splitter; this means it
|
|
will have an equal number of input and output ports and just passthrough
|
|
the same format, but with altered volume.
|
|
In the future we need to consider writing a simpler volume node for this,
|
|
as doing merge + split is heavy for our needs */
|
|
wp_pipewire_object_set_param (WP_PIPEWIRE_OBJECT (self->node),
|
|
"PortConfig", 0,
|
|
wp_spa_pod_new_object (
|
|
"Spa:Pod:Object:Param:PortConfig", "PortConfig",
|
|
"direction", "I", pw_direction_reverse (self->direction),
|
|
"mode", "K", "dsp",
|
|
"format", "P", format,
|
|
NULL));
|
|
|
|
wp_pipewire_object_set_param (WP_PIPEWIRE_OBJECT (self->node),
|
|
"PortConfig", 0,
|
|
wp_spa_pod_new_object (
|
|
"Spa:Pod:Object:Param:PortConfig", "PortConfig",
|
|
"direction", "I", self->direction,
|
|
"mode", "K", "dsp",
|
|
"control", "b", self->control_port,
|
|
"format", "P", format,
|
|
NULL));
|
|
|
|
wp_object_activate (WP_OBJECT (self->node),
|
|
WP_PIPEWIRE_OBJECT_FEATURES_MINIMAL | WP_NODE_FEATURE_PORTS, NULL,
|
|
(GAsyncReadyCallback) on_node_activate_done, transition);
|
|
break;
|
|
}
|
|
case STEP_INSTALL_LINKS_WATCH: {
|
|
g_autoptr (WpCore) core = NULL;
|
|
g_auto (GVariantBuilder) b = G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE_TUPLE);
|
|
g_autoptr (WpIterator) it = NULL;
|
|
g_auto (GValue) val = G_VALUE_INIT;
|
|
GVariant *ports_v = NULL;
|
|
|
|
/* Get the core */
|
|
core = wp_object_get_core (WP_OBJECT (self->node));
|
|
|
|
/* get a list of our ports */
|
|
for (it = wp_node_new_ports_iterator (self->node);
|
|
wp_iterator_next (it, &val);
|
|
g_value_unset (&val))
|
|
{
|
|
WpPort *port = g_value_get_object (&val);
|
|
|
|
if (wp_port_get_direction (port) != self->direction)
|
|
continue;
|
|
g_variant_builder_add (&b, "u", wp_proxy_get_bound_id (WP_PROXY (port)));
|
|
}
|
|
ports_v = g_variant_builder_end (&b);
|
|
|
|
/* create the object manager */
|
|
self->links_watch = wp_object_manager_new ();
|
|
wp_object_manager_request_object_features (self->links_watch,
|
|
WP_TYPE_LINK, WP_PROXY_FEATURE_BOUND);
|
|
|
|
/* interested in links that have one of our ports in their
|
|
'link.input.port' or 'link.output.port' global property */
|
|
wp_object_manager_add_interest_full (self->links_watch, ({
|
|
WpObjectInterest *interest = wp_object_interest_new_type (WP_TYPE_LINK);
|
|
wp_object_interest_add_constraint (interest,
|
|
WP_CONSTRAINT_TYPE_PW_GLOBAL_PROPERTY,
|
|
(self->direction == WP_DIRECTION_INPUT) ?
|
|
PW_KEY_LINK_INPUT_PORT : PW_KEY_LINK_OUTPUT_PORT,
|
|
WP_CONSTRAINT_VERB_IN_LIST,
|
|
ports_v);
|
|
interest;
|
|
}));
|
|
|
|
g_signal_connect_object (self->links_watch, "objects-changed",
|
|
G_CALLBACK (on_links_changed), self, 0);
|
|
|
|
wp_core_install_object_manager (core, self->links_watch);
|
|
wp_transition_advance (transition);
|
|
break;
|
|
}
|
|
default:
|
|
g_return_if_reached ();
|
|
}
|
|
}
|
|
|
|
static void
|
|
si_convert_activate_rollback (WpSessionItem * item)
|
|
{
|
|
WpSiConvert *self = WP_SI_CONVERT (item);
|
|
|
|
g_clear_object (&self->link_to_target);
|
|
g_clear_object (&self->links_watch);
|
|
g_clear_object (&self->node);
|
|
}
|
|
|
|
static GVariant *
|
|
si_convert_get_stream_registration_info (WpSiStream * item)
|
|
{
|
|
WpSiConvert *self = WP_SI_CONVERT (item);
|
|
GVariantBuilder b;
|
|
|
|
g_variant_builder_init (&b, G_VARIANT_TYPE ("(sa{ss})"));
|
|
g_variant_builder_add (&b, "s", self->name);
|
|
g_variant_builder_add (&b, "a{ss}", NULL);
|
|
|
|
return g_variant_builder_end (&b);
|
|
}
|
|
|
|
static WpProperties *
|
|
si_convert_get_stream_properties (WpSiStream * self)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static WpSiEndpoint *
|
|
si_convert_get_stream_parent_endpoint (WpSiStream * self)
|
|
{
|
|
return WP_SI_ENDPOINT (wp_session_item_get_parent (WP_SESSION_ITEM (self)));
|
|
}
|
|
|
|
static void
|
|
si_convert_stream_init (WpSiStreamInterface * iface)
|
|
{
|
|
iface->get_registration_info = si_convert_get_stream_registration_info;
|
|
iface->get_properties = si_convert_get_stream_properties;
|
|
iface->get_parent_endpoint = si_convert_get_stream_parent_endpoint;
|
|
}
|
|
|
|
static GVariant *
|
|
si_convert_get_ports (WpSiPortInfo * item, const gchar * context)
|
|
{
|
|
WpSiConvert *self = WP_SI_CONVERT (item);
|
|
g_auto (GVariantBuilder) b = G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE_ARRAY);
|
|
g_autoptr (WpIterator) it = NULL;
|
|
g_auto (GValue) val = G_VALUE_INIT;
|
|
WpDirection direction = self->direction;
|
|
guint32 node_id;
|
|
|
|
/* context can only be either NULL or "reverse" */
|
|
if (!g_strcmp0 (context, "reverse")) {
|
|
direction = (self->direction == WP_DIRECTION_INPUT) ?
|
|
WP_DIRECTION_OUTPUT : WP_DIRECTION_INPUT;
|
|
}
|
|
else if (context != NULL) {
|
|
/* on any other context, return an empty list of ports */
|
|
return g_variant_new_array (G_VARIANT_TYPE ("(uuu)"), NULL, 0);
|
|
}
|
|
|
|
g_variant_builder_init (&b, G_VARIANT_TYPE ("a(uuu)"));
|
|
node_id = wp_proxy_get_bound_id (WP_PROXY (self->node));
|
|
|
|
for (it = wp_node_new_ports_iterator (self->node);
|
|
wp_iterator_next (it, &val);
|
|
g_value_unset (&val))
|
|
{
|
|
WpPort *port = g_value_get_object (&val);
|
|
g_autoptr (WpProperties) props = NULL;
|
|
const gchar *channel;
|
|
guint32 port_id, channel_id = 0;
|
|
|
|
if (wp_port_get_direction (port) != direction)
|
|
continue;
|
|
|
|
port_id = wp_proxy_get_bound_id (WP_PROXY (port));
|
|
|
|
/* try to find the audio channel; if channel is NULL, this will silently
|
|
leave the channel_id to its default value, 0 */
|
|
props = wp_pipewire_object_get_properties (WP_PIPEWIRE_OBJECT (port));
|
|
channel = wp_properties_get (props, PW_KEY_AUDIO_CHANNEL);
|
|
if (channel) {
|
|
WpSpaIdValue idval = wp_spa_id_value_from_short_name (
|
|
"Spa:Enum:AudioChannel", channel);
|
|
if (idval)
|
|
channel_id = wp_spa_id_value_number (idval);
|
|
}
|
|
|
|
g_variant_builder_add (&b, "(uuu)", node_id, port_id, channel_id);
|
|
}
|
|
|
|
return g_variant_builder_end (&b);
|
|
}
|
|
|
|
static void
|
|
si_convert_port_info_init (WpSiPortInfoInterface * iface)
|
|
{
|
|
iface->get_ports = si_convert_get_ports;
|
|
}
|
|
|
|
static void
|
|
si_convert_class_init (WpSiConvertClass * klass)
|
|
{
|
|
WpSessionItemClass *si_class = (WpSessionItemClass *) klass;
|
|
|
|
si_class->reset = si_convert_reset;
|
|
si_class->get_associated_proxy = si_convert_get_associated_proxy;
|
|
si_class->configure = si_convert_configure;
|
|
si_class->get_configuration = si_convert_get_configuration;
|
|
si_class->activate_get_next_step = si_convert_activate_get_next_step;
|
|
si_class->activate_execute_step = si_convert_activate_execute_step;
|
|
si_class->activate_rollback = si_convert_activate_rollback;
|
|
}
|
|
|
|
WP_PLUGIN_EXPORT gboolean
|
|
wireplumber__module_init (WpCore * core, GVariant * args, GError ** error)
|
|
{
|
|
GVariantBuilder b;
|
|
|
|
g_variant_builder_init (&b, G_VARIANT_TYPE ("a(ssymv)"));
|
|
g_variant_builder_add (&b, "(ssymv)", "target", "t",
|
|
WP_SI_CONFIG_OPTION_WRITEABLE | WP_SI_CONFIG_OPTION_REQUIRED, NULL);
|
|
g_variant_builder_add (&b, "(ssymv)", "name", "s",
|
|
WP_SI_CONFIG_OPTION_WRITEABLE | WP_SI_CONFIG_OPTION_REQUIRED, NULL);
|
|
g_variant_builder_add (&b, "(ssymv)", "enable-control-port", "b",
|
|
WP_SI_CONFIG_OPTION_WRITEABLE, NULL);
|
|
|
|
wp_si_factory_register (core, wp_si_factory_new_simple (
|
|
"si-convert", si_convert_get_type (), g_variant_builder_end (&b)));
|
|
return TRUE;
|
|
}
|