pipewire/src/modules/module-protocol-pulse/extensions/ext-device-restore.c
Peter Hutterer 52a96bb602 modules: add log topics to module-protocol-pulse
This ends up using a nested namespace: mod.protocol-pulse for the module
itself, mod.protocol-pulse.foo for the various submodules and
extensions.
2021-09-28 09:35:39 +02:00

340 lines
9.2 KiB
C

/* PipeWire
*
* Copyright © 2021 Wim Taymans
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#define EXT_DEVICE_RESTORE_VERSION 1
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <spa/utils/defs.h>
#include <spa/utils/dict.h>
#include <spa/utils/string.h>
#include <spa/utils/json.h>
#include <pipewire/log.h>
#include <pipewire/properties.h>
#include "../client.h"
#include "../collect.h"
#include "../defs.h"
#include "../extension.h"
#include "../format.h"
#include "../manager.h"
#include "../media-roles.h"
#include "../message.h"
#include "../reply.h"
#include "../volume.h"
PW_LOG_TOPIC_EXTERN(pulse_ext_dev_restore);
#undef PW_LOG_TOPIC_DEFAULT
#define PW_LOG_TOPIC_DEFAULT pulse_ext_dev_restore
#define DEVICE_TYPE_SINK 0
#define DEVICE_TYPE_SOURCE 1
static int do_extension_device_restore_test(struct client *client, uint32_t command, uint32_t tag, struct message *m)
{
struct message *reply;
reply = reply_new(client, tag);
message_put(reply,
TAG_U32, EXT_DEVICE_RESTORE_VERSION,
TAG_INVALID);
return client_queue_message(client, reply);
}
static int do_extension_device_restore_subscribe(struct client *client, uint32_t command, uint32_t tag, struct message *m)
{
return reply_simple_ack(client, tag);
}
struct format_data {
struct client *client;
struct message *reply;
};
static int do_sink_read_format(void *data, struct pw_manager_object *o)
{
struct format_data *d = data;
struct pw_manager_param *p;
struct format_info info[32];
uint32_t i, n_info = 0;
if (!pw_manager_object_is_sink(o))
return 0;
spa_list_for_each(p, &o->param_list, link) {
uint32_t index = 0;
if (p->id != SPA_PARAM_EnumFormat)
continue;
while (n_info < SPA_N_ELEMENTS(info)) {
spa_zero(info[n_info]);
if (format_info_from_param(&info[n_info], p->param, index++) < 0)
break;
if (info[n_info].encoding == ENCODING_ANY) {
format_info_clear(&info[n_info]);
continue;
}
n_info++;
}
}
message_put(d->reply,
TAG_U32, DEVICE_TYPE_SINK,
TAG_U32, o->id,
TAG_U8, n_info, /* n_formats */
TAG_INVALID);
for (i = 0; i < n_info; i++) {
message_put(d->reply,
TAG_FORMAT_INFO, &info[i],
TAG_INVALID);
format_info_clear(&info[i]);
}
return 0;
}
static int do_extension_device_restore_read_formats_all(struct client *client,
uint32_t command, uint32_t tag, struct message *m)
{
struct pw_manager *manager = client->manager;
struct format_data data;
spa_zero(data);
data.client = client;
data.reply = reply_new(client, tag);
pw_manager_for_each_object(manager, do_sink_read_format, &data);
return client_queue_message(client, data.reply);
}
static int do_extension_device_restore_read_formats(struct client *client,
uint32_t command, uint32_t tag, struct message *m)
{
struct pw_manager *manager = client->manager;
struct format_data data;
uint32_t type, sink_index;
struct selector sel;
struct pw_manager_object *o;
int res;
if ((res = message_get(m,
TAG_U32, &type,
TAG_U32, &sink_index,
TAG_INVALID)) < 0)
return -EPROTO;
if (type != DEVICE_TYPE_SINK) {
pw_log_info("Device format reading is only supported on sinks");
return -ENOTSUP;
}
spa_zero(sel);
sel.id = sink_index;
sel.type = pw_manager_object_is_sink;
o = select_object(manager, &sel);
if (o == NULL)
return -ENOENT;
spa_zero(data);
data.client = client;
data.reply = reply_new(client, tag);
do_sink_read_format(&data, o);
return client_queue_message(client, data.reply);
}
static int set_card_codecs(struct pw_manager_object *o, uint32_t id,
uint32_t device_id, uint32_t n_codecs, uint32_t *codecs)
{
char buf[1024];
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buf, sizeof(buf));
struct spa_pod_frame f[2];
struct spa_pod *param;
if (!SPA_FLAG_IS_SET(o->permissions, PW_PERM_W | PW_PERM_X))
return -EACCES;
if (o->proxy == NULL)
return -ENOENT;
spa_pod_builder_push_object(&b, &f[0],
SPA_TYPE_OBJECT_ParamRoute, SPA_PARAM_Route);
spa_pod_builder_add(&b,
SPA_PARAM_ROUTE_index, SPA_POD_Int(id),
SPA_PARAM_ROUTE_device, SPA_POD_Int(device_id),
0);
spa_pod_builder_prop(&b, SPA_PARAM_ROUTE_props, 0);
spa_pod_builder_push_object(&b, &f[1],
SPA_TYPE_OBJECT_Props, SPA_PARAM_Props);
spa_pod_builder_add(&b,
SPA_PROP_iec958Codecs, SPA_POD_Array(sizeof(uint32_t),
SPA_TYPE_Id, n_codecs, codecs), 0);
spa_pod_builder_pop(&b, &f[1]);
spa_pod_builder_prop(&b, SPA_PARAM_ROUTE_save, 0);
spa_pod_builder_bool(&b, true);
param = spa_pod_builder_pop(&b, &f[0]);
pw_device_set_param((struct pw_device*)o->proxy,
SPA_PARAM_Route, 0, param);
return 0;
}
static int set_node_codecs(struct pw_manager_object *o, uint32_t n_codecs, uint32_t *codecs)
{
char buf[1024];
struct spa_pod_builder b;
struct spa_pod *param;
if (!SPA_FLAG_IS_SET(o->permissions, PW_PERM_W | PW_PERM_X))
return -EACCES;
if (o->proxy == NULL)
return -ENOENT;
spa_pod_builder_init(&b, buf, sizeof(buf));
param = spa_pod_builder_add_object(&b,
SPA_TYPE_OBJECT_Props, SPA_PARAM_Props,
SPA_PROP_iec958Codecs, SPA_POD_Array(sizeof(uint32_t),
SPA_TYPE_Id, n_codecs, codecs));
pw_node_set_param((struct pw_node*)o->proxy,
SPA_PARAM_Props, 0, param);
return 0;
}
static int do_extension_device_restore_save_formats(struct client *client,
uint32_t command, uint32_t tag, struct message *m)
{
struct impl *impl = client->impl;
struct pw_manager *manager = client->manager;
struct selector sel;
struct pw_manager_object *o, *card = NULL;
struct pw_node_info *info;
int res;
uint32_t type, sink_index, card_id = SPA_ID_INVALID;
uint8_t i, n_formats;
uint32_t n_codecs = 0, codec, iec958codecs[32];
struct device_info dev_info;
const char *str;
if ((res = message_get(m,
TAG_U32, &type,
TAG_U32, &sink_index,
TAG_U8, &n_formats,
TAG_INVALID)) < 0)
return -EPROTO;
if (n_formats < 1)
return -EPROTO;
if (type != DEVICE_TYPE_SINK)
return -ENOTSUP;
for (i = 0; i < n_formats; ++i) {
struct format_info format;
spa_zero(format);
if (message_get(m,
TAG_FORMAT_INFO, &format,
TAG_INVALID) < 0)
return -EPROTO;
codec = format_encoding2id(format.encoding);
if (codec != SPA_ID_INVALID && n_codecs < SPA_N_ELEMENTS(iec958codecs))
iec958codecs[n_codecs++] = codec;
format_info_clear(&format);
}
if (n_codecs == 0)
return -ENOTSUP;
spa_zero(sel);
sel.id = sink_index;
sel.type = pw_manager_object_is_sink;
o = select_object(manager, &sel);
if (o == NULL || (info = o->info) == NULL || info->props == NULL)
return -ENOENT;
dev_info = DEVICE_INFO_INIT(SPA_DIRECTION_INPUT);
if ((str = spa_dict_lookup(info->props, PW_KEY_DEVICE_ID)) != NULL)
card_id = (uint32_t)atoi(str);
if ((str = spa_dict_lookup(info->props, "card.profile.device")) != NULL)
dev_info.device = (uint32_t)atoi(str);
if (card_id != SPA_ID_INVALID) {
struct selector sel = { .id = card_id, .type = pw_manager_object_is_card, };
card = select_object(manager, &sel);
}
collect_device_info(o, card, &dev_info, false, &impl->defs);
if (card != NULL && dev_info.active_port != SPA_ID_INVALID) {
res = set_card_codecs(card, dev_info.active_port,
dev_info.device, n_codecs, iec958codecs);
} else {
res = set_node_codecs(o, n_codecs, iec958codecs);
}
if (res < 0)
return res;
return reply_simple_ack(client, tag);
}
static const struct extension_sub ext_device_restore[] = {
{ "TEST", 0, do_extension_device_restore_test, },
{ "SUBSCRIBE", 1, do_extension_device_restore_subscribe, },
{ "EVENT", 2, },
{ "READ_FORMATS_ALL", 3, do_extension_device_restore_read_formats_all, },
{ "READ_FORMATS", 4, do_extension_device_restore_read_formats, },
{ "SAVE_FORMATS", 5, do_extension_device_restore_save_formats, },
};
static int do_extension_device_restore(struct client *client, uint32_t tag, struct message *m)
{
uint32_t command;
int res;
if ((res = message_get(m,
TAG_U32, &command,
TAG_INVALID)) < 0)
return -EPROTO;
if (command >= SPA_N_ELEMENTS(ext_device_restore))
return -ENOTSUP;
if (ext_device_restore[command].process == NULL)
return -EPROTO;
pw_log_info("client %p [%s]: EXT_DEVICE_RESTORE_%s tag:%u",
client, client->name, ext_device_restore[command].name, tag);
return ext_device_restore[command].process(client, command, tag, m);
}