2009-07-21 00:04:52 +03:00
|
|
|
/***
|
|
|
|
|
This file is part of PulseAudio.
|
|
|
|
|
|
|
|
|
|
Copyright 2009 Tanu Kaskinen
|
2009-08-15 16:55:29 +03:00
|
|
|
Copyright 2009 Vincent Filali-Ansary <filali.v@azurdigitalnetworks.net>
|
2009-07-21 00:04:52 +03:00
|
|
|
|
|
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
PulseAudio 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
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
along with PulseAudio; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-08-15 16:55:29 +03:00
|
|
|
#include <dbus/dbus.h>
|
|
|
|
|
|
2009-07-21 00:04:52 +03:00
|
|
|
#include <pulsecore/core-util.h>
|
2009-08-15 16:55:29 +03:00
|
|
|
#include <pulsecore/dbus-util.h>
|
2009-08-09 08:37:33 +03:00
|
|
|
#include <pulsecore/protocol-dbus.h>
|
2009-07-21 00:04:52 +03:00
|
|
|
|
|
|
|
|
#include "iface-client.h"
|
|
|
|
|
|
|
|
|
|
#define OBJECT_NAME "client"
|
|
|
|
|
|
|
|
|
|
struct pa_dbusiface_client {
|
2009-08-15 16:55:29 +03:00
|
|
|
pa_dbusiface_core *core;
|
|
|
|
|
|
2009-07-21 00:04:52 +03:00
|
|
|
pa_client *client;
|
|
|
|
|
char *path;
|
2009-08-26 14:20:26 +03:00
|
|
|
pa_proplist *proplist;
|
2009-08-15 16:55:29 +03:00
|
|
|
|
|
|
|
|
pa_dbus_protocol *dbus_protocol;
|
2009-08-26 14:20:26 +03:00
|
|
|
pa_subscription *subscription;
|
2009-08-15 16:55:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void handle_get_index(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
|
|
|
|
static void handle_get_driver(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
|
|
|
|
static void handle_get_owner_module(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
|
|
|
|
static void handle_get_playback_streams(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
|
|
|
|
static void handle_get_record_streams(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
|
|
|
|
static void handle_get_property_list(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
|
|
|
|
|
|
|
|
|
static void handle_get_all(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
|
|
|
|
|
2009-08-26 14:20:26 +03:00
|
|
|
static void handle_kill(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
2009-08-15 16:55:29 +03:00
|
|
|
static void handle_update_properties(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
2009-08-26 14:20:26 +03:00
|
|
|
static void handle_remove_properties(DBusConnection *conn, DBusMessage *msg, void *userdata);
|
2009-08-15 16:55:29 +03:00
|
|
|
|
|
|
|
|
enum property_handler_index {
|
|
|
|
|
PROPERTY_HANDLER_INDEX,
|
|
|
|
|
PROPERTY_HANDLER_DRIVER,
|
|
|
|
|
PROPERTY_HANDLER_OWNER_MODULE,
|
|
|
|
|
PROPERTY_HANDLER_PLAYBACK_STREAMS,
|
|
|
|
|
PROPERTY_HANDLER_RECORD_STREAMS,
|
|
|
|
|
PROPERTY_HANDLER_PROPERTY_LIST,
|
|
|
|
|
PROPERTY_HANDLER_MAX
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static pa_dbus_property_handler property_handlers[PROPERTY_HANDLER_MAX] = {
|
|
|
|
|
[PROPERTY_HANDLER_INDEX] = { .property_name = "Index", .type = "u", .get_cb = handle_get_index, .set_cb = NULL },
|
|
|
|
|
[PROPERTY_HANDLER_DRIVER] = { .property_name = "Driver", .type = "s", .get_cb = handle_get_driver, .set_cb = NULL },
|
|
|
|
|
[PROPERTY_HANDLER_OWNER_MODULE] = { .property_name = "OwnerModule", .type = "o", .get_cb = handle_get_owner_module, .set_cb = NULL },
|
|
|
|
|
[PROPERTY_HANDLER_PLAYBACK_STREAMS] = { .property_name = "PlaybackStreams", .type = "ao", .get_cb = handle_get_playback_streams, .set_cb = NULL },
|
|
|
|
|
[PROPERTY_HANDLER_RECORD_STREAMS] = { .property_name = "RecordStreams", .type = "ao", .get_cb = handle_get_record_streams, .set_cb = NULL },
|
|
|
|
|
[PROPERTY_HANDLER_PROPERTY_LIST] = { .property_name = "PropertyList", .type = "a{say}", .get_cb = handle_get_property_list, .set_cb = NULL }
|
|
|
|
|
};
|
|
|
|
|
|
2009-08-26 14:20:26 +03:00
|
|
|
enum method_handler_index {
|
2009-08-15 16:55:29 +03:00
|
|
|
METHOD_HANDLER_KILL,
|
|
|
|
|
METHOD_HANDLER_UPDATE_PROPERTIES,
|
|
|
|
|
METHOD_HANDLER_REMOVE_PROPERTIES,
|
|
|
|
|
METHOD_HANDLER_MAX
|
2009-07-21 00:04:52 +03:00
|
|
|
};
|
|
|
|
|
|
2009-08-15 16:55:29 +03:00
|
|
|
static pa_dbus_arg_info update_properties_args[] = { { "property_list", "a{say}", "in" }, { "update_mode", "u", "in" } };
|
2009-08-26 14:20:26 +03:00
|
|
|
static pa_dbus_arg_info remove_properties_args[] = { { "keys", "as", "in" } };
|
2009-08-15 16:55:29 +03:00
|
|
|
|
|
|
|
|
static pa_dbus_method_handler method_handlers[METHOD_HANDLER_MAX] = {
|
|
|
|
|
[METHOD_HANDLER_KILL] = {
|
|
|
|
|
.method_name = "Kill",
|
|
|
|
|
.arguments = NULL,
|
|
|
|
|
.n_arguments = 0,
|
|
|
|
|
.receive_cb = handle_kill },
|
|
|
|
|
[METHOD_HANDLER_UPDATE_PROPERTIES] = {
|
|
|
|
|
.method_name = "UpdateProperties",
|
2009-08-26 14:20:26 +03:00
|
|
|
.arguments = update_properties_args,
|
2009-08-15 16:55:29 +03:00
|
|
|
.n_arguments = sizeof(update_properties_args) / sizeof(pa_dbus_arg_info),
|
|
|
|
|
.receive_cb = handle_update_properties },
|
|
|
|
|
[METHOD_HANDLER_REMOVE_PROPERTIES] = {
|
|
|
|
|
.method_name = "RemoveProperties",
|
2009-08-26 14:20:26 +03:00
|
|
|
.arguments = remove_properties_args,
|
2009-08-15 16:55:29 +03:00
|
|
|
.n_arguments = sizeof(update_properties_args) / sizeof(pa_dbus_arg_info),
|
2009-08-26 14:20:26 +03:00
|
|
|
.receive_cb = handle_remove_properties }
|
2009-08-15 16:55:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum signal_index {
|
|
|
|
|
SIGNAL_PROPERTY_LIST_UPDATED,
|
|
|
|
|
SIGNAL_CLIENT_EVENT,
|
|
|
|
|
SIGNAL_MAX
|
|
|
|
|
};
|
|
|
|
|
|
2009-08-26 14:20:26 +03:00
|
|
|
static pa_dbus_arg_info property_list_updated_args[] = { { "property_list", "a{say}", NULL } };
|
|
|
|
|
static pa_dbus_arg_info client_event_args[] = { { "name", "s", NULL },
|
|
|
|
|
{ "property_list", "a{say}", NULL } };
|
2009-08-15 16:55:29 +03:00
|
|
|
|
|
|
|
|
static pa_dbus_signal_info signals[SIGNAL_MAX] = {
|
2009-08-26 14:20:26 +03:00
|
|
|
[SIGNAL_PROPERTY_LIST_UPDATED] = { .name = "PropertyListUpdated", .arguments = property_list_updated_args, .n_arguments = 1 },
|
|
|
|
|
/* ClientEvent is sent from module-dbus-protocol.c. */
|
|
|
|
|
[SIGNAL_CLIENT_EVENT] = { .name = "ClientEvent", .arguments = client_event_args, .n_arguments = 1 }
|
|
|
|
|
};
|
2009-08-15 16:55:29 +03:00
|
|
|
|
|
|
|
|
static pa_dbus_interface_info client_interface_info = {
|
2009-08-15 17:08:21 +03:00
|
|
|
.name = PA_DBUSIFACE_CLIENT_INTERFACE,
|
2009-08-26 14:20:26 +03:00
|
|
|
.method_handlers = method_handlers,
|
|
|
|
|
.n_method_handlers = METHOD_HANDLER_MAX,
|
2009-08-15 16:55:29 +03:00
|
|
|
.property_handlers = property_handlers,
|
|
|
|
|
.n_property_handlers = PROPERTY_HANDLER_MAX,
|
|
|
|
|
.get_all_properties_cb = handle_get_all,
|
2009-08-26 14:20:26 +03:00
|
|
|
.signals = signals,
|
|
|
|
|
.n_signals = SIGNAL_MAX
|
2009-08-15 16:55:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void handle_get_index(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
2009-08-16 19:39:39 +03:00
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
dbus_uint32_t idx = 0;
|
2009-08-15 16:55:29 +03:00
|
|
|
|
2009-08-16 19:39:39 +03:00
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
2009-08-15 16:55:29 +03:00
|
|
|
|
2009-08-16 19:39:39 +03:00
|
|
|
idx = c->client->index;
|
2009-08-15 16:55:29 +03:00
|
|
|
|
2009-08-16 19:39:39 +03:00
|
|
|
pa_dbus_send_basic_variant_reply(conn, msg, DBUS_TYPE_UINT32, &idx);
|
2009-08-15 16:55:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_get_driver(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
pa_dbus_send_basic_variant_reply(conn, msg, DBUS_TYPE_STRING, &c->client->driver);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_get_owner_module(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
const char *owner_module = NULL;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
if (!c->client->module) {
|
|
|
|
|
pa_dbus_send_error(conn, msg, PA_DBUS_ERROR_NO_SUCH_PROPERTY, "Client %d doesn't have an owner module.", c->client->index);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
owner_module = pa_dbusiface_core_get_module_path(c->core, c->client->module);
|
|
|
|
|
|
|
|
|
|
pa_dbus_send_basic_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, &owner_module);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The caller frees the array, but not the strings. */
|
|
|
|
|
static const char **get_playback_streams(pa_dbusiface_client *c, unsigned *n) {
|
|
|
|
|
const char **playback_streams = NULL;
|
|
|
|
|
unsigned i = 0;
|
|
|
|
|
uint32_t idx = 0;
|
|
|
|
|
pa_sink_input *sink_input = NULL;
|
|
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(n);
|
|
|
|
|
|
|
|
|
|
*n = pa_idxset_size(c->client->sink_inputs);
|
|
|
|
|
|
|
|
|
|
if (*n == 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
playback_streams = pa_xnew(const char *, *n);
|
|
|
|
|
|
|
|
|
|
PA_IDXSET_FOREACH(sink_input, c->client->sink_inputs, idx)
|
|
|
|
|
playback_streams[i++] = pa_dbusiface_core_get_playback_stream_path(c->core, sink_input);
|
|
|
|
|
|
|
|
|
|
return playback_streams;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_get_playback_streams(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
const char **playback_streams = NULL;
|
|
|
|
|
unsigned n_playback_streams = 0;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
playback_streams = get_playback_streams(c, &n_playback_streams);
|
|
|
|
|
|
|
|
|
|
pa_dbus_send_basic_array_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, playback_streams, n_playback_streams);
|
|
|
|
|
|
|
|
|
|
pa_xfree(playback_streams);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The caller frees the array, but not the strings. */
|
|
|
|
|
static const char **get_record_streams(pa_dbusiface_client *c, unsigned *n) {
|
|
|
|
|
const char **record_streams = NULL;
|
|
|
|
|
unsigned i = 0;
|
|
|
|
|
uint32_t idx = 0;
|
|
|
|
|
pa_source_output *source_output = NULL;
|
|
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(n);
|
|
|
|
|
|
|
|
|
|
*n = pa_idxset_size(c->client->source_outputs);
|
|
|
|
|
|
|
|
|
|
if (*n == 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
record_streams = pa_xnew(const char *, *n);
|
|
|
|
|
|
|
|
|
|
PA_IDXSET_FOREACH(source_output, c->client->source_outputs, idx)
|
|
|
|
|
record_streams[i++] = pa_dbusiface_core_get_record_stream_path(c->core, source_output);
|
|
|
|
|
|
|
|
|
|
return record_streams;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_get_record_streams(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
const char **record_streams = NULL;
|
|
|
|
|
unsigned n_record_streams = 0;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
record_streams = get_record_streams(c, &n_record_streams);
|
|
|
|
|
|
|
|
|
|
pa_dbus_send_basic_array_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, record_streams, n_record_streams);
|
|
|
|
|
|
|
|
|
|
pa_xfree(record_streams);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_get_property_list(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
pa_dbus_send_proplist_variant_reply(conn, msg, c->client->proplist);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_get_all(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
DBusMessage *reply = NULL;
|
|
|
|
|
DBusMessageIter msg_iter;
|
|
|
|
|
DBusMessageIter dict_iter;
|
|
|
|
|
dbus_uint32_t idx = 0;
|
|
|
|
|
const char *owner_module = NULL;
|
|
|
|
|
const char **playback_streams = NULL;
|
|
|
|
|
unsigned n_playback_streams = 0;
|
|
|
|
|
const char **record_streams = NULL;
|
|
|
|
|
unsigned n_record_streams = 0;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
idx = c->client->index;
|
|
|
|
|
if (c->client->module)
|
|
|
|
|
owner_module = pa_dbusiface_core_get_module_path(c->core, c->client->module);
|
|
|
|
|
playback_streams = get_playback_streams(c, &n_playback_streams);
|
|
|
|
|
record_streams = get_record_streams(c, &n_record_streams);
|
|
|
|
|
|
|
|
|
|
pa_assert_se((reply = dbus_message_new_method_return(msg)));
|
|
|
|
|
|
|
|
|
|
dbus_message_iter_init_append(reply, &msg_iter);
|
|
|
|
|
pa_assert_se(dbus_message_iter_open_container(&msg_iter, DBUS_TYPE_ARRAY, "{sv}", &dict_iter));
|
|
|
|
|
|
|
|
|
|
pa_dbus_append_basic_variant_dict_entry(&dict_iter, property_handlers[PROPERTY_HANDLER_INDEX].property_name, DBUS_TYPE_UINT32, &idx);
|
|
|
|
|
pa_dbus_append_basic_variant_dict_entry(&dict_iter, property_handlers[PROPERTY_HANDLER_DRIVER].property_name, DBUS_TYPE_STRING, &c->client->driver);
|
|
|
|
|
|
|
|
|
|
if (owner_module)
|
|
|
|
|
pa_dbus_append_basic_variant_dict_entry(&dict_iter, property_handlers[PROPERTY_HANDLER_OWNER_MODULE].property_name, DBUS_TYPE_OBJECT_PATH, &owner_module);
|
|
|
|
|
|
|
|
|
|
pa_dbus_append_basic_array_variant_dict_entry(&dict_iter, property_handlers[PROPERTY_HANDLER_PLAYBACK_STREAMS].property_name, DBUS_TYPE_OBJECT_PATH, playback_streams, n_playback_streams);
|
|
|
|
|
pa_dbus_append_basic_array_variant_dict_entry(&dict_iter, property_handlers[PROPERTY_HANDLER_RECORD_STREAMS].property_name, DBUS_TYPE_OBJECT_PATH, record_streams, n_record_streams);
|
|
|
|
|
pa_dbus_append_proplist_variant_dict_entry(&dict_iter, property_handlers[PROPERTY_HANDLER_PROPERTY_LIST].property_name, c->client->proplist);
|
|
|
|
|
|
|
|
|
|
pa_assert_se(dbus_message_iter_close_container(&msg_iter, &dict_iter));
|
|
|
|
|
|
|
|
|
|
pa_assert_se(dbus_connection_send(conn, reply, NULL));
|
|
|
|
|
|
|
|
|
|
dbus_message_unref(reply);
|
|
|
|
|
|
|
|
|
|
pa_xfree(playback_streams);
|
|
|
|
|
pa_xfree(record_streams);
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-26 14:20:26 +03:00
|
|
|
static void handle_kill(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
dbus_connection_ref(conn);
|
|
|
|
|
|
|
|
|
|
pa_client_kill(c->client);
|
|
|
|
|
|
|
|
|
|
pa_dbus_send_empty_reply(conn, msg);
|
|
|
|
|
|
|
|
|
|
dbus_connection_unref(conn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_update_properties(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
DBusMessageIter msg_iter;
|
|
|
|
|
pa_proplist *property_list = NULL;
|
|
|
|
|
dbus_uint32_t update_mode = 0;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
if (pa_dbus_protocol_get_client(c->dbus_protocol, conn) != c->client) {
|
|
|
|
|
pa_dbus_send_error(conn, msg, DBUS_ERROR_ACCESS_DENIED, "Client tried to modify the property list of another client.");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-30 19:52:22 +03:00
|
|
|
pa_assert_se(dbus_message_iter_init(msg, &msg_iter));
|
2009-08-26 14:20:26 +03:00
|
|
|
|
|
|
|
|
if (!(property_list = pa_dbus_get_proplist_arg(conn, msg, &msg_iter)))
|
|
|
|
|
return;
|
|
|
|
|
|
2009-08-30 19:52:22 +03:00
|
|
|
dbus_message_iter_get_basic(&msg_iter, &update_mode);
|
2009-08-26 14:20:26 +03:00
|
|
|
|
|
|
|
|
if (!(update_mode == PA_UPDATE_SET || update_mode == PA_UPDATE_MERGE || update_mode == PA_UPDATE_REPLACE)) {
|
|
|
|
|
pa_dbus_send_error(conn, msg, DBUS_ERROR_INVALID_ARGS, "Invalid update mode: %u", update_mode);
|
|
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_client_update_proplist(c->client, update_mode, property_list);
|
|
|
|
|
|
|
|
|
|
pa_dbus_send_empty_reply(conn, msg);
|
|
|
|
|
|
|
|
|
|
finish:
|
|
|
|
|
if (property_list)
|
|
|
|
|
pa_proplist_free(property_list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_remove_properties(DBusConnection *conn, DBusMessage *msg, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
char **keys = NULL;
|
|
|
|
|
int n_keys = 0;
|
|
|
|
|
pa_bool_t changed = FALSE;
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
pa_assert(conn);
|
|
|
|
|
pa_assert(msg);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
if (pa_dbus_protocol_get_client(c->dbus_protocol, conn) != c->client) {
|
|
|
|
|
pa_dbus_send_error(conn, msg, DBUS_ERROR_ACCESS_DENIED, "Client tried to modify the property list of another client.");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-30 19:52:22 +03:00
|
|
|
pa_assert_se(dbus_message_get_args(msg, NULL, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING, &keys, &n_keys, DBUS_TYPE_INVALID));
|
2009-08-26 14:20:26 +03:00
|
|
|
|
|
|
|
|
for (i = 0; i < n_keys; ++i)
|
|
|
|
|
changed |= pa_proplist_unset(c->client->proplist, keys[i]) >= 0;
|
|
|
|
|
|
|
|
|
|
pa_dbus_send_empty_reply(conn, msg);
|
|
|
|
|
|
|
|
|
|
if (changed)
|
|
|
|
|
pa_subscription_post(c->client->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_CHANGE, c->client->index);
|
|
|
|
|
|
|
|
|
|
dbus_free_string_array(keys);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void subscription_cb(pa_core *core, pa_subscription_event_type_t t, uint32_t idx, void *userdata) {
|
|
|
|
|
pa_dbusiface_client *c = userdata;
|
|
|
|
|
DBusMessage *signal = NULL;
|
|
|
|
|
|
|
|
|
|
pa_assert(core);
|
|
|
|
|
pa_assert((t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) == PA_SUBSCRIPTION_EVENT_CLIENT);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
/* We can't use idx != c->client->index, because the c->client pointer may
|
|
|
|
|
* be stale at this point. */
|
|
|
|
|
if (pa_idxset_get_by_index(core->clients, idx) != c->client)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if ((t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) != PA_SUBSCRIPTION_EVENT_CHANGE)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!pa_proplist_equal(c->proplist, c->client->proplist)) {
|
|
|
|
|
DBusMessageIter msg_iter;
|
|
|
|
|
|
|
|
|
|
pa_proplist_update(c->proplist, PA_UPDATE_SET, c->client->proplist);
|
|
|
|
|
|
|
|
|
|
pa_assert_se(signal = dbus_message_new_signal(c->path,
|
|
|
|
|
PA_DBUSIFACE_CLIENT_INTERFACE,
|
|
|
|
|
signals[SIGNAL_PROPERTY_LIST_UPDATED].name));
|
|
|
|
|
dbus_message_iter_init_append(signal, &msg_iter);
|
|
|
|
|
pa_dbus_append_proplist(&msg_iter, c->proplist);
|
|
|
|
|
|
|
|
|
|
pa_dbus_protocol_send_signal(c->dbus_protocol, signal);
|
|
|
|
|
dbus_message_unref(signal);
|
|
|
|
|
signal = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-09 08:37:33 +03:00
|
|
|
pa_dbusiface_client *pa_dbusiface_client_new(pa_dbusiface_core *core, pa_client *client) {
|
2009-08-15 16:55:29 +03:00
|
|
|
pa_dbusiface_client *c = NULL;
|
2009-07-21 00:04:52 +03:00
|
|
|
|
2009-08-09 08:37:33 +03:00
|
|
|
pa_assert(core);
|
2009-07-21 00:04:52 +03:00
|
|
|
pa_assert(client);
|
|
|
|
|
|
|
|
|
|
c = pa_xnew(pa_dbusiface_client, 1);
|
2009-08-15 16:55:29 +03:00
|
|
|
c->core = core;
|
2009-07-21 00:04:52 +03:00
|
|
|
c->client = client;
|
2009-08-09 08:37:33 +03:00
|
|
|
c->path = pa_sprintf_malloc("%s/%s%u", PA_DBUS_CORE_OBJECT_PATH, OBJECT_NAME, client->index);
|
2009-08-26 14:20:26 +03:00
|
|
|
c->proplist = pa_proplist_copy(client->proplist);
|
2009-08-15 16:55:29 +03:00
|
|
|
c->dbus_protocol = pa_dbus_protocol_get(client->core);
|
2009-08-26 14:20:26 +03:00
|
|
|
c->subscription = pa_subscription_new(client->core, PA_SUBSCRIPTION_MASK_CLIENT, subscription_cb, c);
|
2009-08-15 16:55:29 +03:00
|
|
|
|
|
|
|
|
pa_assert_se(pa_dbus_protocol_add_interface(c->dbus_protocol, c->path, &client_interface_info, c) >= 0);
|
2009-07-21 00:04:52 +03:00
|
|
|
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_dbusiface_client_free(pa_dbusiface_client *c) {
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
2009-08-15 16:55:29 +03:00
|
|
|
pa_assert_se(pa_dbus_protocol_remove_interface(c->dbus_protocol, c->path, client_interface_info.name) >= 0);
|
|
|
|
|
|
|
|
|
|
pa_dbus_protocol_unref(c->dbus_protocol);
|
|
|
|
|
|
2009-07-21 00:04:52 +03:00
|
|
|
pa_xfree(c->path);
|
|
|
|
|
pa_xfree(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *pa_dbusiface_client_get_path(pa_dbusiface_client *c) {
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
return c->path;
|
|
|
|
|
}
|