summaryrefslogtreecommitdiffstats
path: root/src/modules/module-protocol-pulse/extensions
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:28:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:28:17 +0000
commit7a46c07230b8d8108c0e8e80df4522d0ac116538 (patch)
treed483300dab478b994fe199a5d19d18d74153718a /src/modules/module-protocol-pulse/extensions
parentInitial commit. (diff)
downloadpipewire-upstream.tar.xz
pipewire-upstream.zip
Adding upstream version 0.3.65.upstream/0.3.65upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/modules/module-protocol-pulse/extensions')
-rw-r--r--src/modules/module-protocol-pulse/extensions/ext-device-manager.c8
-rw-r--r--src/modules/module-protocol-pulse/extensions/ext-device-restore.c340
-rw-r--r--src/modules/module-protocol-pulse/extensions/ext-stream-restore.c330
-rw-r--r--src/modules/module-protocol-pulse/extensions/registry.h13
4 files changed, 691 insertions, 0 deletions
diff --git a/src/modules/module-protocol-pulse/extensions/ext-device-manager.c b/src/modules/module-protocol-pulse/extensions/ext-device-manager.c
new file mode 100644
index 0000000..2ba080e
--- /dev/null
+++ b/src/modules/module-protocol-pulse/extensions/ext-device-manager.c
@@ -0,0 +1,8 @@
+#include <errno.h>
+
+#include "registry.h"
+
+int do_extension_device_manager(struct client *client, uint32_t tag, struct message *m)
+{
+ return -ENOTSUP;
+}
diff --git a/src/modules/module-protocol-pulse/extensions/ext-device-restore.c b/src/modules/module-protocol-pulse/extensions/ext-device-restore.c
new file mode 100644
index 0000000..4fab654
--- /dev/null
+++ b/src/modules/module-protocol-pulse/extensions/ext-device-restore.c
@@ -0,0 +1,340 @@
+/* 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 "../message.h"
+#include "../reply.h"
+#include "../volume.h"
+#include "registry.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->index, /* sink index */
+ 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.index = 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 port_index,
+ 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(port_index),
+ 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.index = 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, },
+};
+
+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);
+}
diff --git a/src/modules/module-protocol-pulse/extensions/ext-stream-restore.c b/src/modules/module-protocol-pulse/extensions/ext-stream-restore.c
new file mode 100644
index 0000000..76c7332
--- /dev/null
+++ b/src/modules/module-protocol-pulse/extensions/ext-stream-restore.c
@@ -0,0 +1,330 @@
+/* PipeWire
+ *
+ * Copyright © 2020 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_STREAM_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 "../defs.h"
+#include "../extension.h"
+#include "../format.h"
+#include "../manager.h"
+#include "../message.h"
+#include "../remap.h"
+#include "../reply.h"
+#include "../volume.h"
+#include "registry.h"
+
+PW_LOG_TOPIC_EXTERN(pulse_ext_stream_restore);
+#undef PW_LOG_TOPIC_DEFAULT
+#define PW_LOG_TOPIC_DEFAULT pulse_ext_stream_restore
+
+static int do_extension_stream_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_STREAM_RESTORE_VERSION,
+ TAG_INVALID);
+
+ return client_queue_message(client, reply);
+}
+
+static int key_from_name(const char *name, char *key, size_t maxlen)
+{
+ const char *media_class, *select, *str;
+
+ if (spa_strstartswith(name, "sink-input-"))
+ media_class = "Output/Audio";
+ else if (spa_strstartswith(name, "source-output-"))
+ media_class = "Input/Audio";
+ else
+ return -1;
+
+ if ((str = strstr(name, "-by-media-role:")) != NULL) {
+ const struct str_map *map;
+ str += strlen("-by-media-role:");
+ map = str_map_find(media_role_map, NULL, str);
+ str = map ? map->pw_str : str;
+ select = "media.role";
+ }
+ else if ((str = strstr(name, "-by-application-id:")) != NULL) {
+ str += strlen("-by-application-id:");
+ select = "application.id";
+ }
+ else if ((str = strstr(name, "-by-application-name:")) != NULL) {
+ str += strlen("-by-application-name:");
+ select = "application.name";
+ }
+ else if ((str = strstr(name, "-by-media-name:")) != NULL) {
+ str += strlen("-by-media-name:");
+ select = "media.name";
+ } else
+ return -1;
+
+ snprintf(key, maxlen, "restore.stream.%s.%s:%s",
+ media_class, select, str);
+ return 0;
+}
+
+static int key_to_name(const char *key, char *name, size_t maxlen)
+{
+ const char *type, *select, *str;
+
+ if (spa_strstartswith(key, "restore.stream.Output/Audio."))
+ type = "sink-input";
+ else if (spa_strstartswith(key, "restore.stream.Input/Audio."))
+ type = "source-output";
+ else
+ type = "stream";
+
+ if ((str = strstr(key, ".media.role:")) != NULL) {
+ const struct str_map *map;
+ str += strlen(".media.role:");
+ map = str_map_find(media_role_map, str, NULL);
+ select = "media-role";
+ str = map ? map->pa_str : str;
+ }
+ else if ((str = strstr(key, ".application.id:")) != NULL) {
+ str += strlen(".application.id:");
+ select = "application-id";
+ }
+ else if ((str = strstr(key, ".application.name:")) != NULL) {
+ str += strlen(".application.name:");
+ select = "application-name";
+ }
+ else if ((str = strstr(key, ".media.name:")) != NULL) {
+ str += strlen(".media.name:");
+ select = "media-name";
+ }
+ else
+ return -1;
+
+ snprintf(name, maxlen, "%s-by-%s:%s", type, select, str);
+ return 0;
+
+}
+
+static int do_extension_stream_restore_read(struct client *client, uint32_t command, uint32_t tag, struct message *m)
+{
+ struct message *reply;
+ const struct spa_dict_item *item;
+
+ reply = reply_new(client, tag);
+
+ spa_dict_for_each(item, &client->routes->dict) {
+ struct spa_json it[3];
+ const char *value;
+ char name[1024], key[128];
+ char device_name[1024] = "\0";
+ bool mute = false;
+ struct volume vol = VOLUME_INIT;
+ struct channel_map map = CHANNEL_MAP_INIT;
+ float volume = 0.0f;
+
+ if (key_to_name(item->key, name, sizeof(name)) < 0)
+ continue;
+
+ pw_log_debug("%s -> %s: %s", item->key, name, item->value);
+
+ spa_json_init(&it[0], item->value, strlen(item->value));
+ if (spa_json_enter_object(&it[0], &it[1]) <= 0)
+ continue;
+
+ while (spa_json_get_string(&it[1], key, sizeof(key)) > 0) {
+ if (spa_streq(key, "volume")) {
+ if (spa_json_get_float(&it[1], &volume) <= 0)
+ continue;
+ }
+ else if (spa_streq(key, "mute")) {
+ if (spa_json_get_bool(&it[1], &mute) <= 0)
+ continue;
+ }
+ else if (spa_streq(key, "volumes")) {
+ vol = VOLUME_INIT;
+ if (spa_json_enter_array(&it[1], &it[2]) <= 0)
+ continue;
+
+ for (vol.channels = 0; vol.channels < CHANNELS_MAX; vol.channels++) {
+ if (spa_json_get_float(&it[2], &vol.values[vol.channels]) <= 0)
+ break;
+ }
+ }
+ else if (spa_streq(key, "channels")) {
+ if (spa_json_enter_array(&it[1], &it[2]) <= 0)
+ continue;
+
+ for (map.channels = 0; map.channels < CHANNELS_MAX; map.channels++) {
+ char chname[16];
+ if (spa_json_get_string(&it[2], chname, sizeof(chname)) <= 0)
+ break;
+ map.map[map.channels] = channel_name2id(chname);
+ }
+ }
+ else if (spa_streq(key, "target-node")) {
+ if (spa_json_get_string(&it[1], device_name, sizeof(device_name)) <= 0)
+ continue;
+ }
+ else if (spa_json_next(&it[1], &value) <= 0)
+ break;
+ }
+ message_put(reply,
+ TAG_STRING, name,
+ TAG_CHANNEL_MAP, &map,
+ TAG_CVOLUME, &vol,
+ TAG_STRING, device_name[0] ? device_name : NULL,
+ TAG_BOOLEAN, mute,
+ TAG_INVALID);
+ }
+
+ return client_queue_message(client, reply);
+}
+
+static int do_extension_stream_restore_write(struct client *client, uint32_t command, uint32_t tag, struct message *m)
+{
+ int res;
+ uint32_t mode;
+ bool apply;
+
+ if ((res = message_get(m,
+ TAG_U32, &mode,
+ TAG_BOOLEAN, &apply,
+ TAG_INVALID)) < 0)
+ return -EPROTO;
+
+ while (m->offset < m->length) {
+ const char *name, *device_name = NULL;
+ struct channel_map map;
+ struct volume vol;
+ bool mute = false;
+ uint32_t i;
+ FILE *f;
+ char *ptr;
+ size_t size;
+ char key[1024], buf[128];
+
+ spa_zero(map);
+ spa_zero(vol);
+
+ if (message_get(m,
+ TAG_STRING, &name,
+ TAG_CHANNEL_MAP, &map,
+ TAG_CVOLUME, &vol,
+ TAG_STRING, &device_name,
+ TAG_BOOLEAN, &mute,
+ TAG_INVALID) < 0)
+ return -EPROTO;
+
+ if (name == NULL || name[0] == '\0')
+ return -EPROTO;
+
+ if ((f = open_memstream(&ptr, &size)) == NULL)
+ return -errno;
+
+ fprintf(f, "{");
+ fprintf(f, " \"mute\": %s", mute ? "true" : "false");
+ if (vol.channels > 0) {
+ fprintf(f, ", \"volumes\": [");
+ for (i = 0; i < vol.channels; i++)
+ fprintf(f, "%s%s", (i == 0 ? " ":", "),
+ spa_json_format_float(buf, sizeof(buf), vol.values[i]));
+ fprintf(f, " ]");
+ }
+ if (map.channels > 0) {
+ fprintf(f, ", \"channels\": [");
+ for (i = 0; i < map.channels; i++)
+ fprintf(f, "%s\"%s\"", (i == 0 ? " ":", "), channel_id2name(map.map[i]));
+ fprintf(f, " ]");
+ }
+ if (device_name != NULL && device_name[0] &&
+ (client->default_source == NULL || !spa_streq(device_name, client->default_source)) &&
+ (client->default_sink == NULL || !spa_streq(device_name, client->default_sink)))
+ fprintf(f, ", \"target-node\": \"%s\"", device_name);
+ fprintf(f, " }");
+ fclose(f);
+ if (key_from_name(name, key, sizeof(key)) >= 0) {
+ pw_log_debug("%s -> %s: %s", name, key, ptr);
+ if ((res = pw_manager_set_metadata(client->manager,
+ client->metadata_routes,
+ PW_ID_CORE, key, "Spa:String:JSON", "%s", ptr)) < 0)
+ pw_log_warn("failed to set metadata %s = %s, %s", key, ptr, strerror(-res));
+ }
+ free(ptr);
+ }
+
+ return reply_simple_ack(client, tag);
+}
+
+static int do_extension_stream_restore_delete(struct client *client, uint32_t command, uint32_t tag, struct message *m)
+{
+ return reply_simple_ack(client, tag);
+}
+
+static int do_extension_stream_restore_subscribe(struct client *client, uint32_t command, uint32_t tag, struct message *m)
+{
+ return reply_simple_ack(client, tag);
+}
+
+static const struct extension_sub ext_stream_restore[] = {
+ { "TEST", 0, do_extension_stream_restore_test, },
+ { "READ", 1, do_extension_stream_restore_read, },
+ { "WRITE", 2, do_extension_stream_restore_write, },
+ { "DELETE", 3, do_extension_stream_restore_delete, },
+ { "SUBSCRIBE", 4, do_extension_stream_restore_subscribe, },
+ { "EVENT", 5, },
+};
+
+int do_extension_stream_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_stream_restore))
+ return -ENOTSUP;
+ if (ext_stream_restore[command].process == NULL)
+ return -EPROTO;
+
+ pw_log_info("client %p [%s]: EXT_STREAM_RESTORE_%s tag:%u",
+ client, client->name, ext_stream_restore[command].name, tag);
+
+ return ext_stream_restore[command].process(client, command, tag, m);
+}
diff --git a/src/modules/module-protocol-pulse/extensions/registry.h b/src/modules/module-protocol-pulse/extensions/registry.h
new file mode 100644
index 0000000..ab9faf7
--- /dev/null
+++ b/src/modules/module-protocol-pulse/extensions/registry.h
@@ -0,0 +1,13 @@
+#ifndef PIPEWIRE_PULSE_EXTENSION_REGISTRY_H
+#define PIPEWIRE_PULSE_EXTENSION_REGISTRY_H
+
+#include <stdint.h>
+
+struct client;
+struct message;
+
+int do_extension_stream_restore(struct client *client, uint32_t tag, struct message *m);
+int do_extension_device_restore(struct client *client, uint32_t tag, struct message *m);
+int do_extension_device_manager(struct client *client, uint32_t tag, struct message *m);
+
+#endif /* PIPEWIRE_PULSE_EXTENSION_REGISTRY_H */