mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
Rework dbus handling
Remove the Daemon object and remove all dbus code from the main objects. We can use the signals in a separate module to create and destroy the DBus interfaces. Move the dbus protocol in a module Move the autolink policy to a module
This commit is contained in:
parent
b9e2b1c0e3
commit
dfbfb4c9ee
28 changed files with 1122 additions and 1007 deletions
681
pinos/modules/module-protocol-dbus.c
Normal file
681
pinos/modules/module-protocol-dbus.c
Normal file
|
|
@ -0,0 +1,681 @@
|
|||
/* 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 <stdio.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <gio/gio.h>
|
||||
#include <gio/gunixfdlist.h>
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "pinos/client/pinos.h"
|
||||
#include "pinos/client/log.h"
|
||||
|
||||
#include "pinos/server/core.h"
|
||||
#include "pinos/server/node.h"
|
||||
#include "pinos/server/module.h"
|
||||
#include "pinos/server/client-node.h"
|
||||
#include "pinos/server/client.h"
|
||||
#include "pinos/server/link.h"
|
||||
#include "pinos/server/node-factory.h"
|
||||
#include "pinos/server/data-loop.h"
|
||||
#include "pinos/server/main-loop.h"
|
||||
|
||||
#include "pinos/dbus/org-pinos.h"
|
||||
|
||||
#define PINOS_PROTOCOL_DBUS_URI "http://pinos.org/ns/protocol-dbus"
|
||||
#define PINOS_PROTOCOL_DBUS_PREFIX PINOS_PROTOCOL_DBUS_URI "#"
|
||||
|
||||
typedef struct _PinosProtocolDBus PinosProtocolDBus;
|
||||
|
||||
struct _PinosProtocolDBus {
|
||||
PinosCore *core;
|
||||
SpaList link;
|
||||
PinosGlobal *global;
|
||||
|
||||
PinosProperties *properties;
|
||||
|
||||
PINOS_SIGNAL (destroy_signal, (PinosListener *listener,
|
||||
PinosProtocolDBus *proto));
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
PinosProtocolDBus this;
|
||||
|
||||
struct {
|
||||
uint32_t protocol_dbus;
|
||||
} uri;
|
||||
|
||||
GDBusConnection *connection;
|
||||
GDBusObjectManagerServer *server_manager;
|
||||
|
||||
SpaList client_list;
|
||||
SpaList object_list;
|
||||
|
||||
PinosListener global_added;
|
||||
PinosListener global_removed;
|
||||
PinosListener node_state_changed;
|
||||
} PinosProtocolDBusImpl;
|
||||
|
||||
typedef struct {
|
||||
PinosProtocolDBusImpl *impl;
|
||||
SpaList link;
|
||||
void *object;
|
||||
void *iface;
|
||||
PinosObjectSkeleton *skel;
|
||||
const gchar *object_path;
|
||||
PinosDestroy destroy;
|
||||
} PinosProtocolDBusObject;
|
||||
|
||||
typedef struct {
|
||||
PinosProtocolDBusObject parent;
|
||||
SpaList link;
|
||||
guint id;
|
||||
} PinosProtocolDBusServer;
|
||||
|
||||
typedef struct {
|
||||
PinosProtocolDBusObject parent;
|
||||
SpaList link;
|
||||
gchar *sender;
|
||||
guint id;
|
||||
} PinosProtocolDBusClient;
|
||||
|
||||
typedef struct {
|
||||
PinosProtocolDBusObject parent;
|
||||
PinosListener state_changed;
|
||||
} PinosProtocolDBusNode;
|
||||
|
||||
static void
|
||||
object_export (PinosProtocolDBusObject *this)
|
||||
{
|
||||
g_dbus_object_manager_server_export_uniquely (this->impl->server_manager,
|
||||
G_DBUS_OBJECT_SKELETON (this->skel));
|
||||
this->object_path = g_dbus_object_get_object_path (G_DBUS_OBJECT (this->skel));
|
||||
pinos_log_debug ("protocol-dbus %p: export object %s", this->impl, this->object_path);
|
||||
}
|
||||
|
||||
static void
|
||||
object_unexport (PinosProtocolDBusObject *this)
|
||||
{
|
||||
if (this->object_path)
|
||||
g_dbus_object_manager_server_unexport (this->impl->server_manager, this->object_path);
|
||||
}
|
||||
|
||||
static void *
|
||||
object_new (size_t size,
|
||||
PinosProtocolDBusImpl *impl,
|
||||
void *object,
|
||||
void *iface,
|
||||
PinosObjectSkeleton *skel,
|
||||
bool export,
|
||||
PinosDestroy destroy)
|
||||
{
|
||||
PinosProtocolDBusObject *this;
|
||||
|
||||
this = calloc (1, size);
|
||||
this->impl = impl;
|
||||
this->object = object;
|
||||
this->iface = iface;
|
||||
this->skel = skel;
|
||||
this->destroy = destroy;
|
||||
|
||||
spa_list_insert (impl->object_list.prev, &this->link);
|
||||
|
||||
if (export)
|
||||
object_export (this);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
static void
|
||||
object_destroy (PinosProtocolDBusObject *this)
|
||||
{
|
||||
spa_list_remove (&this->link);
|
||||
|
||||
if (this->destroy)
|
||||
this->destroy (this);
|
||||
|
||||
object_unexport (this);
|
||||
g_clear_object (&this->iface);
|
||||
g_clear_object (&this->skel);
|
||||
free (this);
|
||||
}
|
||||
|
||||
static PinosProtocolDBusObject *
|
||||
find_object (PinosProtocolDBusImpl *impl,
|
||||
void *object)
|
||||
{
|
||||
PinosProtocolDBusObject *obj;
|
||||
spa_list_for_each (obj, &impl->object_list, link) {
|
||||
if (obj->object == object)
|
||||
return obj;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
client_name_appeared_handler (GDBusConnection *connection,
|
||||
const gchar *name,
|
||||
const gchar *name_owner,
|
||||
gpointer user_data)
|
||||
{
|
||||
PinosProtocolDBusClient *this = user_data;
|
||||
pinos_log_debug ("client %p: appeared %s %s", this, name, name_owner);
|
||||
object_export (&this->parent);
|
||||
}
|
||||
|
||||
static void
|
||||
client_destroy (PinosProtocolDBusClient *this)
|
||||
{
|
||||
spa_list_remove (&this->link);
|
||||
free (this->sender);
|
||||
}
|
||||
|
||||
static void
|
||||
client_name_vanished_handler (GDBusConnection *connection,
|
||||
const gchar *name,
|
||||
gpointer user_data)
|
||||
{
|
||||
PinosProtocolDBusClient *this = user_data;
|
||||
pinos_log_debug ("client %p: vanished %s", this, name);
|
||||
g_bus_unwatch_name (this->id);
|
||||
/* destroying the client here will trigger the global_removed, which
|
||||
* will then destroy our wrapper */
|
||||
pinos_client_destroy (this->parent.object);
|
||||
}
|
||||
|
||||
|
||||
static PinosProtocolDBusClient *
|
||||
client_new (PinosProtocolDBusImpl *impl,
|
||||
const char *sender)
|
||||
{
|
||||
PinosProtocolDBus *proto = &impl->this;
|
||||
PinosProtocolDBusClient *this;
|
||||
PinosClient *client;
|
||||
PinosObjectSkeleton *skel;
|
||||
PinosClient1 *iface;
|
||||
|
||||
client = pinos_client_new (proto->core, NULL);
|
||||
iface = pinos_client1_skeleton_new ();
|
||||
skel = pinos_object_skeleton_new (PINOS_DBUS_OBJECT_CLIENT);
|
||||
pinos_object_skeleton_set_client1 (skel, iface);
|
||||
|
||||
this = object_new (sizeof (PinosProtocolDBusClient),
|
||||
impl,
|
||||
client,
|
||||
iface,
|
||||
skel,
|
||||
false,
|
||||
(PinosDestroy) client_destroy);
|
||||
this->sender = strdup (sender);
|
||||
this->id = g_bus_watch_name_on_connection (impl->connection,
|
||||
this->sender,
|
||||
G_BUS_NAME_WATCHER_FLAGS_NONE,
|
||||
client_name_appeared_handler,
|
||||
client_name_vanished_handler,
|
||||
this,
|
||||
NULL);
|
||||
|
||||
spa_list_insert (impl->client_list.prev, &this->link);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
static PinosClient *
|
||||
sender_get_client (PinosProtocolDBus *proto,
|
||||
const char *sender,
|
||||
bool create)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = SPA_CONTAINER_OF (proto, PinosProtocolDBusImpl, this);
|
||||
PinosProtocolDBusClient *client;
|
||||
|
||||
spa_list_for_each (client, &impl->client_list, link) {
|
||||
if (strcmp (client->sender, sender) == 0)
|
||||
return client->parent.object;
|
||||
}
|
||||
if (!create)
|
||||
return NULL;
|
||||
|
||||
client = client_new (impl, sender);
|
||||
|
||||
return client->parent.object;
|
||||
}
|
||||
|
||||
static PinosNodeFactory *
|
||||
find_factory_by_name (PinosProtocolDBus *proto,
|
||||
const char *name)
|
||||
{
|
||||
PinosNodeFactory *factory;
|
||||
|
||||
spa_list_for_each (factory, &proto->core->node_factory_list, link) {
|
||||
if (strcmp (factory->name, name) == 0)
|
||||
return factory;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static bool
|
||||
handle_create_node (PinosDaemon1 *interface,
|
||||
GDBusMethodInvocation *invocation,
|
||||
const char *arg_factory_name,
|
||||
const char *arg_name,
|
||||
GVariant *arg_properties,
|
||||
gpointer user_data)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = user_data;
|
||||
PinosProtocolDBus *this = &impl->this;
|
||||
PinosNodeFactory *factory;
|
||||
PinosNode *node;
|
||||
PinosClient *client;
|
||||
const char *sender, *object_path;
|
||||
PinosProperties *props;
|
||||
PinosProtocolDBusObject *object;
|
||||
|
||||
sender = g_dbus_method_invocation_get_sender (invocation);
|
||||
client = sender_get_client (this, sender, TRUE);
|
||||
|
||||
pinos_log_debug ("protocol-dbus %p: create node: %s", impl, sender);
|
||||
|
||||
props = pinos_properties_from_variant (arg_properties);
|
||||
|
||||
factory = find_factory_by_name (this, arg_factory_name);
|
||||
if (factory == NULL)
|
||||
goto no_factory;
|
||||
|
||||
node = pinos_node_factory_create_node (factory,
|
||||
client,
|
||||
arg_name,
|
||||
props);
|
||||
pinos_properties_free (props);
|
||||
|
||||
if (node == NULL)
|
||||
goto no_node;
|
||||
|
||||
object = find_object (impl, node);
|
||||
if (object == NULL)
|
||||
goto object_failed;
|
||||
|
||||
pinos_client_add_resource (client,
|
||||
this->core->registry.uri.node,
|
||||
node,
|
||||
(PinosDestroy) pinos_node_destroy);
|
||||
|
||||
object_path = object->object_path;
|
||||
pinos_log_debug ("protocol-dbus %p: added node %p with path %s", impl, node, object_path);
|
||||
g_dbus_method_invocation_return_value (invocation,
|
||||
g_variant_new ("(o)", object_path));
|
||||
return TRUE;
|
||||
|
||||
/* ERRORS */
|
||||
no_factory:
|
||||
{
|
||||
pinos_log_debug ("protocol-dbus %p: could not find factory named %s", impl, arg_factory_name);
|
||||
g_dbus_method_invocation_return_dbus_error (invocation,
|
||||
"org.pinos.Error", "can't find factory");
|
||||
return TRUE;
|
||||
}
|
||||
no_node:
|
||||
{
|
||||
pinos_log_debug ("protocol-dbus %p: could not create node named %s from factory %s", impl, arg_name, arg_factory_name);
|
||||
g_dbus_method_invocation_return_dbus_error (invocation,
|
||||
"org.pinos.Error", "can't create node");
|
||||
return TRUE;
|
||||
}
|
||||
object_failed:
|
||||
{
|
||||
pinos_log_debug ("protocol-dbus %p: could not create dbus object", impl);
|
||||
g_dbus_method_invocation_return_dbus_error (invocation,
|
||||
"org.pinos.Error", "can't create object");
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
on_node_state_changed (PinosListener *listener,
|
||||
PinosNode *node,
|
||||
PinosNodeState old,
|
||||
PinosNodeState state)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = SPA_CONTAINER_OF (listener, PinosProtocolDBusImpl, node_state_changed);
|
||||
PinosProtocolDBusObject *object;
|
||||
|
||||
pinos_log_debug ("protocol-dbus %p: node %p state change %s -> %s", impl, node,
|
||||
pinos_node_state_as_string (old),
|
||||
pinos_node_state_as_string (state));
|
||||
|
||||
if ((object = find_object (impl, node))) {
|
||||
pinos_node1_set_state (object->iface, node->state);
|
||||
}
|
||||
}
|
||||
|
||||
static bool
|
||||
handle_create_client_node (PinosDaemon1 *interface,
|
||||
GDBusMethodInvocation *invocation,
|
||||
const char *arg_name,
|
||||
GVariant *arg_properties,
|
||||
gpointer user_data)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = user_data;
|
||||
PinosProtocolDBus *this = &impl->this;
|
||||
PinosClientNode *node;
|
||||
PinosClient *client;
|
||||
SpaResult res;
|
||||
const char *sender, *object_path;
|
||||
PinosProperties *props;
|
||||
GError *error = NULL;
|
||||
GUnixFDList *fdlist;
|
||||
int ctrl_fd, data_fd;
|
||||
int ctrl_idx, data_idx;
|
||||
PinosProtocolDBusObject *object;
|
||||
|
||||
sender = g_dbus_method_invocation_get_sender (invocation);
|
||||
client = sender_get_client (this, sender, TRUE);
|
||||
|
||||
pinos_log_debug ("protocol-dbus %p: create client-node: %s", impl, sender);
|
||||
props = pinos_properties_from_variant (arg_properties);
|
||||
|
||||
node = pinos_client_node_new (this->core,
|
||||
arg_name,
|
||||
props);
|
||||
|
||||
object = find_object (impl, node->node);
|
||||
if (object == NULL)
|
||||
goto object_failed;
|
||||
|
||||
if ((res = pinos_client_node_get_ctrl_socket (node, &ctrl_fd)) < 0)
|
||||
goto no_socket;
|
||||
|
||||
if ((res = pinos_client_node_get_data_socket (node, &data_fd)) < 0)
|
||||
goto no_socket;
|
||||
|
||||
pinos_client_add_resource (client,
|
||||
this->core->registry.uri.client_node,
|
||||
node,
|
||||
(PinosDestroy) pinos_client_node_destroy);
|
||||
|
||||
|
||||
|
||||
object_path = object->object_path;
|
||||
pinos_log_debug ("protocol-dbus %p: add client-node %p, %s", impl, node, object_path);
|
||||
|
||||
fdlist = g_unix_fd_list_new ();
|
||||
ctrl_idx = g_unix_fd_list_append (fdlist, ctrl_fd, &error);
|
||||
data_idx = g_unix_fd_list_append (fdlist, data_fd, &error);
|
||||
|
||||
g_dbus_method_invocation_return_value_with_unix_fd_list (invocation,
|
||||
g_variant_new ("(ohh)", object_path, ctrl_idx, data_idx), fdlist);
|
||||
g_object_unref (fdlist);
|
||||
|
||||
return TRUE;
|
||||
|
||||
object_failed:
|
||||
{
|
||||
pinos_log_debug ("protocol-dbus %p: could not create object", impl);
|
||||
goto exit_error;
|
||||
}
|
||||
no_socket:
|
||||
{
|
||||
pinos_log_debug ("protocol-dbus %p: could not create socket: %s", impl, strerror (errno));
|
||||
pinos_client_node_destroy (node);
|
||||
goto exit_error;
|
||||
}
|
||||
exit_error:
|
||||
{
|
||||
g_dbus_method_invocation_return_gerror (invocation, error);
|
||||
g_clear_error (&error);
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
bus_acquired_handler (GDBusConnection *connection,
|
||||
const char *name,
|
||||
gpointer user_data)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = user_data;
|
||||
GDBusObjectManagerServer *manager = impl->server_manager;
|
||||
|
||||
impl->connection = connection;
|
||||
g_dbus_object_manager_server_set_connection (manager, connection);
|
||||
}
|
||||
|
||||
static void
|
||||
name_acquired_handler (GDBusConnection *connection,
|
||||
const char *name,
|
||||
gpointer user_data)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
name_lost_handler (GDBusConnection *connection,
|
||||
const char *name,
|
||||
gpointer user_data)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = user_data;
|
||||
GDBusObjectManagerServer *manager = impl->server_manager;
|
||||
|
||||
g_dbus_object_manager_server_set_connection (manager, connection);
|
||||
impl->connection = connection;
|
||||
}
|
||||
|
||||
static bool
|
||||
handle_node_remove (PinosNode1 *interface,
|
||||
GDBusMethodInvocation *invocation,
|
||||
gpointer user_data)
|
||||
{
|
||||
PinosNode *this = user_data;
|
||||
|
||||
pinos_log_debug ("node %p: remove", this);
|
||||
|
||||
g_dbus_method_invocation_return_value (invocation,
|
||||
g_variant_new ("()"));
|
||||
return true;
|
||||
}
|
||||
|
||||
static void
|
||||
on_global_added (PinosListener *listener,
|
||||
PinosCore *core,
|
||||
PinosGlobal *global)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = SPA_CONTAINER_OF (listener, PinosProtocolDBusImpl, global_added);
|
||||
PinosProtocolDBus *this = &impl->this;
|
||||
PinosObjectSkeleton *skel;
|
||||
|
||||
if (global->type == this->core->registry.uri.node) {
|
||||
PinosNode1 *iface;
|
||||
PinosNode *node = global->object;
|
||||
PinosProperties *props = node->properties;
|
||||
|
||||
skel = pinos_object_skeleton_new (PINOS_DBUS_OBJECT_NODE);
|
||||
|
||||
iface = pinos_node1_skeleton_new ();
|
||||
g_signal_connect (iface, "handle-remove",
|
||||
(GCallback) handle_node_remove,
|
||||
node);
|
||||
pinos_node1_set_state (iface, node->state);
|
||||
pinos_node1_set_owner (iface, "/");
|
||||
pinos_node1_set_name (iface, node->name);
|
||||
pinos_node1_set_properties (iface, props ? pinos_properties_to_variant (props) : NULL);
|
||||
pinos_object_skeleton_set_node1 (skel, iface);
|
||||
|
||||
object_new (sizeof (PinosProtocolDBusNode),
|
||||
impl,
|
||||
node,
|
||||
iface,
|
||||
skel,
|
||||
true,
|
||||
NULL);
|
||||
}
|
||||
else if (global->type == impl->uri.protocol_dbus) {
|
||||
PinosProtocolDBus *proto = global->object;
|
||||
PinosProtocolDBusServer *server;
|
||||
PinosDaemon1 *iface;
|
||||
|
||||
iface = pinos_daemon1_skeleton_new ();
|
||||
g_signal_connect (iface, "handle-create-node", (GCallback) handle_create_node, proto);
|
||||
g_signal_connect (iface, "handle-create-client-node", (GCallback) handle_create_client_node, proto);
|
||||
|
||||
skel = pinos_object_skeleton_new (PINOS_DBUS_OBJECT_SERVER);
|
||||
|
||||
pinos_daemon1_set_user_name (iface, g_get_user_name ());
|
||||
pinos_daemon1_set_host_name (iface, g_get_host_name ());
|
||||
pinos_daemon1_set_version (iface, PACKAGE_VERSION);
|
||||
pinos_daemon1_set_name (iface, PACKAGE_NAME);
|
||||
pinos_daemon1_set_cookie (iface, g_random_int());
|
||||
pinos_daemon1_set_properties (iface, proto->properties ?
|
||||
pinos_properties_to_variant (proto->properties):
|
||||
NULL);
|
||||
pinos_object_skeleton_set_daemon1 (skel, iface);
|
||||
|
||||
server = object_new (sizeof (PinosProtocolDBusServer),
|
||||
impl,
|
||||
proto,
|
||||
iface,
|
||||
skel,
|
||||
true,
|
||||
NULL);
|
||||
server->id = g_bus_own_name (G_BUS_TYPE_SESSION,
|
||||
PINOS_DBUS_SERVICE,
|
||||
G_BUS_NAME_OWNER_FLAGS_REPLACE,
|
||||
bus_acquired_handler,
|
||||
name_acquired_handler,
|
||||
name_lost_handler,
|
||||
proto,
|
||||
NULL);
|
||||
} else if (global->type == this->core->registry.uri.link) {
|
||||
PinosLink1 *iface;
|
||||
PinosLink *link = global->object;
|
||||
PinosProtocolDBusObject *obj;
|
||||
|
||||
skel = pinos_object_skeleton_new (PINOS_DBUS_OBJECT_LINK);
|
||||
|
||||
iface = pinos_link1_skeleton_new ();
|
||||
|
||||
obj = link->output ? find_object (impl, link->output->node) : NULL;
|
||||
if (obj) {
|
||||
pinos_link1_set_output_node (iface, obj->object_path);
|
||||
pinos_link1_set_output_port (iface, link->output->port_id);
|
||||
} else {
|
||||
pinos_link1_set_output_node (iface, "/");
|
||||
pinos_link1_set_output_port (iface, SPA_ID_INVALID);
|
||||
}
|
||||
obj = link->input ? find_object (impl, link->input->node) : NULL;
|
||||
if (obj) {
|
||||
pinos_link1_set_input_node (iface, obj->object_path);
|
||||
pinos_link1_set_input_port (iface, link->input->port_id);
|
||||
} else {
|
||||
pinos_link1_set_output_node (iface, "/");
|
||||
pinos_link1_set_output_port (iface, SPA_ID_INVALID);
|
||||
}
|
||||
pinos_object_skeleton_set_link1 (skel, iface);
|
||||
|
||||
object_new (sizeof (PinosProtocolDBusObject),
|
||||
impl,
|
||||
link,
|
||||
iface,
|
||||
skel,
|
||||
true,
|
||||
NULL);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
on_global_removed (PinosListener *listener,
|
||||
PinosCore *core,
|
||||
PinosGlobal *global)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = SPA_CONTAINER_OF (listener, PinosProtocolDBusImpl, global_removed);
|
||||
PinosProtocolDBusObject *object;
|
||||
|
||||
if ((object = find_object (impl, global->object)))
|
||||
object_destroy (object);
|
||||
}
|
||||
|
||||
static PinosProtocolDBus *
|
||||
pinos_protocol_dbus_new (PinosCore *core,
|
||||
PinosProperties *properties)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl;
|
||||
PinosProtocolDBus *this;
|
||||
|
||||
impl = calloc (1, sizeof (PinosProtocolDBusImpl));
|
||||
this = &impl->this;
|
||||
pinos_log_debug ("protocol-dbus %p: new", impl);
|
||||
|
||||
this->core = core;
|
||||
this->properties = properties;
|
||||
|
||||
spa_list_init (&impl->client_list);
|
||||
spa_list_init (&impl->object_list);
|
||||
|
||||
pinos_signal_init (&this->destroy_signal);
|
||||
|
||||
pinos_signal_add (&core->global_added, &impl->global_added, on_global_added);
|
||||
pinos_signal_add (&core->global_removed, &impl->global_removed, on_global_removed);
|
||||
pinos_signal_add (&core->node_state_changed, &impl->node_state_changed, on_node_state_changed);
|
||||
|
||||
impl->server_manager = g_dbus_object_manager_server_new (PINOS_DBUS_OBJECT_PREFIX);
|
||||
|
||||
impl->uri.protocol_dbus = spa_id_map_get_id (core->registry.map, PINOS_PROTOCOL_DBUS_URI);
|
||||
|
||||
this->global = pinos_core_add_global (core,
|
||||
impl->uri.protocol_dbus,
|
||||
this);
|
||||
return this;
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void
|
||||
pinos_protocol_dbus_destroy (PinosProtocolDBus *proto)
|
||||
{
|
||||
PinosProtocolDBusImpl *impl = SPA_CONTAINER_OF (proto, PinosProtocolDBusImpl, this);
|
||||
PinosProtocolDBusObject *object, *tmp;
|
||||
|
||||
pinos_log_debug ("protocol-dbus %p: destroy", impl);
|
||||
|
||||
pinos_signal_emit (&proto->destroy_signal, proto);
|
||||
|
||||
pinos_global_destroy (proto->global);
|
||||
|
||||
spa_list_for_each_safe (object, tmp, &impl->object_list, link)
|
||||
object_destroy (object);
|
||||
|
||||
#if 0
|
||||
if (impl->id != 0)
|
||||
g_bus_unown_name (impl->id);
|
||||
#endif
|
||||
|
||||
pinos_signal_remove (&impl->global_added);
|
||||
pinos_signal_remove (&impl->global_removed);
|
||||
pinos_signal_remove (&impl->node_state_changed);
|
||||
|
||||
g_clear_object (&impl->server_manager);
|
||||
|
||||
free (impl);
|
||||
}
|
||||
#endif
|
||||
|
||||
G_MODULE_EXPORT bool
|
||||
pinos__module_init (PinosModule * module, const char * args)
|
||||
{
|
||||
pinos_protocol_dbus_new (module->core, NULL);
|
||||
return TRUE;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue