mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-06-01 13:08:22 +02:00
- make it a GObject so that it can emit its own signals and so that it can be shared between multiple proxies - share the WpProps instance between endpoints, endpoint-streams and their underlying nodes - introduce the concept of the caching mode that redirects _set to _set_param of the proxy that actually has the props; this allows shared WpProps to actually set changes on the correct proxy in a transparent way - change methods to consume the ref of the pod and reflect that also on wp_proxy_set_prop() - refactor the export process on endpoints & endpoint-streams so that they always get all the required features (info, props, bound) and make it async so that we can take time to prepare the underlying node to have FEATURE_PROPS - update the props & endpoint unit tests, bringing back all the checks that the endpoint unit test used to have
592 lines
18 KiB
C
592 lines
18 KiB
C
/* WirePlumber
|
|
*
|
|
* Copyright © 2020 Collabora Ltd.
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/**
|
|
* SECTION: WpEndpointStream
|
|
*
|
|
* The #WpEndpointStream class allows accessing the properties and methods of a
|
|
* PipeWire endpoint stream object (`struct pw_endpoint_stream` from the
|
|
* session-manager extension).
|
|
*
|
|
* A #WpEndpointStream is constructed internally when a new endpoint appears on
|
|
* the PipeWire registry and it is made available through the #WpObjectManager
|
|
* API.
|
|
*/
|
|
|
|
#define G_LOG_DOMAIN "wp-endpoint-stream"
|
|
|
|
#include "endpoint-stream.h"
|
|
#include "debug.h"
|
|
#include "node.h"
|
|
#include "private.h"
|
|
#include "error.h"
|
|
|
|
#include <pipewire/pipewire.h>
|
|
#include <pipewire/extensions/session-manager.h>
|
|
#include <pipewire/extensions/session-manager/introspect-funcs.h>
|
|
|
|
#include <spa/pod/builder.h>
|
|
#include <spa/pod/parser.h>
|
|
#include <spa/pod/filter.h>
|
|
|
|
|
|
/* WpEndpointStream */
|
|
|
|
typedef struct _WpEndpointStreamPrivate WpEndpointStreamPrivate;
|
|
struct _WpEndpointStreamPrivate
|
|
{
|
|
WpProperties *properties;
|
|
struct pw_endpoint_stream_info *info;
|
|
struct pw_endpoint_stream *iface;
|
|
struct spa_hook listener;
|
|
};
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (WpEndpointStream, wp_endpoint_stream, WP_TYPE_PROXY)
|
|
|
|
static void
|
|
wp_endpoint_stream_init (WpEndpointStream * self)
|
|
{
|
|
}
|
|
|
|
static void
|
|
wp_endpoint_stream_finalize (GObject * object)
|
|
{
|
|
WpEndpointStream *self = WP_ENDPOINT_STREAM (object);
|
|
WpEndpointStreamPrivate *priv = wp_endpoint_stream_get_instance_private (self);
|
|
|
|
g_clear_pointer (&priv->properties, wp_properties_unref);
|
|
g_clear_pointer (&priv->info, pw_endpoint_stream_info_free);
|
|
|
|
G_OBJECT_CLASS (wp_endpoint_stream_parent_class)->finalize (object);
|
|
}
|
|
|
|
static gconstpointer
|
|
wp_endpoint_stream_get_info (WpProxy * proxy)
|
|
{
|
|
WpEndpointStream *self = WP_ENDPOINT_STREAM (proxy);
|
|
WpEndpointStreamPrivate *priv = wp_endpoint_stream_get_instance_private (self);
|
|
|
|
return priv->info;
|
|
}
|
|
|
|
static WpProperties *
|
|
wp_endpoint_stream_get_properties (WpProxy * proxy)
|
|
{
|
|
WpEndpointStream *self = WP_ENDPOINT_STREAM (proxy);
|
|
WpEndpointStreamPrivate *priv = wp_endpoint_stream_get_instance_private (self);
|
|
|
|
return wp_properties_ref (priv->properties);
|
|
}
|
|
|
|
static struct spa_param_info *
|
|
wp_endpoint_stream_get_param_info (WpProxy * proxy, guint * n_params)
|
|
{
|
|
WpEndpointStream *self = WP_ENDPOINT_STREAM (proxy);
|
|
WpEndpointStreamPrivate *priv = wp_endpoint_stream_get_instance_private (self);
|
|
|
|
*n_params = priv->info->n_params;
|
|
return priv->info->params;
|
|
}
|
|
|
|
static gint
|
|
wp_endpoint_stream_enum_params (WpProxy * self, guint32 id, guint32 start,
|
|
guint32 num, const WpSpaPod * filter)
|
|
{
|
|
WpEndpointStreamPrivate *priv =
|
|
wp_endpoint_stream_get_instance_private (WP_ENDPOINT_STREAM (self));
|
|
return pw_endpoint_stream_enum_params (priv->iface, 0, id, start, num,
|
|
filter ? wp_spa_pod_get_spa_pod (filter) : NULL);
|
|
}
|
|
|
|
static gint
|
|
wp_endpoint_stream_subscribe_params (WpProxy * self, guint32 *ids, guint32 n_ids)
|
|
{
|
|
WpEndpointStreamPrivate *priv =
|
|
wp_endpoint_stream_get_instance_private (WP_ENDPOINT_STREAM (self));
|
|
return pw_endpoint_stream_subscribe_params (priv->iface, ids, n_ids);
|
|
}
|
|
|
|
static gint
|
|
wp_endpoint_stream_set_param (WpProxy * self, guint32 id, guint32 flags,
|
|
const WpSpaPod *param)
|
|
{
|
|
WpEndpointStreamPrivate *priv =
|
|
wp_endpoint_stream_get_instance_private (WP_ENDPOINT_STREAM (self));
|
|
return pw_endpoint_stream_set_param (priv->iface, id, flags,
|
|
wp_spa_pod_get_spa_pod (param));
|
|
}
|
|
|
|
static void
|
|
endpoint_stream_event_info (void *data, const struct pw_endpoint_stream_info *info)
|
|
{
|
|
WpEndpointStream *self = WP_ENDPOINT_STREAM (data);
|
|
WpEndpointStreamPrivate *priv = wp_endpoint_stream_get_instance_private (self);
|
|
|
|
priv->info = pw_endpoint_stream_info_update (priv->info, info);
|
|
|
|
if (info->change_mask & PW_ENDPOINT_STREAM_CHANGE_MASK_PROPS) {
|
|
g_clear_pointer (&priv->properties, wp_properties_unref);
|
|
priv->properties = wp_properties_new_wrap_dict (priv->info->props);
|
|
}
|
|
|
|
wp_proxy_set_feature_ready (WP_PROXY (self), WP_PROXY_FEATURE_INFO);
|
|
g_object_notify (G_OBJECT (self), "info");
|
|
|
|
if (info->change_mask & PW_ENDPOINT_STREAM_CHANGE_MASK_PROPS)
|
|
g_object_notify (G_OBJECT (self), "properties");
|
|
|
|
if (info->change_mask & PW_ENDPOINT_STREAM_CHANGE_MASK_PARAMS)
|
|
g_object_notify (G_OBJECT (self), "param-info");
|
|
}
|
|
|
|
static const struct pw_endpoint_stream_events endpoint_stream_events = {
|
|
PW_VERSION_ENDPOINT_STREAM_EVENTS,
|
|
.info = endpoint_stream_event_info,
|
|
.param = wp_proxy_handle_event_param,
|
|
};
|
|
|
|
static void
|
|
wp_endpoint_stream_pw_proxy_created (WpProxy * proxy, struct pw_proxy * pw_proxy)
|
|
{
|
|
WpEndpointStream *self = WP_ENDPOINT_STREAM (proxy);
|
|
WpEndpointStreamPrivate *priv = wp_endpoint_stream_get_instance_private (self);
|
|
|
|
priv->iface = (struct pw_endpoint_stream *) pw_proxy;
|
|
pw_endpoint_stream_add_listener (priv->iface, &priv->listener,
|
|
&endpoint_stream_events, self);
|
|
}
|
|
|
|
static const gchar *
|
|
get_name (WpEndpointStream * self)
|
|
{
|
|
WpEndpointStreamPrivate *priv = wp_endpoint_stream_get_instance_private (self);
|
|
return priv->info->name;
|
|
}
|
|
|
|
static void
|
|
wp_endpoint_stream_class_init (WpEndpointStreamClass * klass)
|
|
{
|
|
GObjectClass *object_class = (GObjectClass *) klass;
|
|
WpProxyClass *proxy_class = (WpProxyClass *) klass;
|
|
|
|
object_class->finalize = wp_endpoint_stream_finalize;
|
|
|
|
proxy_class->pw_iface_type = PW_TYPE_INTERFACE_EndpointStream;
|
|
proxy_class->pw_iface_version = PW_VERSION_ENDPOINT_STREAM;
|
|
|
|
proxy_class->get_info = wp_endpoint_stream_get_info;
|
|
proxy_class->get_properties = wp_endpoint_stream_get_properties;
|
|
proxy_class->get_param_info = wp_endpoint_stream_get_param_info;
|
|
proxy_class->enum_params = wp_endpoint_stream_enum_params;
|
|
proxy_class->subscribe_params = wp_endpoint_stream_subscribe_params;
|
|
proxy_class->set_param = wp_endpoint_stream_set_param;
|
|
|
|
proxy_class->pw_proxy_created = wp_endpoint_stream_pw_proxy_created;
|
|
|
|
klass->get_name = get_name;
|
|
}
|
|
|
|
/**
|
|
* wp_endpoint_stream_get_name:
|
|
* @self: the endpoint stream
|
|
*
|
|
* Returns: the name of the endpoint stream
|
|
*/
|
|
const gchar *
|
|
wp_endpoint_stream_get_name (WpEndpointStream * self)
|
|
{
|
|
g_return_val_if_fail (WP_IS_ENDPOINT_STREAM (self), NULL);
|
|
g_return_val_if_fail (WP_ENDPOINT_STREAM_GET_CLASS (self)->get_name, NULL);
|
|
|
|
return WP_ENDPOINT_STREAM_GET_CLASS (self)->get_name (self);
|
|
}
|
|
|
|
|
|
/* WpImplEndpointStream */
|
|
|
|
enum {
|
|
IMPL_PROP_0,
|
|
IMPL_PROP_ITEM,
|
|
};
|
|
|
|
struct _WpImplEndpointStream
|
|
{
|
|
WpEndpointStream parent;
|
|
|
|
struct spa_interface iface;
|
|
struct spa_hook_list hooks;
|
|
struct pw_endpoint_stream_info info;
|
|
gboolean subscribed;
|
|
|
|
WpSiStream *item;
|
|
};
|
|
|
|
G_DEFINE_TYPE (WpImplEndpointStream, wp_impl_endpoint_stream, WP_TYPE_ENDPOINT_STREAM)
|
|
|
|
#define pw_endpoint_stream_emit(hooks,method,version,...) \
|
|
spa_hook_list_call_simple(hooks, struct pw_endpoint_stream_events, \
|
|
method, version, ##__VA_ARGS__)
|
|
|
|
#define pw_endpoint_stream_emit_info(hooks,...) \
|
|
pw_endpoint_stream_emit(hooks, info, 0, ##__VA_ARGS__)
|
|
#define pw_endpoint_stream_emit_param(hooks,...) \
|
|
pw_endpoint_stream_emit(hooks, param, 0, ##__VA_ARGS__)
|
|
|
|
static struct spa_param_info impl_param_info[] = {
|
|
SPA_PARAM_INFO (SPA_PARAM_Props, SPA_PARAM_INFO_READWRITE),
|
|
SPA_PARAM_INFO (SPA_PARAM_PropInfo, SPA_PARAM_INFO_READ)
|
|
};
|
|
|
|
static int
|
|
impl_add_listener(void *object,
|
|
struct spa_hook *listener,
|
|
const struct pw_endpoint_stream_events *events,
|
|
void *data)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (object);
|
|
struct spa_hook_list save;
|
|
|
|
spa_hook_list_isolate (&self->hooks, &save, listener, events, data);
|
|
|
|
self->info.change_mask = PW_ENDPOINT_STREAM_CHANGE_MASK_ALL
|
|
& ~PW_ENDPOINT_STREAM_CHANGE_MASK_LINK_PARAMS;
|
|
pw_endpoint_stream_emit_info (&self->hooks, &self->info);
|
|
self->info.change_mask = 0;
|
|
|
|
spa_hook_list_join (&self->hooks, &save);
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
impl_enum_params (void *object, int seq,
|
|
uint32_t id, uint32_t start, uint32_t num,
|
|
const struct spa_pod *filter)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (object);
|
|
char buf[1024];
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT (buf, sizeof (buf));
|
|
struct spa_pod *result;
|
|
guint count = 0;
|
|
WpProps *props = wp_proxy_get_props (WP_PROXY (self));
|
|
|
|
switch (id) {
|
|
case SPA_PARAM_PropInfo: {
|
|
g_autoptr (WpIterator) params = wp_props_iterate_prop_info (props);
|
|
g_auto (GValue) item = G_VALUE_INIT;
|
|
guint i = 0;
|
|
|
|
for (; wp_iterator_next (params, &item); g_value_unset (&item), i++) {
|
|
WpSpaPod *pod = g_value_get_boxed (&item);
|
|
const struct spa_pod *param = wp_spa_pod_get_spa_pod (pod);
|
|
if (spa_pod_filter (&b, &result, param, filter) == 0) {
|
|
pw_endpoint_stream_emit_param (&self->hooks, seq, id, i, i+1, result);
|
|
if (++count == num)
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case SPA_PARAM_Props: {
|
|
if (start == 0) {
|
|
g_autoptr (WpSpaPod) pod = wp_props_get_all (props);
|
|
const struct spa_pod *param = wp_spa_pod_get_spa_pod (pod);
|
|
if (spa_pod_filter (&b, &result, param, filter) == 0) {
|
|
pw_endpoint_stream_emit_param (&self->hooks, seq, id, 0, 1, result);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
return -ENOENT;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
impl_subscribe_params (void *object, uint32_t *ids, uint32_t n_ids)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (object);
|
|
|
|
for (guint i = 0; i < n_ids; i++) {
|
|
if (ids[i] == SPA_PARAM_Props)
|
|
self->subscribed = TRUE;
|
|
impl_enum_params (self, 1, ids[i], 0, UINT32_MAX, NULL);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
impl_set_param (void *object, uint32_t id, uint32_t flags,
|
|
const struct spa_pod *param)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (object);
|
|
|
|
if (id != SPA_PARAM_Props)
|
|
return -ENOENT;
|
|
|
|
WpProps *props = wp_proxy_get_props (WP_PROXY (self));
|
|
wp_props_set (props, NULL, wp_spa_pod_new_regular_wrap (param));
|
|
return 0;
|
|
}
|
|
|
|
static const struct pw_endpoint_stream_methods impl_endpoint_stream = {
|
|
PW_VERSION_ENDPOINT_STREAM_METHODS,
|
|
.add_listener = impl_add_listener,
|
|
.subscribe_params = impl_subscribe_params,
|
|
.enum_params = impl_enum_params,
|
|
.set_param = impl_set_param,
|
|
};
|
|
|
|
static void
|
|
populate_properties (WpImplEndpointStream * self, WpProperties *global_props)
|
|
{
|
|
WpEndpointStreamPrivate *priv =
|
|
wp_endpoint_stream_get_instance_private (WP_ENDPOINT_STREAM (self));
|
|
|
|
g_clear_pointer (&priv->properties, wp_properties_unref);
|
|
priv->properties = wp_si_stream_get_properties (self->item);
|
|
if (!priv->properties)
|
|
priv->properties = wp_properties_new_empty ();
|
|
priv->properties = wp_properties_ensure_unique_owner (priv->properties);
|
|
wp_properties_update (priv->properties, global_props);
|
|
|
|
self->info.props = priv->properties ?
|
|
(struct spa_dict *) wp_properties_peek_dict (priv->properties) : NULL;
|
|
|
|
g_object_notify (G_OBJECT (self), "properties");
|
|
}
|
|
|
|
static void
|
|
on_si_stream_properties_changed (WpSiStream * item, WpImplEndpointStream * self)
|
|
{
|
|
populate_properties (self, wp_proxy_get_global_properties (WP_PROXY (self)));
|
|
|
|
self->info.change_mask = PW_ENDPOINT_STREAM_CHANGE_MASK_PROPS;
|
|
pw_endpoint_stream_emit_info (&self->hooks, &self->info);
|
|
self->info.change_mask = 0;
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_init (WpImplEndpointStream * self)
|
|
{
|
|
/* reuse the parent's private to optimize memory usage and to be able
|
|
to re-use some of the parent's methods without reimplementing them */
|
|
WpEndpointStreamPrivate *priv =
|
|
wp_endpoint_stream_get_instance_private (WP_ENDPOINT_STREAM (self));
|
|
|
|
self->iface = SPA_INTERFACE_INIT (
|
|
PW_TYPE_INTERFACE_EndpointStream,
|
|
PW_VERSION_ENDPOINT_STREAM,
|
|
&impl_endpoint_stream, self);
|
|
spa_hook_list_init (&self->hooks);
|
|
|
|
priv->iface = (struct pw_endpoint_stream *) &self->iface;
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_finalize (GObject * object)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (object);
|
|
WpEndpointStreamPrivate *priv =
|
|
wp_endpoint_stream_get_instance_private (WP_ENDPOINT_STREAM (self));
|
|
|
|
g_free (self->info.name);
|
|
priv->info = NULL;
|
|
|
|
G_OBJECT_CLASS (wp_impl_endpoint_stream_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_set_property (GObject * object, guint property_id,
|
|
const GValue * value, GParamSpec * pspec)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (object);
|
|
|
|
switch (property_id) {
|
|
case IMPL_PROP_ITEM:
|
|
self->item = g_value_get_object (value);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_get_property (GObject * object, guint property_id,
|
|
GValue * value, GParamSpec * pspec)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (object);
|
|
|
|
switch (property_id) {
|
|
case IMPL_PROP_ITEM:
|
|
g_value_set_object (value, self->item);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_export (WpImplEndpointStream * self)
|
|
{
|
|
WpEndpointStreamPrivate *priv =
|
|
wp_endpoint_stream_get_instance_private (WP_ENDPOINT_STREAM (self));
|
|
g_autoptr (WpCore) core = wp_proxy_get_core (WP_PROXY (self));
|
|
struct pw_core *pw_core = wp_core_get_pw_core (core);
|
|
|
|
g_autoptr (GVariantIter) immutable_properties = NULL;
|
|
g_autoptr (WpProperties) properties = NULL;
|
|
const gchar *key, *value;
|
|
|
|
/* no pw_core -> we are not connected */
|
|
if (!pw_core) {
|
|
wp_proxy_augment_error (WP_PROXY (self), g_error_new (WP_DOMAIN_LIBRARY,
|
|
WP_LIBRARY_ERROR_OPERATION_FAILED,
|
|
"The WirePlumber core is not connected; "
|
|
"object cannot be exported to PipeWire"));
|
|
return;
|
|
}
|
|
|
|
wp_debug_object (self, "exporting");
|
|
|
|
/* get info from the interface */
|
|
{
|
|
g_autoptr (GVariant) info = NULL;
|
|
info = wp_si_stream_get_registration_info (self->item);
|
|
g_variant_get (info, "(sa{ss})", &self->info.name, &immutable_properties);
|
|
|
|
/* associate with the endpoint */
|
|
self->info.endpoint_id = wp_session_item_get_associated_proxy_id (
|
|
WP_SESSION_ITEM (self->item), WP_TYPE_ENDPOINT);
|
|
}
|
|
|
|
/* construct export properties (these will come back through
|
|
the registry and appear in wp_proxy_get_global_properties) */
|
|
properties = wp_properties_new (
|
|
PW_KEY_ENDPOINT_STREAM_NAME, self->info.name,
|
|
NULL);
|
|
wp_properties_setf (properties, PW_KEY_ENDPOINT_ID,
|
|
"%d", self->info.endpoint_id);
|
|
|
|
/* populate immutable (global) properties */
|
|
while (g_variant_iter_next (immutable_properties, "{&s&s}", &key, &value))
|
|
wp_properties_set (properties, key, value);
|
|
|
|
/* populate standard properties */
|
|
populate_properties (self, properties);
|
|
|
|
/* subscribe to changes */
|
|
g_signal_connect_object (self->item, "stream-properties-changed",
|
|
G_CALLBACK (on_si_stream_properties_changed), self, 0);
|
|
|
|
/* finalize info struct */
|
|
self->info.version = PW_VERSION_ENDPOINT_STREAM_INFO;
|
|
self->info.params = impl_param_info;
|
|
self->info.n_params = SPA_N_ELEMENTS (impl_param_info);
|
|
priv->info = &self->info;
|
|
|
|
wp_proxy_set_feature_ready (WP_PROXY (self), WP_PROXY_FEATURE_INFO);
|
|
g_object_notify (G_OBJECT (self), "info");
|
|
g_object_notify (G_OBJECT (self), "param-info");
|
|
|
|
wp_proxy_set_pw_proxy (WP_PROXY (self), pw_core_export (pw_core,
|
|
PW_TYPE_INTERFACE_EndpointStream,
|
|
wp_properties_peek_dict (properties),
|
|
priv->iface, 0));
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_continue_feature_props (WpProxy * node,
|
|
GAsyncResult * res, WpImplEndpointStream * self)
|
|
{
|
|
g_autoptr (GError) error = NULL;
|
|
|
|
if (!wp_proxy_augment_finish (node, res, &error)) {
|
|
wp_proxy_augment_error (WP_PROXY (self), g_steal_pointer (&error));
|
|
return;
|
|
}
|
|
|
|
WpProps *props = wp_proxy_get_props (node);
|
|
wp_proxy_set_props (WP_PROXY (self), g_object_ref (props));
|
|
wp_proxy_set_feature_ready (WP_PROXY (self), WP_PROXY_FEATURE_PROPS);
|
|
wp_impl_endpoint_stream_export (self);
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_augment (WpProxy * proxy, WpProxyFeatures features)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (proxy);
|
|
g_autoptr (GVariant) info = NULL;
|
|
g_autoptr (GVariantIter) immutable_props = NULL;
|
|
g_autoptr (WpProperties) props = NULL;
|
|
|
|
/* if any of these features are requested, export,
|
|
after ensuring that we have a WpProps so that enum_params works */
|
|
if (features & (WP_PROXY_FEATURES_STANDARD | WP_PROXY_FEATURE_PROPS)) {
|
|
g_autoptr (WpProxy) node = wp_session_item_get_associated_proxy (
|
|
WP_SESSION_ITEM (self->item), WP_TYPE_NODE);
|
|
|
|
if (node) {
|
|
/* if the item has a node, use the props of that node */
|
|
wp_proxy_augment (node, WP_PROXY_FEATURE_PROPS, NULL,
|
|
(GAsyncReadyCallback) wp_impl_endpoint_stream_continue_feature_props,
|
|
self);
|
|
} else {
|
|
/* else install an empty WpProps */
|
|
WpProps *props = wp_props_new (WP_PROPS_MODE_STORE, proxy);
|
|
wp_proxy_set_props (proxy, props);
|
|
wp_proxy_set_feature_ready (proxy, WP_PROXY_FEATURE_PROPS);
|
|
wp_impl_endpoint_stream_export (self);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_prop_changed (WpProxy * proxy, const gchar * prop_name)
|
|
{
|
|
WpImplEndpointStream *self = WP_IMPL_ENDPOINT_STREAM (proxy);
|
|
|
|
/* notify subscribers */
|
|
if (self->subscribed)
|
|
impl_enum_params (self, 1, SPA_PARAM_Props, 0, UINT32_MAX, NULL);
|
|
}
|
|
|
|
static void
|
|
wp_impl_endpoint_stream_class_init (WpImplEndpointStreamClass * klass)
|
|
{
|
|
GObjectClass *object_class = (GObjectClass *) klass;
|
|
WpProxyClass *proxy_class = (WpProxyClass *) klass;
|
|
|
|
object_class->finalize = wp_impl_endpoint_stream_finalize;
|
|
object_class->set_property = wp_impl_endpoint_stream_set_property;
|
|
object_class->get_property = wp_impl_endpoint_stream_get_property;
|
|
|
|
proxy_class->augment = wp_impl_endpoint_stream_augment;
|
|
proxy_class->enum_params = NULL;
|
|
proxy_class->subscribe_params = NULL;
|
|
proxy_class->pw_proxy_created = NULL;
|
|
proxy_class->prop_changed = wp_impl_endpoint_stream_prop_changed;
|
|
|
|
g_object_class_install_property (object_class, IMPL_PROP_ITEM,
|
|
g_param_spec_object ("item", "item", "item", WP_TYPE_SI_STREAM,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
|
}
|
|
|
|
WpImplEndpointStream *
|
|
wp_impl_endpoint_stream_new (WpCore * core, WpSiStream * item)
|
|
{
|
|
g_return_val_if_fail (WP_IS_CORE (core), NULL);
|
|
|
|
return g_object_new (WP_TYPE_IMPL_ENDPOINT_STREAM,
|
|
"core", core,
|
|
"item", item,
|
|
NULL);
|
|
}
|