mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Make it possible to have a mixer/spliter and converter for the gstreamer sources and sinks. Add logic to make a new input/output port when the existing ports are not of the required format.
627 lines
18 KiB
C
627 lines
18 KiB
C
/* Pinos
|
|
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <gio/gio.h>
|
|
#include <gio/gunixfdlist.h>
|
|
|
|
#include "pinos/client/pinos.h"
|
|
#include "pinos/client/enumtypes.h"
|
|
|
|
#include "pinos/server/server-node.h"
|
|
#include "pinos/server/daemon.h"
|
|
|
|
#include "pinos/dbus/org-pinos.h"
|
|
|
|
|
|
#define PINOS_SERVER_NODE_GET_PRIVATE(node) \
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((node), PINOS_TYPE_SERVER_NODE, PinosServerNodePrivate))
|
|
|
|
struct _PinosServerNodePrivate
|
|
{
|
|
PinosDaemon *daemon;
|
|
PinosNode1 *iface;
|
|
|
|
gchar *sender;
|
|
gchar *object_path;
|
|
};
|
|
|
|
G_DEFINE_TYPE (PinosServerNode, pinos_server_node, PINOS_TYPE_NODE);
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_DAEMON,
|
|
PROP_SENDER,
|
|
PROP_OBJECT_PATH,
|
|
};
|
|
|
|
static gboolean
|
|
server_node_set_state (PinosNode *node,
|
|
PinosNodeState state)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
static PinosServerPort *
|
|
server_node_create_port_sync (PinosServerNode *node,
|
|
PinosDirection direction,
|
|
const gchar *name,
|
|
GBytes *possible_formats,
|
|
PinosProperties *props)
|
|
{
|
|
PinosServerNodePrivate *priv = node->priv;
|
|
PinosServerPort *port;
|
|
|
|
port = g_object_new (PINOS_TYPE_SERVER_PORT,
|
|
"daemon", priv->daemon,
|
|
"node", node,
|
|
"direction", direction,
|
|
"name", name,
|
|
"possible-formats", possible_formats,
|
|
"properties", props,
|
|
NULL);
|
|
pinos_node_add_port (PINOS_NODE (node), PINOS_PORT (port));
|
|
|
|
return port;
|
|
}
|
|
|
|
static void
|
|
server_node_create_port (PinosNode *node,
|
|
PinosDirection direction,
|
|
const gchar *name,
|
|
GBytes *possible_formats,
|
|
PinosProperties *props,
|
|
GTask *task)
|
|
{
|
|
PinosServerPort *port;
|
|
|
|
port = pinos_server_node_create_port_sync (PINOS_SERVER_NODE (node),
|
|
direction,
|
|
name,
|
|
possible_formats,
|
|
props);
|
|
|
|
g_task_return_pointer (task, port, (GDestroyNotify) g_object_unref);
|
|
g_object_unref (task);
|
|
}
|
|
|
|
static void
|
|
server_node_remove_port (PinosNode *node,
|
|
PinosPort *port)
|
|
{
|
|
}
|
|
|
|
static void
|
|
remove_port (PinosPort *port)
|
|
{
|
|
guint n_links;
|
|
|
|
pinos_port_get_links (port, &n_links);
|
|
if (n_links == 0) {
|
|
pinos_port_remove (port);
|
|
}
|
|
g_object_unref (port);
|
|
}
|
|
|
|
static void
|
|
on_port_created (GObject *source_object,
|
|
GAsyncResult *res,
|
|
gpointer user_data)
|
|
{
|
|
PinosNode *node = PINOS_NODE (source_object);
|
|
PinosServerNodePrivate *priv = PINOS_SERVER_NODE (node)->priv;
|
|
GDBusMethodInvocation *invocation = user_data;
|
|
PinosPort *port, *peer;
|
|
const gchar *object_path, *val;
|
|
GError *error = NULL;
|
|
GUnixFDList *fdlist;
|
|
GSocket *socket;
|
|
int fd, fdidx;
|
|
PinosDirection direction;
|
|
PinosProperties *props;
|
|
gboolean autoconnect = FALSE;
|
|
|
|
port = pinos_node_create_port_finish (node, res, &error);
|
|
if (port == NULL)
|
|
goto no_port;
|
|
|
|
g_debug ("server-node %p: port %p created", node, port);
|
|
|
|
socket = pinos_port_get_socket_pair (port, &error);
|
|
if (socket == NULL)
|
|
goto no_sockets;
|
|
|
|
fd = g_socket_get_fd (socket);
|
|
fdlist = g_unix_fd_list_new ();
|
|
fdidx = g_unix_fd_list_append (fdlist, fd, &error);
|
|
g_object_unref (socket);
|
|
|
|
if (fdidx == -1)
|
|
goto no_fdlist;
|
|
|
|
props = pinos_port_get_properties (port);
|
|
|
|
if ((val = pinos_properties_get (props, "autoconnect"))) {
|
|
autoconnect = atoi (val);
|
|
} else
|
|
autoconnect = TRUE;
|
|
|
|
if (autoconnect) {
|
|
direction = pinos_port_get_direction (port);
|
|
direction = pinos_direction_reverse (direction);
|
|
|
|
val = pinos_properties_get (props, "target-path");
|
|
|
|
peer = pinos_daemon_find_port (priv->daemon,
|
|
direction,
|
|
val,
|
|
pinos_port_get_properties (port),
|
|
pinos_port_get_possible_formats (port),
|
|
&error);
|
|
if (peer == NULL)
|
|
goto no_port_found;
|
|
|
|
if (!pinos_port_link (port, peer))
|
|
goto link_failed;
|
|
|
|
g_object_set_data_full (G_OBJECT (port),
|
|
"autoconnect-peer-port",
|
|
peer,
|
|
(GDestroyNotify) remove_port);
|
|
}
|
|
|
|
object_path = pinos_server_port_get_object_path (PINOS_SERVER_PORT (port));
|
|
g_debug ("server-node %p: add port %p, remote fd %d, %s", node, port, fd, object_path);
|
|
g_dbus_method_invocation_return_value_with_unix_fd_list (invocation,
|
|
g_variant_new ("(oh)",
|
|
object_path,
|
|
fdidx),
|
|
fdlist);
|
|
|
|
return;
|
|
|
|
no_port:
|
|
{
|
|
g_debug ("server-node %p: could create port", node);
|
|
g_dbus_method_invocation_return_dbus_error (invocation,
|
|
"org.pinos.Error", "can't create port");
|
|
return;
|
|
}
|
|
no_sockets:
|
|
{
|
|
g_debug ("server-node %p: could create socketpair %s", node, error->message);
|
|
g_dbus_method_invocation_return_gerror (invocation, error);
|
|
g_clear_error (&error);
|
|
g_object_unref (port);
|
|
return;
|
|
}
|
|
no_fdlist:
|
|
{
|
|
g_debug ("server-node %p: could add to fdlist", node);
|
|
g_dbus_method_invocation_return_gerror (invocation, error);
|
|
g_clear_error (&error);
|
|
g_object_unref (fdlist);
|
|
g_object_unref (port);
|
|
return;
|
|
}
|
|
no_port_found:
|
|
{
|
|
g_debug ("server-node %p: could not find matching port", node);
|
|
g_dbus_method_invocation_return_gerror (invocation, error);
|
|
g_clear_error (&error);
|
|
g_object_unref (fdlist);
|
|
return;
|
|
}
|
|
link_failed:
|
|
{
|
|
g_debug ("server-node %p: could not link port", node);
|
|
g_dbus_method_invocation_return_dbus_error (invocation,
|
|
"org.pinos.Error", "can't link port");
|
|
g_object_unref (peer);
|
|
g_object_unref (fdlist);
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
static gboolean
|
|
handle_create_port (PinosNode1 *interface,
|
|
GDBusMethodInvocation *invocation,
|
|
PinosDirection arg_direction,
|
|
const gchar *arg_name,
|
|
GVariant *arg_properties,
|
|
const gchar *arg_possible_formats,
|
|
gpointer user_data)
|
|
{
|
|
PinosNode *node = user_data;
|
|
PinosServerNodePrivate *priv = PINOS_SERVER_NODE (node)->priv;
|
|
const gchar *sender;
|
|
PinosProperties *props;
|
|
GBytes *formats;
|
|
|
|
sender = g_dbus_method_invocation_get_sender (invocation);
|
|
if (g_strcmp0 (priv->sender, sender) != 0)
|
|
goto not_allowed;
|
|
|
|
formats = g_bytes_new (arg_possible_formats, strlen (arg_possible_formats) + 1);
|
|
props = pinos_properties_from_variant (arg_properties);
|
|
|
|
g_debug ("server-node %p: create port", node);
|
|
pinos_node_create_port (node,
|
|
arg_direction,
|
|
arg_name,
|
|
formats,
|
|
props,
|
|
NULL,
|
|
on_port_created,
|
|
invocation);
|
|
|
|
g_bytes_unref (formats);
|
|
pinos_properties_free (props);
|
|
|
|
return TRUE;
|
|
|
|
/* ERRORS */
|
|
not_allowed:
|
|
{
|
|
g_debug ("sender %s is not owner of node with sender %s", sender, priv->sender);
|
|
g_dbus_method_invocation_return_dbus_error (invocation,
|
|
"org.pinos.Error", "not node owner");
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
static gboolean
|
|
handle_remove (PinosNode1 *interface,
|
|
GDBusMethodInvocation *invocation,
|
|
gpointer user_data)
|
|
{
|
|
PinosNode *node = user_data;
|
|
|
|
g_debug ("server-node %p: remove", node);
|
|
pinos_node_remove (node);
|
|
|
|
g_dbus_method_invocation_return_value (invocation,
|
|
g_variant_new ("()"));
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
pinos_server_node_get_property (GObject *_object,
|
|
guint prop_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PinosServerNode *node = PINOS_SERVER_NODE (_object);
|
|
PinosServerNodePrivate *priv = node->priv;
|
|
|
|
switch (prop_id) {
|
|
case PROP_DAEMON:
|
|
g_value_set_object (value, priv->daemon);
|
|
break;
|
|
|
|
case PROP_SENDER:
|
|
g_value_set_string (value, priv->sender);
|
|
break;
|
|
|
|
case PROP_OBJECT_PATH:
|
|
g_value_set_string (value, priv->object_path);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (node, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
pinos_server_node_set_property (GObject *_object,
|
|
guint prop_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PinosServerNode *node = PINOS_SERVER_NODE (_object);
|
|
PinosServerNodePrivate *priv = node->priv;
|
|
|
|
switch (prop_id) {
|
|
case PROP_DAEMON:
|
|
priv->daemon = g_value_dup_object (value);
|
|
break;
|
|
|
|
case PROP_SENDER:
|
|
priv->sender = g_value_dup_string (value);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (node, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
node_register_object (PinosServerNode *node)
|
|
{
|
|
PinosServerNodePrivate *priv = node->priv;
|
|
PinosDaemon *daemon = priv->daemon;
|
|
PinosObjectSkeleton *skel;
|
|
|
|
skel = pinos_object_skeleton_new (PINOS_DBUS_OBJECT_NODE);
|
|
|
|
pinos_object_skeleton_set_node1 (skel, priv->iface);
|
|
|
|
g_free (priv->object_path);
|
|
priv->object_path = pinos_daemon_export_uniquely (daemon, G_DBUS_OBJECT_SKELETON (skel));
|
|
g_object_unref (skel);
|
|
|
|
g_debug ("server-node %p: register object %s", node, priv->object_path);
|
|
pinos_daemon_add_node (daemon, node);
|
|
|
|
return;
|
|
}
|
|
|
|
static void
|
|
node_unregister_object (PinosServerNode *node)
|
|
{
|
|
PinosServerNodePrivate *priv = node->priv;
|
|
|
|
g_debug ("server-node %p: unregister object %s", node, priv->object_path);
|
|
pinos_daemon_unexport (priv->daemon, priv->object_path);
|
|
pinos_daemon_remove_node (priv->daemon, node);
|
|
}
|
|
|
|
static void
|
|
on_property_notify (GObject *obj,
|
|
GParamSpec *pspec,
|
|
gpointer user_data)
|
|
{
|
|
PinosNode *node = user_data;
|
|
PinosServerNodePrivate *priv = PINOS_SERVER_NODE (node)->priv;
|
|
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "sender") == 0) {
|
|
pinos_node1_set_owner (priv->iface, priv->sender);
|
|
}
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "name") == 0) {
|
|
pinos_node1_set_name (priv->iface, pinos_node_get_name (node));
|
|
}
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "properties") == 0) {
|
|
PinosProperties *props = pinos_node_get_properties (node);
|
|
pinos_node1_set_properties (priv->iface, props ? pinos_properties_to_variant (props) : NULL);
|
|
}
|
|
}
|
|
|
|
static void
|
|
pinos_server_node_constructed (GObject * obj)
|
|
{
|
|
PinosServerNode *node = PINOS_SERVER_NODE (obj);
|
|
PinosServerNodePrivate *priv = node->priv;
|
|
|
|
g_debug ("server-node %p: constructed", node);
|
|
|
|
g_signal_connect (node, "notify", (GCallback) on_property_notify, node);
|
|
G_OBJECT_CLASS (pinos_server_node_parent_class)->constructed (obj);
|
|
|
|
if (priv->sender == NULL) {
|
|
priv->sender = g_strdup (pinos_daemon_get_sender (priv->daemon));
|
|
pinos_node1_set_owner (priv->iface, priv->sender);
|
|
}
|
|
|
|
node_register_object (node);
|
|
}
|
|
|
|
static void
|
|
pinos_server_node_dispose (GObject * obj)
|
|
{
|
|
PinosServerNode *node = PINOS_SERVER_NODE (obj);
|
|
|
|
g_debug ("server-node %p: dispose", node);
|
|
node_unregister_object (node);
|
|
|
|
G_OBJECT_CLASS (pinos_server_node_parent_class)->dispose (obj);
|
|
}
|
|
|
|
static void
|
|
pinos_server_node_finalize (GObject * obj)
|
|
{
|
|
PinosServerNode *node = PINOS_SERVER_NODE (obj);
|
|
PinosServerNodePrivate *priv = node->priv;
|
|
|
|
g_debug ("server-node %p: finalize", node);
|
|
g_clear_object (&priv->daemon);
|
|
g_clear_object (&priv->iface);
|
|
g_free (priv->sender);
|
|
|
|
G_OBJECT_CLASS (pinos_server_node_parent_class)->finalize (obj);
|
|
}
|
|
|
|
static void
|
|
pinos_server_node_class_init (PinosServerNodeClass * klass)
|
|
{
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
PinosNodeClass *node_class = PINOS_NODE_CLASS (klass);
|
|
|
|
g_type_class_add_private (klass, sizeof (PinosServerNodePrivate));
|
|
|
|
gobject_class->constructed = pinos_server_node_constructed;
|
|
gobject_class->dispose = pinos_server_node_dispose;
|
|
gobject_class->finalize = pinos_server_node_finalize;
|
|
gobject_class->set_property = pinos_server_node_set_property;
|
|
gobject_class->get_property = pinos_server_node_get_property;
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
PROP_DAEMON,
|
|
g_param_spec_object ("daemon",
|
|
"Daemon",
|
|
"The Daemon",
|
|
PINOS_TYPE_DAEMON,
|
|
G_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
PROP_SENDER,
|
|
g_param_spec_string ("sender",
|
|
"Sender",
|
|
"The Sender",
|
|
NULL,
|
|
G_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
PROP_OBJECT_PATH,
|
|
g_param_spec_string ("object-path",
|
|
"Object Path",
|
|
"The object path",
|
|
NULL,
|
|
G_PARAM_READABLE |
|
|
G_PARAM_STATIC_STRINGS));
|
|
node_class->set_state = server_node_set_state;
|
|
node_class->create_port = server_node_create_port;
|
|
node_class->remove_port = server_node_remove_port;
|
|
|
|
klass->create_port_sync = server_node_create_port_sync;
|
|
}
|
|
|
|
static void
|
|
pinos_server_node_init (PinosServerNode * node)
|
|
{
|
|
PinosServerNodePrivate *priv = node->priv = PINOS_SERVER_NODE_GET_PRIVATE (node);
|
|
|
|
g_debug ("server-node %p: new", node);
|
|
priv->iface = pinos_node1_skeleton_new ();
|
|
g_signal_connect (priv->iface, "handle-create-port",
|
|
(GCallback) handle_create_port,
|
|
node);
|
|
g_signal_connect (priv->iface, "handle-remove",
|
|
(GCallback) handle_remove,
|
|
node);
|
|
pinos_node1_set_state (priv->iface, PINOS_NODE_STATE_SUSPENDED);
|
|
}
|
|
|
|
/**
|
|
* pinos_server_node_new:
|
|
* @daemon: a #PinosDaemon
|
|
* @sender: the path of the owner
|
|
* @name: a name
|
|
* @properties: extra properties
|
|
*
|
|
* Create a new #PinosServerNode.
|
|
*
|
|
* Returns: a new #PinosServerNode
|
|
*/
|
|
PinosNode *
|
|
pinos_server_node_new (PinosDaemon *daemon,
|
|
const gchar *sender,
|
|
const gchar *name,
|
|
PinosProperties *properties)
|
|
{
|
|
g_return_val_if_fail (PINOS_IS_DAEMON (daemon), NULL);
|
|
|
|
return g_object_new (PINOS_TYPE_SERVER_NODE,
|
|
"daemon", daemon,
|
|
"sender", sender,
|
|
"name", name,
|
|
"properties", properties,
|
|
NULL);
|
|
}
|
|
|
|
/**
|
|
* pinos_server_node_get_daemon:
|
|
* @node: a #PinosServerNode
|
|
*
|
|
* Get the daemon of @node.
|
|
*
|
|
* Returns: the daemon of @node.
|
|
*/
|
|
PinosDaemon *
|
|
pinos_server_node_get_daemon (PinosServerNode *node)
|
|
{
|
|
PinosServerNodePrivate *priv;
|
|
|
|
g_return_val_if_fail (PINOS_IS_SERVER_NODE (node), NULL);
|
|
priv = node->priv;
|
|
|
|
return priv->daemon;
|
|
}
|
|
|
|
/**
|
|
* pinos_server_node_get_sender:
|
|
* @node: a #PinosServerNode
|
|
*
|
|
* Get the owner path of @node.
|
|
*
|
|
* Returns: the owner path of @node.
|
|
*/
|
|
const gchar *
|
|
pinos_server_node_get_sender (PinosServerNode *node)
|
|
{
|
|
PinosServerNodePrivate *priv;
|
|
|
|
g_return_val_if_fail (PINOS_IS_SERVER_NODE (node), NULL);
|
|
priv = node->priv;
|
|
|
|
return priv->sender;
|
|
}
|
|
/**
|
|
* pinos_server_node_get_object_path:
|
|
* @node: a #PinosServerNode
|
|
*
|
|
* Get the object path of @node.
|
|
*
|
|
* Returns: the object path of @node.
|
|
*/
|
|
const gchar *
|
|
pinos_server_node_get_object_path (PinosServerNode *node)
|
|
{
|
|
PinosServerNodePrivate *priv;
|
|
|
|
g_return_val_if_fail (PINOS_IS_SERVER_NODE (node), NULL);
|
|
priv = node->priv;
|
|
|
|
return priv->object_path;
|
|
}
|
|
|
|
PinosServerPort *
|
|
pinos_server_node_create_port_sync (PinosServerNode *node,
|
|
PinosDirection direction,
|
|
const gchar *name,
|
|
GBytes *possible_formats,
|
|
PinosProperties *props)
|
|
{
|
|
PinosServerNodeClass *klass;
|
|
PinosServerPort *port;
|
|
|
|
g_return_val_if_fail (PINOS_IS_SERVER_NODE (node), NULL);
|
|
|
|
klass = PINOS_SERVER_NODE_GET_CLASS (node);
|
|
if (!klass->create_port_sync)
|
|
return NULL;
|
|
|
|
g_debug ("server-node %p: create port", node);
|
|
port = klass->create_port_sync (node,
|
|
direction,
|
|
name,
|
|
possible_formats,
|
|
props);
|
|
|
|
return port;
|
|
}
|