mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
Remove the client object, it is not very useful now that we have the nodes. Fix some properties on the proxy objects. Use sendmsg and recvmsg directly because the GIO ones do allocations. make pinos_properties_merge and use it to combine properties from nodes and ports.
273 lines
8.6 KiB
C
273 lines
8.6 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 <sys/socket.h>
|
|
|
|
|
|
#include <gst/gst.h>
|
|
#include <gio/gio.h>
|
|
|
|
#include "pinos/client/pinos.h"
|
|
#include "pinos/client/enumtypes.h"
|
|
|
|
#include "pinos/server/server-port.h"
|
|
#include "pinos/server/server-node.h"
|
|
|
|
#include "pinos/dbus/org-pinos.h"
|
|
|
|
#define PINOS_SERVER_PORT_GET_PRIVATE(obj) \
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), PINOS_TYPE_SERVER_PORT, PinosServerPortPrivate))
|
|
|
|
struct _PinosServerPortPrivate
|
|
{
|
|
PinosDaemon *daemon;
|
|
PinosPort1 *iface;
|
|
gchar *object_path;
|
|
gboolean have_sockets;
|
|
};
|
|
|
|
G_DEFINE_TYPE (PinosServerPort, pinos_server_port, PINOS_TYPE_PORT);
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_DAEMON,
|
|
PROP_OBJECT_PATH,
|
|
};
|
|
|
|
const gchar *
|
|
pinos_server_port_get_object_path (PinosServerPort *port)
|
|
{
|
|
PinosServerPortPrivate *priv;
|
|
|
|
g_return_val_if_fail (PINOS_IS_SERVER_PORT (port), NULL);
|
|
priv = port->priv;
|
|
|
|
return priv->object_path;
|
|
}
|
|
|
|
static gboolean
|
|
handle_remove (PinosPort1 *interface,
|
|
GDBusMethodInvocation *invocation,
|
|
gpointer user_data)
|
|
{
|
|
PinosPort *port = user_data;
|
|
|
|
g_debug ("server-port %p: remove", port);
|
|
pinos_port_remove (port);
|
|
|
|
g_dbus_method_invocation_return_value (invocation,
|
|
g_variant_new ("()"));
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
pinos_server_port_get_property (GObject *_object,
|
|
guint prop_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PinosServerPort *port = PINOS_SERVER_PORT (_object);
|
|
PinosServerPortPrivate *priv = port->priv;
|
|
|
|
switch (prop_id) {
|
|
case PROP_DAEMON:
|
|
g_value_set_object (value, priv->daemon);
|
|
break;
|
|
|
|
case PROP_OBJECT_PATH:
|
|
g_value_set_string (value, priv->object_path);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (port, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
pinos_server_port_set_property (GObject *_object,
|
|
guint prop_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PinosServerPort *port = PINOS_SERVER_PORT (_object);
|
|
PinosServerPortPrivate *priv = port->priv;
|
|
|
|
switch (prop_id) {
|
|
case PROP_DAEMON:
|
|
priv->daemon = g_value_dup_object (value);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (port, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
port_register_object (PinosServerPort *port)
|
|
{
|
|
PinosServerPortPrivate *priv = port->priv;
|
|
PinosObjectSkeleton *skel;
|
|
gchar *name;
|
|
PinosNode *node;
|
|
|
|
node = pinos_port_get_node (PINOS_PORT (port));
|
|
|
|
name = g_strdup_printf ("%s/port", pinos_server_node_get_object_path (PINOS_SERVER_NODE (node)));
|
|
skel = pinos_object_skeleton_new (name);
|
|
g_free (name);
|
|
|
|
pinos_object_skeleton_set_port1 (skel, priv->iface);
|
|
|
|
g_free (priv->object_path);
|
|
priv->object_path = pinos_daemon_export_uniquely (priv->daemon,
|
|
G_DBUS_OBJECT_SKELETON (skel));
|
|
g_object_unref (skel);
|
|
g_debug ("server-port %p: register object %s", port, priv->object_path);
|
|
|
|
return;
|
|
}
|
|
|
|
static void
|
|
port_unregister_object (PinosServerPort *port)
|
|
{
|
|
PinosServerPortPrivate *priv = port->priv;
|
|
|
|
g_debug ("server-port %p: unregister object %s", port, priv->object_path);
|
|
pinos_daemon_unexport (priv->daemon, priv->object_path);
|
|
}
|
|
|
|
static void
|
|
on_property_notify (GObject *obj,
|
|
GParamSpec *pspec,
|
|
gpointer user_data)
|
|
{
|
|
PinosPort *port = PINOS_PORT (obj);
|
|
PinosServerPortPrivate *priv = PINOS_SERVER_PORT (port)->priv;
|
|
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "node") == 0) {
|
|
PinosServerNode *node = PINOS_SERVER_NODE (pinos_port_get_node (port));
|
|
pinos_port1_set_node (priv->iface, pinos_server_node_get_object_path (node));
|
|
}
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "direction") == 0) {
|
|
pinos_port1_set_direction (priv->iface, pinos_port_get_direction (port));
|
|
}
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "name") == 0) {
|
|
pinos_port1_set_name (priv->iface, pinos_port_get_name (port));
|
|
}
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "properties") == 0) {
|
|
PinosProperties *props = pinos_port_get_properties (port);
|
|
pinos_port1_set_properties (priv->iface, props ? pinos_properties_to_variant (props) : NULL);
|
|
}
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "possible-formats") == 0) {
|
|
GBytes *bytes = pinos_port_get_possible_formats (port);
|
|
pinos_port1_set_possible_formats (priv->iface, bytes ? g_bytes_get_data (bytes, NULL) : NULL);
|
|
}
|
|
if (pspec == NULL || strcmp (g_param_spec_get_name (pspec), "format") == 0) {
|
|
GBytes *bytes = pinos_port_get_format (port);
|
|
pinos_port1_set_format (priv->iface, bytes ? g_bytes_get_data (bytes, NULL) : NULL);
|
|
}
|
|
}
|
|
|
|
static void
|
|
pinos_server_port_constructed (GObject * object)
|
|
{
|
|
PinosServerPort *port = PINOS_SERVER_PORT (object);
|
|
|
|
g_debug ("server-port %p: constructed", port);
|
|
|
|
g_signal_connect (port, "notify", (GCallback) on_property_notify, port);
|
|
G_OBJECT_CLASS (pinos_server_port_parent_class)->constructed (object);
|
|
|
|
port_register_object (port);
|
|
}
|
|
|
|
static void
|
|
pinos_server_port_dispose (GObject * object)
|
|
{
|
|
PinosServerPort *port = PINOS_SERVER_PORT (object);
|
|
|
|
g_debug ("server-port %p: dispose", port);
|
|
port_unregister_object (port);
|
|
|
|
G_OBJECT_CLASS (pinos_server_port_parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
pinos_server_port_finalize (GObject * object)
|
|
{
|
|
PinosServerPort *port = PINOS_SERVER_PORT (object);
|
|
PinosServerPortPrivate *priv = port->priv;
|
|
|
|
g_debug ("server-port %p: finalize", port);
|
|
g_free (priv->object_path);
|
|
g_clear_object (&priv->iface);
|
|
g_clear_object (&priv->daemon);
|
|
|
|
G_OBJECT_CLASS (pinos_server_port_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
pinos_server_port_class_init (PinosServerPortClass * klass)
|
|
{
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
//PinosPortClass *port_class = PINOS_PORT_CLASS (klass);
|
|
|
|
g_type_class_add_private (klass, sizeof (PinosServerPortPrivate));
|
|
|
|
gobject_class->constructed = pinos_server_port_constructed;
|
|
gobject_class->dispose = pinos_server_port_dispose;
|
|
gobject_class->finalize = pinos_server_port_finalize;
|
|
gobject_class->set_property = pinos_server_port_set_property;
|
|
gobject_class->get_property = pinos_server_port_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_OBJECT_PATH,
|
|
g_param_spec_string ("object-path",
|
|
"Object Path",
|
|
"The object path",
|
|
NULL,
|
|
G_PARAM_READABLE |
|
|
G_PARAM_STATIC_STRINGS));
|
|
}
|
|
|
|
static void
|
|
pinos_server_port_init (PinosServerPort * port)
|
|
{
|
|
PinosServerPortPrivate *priv = port->priv = PINOS_SERVER_PORT_GET_PRIVATE (port);
|
|
|
|
g_debug ("server-port %p: new", port);
|
|
priv->iface = pinos_port1_skeleton_new ();
|
|
g_signal_connect (priv->iface, "handle-remove",
|
|
(GCallback) handle_remove,
|
|
port);
|
|
|
|
}
|