2020-09-30 20:12:34 +02:00
|
|
|
/* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2021-06-19 00:23:27 +02:00
|
|
|
#include <errno.h>
|
2020-09-30 20:12:34 +02:00
|
|
|
#include <stdio.h>
|
2021-06-19 19:56:37 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2020-09-30 20:12:34 +02:00
|
|
|
#include <time.h>
|
2020-10-05 17:13:04 +02:00
|
|
|
#include <sys/time.h>
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2020-11-03 12:22:35 +01:00
|
|
|
#include <pipewire/log.h>
|
|
|
|
|
|
2021-09-22 09:28:54 +10:00
|
|
|
#include "log.h"
|
2020-11-03 12:22:35 +01:00
|
|
|
#define spa_debug pw_log_debug
|
|
|
|
|
|
2021-04-21 15:58:30 +02:00
|
|
|
#include <spa/support/cpu.h>
|
2020-09-30 20:12:34 +02:00
|
|
|
#include <spa/utils/result.h>
|
2021-05-18 11:36:13 +10:00
|
|
|
#include <spa/utils/string.h>
|
2020-10-02 16:19:53 +02:00
|
|
|
#include <spa/debug/dict.h>
|
|
|
|
|
#include <spa/debug/mem.h>
|
2020-11-23 15:37:18 +01:00
|
|
|
#include <spa/debug/types.h>
|
2020-10-02 16:19:53 +02:00
|
|
|
#include <spa/param/audio/raw.h>
|
|
|
|
|
#include <spa/pod/pod.h>
|
|
|
|
|
#include <spa/param/audio/format-utils.h>
|
2020-10-02 17:14:57 +02:00
|
|
|
#include <spa/param/props.h>
|
2020-10-08 15:53:42 +02:00
|
|
|
#include <spa/utils/ringbuffer.h>
|
2021-01-19 16:57:33 +01:00
|
|
|
#include <spa/utils/json.h>
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2021-06-19 19:56:37 +02:00
|
|
|
#include <pipewire/pipewire.h>
|
|
|
|
|
#include <pipewire/private.h>
|
|
|
|
|
#include <pipewire/extensions/metadata.h>
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2020-10-08 11:57:35 +02:00
|
|
|
#include "pulse-server.h"
|
2021-06-18 23:36:35 +02:00
|
|
|
#include "client.h"
|
2021-06-18 22:10:11 +02:00
|
|
|
#include "collect.h"
|
2021-06-18 21:37:14 +02:00
|
|
|
#include "commands.h"
|
2021-06-18 22:14:05 +02:00
|
|
|
#include "dbus-name.h"
|
2020-10-08 11:57:35 +02:00
|
|
|
#include "defs.h"
|
2021-06-18 23:51:54 +02:00
|
|
|
#include "extension.h"
|
2021-06-18 21:49:24 +02:00
|
|
|
#include "format.h"
|
2021-04-15 15:53:05 -04:00
|
|
|
#include "internal.h"
|
2021-06-19 19:56:37 +02:00
|
|
|
#include "manager.h"
|
2021-06-18 22:56:49 +02:00
|
|
|
#include "message.h"
|
2021-06-19 00:38:56 +02:00
|
|
|
#include "message-handler.h"
|
2021-06-19 00:09:09 +02:00
|
|
|
#include "module.h"
|
2021-06-18 23:36:35 +02:00
|
|
|
#include "operation.h"
|
2021-06-18 23:03:58 +02:00
|
|
|
#include "pending-sample.h"
|
2021-06-30 17:17:36 +02:00
|
|
|
#include "quirks.h"
|
2021-06-18 23:36:35 +02:00
|
|
|
#include "reply.h"
|
2021-06-18 22:23:53 +02:00
|
|
|
#include "sample.h"
|
|
|
|
|
#include "sample-play.h"
|
2021-06-18 23:46:50 +02:00
|
|
|
#include "server.h"
|
2021-06-18 23:36:35 +02:00
|
|
|
#include "stream.h"
|
2021-06-18 22:43:09 +02:00
|
|
|
#include "utils.h"
|
2021-06-18 22:04:45 +02:00
|
|
|
#include "volume.h"
|
2021-01-19 10:51:23 +01:00
|
|
|
|
2021-02-23 14:57:45 +01:00
|
|
|
#define DEFAULT_MIN_REQ "256/48000"
|
|
|
|
|
#define DEFAULT_DEFAULT_REQ "960/48000"
|
|
|
|
|
#define DEFAULT_MIN_FRAG "256/48000"
|
|
|
|
|
#define DEFAULT_DEFAULT_FRAG "96000/48000"
|
|
|
|
|
#define DEFAULT_DEFAULT_TLENGTH "96000/48000"
|
|
|
|
|
#define DEFAULT_MIN_QUANTUM "256/48000"
|
2021-05-12 18:06:48 +02:00
|
|
|
#define DEFAULT_FORMAT "F32"
|
2021-04-09 11:45:06 +02:00
|
|
|
#define DEFAULT_POSITION "[ FL FR ]"
|
2021-02-23 14:57:45 +01:00
|
|
|
|
2021-03-10 16:55:01 +01:00
|
|
|
#define MAX_FORMATS 32
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
bool debug_messages = false;
|
2021-03-09 09:53:39 +01:00
|
|
|
|
2021-02-16 22:03:08 +02:00
|
|
|
struct latency_offset_data {
|
|
|
|
|
int64_t prev_latency_offset;
|
|
|
|
|
unsigned int initialized:1;
|
|
|
|
|
};
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
static struct sample *find_sample(struct impl *impl, uint32_t index, const char *name)
|
2020-11-13 13:28:46 +01:00
|
|
|
{
|
|
|
|
|
union pw_map_item *item;
|
2020-11-14 13:31:07 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if (index != SPA_ID_INVALID)
|
|
|
|
|
return pw_map_lookup(&impl->samples, index);
|
2020-11-14 13:31:07 +01:00
|
|
|
|
2020-11-13 13:28:46 +01:00
|
|
|
pw_array_for_each(item, &impl->samples.items) {
|
|
|
|
|
struct sample *s = item->data;
|
2021-08-09 15:27:42 +02:00
|
|
|
if (!pw_map_item_is_free(item) &&
|
2021-05-18 11:36:13 +10:00
|
|
|
spa_streq(s->name, name))
|
2020-11-13 13:28:46 +01:00
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
void broadcast_subscribe_event(struct impl *impl, uint32_t mask, uint32_t event, uint32_t index)
|
2020-11-13 13:28:46 +01:00
|
|
|
{
|
|
|
|
|
struct server *s;
|
|
|
|
|
spa_list_for_each(s, &impl->servers, link) {
|
|
|
|
|
struct client *c;
|
2021-04-12 17:19:15 +02:00
|
|
|
spa_list_for_each(c, &s->clients, link)
|
2022-01-17 11:28:40 +01:00
|
|
|
client_queue_subscribe_event(c, mask, event, index);
|
2020-11-13 13:28:46 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_command_auth(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct message *reply;
|
2020-10-02 16:19:53 +02:00
|
|
|
uint32_t version;
|
|
|
|
|
const void *cookie;
|
2020-11-03 12:14:09 +01:00
|
|
|
size_t len;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_U32, &version,
|
2020-11-03 12:14:09 +01:00
|
|
|
TAG_ARBITRARY, &cookie, &len,
|
2020-10-29 11:59:16 +01:00
|
|
|
TAG_INVALID) < 0) {
|
|
|
|
|
return -EPROTO;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
if (version < 8)
|
|
|
|
|
return -EPROTO;
|
2020-11-03 12:14:09 +01:00
|
|
|
if (len != NATIVE_COOKIE_LENGTH)
|
|
|
|
|
return -EINVAL;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
|
|
|
|
if ((version & PROTOCOL_VERSION_MASK) >= 13)
|
|
|
|
|
version &= PROTOCOL_VERSION_MASK;
|
|
|
|
|
|
|
|
|
|
client->version = version;
|
2021-12-30 21:24:06 +01:00
|
|
|
client->authenticated = true;
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("client:%p AUTH tag:%u version:%d", client, tag, version);
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
message_put(reply,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_U32, PROTOCOL_VERSION,
|
|
|
|
|
TAG_INVALID);
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-09-30 20:12:34 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-25 15:28:42 +01:00
|
|
|
static int reply_set_client_name(struct client *client, uint32_t tag)
|
|
|
|
|
{
|
2022-01-17 11:28:40 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-25 15:28:42 +01:00
|
|
|
struct message *reply;
|
2020-11-05 10:46:19 +01:00
|
|
|
struct pw_client *c;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t id, index;
|
2020-11-05 10:46:19 +01:00
|
|
|
|
|
|
|
|
c = pw_core_get_client(client->core);
|
|
|
|
|
if (c == NULL)
|
2020-11-13 13:28:46 +01:00
|
|
|
return -ENOENT;
|
2020-11-05 10:46:19 +01:00
|
|
|
|
|
|
|
|
id = pw_proxy_get_bound_id((struct pw_proxy*)c);
|
2022-01-17 11:28:40 +01:00
|
|
|
index = id_to_index(manager, id);
|
2020-11-05 10:46:19 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] reply tag:%u id:%u index:%u", client->name, tag, id, index);
|
2020-11-06 16:30:05 +01:00
|
|
|
|
2020-10-25 15:28:42 +01:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
|
|
|
|
|
if (client->version >= 13) {
|
|
|
|
|
message_put(reply,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, index, /* client index */
|
2020-10-25 15:28:42 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-25 15:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void manager_sync(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct client *client = data;
|
2021-03-09 12:09:05 +01:00
|
|
|
struct operation *o;
|
2020-10-25 15:28:42 +01:00
|
|
|
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_debug("%p: manager sync", client);
|
2020-11-06 16:08:13 +01:00
|
|
|
|
|
|
|
|
if (client->connect_tag != SPA_ID_INVALID) {
|
2020-10-25 15:28:42 +01:00
|
|
|
reply_set_client_name(client, client->connect_tag);
|
2020-11-06 16:08:13 +01:00
|
|
|
client->connect_tag = SPA_ID_INVALID;
|
|
|
|
|
}
|
2021-03-09 12:09:05 +01:00
|
|
|
spa_list_consume(o, &client->operations, link)
|
|
|
|
|
operation_complete(o);
|
2020-11-06 16:08:13 +01:00
|
|
|
}
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
static struct stream *find_stream(struct client *client, uint32_t index)
|
2020-11-06 16:08:13 +01:00
|
|
|
{
|
|
|
|
|
union pw_map_item *item;
|
|
|
|
|
pw_array_for_each(item, &client->streams.items) {
|
|
|
|
|
struct stream *s = item->data;
|
2021-08-09 15:27:42 +02:00
|
|
|
if (!pw_map_item_is_free(item) &&
|
2022-01-17 11:28:40 +01:00
|
|
|
s->index == index)
|
2020-11-06 16:08:13 +01:00
|
|
|
return s;
|
2020-10-25 15:28:42 +01:00
|
|
|
}
|
2020-11-06 16:08:13 +01:00
|
|
|
return NULL;
|
2020-10-25 15:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
2021-04-12 17:19:15 +02:00
|
|
|
static int send_object_event(struct client *client, struct pw_manager_object *o,
|
|
|
|
|
uint32_t facility)
|
2020-10-27 14:57:15 +01:00
|
|
|
{
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t event = 0, mask = 0, res_index = o->index;
|
2020-10-27 14:57:15 +01:00
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (pw_manager_object_is_sink(o)) {
|
2021-06-18 23:36:35 +02:00
|
|
|
client_queue_subscribe_event(client,
|
2021-04-12 17:19:15 +02:00
|
|
|
SUBSCRIPTION_MASK_SINK,
|
|
|
|
|
SUBSCRIPTION_EVENT_SINK | facility,
|
2022-01-17 11:28:40 +01:00
|
|
|
res_index);
|
2020-10-27 14:57:15 +01:00
|
|
|
}
|
2021-04-15 15:53:05 -04:00
|
|
|
if (pw_manager_object_is_source_or_monitor(o)) {
|
2021-04-12 17:19:15 +02:00
|
|
|
mask = SUBSCRIPTION_MASK_SOURCE;
|
2020-10-27 14:57:15 +01:00
|
|
|
event = SUBSCRIPTION_EVENT_SOURCE;
|
|
|
|
|
}
|
2021-04-15 15:53:05 -04:00
|
|
|
else if (pw_manager_object_is_sink_input(o)) {
|
2021-04-12 17:19:15 +02:00
|
|
|
mask = SUBSCRIPTION_MASK_SINK_INPUT;
|
2020-10-27 14:57:15 +01:00
|
|
|
event = SUBSCRIPTION_EVENT_SINK_INPUT;
|
|
|
|
|
}
|
2021-04-15 15:53:05 -04:00
|
|
|
else if (pw_manager_object_is_source_output(o)) {
|
2021-04-12 17:19:15 +02:00
|
|
|
mask = SUBSCRIPTION_MASK_SOURCE_OUTPUT;
|
2020-10-27 14:57:15 +01:00
|
|
|
event = SUBSCRIPTION_EVENT_SOURCE_OUTPUT;
|
|
|
|
|
}
|
2021-04-15 15:53:05 -04:00
|
|
|
else if (pw_manager_object_is_module(o)) {
|
2021-04-12 17:19:15 +02:00
|
|
|
mask = SUBSCRIPTION_MASK_MODULE;
|
2020-10-27 14:57:15 +01:00
|
|
|
event = SUBSCRIPTION_EVENT_MODULE;
|
|
|
|
|
}
|
2021-04-15 15:53:05 -04:00
|
|
|
else if (pw_manager_object_is_client(o)) {
|
2021-04-12 17:19:15 +02:00
|
|
|
mask = SUBSCRIPTION_MASK_CLIENT;
|
2020-10-27 14:57:15 +01:00
|
|
|
event = SUBSCRIPTION_EVENT_CLIENT;
|
|
|
|
|
}
|
2021-04-15 15:53:05 -04:00
|
|
|
else if (pw_manager_object_is_card(o)) {
|
2021-04-12 17:19:15 +02:00
|
|
|
mask = SUBSCRIPTION_MASK_CARD;
|
2020-10-27 14:57:15 +01:00
|
|
|
event = SUBSCRIPTION_EVENT_CARD;
|
|
|
|
|
} else
|
|
|
|
|
event = SPA_ID_INVALID;
|
2021-04-12 17:19:15 +02:00
|
|
|
|
|
|
|
|
if (event != SPA_ID_INVALID)
|
2021-06-18 23:36:35 +02:00
|
|
|
client_queue_subscribe_event(client,
|
2021-04-12 17:19:15 +02:00
|
|
|
mask,
|
|
|
|
|
event | facility,
|
2022-01-17 11:28:40 +01:00
|
|
|
res_index);
|
2021-04-12 17:19:15 +02:00
|
|
|
return 0;
|
2020-10-27 14:57:15 +01:00
|
|
|
}
|
|
|
|
|
|
2021-01-23 01:37:59 +02:00
|
|
|
static struct pw_manager_object *find_device(struct client *client,
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index, const char *name, bool sink, bool *is_monitor);
|
2021-01-23 01:37:59 +02:00
|
|
|
|
2021-02-16 22:03:08 +02:00
|
|
|
static int64_t get_node_latency_offset(struct pw_manager_object *o)
|
|
|
|
|
{
|
|
|
|
|
int64_t latency_offset = 0LL;
|
|
|
|
|
struct pw_manager_param *p;
|
|
|
|
|
|
|
|
|
|
spa_list_for_each(p, &o->param_list, link) {
|
|
|
|
|
if (p->id != SPA_PARAM_Props)
|
|
|
|
|
continue;
|
|
|
|
|
if (spa_pod_parse_object(p->param,
|
2021-08-09 15:27:42 +02:00
|
|
|
SPA_TYPE_OBJECT_Props, NULL,
|
|
|
|
|
SPA_PROP_latencyOffsetNsec, SPA_POD_Long(&latency_offset)) == 1)
|
2021-02-16 22:03:08 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return latency_offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void send_latency_offset_subscribe_event(struct client *client, struct pw_manager_object *o)
|
|
|
|
|
{
|
2022-01-17 11:28:40 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2021-02-16 22:03:08 +02:00
|
|
|
struct latency_offset_data *d;
|
|
|
|
|
struct pw_node_info *info;
|
|
|
|
|
const char *str;
|
|
|
|
|
uint32_t card_id = SPA_ID_INVALID;
|
|
|
|
|
int64_t latency_offset = 0LL;
|
|
|
|
|
bool changed = false;
|
|
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_sink(o) && !pw_manager_object_is_source_or_monitor(o))
|
2021-02-16 22:03:08 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Pulseaudio sends card change events on latency offset change.
|
|
|
|
|
*/
|
|
|
|
|
if ((info = o->info) == NULL || info->props == NULL)
|
|
|
|
|
return;
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_DEVICE_ID)) != NULL)
|
|
|
|
|
card_id = (uint32_t)atoi(str);
|
|
|
|
|
if (card_id == SPA_ID_INVALID)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
d = pw_manager_object_add_data(o, "latency_offset_data", sizeof(struct latency_offset_data));
|
|
|
|
|
if (d == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
latency_offset = get_node_latency_offset(o);
|
|
|
|
|
changed = (!d->initialized || latency_offset != d->prev_latency_offset);
|
|
|
|
|
|
|
|
|
|
d->prev_latency_offset = latency_offset;
|
|
|
|
|
d->initialized = true;
|
|
|
|
|
|
|
|
|
|
if (changed)
|
2021-06-18 23:36:35 +02:00
|
|
|
client_queue_subscribe_event(client,
|
2021-04-12 17:19:15 +02:00
|
|
|
SUBSCRIPTION_MASK_CARD,
|
|
|
|
|
SUBSCRIPTION_EVENT_CARD | SUBSCRIPTION_EVENT_CHANGE,
|
2022-01-17 11:28:40 +01:00
|
|
|
id_to_index(manager, card_id));
|
2021-02-16 22:03:08 +02:00
|
|
|
}
|
|
|
|
|
|
2021-01-23 01:37:59 +02:00
|
|
|
static void send_default_change_subscribe_event(struct client *client, bool sink, bool source)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager_object *def;
|
|
|
|
|
bool changed = false;
|
|
|
|
|
|
|
|
|
|
if (sink) {
|
2021-04-29 15:25:04 +02:00
|
|
|
def = find_device(client, SPA_ID_INVALID, NULL, true, NULL);
|
2021-01-23 01:37:59 +02:00
|
|
|
if (client->prev_default_sink != def) {
|
|
|
|
|
client->prev_default_sink = def;
|
|
|
|
|
changed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (source) {
|
2021-04-29 15:25:04 +02:00
|
|
|
def = find_device(client, SPA_ID_INVALID, NULL, false, NULL);
|
2021-01-23 01:37:59 +02:00
|
|
|
if (client->prev_default_source != def) {
|
|
|
|
|
client->prev_default_source = def;
|
|
|
|
|
changed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (changed)
|
2021-06-18 23:36:35 +02:00
|
|
|
client_queue_subscribe_event(client,
|
2021-04-12 17:19:15 +02:00
|
|
|
SUBSCRIPTION_MASK_SERVER,
|
|
|
|
|
SUBSCRIPTION_EVENT_CHANGE |
|
|
|
|
|
SUBSCRIPTION_EVENT_SERVER,
|
|
|
|
|
-1);
|
2021-01-23 01:37:59 +02:00
|
|
|
}
|
|
|
|
|
|
2021-03-26 16:26:29 +01:00
|
|
|
static void handle_metadata(struct client *client, struct pw_manager_object *old,
|
|
|
|
|
struct pw_manager_object *new, const char *name)
|
2020-11-23 10:44:12 +01:00
|
|
|
{
|
2021-05-18 11:36:13 +10:00
|
|
|
if (spa_streq(name, "default")) {
|
2021-03-26 16:26:29 +01:00
|
|
|
if (client->metadata_default == old)
|
|
|
|
|
client->metadata_default = new;
|
2020-11-23 10:44:12 +01:00
|
|
|
}
|
2021-05-18 11:36:13 +10:00
|
|
|
else if (spa_streq(name, "route-settings")) {
|
2021-03-26 16:26:29 +01:00
|
|
|
if (client->metadata_routes == old)
|
|
|
|
|
client->metadata_routes = new;
|
2020-11-23 10:44:12 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-23 14:57:45 +01:00
|
|
|
static uint32_t frac_to_bytes_round_up(struct spa_fraction val, const struct sample_spec *ss)
|
2020-10-20 16:25:47 +02:00
|
|
|
{
|
|
|
|
|
uint64_t u;
|
2021-02-23 14:57:45 +01:00
|
|
|
u = (uint64_t) (val.num * 1000000UL * (uint64_t) ss->rate) / val.denom;
|
2020-10-20 16:25:47 +02:00
|
|
|
u = (u + 1000000UL - 1) / 1000000UL;
|
|
|
|
|
u *= sample_spec_frame_size(ss);
|
|
|
|
|
return (uint32_t) u;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-04 18:07:30 +01:00
|
|
|
static uint32_t fix_playback_buffer_attr(struct stream *s, struct buffer_attr *attr)
|
2020-10-20 16:25:47 +02:00
|
|
|
{
|
2021-11-04 18:07:30 +01:00
|
|
|
uint32_t frame_size, max_prebuf, minreq, latency, max_latency;
|
2021-02-23 14:57:45 +01:00
|
|
|
struct defs *defs = &s->impl->defs;
|
2020-10-20 16:25:47 +02:00
|
|
|
|
|
|
|
|
frame_size = s->frame_size;
|
2022-01-22 16:17:09 +01:00
|
|
|
minreq = frac_to_bytes_round_up(s->min_req, &s->ss);
|
2022-01-14 16:45:41 +01:00
|
|
|
max_latency = defs->quantum_limit * frame_size;
|
2020-10-20 16:25:47 +02:00
|
|
|
|
|
|
|
|
if (attr->maxlength == (uint32_t) -1 || attr->maxlength > MAXLENGTH)
|
|
|
|
|
attr->maxlength = MAXLENGTH;
|
|
|
|
|
attr->maxlength -= attr->maxlength % frame_size;
|
|
|
|
|
attr->maxlength = SPA_MAX(attr->maxlength, frame_size);
|
|
|
|
|
|
|
|
|
|
if (attr->tlength == (uint32_t) -1)
|
2022-01-22 16:17:09 +01:00
|
|
|
attr->tlength = frac_to_bytes_round_up(s->default_tlength, &s->ss);
|
2020-10-20 16:25:47 +02:00
|
|
|
if (attr->tlength > attr->maxlength)
|
|
|
|
|
attr->tlength = attr->maxlength;
|
|
|
|
|
attr->tlength -= attr->tlength % frame_size;
|
|
|
|
|
attr->tlength = SPA_MAX(attr->tlength, frame_size);
|
2020-12-04 15:10:52 +01:00
|
|
|
attr->tlength = SPA_MAX(attr->tlength, minreq);
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2020-10-20 16:25:47 +02:00
|
|
|
if (attr->minreq == (uint32_t) -1) {
|
2022-01-22 16:17:09 +01:00
|
|
|
uint32_t process = frac_to_bytes_round_up(s->default_req, &s->ss);
|
2020-10-20 16:25:47 +02:00
|
|
|
/* With low-latency, tlength/4 gives a decent default in all of traditional,
|
|
|
|
|
* adjust latency and early request modes. */
|
|
|
|
|
uint32_t m = attr->tlength / 4;
|
|
|
|
|
m -= m % frame_size;
|
|
|
|
|
attr->minreq = SPA_MIN(process, m);
|
|
|
|
|
}
|
|
|
|
|
attr->minreq = SPA_MAX(attr->minreq, minreq);
|
|
|
|
|
|
|
|
|
|
if (attr->tlength < attr->minreq+frame_size)
|
|
|
|
|
attr->tlength = attr->minreq + frame_size;
|
|
|
|
|
|
2021-11-04 18:07:30 +01:00
|
|
|
if (s->early_requests) {
|
|
|
|
|
latency = attr->minreq;
|
|
|
|
|
} else if (s->adjust_latency) {
|
|
|
|
|
if (attr->tlength > attr->minreq * 2)
|
|
|
|
|
latency = SPA_MIN(max_latency, (attr->tlength - attr->minreq * 2) / 2);
|
|
|
|
|
else
|
|
|
|
|
latency = attr->minreq;
|
|
|
|
|
|
2021-11-05 13:30:29 +01:00
|
|
|
latency -= latency % frame_size;
|
|
|
|
|
|
2021-11-04 18:07:30 +01:00
|
|
|
if (attr->tlength >= latency)
|
|
|
|
|
attr->tlength -= latency;
|
|
|
|
|
} else {
|
|
|
|
|
if (attr->tlength > attr->minreq * 2)
|
|
|
|
|
latency = SPA_MIN(max_latency, attr->tlength - attr->minreq * 2);
|
|
|
|
|
else
|
|
|
|
|
latency = attr->minreq;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (attr->tlength < latency + 2 * attr->minreq)
|
|
|
|
|
attr->tlength = latency + 2 * attr->minreq;
|
|
|
|
|
|
2020-10-20 16:25:47 +02:00
|
|
|
attr->minreq -= attr->minreq % frame_size;
|
|
|
|
|
if (attr->minreq <= 0) {
|
|
|
|
|
attr->minreq = frame_size;
|
|
|
|
|
attr->tlength += frame_size*2;
|
|
|
|
|
}
|
|
|
|
|
if (attr->tlength <= attr->minreq)
|
|
|
|
|
attr->tlength = attr->minreq*2 + frame_size;
|
|
|
|
|
|
|
|
|
|
max_prebuf = attr->tlength + frame_size - attr->minreq;
|
|
|
|
|
if (attr->prebuf == (uint32_t) -1 || attr->prebuf > max_prebuf)
|
|
|
|
|
attr->prebuf = max_prebuf;
|
|
|
|
|
attr->prebuf -= attr->prebuf % frame_size;
|
|
|
|
|
|
2020-11-09 15:35:50 +01:00
|
|
|
attr->fragsize = 0;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] maxlength:%u tlength:%u minreq:%u/%u prebuf:%u latency:%u %u",
|
2020-11-12 13:33:25 +01:00
|
|
|
s->client->name, attr->maxlength, attr->tlength,
|
2021-11-05 16:22:22 +01:00
|
|
|
attr->minreq, minreq, attr->prebuf, latency, frame_size);
|
2021-11-04 18:07:30 +01:00
|
|
|
|
|
|
|
|
return latency / frame_size;
|
2020-10-20 16:25:47 +02:00
|
|
|
}
|
2020-10-08 15:53:42 +02:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
static uint64_t set_playback_buffer_attr(struct stream *s, struct buffer_attr *attr)
|
2020-10-02 16:19:53 +02:00
|
|
|
{
|
2022-01-28 17:34:36 +01:00
|
|
|
struct spa_fraction lat;
|
|
|
|
|
uint64_t lat_usec;
|
2021-01-30 19:32:13 +01:00
|
|
|
struct spa_dict_item items[5];
|
2020-10-20 16:25:47 +02:00
|
|
|
char latency[32];
|
2021-01-30 19:32:13 +01:00
|
|
|
char attr_maxlength[32];
|
|
|
|
|
char attr_tlength[32];
|
|
|
|
|
char attr_prebuf[32];
|
|
|
|
|
char attr_minreq[32];
|
2020-10-20 16:25:47 +02:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
lat.denom = s->ss.rate;
|
|
|
|
|
lat.num = fix_playback_buffer_attr(s, attr);
|
2020-10-20 16:25:47 +02:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
s->attr = *attr;
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
if (lat.num * s->min_quantum.denom / lat.denom < s->min_quantum.num)
|
|
|
|
|
lat.num = (s->min_quantum.num * lat.denom +
|
|
|
|
|
(s->min_quantum.denom -1)) / s->min_quantum.denom;
|
2020-11-09 11:13:06 +01:00
|
|
|
lat_usec = lat.num * SPA_USEC_PER_SEC / lat.denom;
|
|
|
|
|
|
2021-02-02 12:09:29 +01:00
|
|
|
snprintf(latency, sizeof(latency), "%u/%u", lat.num, lat.denom);
|
2022-01-28 17:34:36 +01:00
|
|
|
snprintf(attr_maxlength, sizeof(attr_maxlength), "%u", s->attr.maxlength);
|
|
|
|
|
snprintf(attr_tlength, sizeof(attr_tlength), "%u", s->attr.tlength);
|
|
|
|
|
snprintf(attr_prebuf, sizeof(attr_prebuf), "%u", s->attr.prebuf);
|
|
|
|
|
snprintf(attr_minreq, sizeof(attr_minreq), "%u", s->attr.minreq);
|
2020-10-20 16:25:47 +02:00
|
|
|
|
|
|
|
|
items[0] = SPA_DICT_ITEM_INIT(PW_KEY_NODE_LATENCY, latency);
|
2021-01-30 19:32:13 +01:00
|
|
|
items[1] = SPA_DICT_ITEM_INIT("pulse.attr.maxlength", attr_maxlength);
|
|
|
|
|
items[2] = SPA_DICT_ITEM_INIT("pulse.attr.tlength", attr_tlength);
|
|
|
|
|
items[3] = SPA_DICT_ITEM_INIT("pulse.attr.prebuf", attr_prebuf);
|
|
|
|
|
items[4] = SPA_DICT_ITEM_INIT("pulse.attr.minreq", attr_minreq);
|
2022-01-28 17:34:36 +01:00
|
|
|
pw_stream_update_properties(s->stream, &SPA_DICT_INIT(items, 5));
|
|
|
|
|
|
|
|
|
|
if (s->attr.prebuf > 0)
|
|
|
|
|
s->in_prebuf = true;
|
|
|
|
|
|
|
|
|
|
return lat_usec;
|
|
|
|
|
}
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
static int reply_create_playback_stream(struct stream *stream, struct pw_manager_object *peer)
|
|
|
|
|
{
|
|
|
|
|
struct client *client = stream->client;
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
struct message *reply;
|
|
|
|
|
uint32_t missing, peer_index;
|
|
|
|
|
const char *peer_name;
|
|
|
|
|
uint64_t lat_usec;
|
|
|
|
|
|
|
|
|
|
stream->buffer = calloc(1, MAXLENGTH);
|
|
|
|
|
if (stream->buffer == NULL)
|
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
|
|
lat_usec = set_playback_buffer_attr(stream, &stream->attr);
|
2021-12-03 17:49:59 +01:00
|
|
|
|
2021-01-18 16:22:30 +01:00
|
|
|
missing = stream_pop_missing(stream);
|
2022-01-17 11:28:40 +01:00
|
|
|
stream->index = id_to_index(manager, stream->id);
|
2020-10-05 17:13:04 +02:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
pw_log_info("[%s] reply CREATE_PLAYBACK_STREAM tag:%u index:%u missing:%u lat:%"PRIu64,
|
|
|
|
|
client->name, stream->create_tag, stream->index, missing, lat_usec);
|
2020-11-20 14:56:23 +01:00
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
reply = reply_new(client, stream->create_tag);
|
|
|
|
|
message_put(reply,
|
2020-10-26 13:28:45 +01:00
|
|
|
TAG_U32, stream->channel, /* stream index/channel */
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, stream->index, /* sink_input/stream index */
|
2021-01-18 16:22:30 +01:00
|
|
|
TAG_U32, missing, /* missing/requested bytes */
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (peer && pw_manager_object_is_sink(peer)) {
|
2022-01-17 11:28:40 +01:00
|
|
|
peer_index = peer->index;
|
2020-10-26 18:29:15 +01:00
|
|
|
peer_name = pw_properties_get(peer->props, PW_KEY_NODE_NAME);
|
2020-10-26 16:39:49 +01:00
|
|
|
} else {
|
2022-01-17 11:28:40 +01:00
|
|
|
peer_index = SPA_ID_INVALID;
|
2020-10-26 16:39:49 +01:00
|
|
|
peer_name = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 16:19:53 +02:00
|
|
|
if (client->version >= 9) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_U32, stream->attr.maxlength,
|
|
|
|
|
TAG_U32, stream->attr.tlength,
|
|
|
|
|
TAG_U32, stream->attr.prebuf,
|
|
|
|
|
TAG_U32, stream->attr.minreq,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 12) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_SAMPLE_SPEC, &stream->ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &stream->map,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, peer_index, /* sink index */
|
2020-10-26 16:39:49 +01:00
|
|
|
TAG_STRING, peer_name, /* sink name */
|
2020-11-09 11:13:06 +01:00
|
|
|
TAG_BOOLEAN, false, /* sink suspended state */
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 13) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-11-09 11:13:06 +01:00
|
|
|
TAG_USEC, lat_usec, /* sink configured latency */
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 21) {
|
|
|
|
|
struct format_info info;
|
|
|
|
|
spa_zero(info);
|
|
|
|
|
info.encoding = ENCODING_PCM;
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_FORMAT_INFO, &info, /* sink_input format */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2020-10-02 16:19:53 +02:00
|
|
|
stream->create_tag = SPA_ID_INVALID;
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2021-11-04 18:07:30 +01:00
|
|
|
static uint32_t fix_record_buffer_attr(struct stream *s, struct buffer_attr *attr)
|
2020-10-20 16:25:47 +02:00
|
|
|
{
|
2021-11-04 18:07:30 +01:00
|
|
|
uint32_t frame_size, minfrag, latency;
|
2020-10-20 16:25:47 +02:00
|
|
|
|
|
|
|
|
frame_size = s->frame_size;
|
|
|
|
|
|
|
|
|
|
if (attr->maxlength == (uint32_t) -1 || attr->maxlength > MAXLENGTH)
|
|
|
|
|
attr->maxlength = MAXLENGTH;
|
|
|
|
|
attr->maxlength -= attr->maxlength % frame_size;
|
|
|
|
|
attr->maxlength = SPA_MAX(attr->maxlength, frame_size);
|
|
|
|
|
|
2022-01-22 16:17:09 +01:00
|
|
|
minfrag = frac_to_bytes_round_up(s->min_frag, &s->ss);
|
2020-10-20 16:25:47 +02:00
|
|
|
|
|
|
|
|
if (attr->fragsize == (uint32_t) -1 || attr->fragsize == 0)
|
2022-01-22 16:17:09 +01:00
|
|
|
attr->fragsize = frac_to_bytes_round_up(s->default_frag, &s->ss);
|
2020-10-20 16:25:47 +02:00
|
|
|
attr->fragsize -= attr->fragsize % frame_size;
|
|
|
|
|
attr->fragsize = SPA_MAX(attr->fragsize, minfrag);
|
|
|
|
|
attr->fragsize = SPA_MAX(attr->fragsize, frame_size);
|
|
|
|
|
|
|
|
|
|
if (attr->fragsize > attr->maxlength)
|
|
|
|
|
attr->fragsize = attr->maxlength;
|
|
|
|
|
|
2020-11-09 15:35:50 +01:00
|
|
|
attr->tlength = attr->minreq = attr->prebuf = 0;
|
|
|
|
|
|
2021-11-04 18:07:30 +01:00
|
|
|
if (s->early_requests) {
|
|
|
|
|
latency = attr->fragsize;
|
|
|
|
|
} else if (s->adjust_latency) {
|
|
|
|
|
latency = attr->fragsize;
|
|
|
|
|
} else {
|
|
|
|
|
latency = attr->fragsize;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] maxlength:%u fragsize:%u minfrag:%u latency:%u",
|
2021-11-04 18:07:30 +01:00
|
|
|
s->client->name, attr->maxlength, attr->fragsize, minfrag,
|
|
|
|
|
latency);
|
|
|
|
|
|
|
|
|
|
return latency / frame_size;
|
2020-10-20 16:25:47 +02:00
|
|
|
}
|
|
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
static uint64_t set_record_buffer_attr(struct stream *s, struct buffer_attr *attr)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
2021-01-30 19:32:13 +01:00
|
|
|
struct spa_dict_item items[3];
|
2022-01-28 17:34:36 +01:00
|
|
|
char latency[32];
|
2021-01-30 19:32:13 +01:00
|
|
|
char attr_maxlength[32];
|
|
|
|
|
char attr_fragsize[32];
|
2020-11-09 11:13:06 +01:00
|
|
|
struct spa_fraction lat;
|
|
|
|
|
uint64_t lat_usec;
|
2020-10-20 16:25:47 +02:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
lat.denom = s->ss.rate;
|
|
|
|
|
lat.num = fix_record_buffer_attr(s, &s->attr);
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
if (lat.num * s->min_quantum.denom / lat.denom < s->min_quantum.num)
|
|
|
|
|
lat.num = (s->min_quantum.num * lat.denom +
|
|
|
|
|
(s->min_quantum.denom -1)) / s->min_quantum.denom;
|
2020-11-09 11:13:06 +01:00
|
|
|
lat_usec = lat.num * SPA_USEC_PER_SEC / lat.denom;
|
|
|
|
|
|
2021-02-02 12:09:29 +01:00
|
|
|
snprintf(latency, sizeof(latency), "%u/%u", lat.num, lat.denom);
|
2020-10-20 16:25:47 +02:00
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
snprintf(attr_maxlength, sizeof(attr_maxlength), "%u", s->attr.maxlength);
|
|
|
|
|
snprintf(attr_fragsize, sizeof(attr_fragsize), "%u", s->attr.fragsize);
|
2021-02-04 14:53:28 +01:00
|
|
|
|
2020-10-20 16:25:47 +02:00
|
|
|
items[0] = SPA_DICT_ITEM_INIT(PW_KEY_NODE_LATENCY, latency);
|
2021-01-30 19:32:13 +01:00
|
|
|
items[1] = SPA_DICT_ITEM_INIT("pulse.attr.maxlength", attr_maxlength);
|
|
|
|
|
items[2] = SPA_DICT_ITEM_INIT("pulse.attr.fragsize", attr_fragsize);
|
2022-01-28 17:34:36 +01:00
|
|
|
pw_stream_update_properties(s->stream, &SPA_DICT_INIT(items, 3));
|
|
|
|
|
|
|
|
|
|
return lat_usec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int reply_create_record_stream(struct stream *stream, struct pw_manager_object *peer)
|
|
|
|
|
{
|
|
|
|
|
struct client *client = stream->client;
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
char *tmp;
|
|
|
|
|
struct message *reply;
|
|
|
|
|
const char *peer_name, *name;
|
|
|
|
|
uint32_t peer_index;
|
|
|
|
|
uint64_t lat_usec;
|
|
|
|
|
|
|
|
|
|
stream->buffer = calloc(1, MAXLENGTH);
|
|
|
|
|
if (stream->buffer == NULL)
|
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
|
|
lat_usec = set_record_buffer_attr(stream, &stream->attr);
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
stream->index = id_to_index(manager, stream->id);
|
|
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
pw_log_info("[%s] reply CREATE_RECORD_STREAM tag:%u index:%u latency:%"PRIu64,
|
|
|
|
|
client->name, stream->create_tag, stream->index, lat_usec);
|
2020-11-24 11:27:38 +01:00
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
reply = reply_new(client, stream->create_tag);
|
|
|
|
|
message_put(reply,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, stream->channel, /* stream index/channel */
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, stream->index, /* source_output/stream index */
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (peer && pw_manager_object_is_sink_input(peer))
|
2020-10-28 16:48:46 +01:00
|
|
|
peer = find_linked(manager, peer->id, PW_DIRECTION_OUTPUT);
|
2021-04-15 15:53:05 -04:00
|
|
|
if (peer && pw_manager_object_is_source_or_monitor(peer)) {
|
2020-10-26 18:29:15 +01:00
|
|
|
name = pw_properties_get(peer->props, PW_KEY_NODE_NAME);
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_source(peer)) {
|
2020-10-26 18:29:15 +01:00
|
|
|
size_t len = (name ? strlen(name) : 5) + 10;
|
2022-01-17 11:28:40 +01:00
|
|
|
peer_index = peer->index;
|
2020-10-26 18:29:15 +01:00
|
|
|
peer_name = tmp = alloca(len);
|
|
|
|
|
snprintf(tmp, len, "%s.monitor", name ? name : "sink");
|
2020-10-26 18:10:05 +01:00
|
|
|
} else {
|
2022-01-17 11:28:40 +01:00
|
|
|
peer_index = peer->index;
|
2020-10-26 18:29:15 +01:00
|
|
|
peer_name = name;
|
2020-10-26 18:10:05 +01:00
|
|
|
}
|
2020-10-26 16:39:49 +01:00
|
|
|
} else {
|
2022-01-17 11:28:40 +01:00
|
|
|
peer_index = SPA_ID_INVALID;
|
2020-10-26 16:39:49 +01:00
|
|
|
peer_name = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
if (client->version >= 9) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, stream->attr.maxlength,
|
|
|
|
|
TAG_U32, stream->attr.fragsize,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 12) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_SAMPLE_SPEC, &stream->ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &stream->map,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, peer_index, /* source index */
|
2020-10-26 16:39:49 +01:00
|
|
|
TAG_STRING, peer_name, /* source name */
|
2020-11-09 11:13:06 +01:00
|
|
|
TAG_BOOLEAN, false, /* source suspended state */
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 13) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-11-09 11:13:06 +01:00
|
|
|
TAG_USEC, lat_usec, /* source configured latency */
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 22) {
|
|
|
|
|
struct format_info info;
|
|
|
|
|
spa_zero(info);
|
|
|
|
|
info.encoding = ENCODING_PCM;
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_FORMAT_INFO, &info, /* source_output format */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
stream->create_tag = SPA_ID_INVALID;
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
2021-08-26 15:53:33 -04:00
|
|
|
static int reply_create_stream(struct stream *stream, struct pw_manager_object *peer)
|
|
|
|
|
{
|
|
|
|
|
return stream->direction == PW_DIRECTION_OUTPUT ?
|
|
|
|
|
reply_create_playback_stream(stream, peer) :
|
|
|
|
|
reply_create_record_stream(stream, peer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void manager_added(void *data, struct pw_manager_object *o)
|
|
|
|
|
{
|
|
|
|
|
struct client *client = data;
|
2021-09-13 10:50:01 +02:00
|
|
|
struct pw_manager *manager = client->manager;
|
2021-08-26 15:53:33 -04:00
|
|
|
const char *str;
|
|
|
|
|
|
|
|
|
|
register_object_message_handlers(o);
|
|
|
|
|
|
2021-09-13 10:50:01 +02:00
|
|
|
if (strcmp(o->type, PW_TYPE_INTERFACE_Core) == 0 && manager->info != NULL) {
|
|
|
|
|
struct pw_core_info *info = manager->info;
|
2021-11-04 18:07:30 +01:00
|
|
|
if (info->props) {
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, "default.clock.rate")) != NULL)
|
|
|
|
|
client->impl->defs.sample_spec.rate = atoi(str);
|
2022-01-12 17:50:12 +01:00
|
|
|
if ((str = spa_dict_lookup(info->props, "default.clock.quantum-limit")) != NULL)
|
|
|
|
|
client->impl->defs.quantum_limit = atoi(str);
|
2021-11-04 18:07:30 +01:00
|
|
|
}
|
2021-09-13 10:50:01 +02:00
|
|
|
}
|
|
|
|
|
|
2021-08-26 15:53:33 -04:00
|
|
|
if (spa_streq(o->type, PW_TYPE_INTERFACE_Metadata)) {
|
|
|
|
|
if (o->props != NULL &&
|
|
|
|
|
(str = pw_properties_get(o->props, PW_KEY_METADATA_NAME)) != NULL)
|
|
|
|
|
handle_metadata(client, NULL, o, str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (spa_streq(o->type, PW_TYPE_INTERFACE_Link)) {
|
|
|
|
|
struct stream *s;
|
|
|
|
|
struct pw_manager_object *peer = NULL;
|
|
|
|
|
spa_list_for_each(s, &client->pending_streams, link) {
|
2021-09-13 10:50:01 +02:00
|
|
|
peer = find_linked(manager, s->id, s->direction);
|
2021-08-26 15:53:33 -04:00
|
|
|
if (peer)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (peer) {
|
|
|
|
|
reply_create_stream(s, peer);
|
|
|
|
|
spa_list_remove(&s->link);
|
2021-12-14 14:39:38 +01:00
|
|
|
s->pending = false;
|
2021-08-26 15:53:33 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
send_object_event(client, o, SUBSCRIPTION_EVENT_NEW);
|
|
|
|
|
|
|
|
|
|
/* Adding sinks etc. may also change defaults */
|
|
|
|
|
send_default_change_subscribe_event(client, pw_manager_object_is_sink(o), pw_manager_object_is_source_or_monitor(o));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void manager_updated(void *data, struct pw_manager_object *o)
|
|
|
|
|
{
|
|
|
|
|
struct client *client = data;
|
|
|
|
|
|
|
|
|
|
send_object_event(client, o, SUBSCRIPTION_EVENT_CHANGE);
|
|
|
|
|
|
|
|
|
|
send_latency_offset_subscribe_event(client, o);
|
|
|
|
|
send_default_change_subscribe_event(client, pw_manager_object_is_sink(o), pw_manager_object_is_source_or_monitor(o));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void manager_removed(void *data, struct pw_manager_object *o)
|
|
|
|
|
{
|
|
|
|
|
struct client *client = data;
|
|
|
|
|
const char *str;
|
|
|
|
|
|
|
|
|
|
send_object_event(client, o, SUBSCRIPTION_EVENT_REMOVE);
|
|
|
|
|
|
|
|
|
|
send_default_change_subscribe_event(client, pw_manager_object_is_sink(o), pw_manager_object_is_source_or_monitor(o));
|
|
|
|
|
|
|
|
|
|
if (spa_streq(o->type, PW_TYPE_INTERFACE_Metadata)) {
|
|
|
|
|
if (o->props != NULL &&
|
|
|
|
|
(str = pw_properties_get(o->props, PW_KEY_METADATA_NAME)) != NULL)
|
|
|
|
|
handle_metadata(client, o, NULL, str);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int json_object_find(const char *obj, const char *key, char *value, size_t len)
|
|
|
|
|
{
|
|
|
|
|
struct spa_json it[2];
|
|
|
|
|
const char *v;
|
|
|
|
|
char k[128];
|
|
|
|
|
|
|
|
|
|
spa_json_init(&it[0], obj, strlen(obj));
|
|
|
|
|
if (spa_json_enter_object(&it[0], &it[1]) <= 0)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
2022-01-04 10:42:32 +01:00
|
|
|
while (spa_json_get_string(&it[1], k, sizeof(k)) > 0) {
|
2021-08-26 15:53:33 -04:00
|
|
|
if (spa_streq(k, key)) {
|
|
|
|
|
if (spa_json_get_string(&it[1], value, len) <= 0)
|
|
|
|
|
continue;
|
|
|
|
|
return 0;
|
|
|
|
|
} else {
|
|
|
|
|
if (spa_json_next(&it[1], &v) <= 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void manager_metadata(void *data, struct pw_manager_object *o,
|
|
|
|
|
uint32_t subject, const char *key, const char *type, const char *value)
|
|
|
|
|
{
|
|
|
|
|
struct client *client = data;
|
|
|
|
|
bool changed = false;
|
|
|
|
|
|
|
|
|
|
pw_log_debug("meta id:%d subject:%d key:%s type:%s value:%s",
|
|
|
|
|
o->id, subject, key, type, value);
|
|
|
|
|
|
|
|
|
|
if (subject == PW_ID_CORE && o == client->metadata_default) {
|
|
|
|
|
char name[1024];
|
|
|
|
|
|
|
|
|
|
if (key == NULL || spa_streq(key, "default.audio.sink")) {
|
|
|
|
|
if (value != NULL) {
|
|
|
|
|
if (json_object_find(value,
|
|
|
|
|
"name", name, sizeof(name)) < 0)
|
|
|
|
|
value = NULL;
|
|
|
|
|
else
|
|
|
|
|
value = name;
|
|
|
|
|
}
|
|
|
|
|
if ((changed = !spa_streq(client->default_sink, value))) {
|
|
|
|
|
free(client->default_sink);
|
|
|
|
|
client->default_sink = value ? strdup(value) : NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (key == NULL || spa_streq(key, "default.audio.source")) {
|
|
|
|
|
if (value != NULL) {
|
|
|
|
|
if (json_object_find(value,
|
|
|
|
|
"name", name, sizeof(name)) < 0)
|
|
|
|
|
value = NULL;
|
|
|
|
|
else
|
|
|
|
|
value = name;
|
|
|
|
|
}
|
|
|
|
|
if ((changed = !spa_streq(client->default_source, value))) {
|
|
|
|
|
free(client->default_source);
|
|
|
|
|
client->default_source = value ? strdup(value) : NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (changed)
|
|
|
|
|
send_default_change_subscribe_event(client, true, true);
|
|
|
|
|
}
|
|
|
|
|
if (subject == PW_ID_CORE && o == client->metadata_routes) {
|
|
|
|
|
if (key == NULL)
|
|
|
|
|
pw_properties_clear(client->routes);
|
|
|
|
|
else
|
|
|
|
|
pw_properties_set(client->routes, key, value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-10 13:46:29 +01:00
|
|
|
|
|
|
|
|
static void do_free_client(void *obj, void *data, int res, uint32_t id)
|
|
|
|
|
{
|
2022-01-31 17:30:40 +01:00
|
|
|
struct client *client = obj;
|
2021-11-10 13:46:29 +01:00
|
|
|
client_free(client);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void manager_disconnect(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct client *client = data;
|
|
|
|
|
pw_log_debug("manager_disconnect()");
|
2022-01-31 17:30:40 +01:00
|
|
|
pw_work_queue_add(client->impl->work_queue, client, 0,
|
|
|
|
|
do_free_client, NULL);
|
2021-11-10 13:46:29 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-26 15:53:33 -04:00
|
|
|
static const struct pw_manager_events manager_events = {
|
|
|
|
|
PW_VERSION_MANAGER_EVENTS,
|
|
|
|
|
.sync = manager_sync,
|
|
|
|
|
.added = manager_added,
|
|
|
|
|
.updated = manager_updated,
|
|
|
|
|
.removed = manager_removed,
|
|
|
|
|
.metadata = manager_metadata,
|
2021-11-10 13:46:29 +01:00
|
|
|
.disconnect = manager_disconnect
|
2021-08-26 15:53:33 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int do_set_client_name(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
const char *name = NULL;
|
|
|
|
|
int res = 0, changed = 0;
|
|
|
|
|
|
|
|
|
|
if (client->version < 13) {
|
|
|
|
|
if (message_get(m,
|
|
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_INVALID) < 0)
|
|
|
|
|
return -EPROTO;
|
|
|
|
|
if (name)
|
|
|
|
|
changed += pw_properties_set(client->props,
|
|
|
|
|
PW_KEY_APP_NAME, name);
|
|
|
|
|
} else {
|
|
|
|
|
if (message_get(m,
|
|
|
|
|
TAG_PROPLIST, client->props,
|
|
|
|
|
TAG_INVALID) < 0)
|
|
|
|
|
return -EPROTO;
|
|
|
|
|
changed++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
client->name = pw_properties_get(client->props, PW_KEY_APP_NAME);
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%d", client->name,
|
2021-08-26 15:53:33 -04:00
|
|
|
commands[command].name, tag);
|
|
|
|
|
|
2022-01-22 11:51:11 +01:00
|
|
|
client_update_quirks(client);
|
|
|
|
|
|
2021-08-26 15:53:33 -04:00
|
|
|
if (client->core == NULL) {
|
|
|
|
|
client->core = pw_context_connect(impl->context,
|
|
|
|
|
pw_properties_copy(client->props), 0);
|
|
|
|
|
if (client->core == NULL) {
|
|
|
|
|
res = -errno;
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
client->manager = pw_manager_new(client->core);
|
|
|
|
|
if (client->manager == NULL) {
|
|
|
|
|
res = -errno;
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
client->connect_tag = tag;
|
|
|
|
|
pw_manager_add_listener(client->manager, &client->manager_listener,
|
|
|
|
|
&manager_events, client);
|
|
|
|
|
} else {
|
|
|
|
|
if (changed)
|
|
|
|
|
pw_core_update_properties(client->core, &client->props->dict);
|
|
|
|
|
|
|
|
|
|
if (client->connect_tag == SPA_ID_INVALID)
|
|
|
|
|
res = reply_set_client_name(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
error:
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_error("%p: failed to connect client: %s", impl, spa_strerror(res));
|
2021-08-26 15:53:33 -04:00
|
|
|
return res;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_subscribe(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
uint32_t mask;
|
|
|
|
|
|
|
|
|
|
if (message_get(m,
|
|
|
|
|
TAG_U32, &mask,
|
|
|
|
|
TAG_INVALID) < 0)
|
|
|
|
|
return -EPROTO;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] SUBSCRIBE tag:%u mask:%08x",
|
2021-08-26 15:53:33 -04:00
|
|
|
client->name, tag, mask);
|
|
|
|
|
|
|
|
|
|
client->subscribed = mask;
|
|
|
|
|
|
|
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-16 17:21:26 +01:00
|
|
|
static void stream_control_info(void *data, uint32_t id,
|
|
|
|
|
const struct pw_stream_control *control)
|
|
|
|
|
{
|
|
|
|
|
struct stream *stream = data;
|
|
|
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
|
case SPA_PROP_channelVolumes:
|
|
|
|
|
stream->volume.channels = control->n_values;
|
|
|
|
|
memcpy(stream->volume.values, control->values, control->n_values * sizeof(float));
|
|
|
|
|
pw_log_info("stream %p: volume changed %f", stream, stream->volume.values[0]);
|
|
|
|
|
break;
|
|
|
|
|
case SPA_PROP_mute:
|
|
|
|
|
stream->muted = control->values[0] >= 0.5;
|
|
|
|
|
pw_log_info("stream %p: mute changed %d", stream, stream->muted);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-31 02:07:07 +01:00
|
|
|
static void do_destroy_stream(void *obj, void *data, int res, uint32_t id)
|
2021-04-21 12:55:49 +02:00
|
|
|
{
|
|
|
|
|
struct stream *stream = obj;
|
2022-01-30 15:44:48 +01:00
|
|
|
|
2021-04-21 12:55:49 +02:00
|
|
|
stream_free(stream);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 16:19:53 +02:00
|
|
|
static void stream_state_changed(void *data, enum pw_stream_state old,
|
|
|
|
|
enum pw_stream_state state, const char *error)
|
|
|
|
|
{
|
|
|
|
|
struct stream *stream = data;
|
2020-10-02 17:14:57 +02:00
|
|
|
struct client *client = stream->client;
|
2020-11-16 13:31:15 +01:00
|
|
|
struct impl *impl = client->impl;
|
2022-01-31 02:07:07 +01:00
|
|
|
bool destroy_stream = false;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
|
case PW_STREAM_STATE_ERROR:
|
2020-12-01 09:37:40 +01:00
|
|
|
reply_error(client, -1, stream->create_tag, -EIO);
|
2022-01-31 02:07:07 +01:00
|
|
|
destroy_stream = true;
|
2020-10-02 16:19:53 +02:00
|
|
|
break;
|
|
|
|
|
case PW_STREAM_STATE_UNCONNECTED:
|
2021-05-26 10:44:59 +02:00
|
|
|
if (stream->create_tag != SPA_ID_INVALID)
|
|
|
|
|
reply_error(client, -1, stream->create_tag, -ENOENT);
|
2022-01-31 01:53:27 +01:00
|
|
|
else
|
2021-03-22 10:29:45 +01:00
|
|
|
stream->killed = true;
|
2022-01-31 02:07:07 +01:00
|
|
|
destroy_stream = true;
|
2020-10-02 16:19:53 +02:00
|
|
|
break;
|
|
|
|
|
case PW_STREAM_STATE_CONNECTING:
|
|
|
|
|
case PW_STREAM_STATE_PAUSED:
|
|
|
|
|
case PW_STREAM_STATE_STREAMING:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2022-01-31 02:07:07 +01:00
|
|
|
|
|
|
|
|
if (destroy_stream) {
|
2021-04-21 12:55:49 +02:00
|
|
|
pw_work_queue_add(impl->work_queue, stream, 0,
|
2022-01-31 02:07:07 +01:00
|
|
|
do_destroy_stream, NULL);
|
2021-04-21 12:55:49 +02:00
|
|
|
}
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 11:34:23 +02:00
|
|
|
static const struct spa_pod *get_buffers_param(struct stream *s,
|
|
|
|
|
struct buffer_attr *attr, struct spa_pod_builder *b)
|
|
|
|
|
{
|
|
|
|
|
const struct spa_pod *param;
|
|
|
|
|
uint32_t blocks, buffers, size, maxsize, stride;
|
2022-01-12 17:50:12 +01:00
|
|
|
struct defs *defs = &s->impl->defs;
|
2020-10-06 11:34:23 +02:00
|
|
|
|
|
|
|
|
blocks = 1;
|
|
|
|
|
stride = s->frame_size;
|
|
|
|
|
|
2022-01-12 17:50:12 +01:00
|
|
|
maxsize = defs->quantum_limit * 32 * s->frame_size;
|
2020-10-06 16:36:37 +02:00
|
|
|
if (s->direction == PW_DIRECTION_OUTPUT) {
|
2021-12-14 15:42:19 +01:00
|
|
|
size = attr->minreq;
|
2020-10-06 16:36:37 +02:00
|
|
|
} else {
|
|
|
|
|
size = attr->fragsize;
|
|
|
|
|
}
|
2020-10-06 11:34:23 +02:00
|
|
|
buffers = SPA_CLAMP(maxsize / size, MIN_BUFFERS, MAX_BUFFERS);
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] stride %d maxsize %d size %u buffers %d", s->client->name,
|
|
|
|
|
stride, maxsize, size, buffers);
|
2020-10-06 11:34:23 +02:00
|
|
|
|
|
|
|
|
param = spa_pod_builder_add_object(b,
|
|
|
|
|
SPA_TYPE_OBJECT_ParamBuffers, SPA_PARAM_Buffers,
|
2021-12-14 15:42:19 +01:00
|
|
|
SPA_PARAM_BUFFERS_buffers, SPA_POD_CHOICE_RANGE_Int(buffers,
|
|
|
|
|
MIN_BUFFERS, MAX_BUFFERS),
|
2020-10-06 11:34:23 +02:00
|
|
|
SPA_PARAM_BUFFERS_blocks, SPA_POD_Int(blocks),
|
|
|
|
|
SPA_PARAM_BUFFERS_size, SPA_POD_CHOICE_RANGE_Int(
|
|
|
|
|
size, size, maxsize),
|
2022-01-03 12:32:26 +01:00
|
|
|
SPA_PARAM_BUFFERS_stride, SPA_POD_Int(stride));
|
2020-10-06 11:34:23 +02:00
|
|
|
return param;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 16:19:53 +02:00
|
|
|
static void stream_param_changed(void *data, uint32_t id, const struct spa_pod *param)
|
|
|
|
|
{
|
|
|
|
|
struct stream *stream = data;
|
2020-10-06 11:34:23 +02:00
|
|
|
const struct spa_pod *params[4];
|
|
|
|
|
uint32_t n_params = 0;
|
|
|
|
|
uint8_t buffer[4096];
|
|
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buffer, sizeof(buffer));
|
|
|
|
|
int res;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
|
|
|
|
if (id != SPA_PARAM_Format || param == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2021-08-25 17:33:22 +02:00
|
|
|
if ((res = format_parse_param(param, &stream->ss, &stream->map, NULL, NULL)) < 0) {
|
2020-10-06 11:34:23 +02:00
|
|
|
pw_stream_set_error(stream->stream, res, "format not supported");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 12:56:19 +01:00
|
|
|
pw_log_info("[%s] got format:%s rate:%u channels:%u", stream->client->name,
|
|
|
|
|
format_id2name(stream->ss.format),
|
2021-12-16 12:24:59 +01:00
|
|
|
stream->ss.rate, stream->ss.channels);
|
2020-10-06 11:34:23 +02:00
|
|
|
|
2020-10-05 17:13:04 +02:00
|
|
|
stream->frame_size = sample_spec_frame_size(&stream->ss);
|
2020-10-20 16:25:47 +02:00
|
|
|
if (stream->frame_size == 0) {
|
|
|
|
|
pw_stream_set_error(stream->stream, res, "format not supported");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-01-12 13:14:05 +01:00
|
|
|
stream->rate = stream->ss.rate;
|
2020-10-05 17:13:04 +02:00
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
if (stream->create_tag != SPA_ID_INVALID) {
|
2021-08-26 15:53:33 -04:00
|
|
|
struct pw_manager_object *peer;
|
2020-10-26 13:28:45 +01:00
|
|
|
stream->id = pw_stream_get_node_id(stream->stream);
|
|
|
|
|
|
2020-10-06 06:25:13 +02:00
|
|
|
if (stream->volume_set) {
|
|
|
|
|
pw_stream_set_control(stream->stream,
|
|
|
|
|
SPA_PROP_channelVolumes, stream->volume.channels, stream->volume.values, 0);
|
|
|
|
|
}
|
|
|
|
|
if (stream->muted_set) {
|
|
|
|
|
float val = stream->muted ? 1.0f : 0.0f;
|
|
|
|
|
pw_stream_set_control(stream->stream,
|
|
|
|
|
SPA_PROP_mute, 1, &val, 0);
|
|
|
|
|
}
|
2020-10-05 17:13:04 +02:00
|
|
|
if (stream->corked)
|
|
|
|
|
pw_stream_set_active(stream->stream, false);
|
2020-10-06 11:34:23 +02:00
|
|
|
|
2021-08-26 15:53:33 -04:00
|
|
|
/* if peer exists, reply immediately, otherwise reply when the link is created */
|
|
|
|
|
peer = find_linked(stream->client->manager, stream->id, stream->direction);
|
2021-12-14 14:39:38 +01:00
|
|
|
if (peer) {
|
2021-08-26 15:53:33 -04:00
|
|
|
reply_create_stream(stream, peer);
|
2021-12-14 14:39:38 +01:00
|
|
|
} else {
|
2021-08-26 15:53:33 -04:00
|
|
|
spa_list_append(&stream->client->pending_streams, &stream->link);
|
2021-12-14 14:39:38 +01:00
|
|
|
stream->pending = true;
|
|
|
|
|
}
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
2020-10-06 11:34:23 +02:00
|
|
|
|
|
|
|
|
params[n_params++] = get_buffers_param(stream, &stream->attr, &b);
|
|
|
|
|
pw_stream_update_params(stream->stream, params, n_params);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-08 17:22:15 +01:00
|
|
|
static void stream_io_changed(void *data, uint32_t id, void *area, uint32_t size)
|
|
|
|
|
{
|
|
|
|
|
struct stream *stream = data;
|
|
|
|
|
switch (id) {
|
|
|
|
|
case SPA_IO_RateMatch:
|
|
|
|
|
stream->rate_match = area;
|
|
|
|
|
break;
|
2021-12-14 15:48:54 +01:00
|
|
|
case SPA_IO_Position:
|
|
|
|
|
stream->position = area;
|
|
|
|
|
break;
|
2021-01-08 17:22:15 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 12:59:53 +02:00
|
|
|
struct process_data {
|
2020-11-09 11:13:06 +01:00
|
|
|
struct pw_time pwt;
|
2021-06-21 10:46:25 +02:00
|
|
|
uint32_t read_inc;
|
|
|
|
|
uint32_t write_inc;
|
2020-11-09 11:13:06 +01:00
|
|
|
uint32_t underrun_for;
|
|
|
|
|
uint32_t playing_for;
|
2021-12-14 15:48:54 +01:00
|
|
|
uint32_t minreq;
|
|
|
|
|
uint32_t quantum;
|
2020-10-23 12:59:53 +02:00
|
|
|
unsigned int underrun:1;
|
|
|
|
|
};
|
|
|
|
|
|
2020-10-08 15:53:42 +02:00
|
|
|
static int
|
|
|
|
|
do_process_done(struct spa_loop *loop,
|
2021-08-09 15:27:42 +02:00
|
|
|
bool async, uint32_t seq, const void *data, size_t size, void *user_data)
|
2020-10-06 11:34:23 +02:00
|
|
|
{
|
2020-10-08 15:53:42 +02:00
|
|
|
struct stream *stream = user_data;
|
|
|
|
|
struct client *client = stream->client;
|
2021-01-19 11:06:00 +01:00
|
|
|
struct impl *impl = client->impl;
|
2020-10-23 12:59:53 +02:00
|
|
|
const struct process_data *pd = data;
|
2021-02-09 17:37:41 +01:00
|
|
|
uint32_t index, towrite;
|
2020-11-09 11:13:06 +01:00
|
|
|
int32_t avail;
|
|
|
|
|
|
2020-11-18 20:15:20 +01:00
|
|
|
stream->timestamp = pd->pwt.now;
|
2020-11-18 20:21:14 +01:00
|
|
|
if (pd->pwt.rate.denom > 0)
|
2020-11-09 11:13:06 +01:00
|
|
|
stream->delay = pd->pwt.delay * SPA_USEC_PER_SEC / pd->pwt.rate.denom;
|
2020-11-18 20:21:14 +01:00
|
|
|
else
|
2020-11-09 11:13:06 +01:00
|
|
|
stream->delay = 0;
|
2020-10-06 11:34:23 +02:00
|
|
|
|
2020-10-08 15:53:42 +02:00
|
|
|
if (stream->direction == PW_DIRECTION_OUTPUT) {
|
2021-12-20 17:33:55 +01:00
|
|
|
if (pd->quantum != stream->last_quantum)
|
2021-12-14 15:48:54 +01:00
|
|
|
stream_update_minreq(stream, pd->minreq);
|
|
|
|
|
stream->last_quantum = pd->quantum;
|
|
|
|
|
|
2021-06-21 10:46:25 +02:00
|
|
|
stream->read_index += pd->read_inc;
|
2020-10-23 12:59:53 +02:00
|
|
|
if (stream->corked) {
|
2021-01-18 17:16:37 +01:00
|
|
|
if (stream->underrun_for != (uint64_t)-1)
|
|
|
|
|
stream->underrun_for += pd->underrun_for;
|
2020-10-23 12:59:53 +02:00
|
|
|
stream->playing_for = 0;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (pd->underrun != stream->is_underrun) {
|
|
|
|
|
stream->is_underrun = pd->underrun;
|
|
|
|
|
stream->underrun_for = 0;
|
|
|
|
|
stream->playing_for = 0;
|
|
|
|
|
if (pd->underrun)
|
2022-01-14 10:41:11 +01:00
|
|
|
stream_send_underflow(stream, stream->read_index);
|
2020-10-23 12:59:53 +02:00
|
|
|
else
|
2021-06-18 23:36:35 +02:00
|
|
|
stream_send_started(stream);
|
2020-10-23 12:59:53 +02:00
|
|
|
}
|
|
|
|
|
stream->playing_for += pd->playing_for;
|
2021-01-18 17:16:37 +01:00
|
|
|
if (stream->underrun_for != (uint64_t)-1)
|
|
|
|
|
stream->underrun_for += pd->underrun_for;
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
stream_send_request(stream);
|
2020-10-08 15:53:42 +02:00
|
|
|
} else {
|
2020-11-09 12:06:44 +01:00
|
|
|
struct message *msg;
|
2021-06-21 10:46:25 +02:00
|
|
|
stream->write_index += pd->write_inc;
|
2021-01-20 10:41:34 +01:00
|
|
|
|
2020-11-09 11:13:06 +01:00
|
|
|
avail = spa_ringbuffer_get_read_index(&stream->ring, &index);
|
2021-01-20 10:41:34 +01:00
|
|
|
|
|
|
|
|
if (!spa_list_is_empty(&client->out_messages)) {
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_debug("%p: [%s] pending read:%u avail:%d",
|
2021-01-20 10:41:34 +01:00
|
|
|
stream, client->name, index, avail);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-14 17:42:52 +02:00
|
|
|
if (avail <= 0) {
|
2020-11-09 12:06:44 +01:00
|
|
|
/* underrun, can't really happen but if it does we
|
|
|
|
|
* do nothing and wait for more data */
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_warn("%p: [%s] underrun read:%u avail:%d",
|
2020-11-19 17:45:19 +01:00
|
|
|
stream, client->name, index, avail);
|
2020-10-08 15:53:42 +02:00
|
|
|
} else {
|
2020-11-09 12:06:44 +01:00
|
|
|
if (avail > (int32_t)stream->attr.maxlength) {
|
2021-06-21 10:46:25 +02:00
|
|
|
uint32_t skip = avail - stream->attr.fragsize;
|
2020-11-09 12:06:44 +01:00
|
|
|
/* overrun, catch up to latest fragment and send it */
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_warn("%p: [%s] overrun recover read:%u avail:%d max:%u skip:%u",
|
2021-06-21 10:46:25 +02:00
|
|
|
stream, client->name, index, avail, stream->attr.maxlength, skip);
|
|
|
|
|
index += skip;
|
|
|
|
|
stream->read_index += skip;
|
2020-11-09 12:06:44 +01:00
|
|
|
avail = stream->attr.fragsize;
|
|
|
|
|
}
|
2020-10-08 15:53:42 +02:00
|
|
|
|
2021-02-09 17:37:41 +01:00
|
|
|
while (avail > 0) {
|
|
|
|
|
towrite = avail;
|
|
|
|
|
if (towrite > stream->attr.fragsize)
|
|
|
|
|
towrite = stream->attr.fragsize;
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2021-02-09 17:37:41 +01:00
|
|
|
msg = message_alloc(impl, stream->channel, towrite);
|
|
|
|
|
if (msg == NULL)
|
|
|
|
|
return -errno;
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2021-02-09 17:37:41 +01:00
|
|
|
spa_ringbuffer_read_data(&stream->ring,
|
2022-01-28 16:21:03 +01:00
|
|
|
stream->buffer, MAXLENGTH,
|
|
|
|
|
index % MAXLENGTH,
|
2021-02-09 17:37:41 +01:00
|
|
|
msg->data, towrite);
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
client_queue_message(client, msg);
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2021-02-09 17:37:41 +01:00
|
|
|
index += towrite;
|
|
|
|
|
avail -= towrite;
|
2021-06-21 10:46:25 +02:00
|
|
|
stream->read_index += towrite;
|
2021-02-09 17:37:41 +01:00
|
|
|
}
|
2021-06-21 10:46:25 +02:00
|
|
|
spa_ringbuffer_read_update(&stream->ring, index);
|
2020-10-08 15:53:42 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2020-10-08 15:53:42 +02:00
|
|
|
static void stream_process(void *data)
|
2020-10-02 16:19:53 +02:00
|
|
|
{
|
2020-10-08 15:53:42 +02:00
|
|
|
struct stream *stream = data;
|
2020-11-12 13:33:25 +01:00
|
|
|
struct client *client = stream->client;
|
2020-10-08 15:53:42 +02:00
|
|
|
struct impl *impl = stream->impl;
|
|
|
|
|
void *p;
|
2020-10-02 16:19:53 +02:00
|
|
|
struct pw_buffer *buffer;
|
|
|
|
|
struct spa_buffer *buf;
|
2021-08-23 17:27:45 +02:00
|
|
|
uint32_t size, minreq = 0, index;
|
2020-10-23 12:59:53 +02:00
|
|
|
struct process_data pd;
|
2021-12-18 12:32:20 +01:00
|
|
|
bool do_flush = false;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2021-11-09 16:29:46 +01:00
|
|
|
if (stream->create_tag != SPA_ID_INVALID)
|
|
|
|
|
return;
|
2020-10-06 16:36:37 +02:00
|
|
|
|
2021-11-09 16:29:46 +01:00
|
|
|
pw_log_trace_fp("%p: process", stream);
|
2020-10-06 16:36:37 +02:00
|
|
|
buffer = pw_stream_dequeue_buffer(stream->stream);
|
|
|
|
|
if (buffer == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2021-08-09 15:27:42 +02:00
|
|
|
buf = buffer->buffer;
|
|
|
|
|
if ((p = buf->datas[0].data) == NULL)
|
2020-10-06 16:36:37 +02:00
|
|
|
return;
|
|
|
|
|
|
2020-10-23 12:59:53 +02:00
|
|
|
spa_zero(pd);
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2020-10-08 15:53:42 +02:00
|
|
|
if (stream->direction == PW_DIRECTION_OUTPUT) {
|
2021-06-21 10:46:25 +02:00
|
|
|
int32_t avail = spa_ringbuffer_get_read_index(&stream->ring, &index);
|
2021-01-18 16:24:46 +01:00
|
|
|
|
2021-01-12 13:14:05 +01:00
|
|
|
if (stream->rate_match)
|
2021-01-16 17:16:02 +01:00
|
|
|
minreq = stream->rate_match->size * stream->frame_size;
|
2021-08-23 17:27:45 +02:00
|
|
|
if (minreq == 0)
|
2021-02-23 12:29:39 +01:00
|
|
|
minreq = stream->attr.minreq;
|
2021-01-18 16:24:46 +01:00
|
|
|
|
2021-12-14 15:48:54 +01:00
|
|
|
pd.minreq = minreq;
|
|
|
|
|
pd.quantum = stream->position ? stream->position->clock.duration : minreq;
|
2021-12-03 16:43:16 +01:00
|
|
|
|
2021-02-02 10:42:34 +01:00
|
|
|
if (avail < (int32_t)minreq || stream->corked) {
|
2020-11-09 12:06:44 +01:00
|
|
|
/* underrun, produce a silence buffer */
|
2020-12-11 18:09:21 +01:00
|
|
|
size = SPA_MIN(buf->datas[0].maxsize, minreq);
|
2020-10-08 15:53:42 +02:00
|
|
|
memset(p, 0, size);
|
2020-10-31 15:22:32 +01:00
|
|
|
|
2022-01-25 15:20:27 +01:00
|
|
|
if (stream->draining && !stream->corked) {
|
2020-11-16 15:42:04 +01:00
|
|
|
stream->draining = false;
|
2021-12-18 12:32:20 +01:00
|
|
|
do_flush = true;
|
2020-11-16 15:42:04 +01:00
|
|
|
} else {
|
2020-10-31 15:22:32 +01:00
|
|
|
pd.underrun_for = size;
|
|
|
|
|
pd.underrun = true;
|
|
|
|
|
}
|
2021-12-18 12:32:44 +01:00
|
|
|
if ((stream->attr.prebuf == 0 || do_flush) && !stream->corked) {
|
2021-12-14 10:21:11 +01:00
|
|
|
if (avail > 0) {
|
2021-12-18 12:32:44 +01:00
|
|
|
spa_ringbuffer_read_data(&stream->ring,
|
2022-01-28 16:21:03 +01:00
|
|
|
stream->buffer, MAXLENGTH,
|
|
|
|
|
index % MAXLENGTH,
|
2021-12-18 12:32:44 +01:00
|
|
|
p, avail);
|
2021-11-29 20:22:05 +01:00
|
|
|
}
|
2022-01-25 15:21:31 +01:00
|
|
|
pd.playing_for = size;
|
|
|
|
|
pd.read_inc = size;
|
|
|
|
|
index += size;
|
2021-12-14 10:21:11 +01:00
|
|
|
spa_ringbuffer_read_update(&stream->ring, index);
|
2021-01-30 19:45:17 +01:00
|
|
|
}
|
2021-12-09 16:53:29 +01:00
|
|
|
pw_log_debug("%p: [%s] underrun read:%u avail:%d max:%u",
|
|
|
|
|
stream, client->name, index, avail, minreq);
|
2020-10-08 15:53:42 +02:00
|
|
|
} else {
|
2020-11-09 12:06:44 +01:00
|
|
|
if (avail > (int32_t)stream->attr.maxlength) {
|
2021-06-21 10:46:25 +02:00
|
|
|
uint32_t skip = avail - stream->attr.maxlength;
|
2020-11-09 12:06:44 +01:00
|
|
|
/* overrun, reported by other side, here we skip
|
|
|
|
|
* ahead to the oldest data. */
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_debug("%p: [%s] overrun read:%u avail:%d max:%u skip:%u",
|
2021-06-21 10:46:25 +02:00
|
|
|
stream, client->name, index, avail,
|
|
|
|
|
stream->attr.maxlength, skip);
|
|
|
|
|
index += skip;
|
|
|
|
|
pd.read_inc = skip;
|
2020-11-09 12:06:44 +01:00
|
|
|
avail = stream->attr.maxlength;
|
|
|
|
|
}
|
2020-10-08 15:53:42 +02:00
|
|
|
size = SPA_MIN(buf->datas[0].maxsize, (uint32_t)avail);
|
2020-12-11 18:09:21 +01:00
|
|
|
size = SPA_MIN(size, minreq);
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2020-10-08 15:53:42 +02:00
|
|
|
spa_ringbuffer_read_data(&stream->ring,
|
2022-01-28 16:21:03 +01:00
|
|
|
stream->buffer, MAXLENGTH,
|
|
|
|
|
index % MAXLENGTH,
|
2020-10-08 15:53:42 +02:00
|
|
|
p, size);
|
2020-11-09 11:13:06 +01:00
|
|
|
|
2021-06-21 10:46:25 +02:00
|
|
|
index += size;
|
|
|
|
|
pd.read_inc += size;
|
|
|
|
|
spa_ringbuffer_read_update(&stream->ring, index);
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2020-10-23 12:59:53 +02:00
|
|
|
pd.playing_for = size;
|
|
|
|
|
pd.underrun = false;
|
2020-10-08 15:53:42 +02:00
|
|
|
}
|
2021-08-09 15:27:42 +02:00
|
|
|
buf->datas[0].chunk->offset = 0;
|
|
|
|
|
buf->datas[0].chunk->stride = stream->frame_size;
|
|
|
|
|
buf->datas[0].chunk->size = size;
|
|
|
|
|
buffer->size = size / stream->frame_size;
|
2020-10-08 15:53:42 +02:00
|
|
|
} else {
|
2021-06-21 10:46:25 +02:00
|
|
|
int32_t filled = spa_ringbuffer_get_write_index(&stream->ring, &index);
|
2020-11-09 12:06:44 +01:00
|
|
|
size = buf->datas[0].chunk->size;
|
2020-10-08 15:53:42 +02:00
|
|
|
if (filled < 0) {
|
2020-11-09 12:06:44 +01:00
|
|
|
/* underrun, can't really happen because we never read more
|
|
|
|
|
* than what's available on the other side */
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_warn("%p: [%s] underrun write:%u filled:%d",
|
2021-06-21 10:46:25 +02:00
|
|
|
stream, client->name, index, filled);
|
2020-11-09 12:06:44 +01:00
|
|
|
} else if ((uint32_t)filled + size > stream->attr.maxlength) {
|
|
|
|
|
/* overrun, can happen when the other side is not
|
|
|
|
|
* reading fast enough. We still write our data into the
|
2021-01-20 10:41:34 +01:00
|
|
|
* ringbuffer and expect the other side to warn and catch up. */
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_debug("%p: [%s] overrun write:%u filled:%d size:%u max:%u",
|
2021-06-21 10:46:25 +02:00
|
|
|
stream, client->name, index, filled,
|
2020-11-19 17:45:19 +01:00
|
|
|
size, stream->attr.maxlength);
|
2020-10-08 15:53:42 +02:00
|
|
|
}
|
2020-12-17 19:39:12 +01:00
|
|
|
|
2020-11-09 12:06:44 +01:00
|
|
|
spa_ringbuffer_write_data(&stream->ring,
|
2022-01-28 16:21:03 +01:00
|
|
|
stream->buffer, MAXLENGTH,
|
|
|
|
|
index % MAXLENGTH,
|
2021-05-06 13:41:44 +10:00
|
|
|
SPA_PTROFF(p, buf->datas[0].chunk->offset, void),
|
2022-01-28 16:21:03 +01:00
|
|
|
SPA_MIN(size, MAXLENGTH));
|
2020-11-09 12:06:44 +01:00
|
|
|
|
2021-06-21 10:46:25 +02:00
|
|
|
index += size;
|
|
|
|
|
pd.write_inc = size;
|
|
|
|
|
spa_ringbuffer_write_update(&stream->ring, index);
|
2020-10-05 17:13:04 +02:00
|
|
|
}
|
2020-10-08 15:53:42 +02:00
|
|
|
pw_stream_queue_buffer(stream->stream, buffer);
|
|
|
|
|
|
2021-12-18 12:32:20 +01:00
|
|
|
if (do_flush)
|
|
|
|
|
pw_stream_flush(stream->stream, true);
|
|
|
|
|
|
2020-11-09 11:13:06 +01:00
|
|
|
pw_stream_get_time(stream->stream, &pd.pwt);
|
|
|
|
|
|
2020-10-08 15:53:42 +02:00
|
|
|
pw_loop_invoke(impl->loop,
|
2020-10-23 12:59:53 +02:00
|
|
|
do_process_done, 1, &pd, sizeof(pd), false, stream);
|
2020-10-06 16:36:37 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-02 16:19:53 +02:00
|
|
|
static void stream_drained(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct stream *stream = data;
|
2021-11-05 15:42:33 +01:00
|
|
|
if (stream->drain_tag != 0) {
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] drained channel:%u tag:%d",
|
2021-11-05 15:42:33 +01:00
|
|
|
stream->client->name, stream->channel,
|
|
|
|
|
stream->drain_tag);
|
|
|
|
|
reply_simple_ack(stream->client, stream->drain_tag);
|
|
|
|
|
stream->drain_tag = 0;
|
2021-11-05 15:47:49 +01:00
|
|
|
|
|
|
|
|
pw_stream_set_active(stream->stream, true);
|
2021-11-05 15:42:33 +01:00
|
|
|
}
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_stream_events stream_events =
|
|
|
|
|
{
|
|
|
|
|
PW_VERSION_STREAM_EVENTS,
|
2021-02-16 17:21:26 +01:00
|
|
|
.control_info = stream_control_info,
|
2020-10-02 16:19:53 +02:00
|
|
|
.state_changed = stream_state_changed,
|
|
|
|
|
.param_changed = stream_param_changed,
|
2021-01-08 17:22:15 +01:00
|
|
|
.io_changed = stream_io_changed,
|
2020-10-02 16:19:53 +02:00
|
|
|
.process = stream_process,
|
|
|
|
|
.drained = stream_drained,
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-19 15:25:32 +01:00
|
|
|
static void log_format_info(struct impl *impl, enum spa_log_level level, struct format_info *format)
|
|
|
|
|
{
|
|
|
|
|
const struct spa_dict_item *it;
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_logt(level, mod_topic, "%p: format %s",
|
2021-02-19 15:25:32 +01:00
|
|
|
impl, format_encoding2name(format->encoding));
|
|
|
|
|
spa_dict_for_each(it, &format->props->dict)
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_logt(level, mod_topic, "%p: '%s': '%s'",
|
2021-02-19 15:25:32 +01:00
|
|
|
impl, it->key, it->value);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_create_playback_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-02 16:19:53 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2022-01-17 12:48:31 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-02 16:19:53 +02:00
|
|
|
const char *name = NULL;
|
|
|
|
|
int res;
|
|
|
|
|
struct sample_spec ss;
|
|
|
|
|
struct channel_map map;
|
2021-08-18 16:58:22 +02:00
|
|
|
uint32_t sink_index, syncid, rate = 0;
|
2020-10-02 16:19:53 +02:00
|
|
|
const char *sink_name;
|
2021-03-27 17:03:50 +02:00
|
|
|
struct buffer_attr attr = { 0 };
|
2020-10-02 16:19:53 +02:00
|
|
|
bool corked = false,
|
|
|
|
|
no_remap = false,
|
|
|
|
|
no_remix = false,
|
|
|
|
|
fix_format = false,
|
|
|
|
|
fix_rate = false,
|
|
|
|
|
fix_channels = false,
|
|
|
|
|
no_move = false,
|
|
|
|
|
variable_rate = false,
|
|
|
|
|
muted = false,
|
|
|
|
|
adjust_latency = false,
|
|
|
|
|
early_requests = false,
|
|
|
|
|
dont_inhibit_auto_suspend = false,
|
|
|
|
|
volume_set = true,
|
|
|
|
|
muted_set = false,
|
|
|
|
|
fail_on_suspend = false,
|
|
|
|
|
relative_volume = false,
|
|
|
|
|
passthrough = false;
|
2020-10-23 09:36:01 +02:00
|
|
|
struct volume volume;
|
2020-10-02 16:19:53 +02:00
|
|
|
struct pw_properties *props = NULL;
|
|
|
|
|
uint8_t n_formats = 0;
|
2020-10-08 15:53:42 +02:00
|
|
|
struct stream *stream = NULL;
|
2021-02-19 15:25:32 +01:00
|
|
|
uint32_t n_params = 0, n_valid_formats = 0, flags;
|
2021-03-10 16:55:01 +01:00
|
|
|
const struct spa_pod *params[MAX_FORMATS];
|
2020-10-02 16:19:53 +02:00
|
|
|
uint8_t buffer[4096];
|
|
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buffer, sizeof(buffer));
|
|
|
|
|
|
2020-10-27 17:09:30 +01:00
|
|
|
props = pw_properties_copy(client->props);
|
2020-10-29 11:59:16 +01:00
|
|
|
if (props == NULL)
|
|
|
|
|
goto error_errno;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
|
|
|
|
if (client->version < 13) {
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
2020-10-29 11:59:16 +01:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_SAMPLE_SPEC, &ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &map,
|
|
|
|
|
TAG_U32, &sink_index,
|
|
|
|
|
TAG_STRING, &sink_name,
|
|
|
|
|
TAG_U32, &attr.maxlength,
|
|
|
|
|
TAG_BOOLEAN, &corked,
|
|
|
|
|
TAG_U32, &attr.tlength,
|
|
|
|
|
TAG_U32, &attr.prebuf,
|
|
|
|
|
TAG_U32, &attr.minreq,
|
|
|
|
|
TAG_U32, &syncid,
|
|
|
|
|
TAG_CVOLUME, &volume,
|
2020-10-29 11:59:16 +01:00
|
|
|
TAG_INVALID) < 0)
|
|
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] CREATE_PLAYBACK_STREAM tag:%u corked:%u sink-name:%s sink-index:%u",
|
2021-11-05 16:22:22 +01:00
|
|
|
client->name, tag, corked, sink_name, sink_index);
|
2020-10-05 17:13:04 +02:00
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
if (sink_index != SPA_ID_INVALID && sink_name != NULL)
|
|
|
|
|
goto error_invalid;
|
2020-10-21 17:00:49 +02:00
|
|
|
|
2020-10-02 16:19:53 +02:00
|
|
|
if (client->version >= 12) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_BOOLEAN, &no_remap,
|
|
|
|
|
TAG_BOOLEAN, &no_remix,
|
|
|
|
|
TAG_BOOLEAN, &fix_format,
|
|
|
|
|
TAG_BOOLEAN, &fix_rate,
|
|
|
|
|
TAG_BOOLEAN, &fix_channels,
|
|
|
|
|
TAG_BOOLEAN, &no_move,
|
|
|
|
|
TAG_BOOLEAN, &variable_rate,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 13) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_BOOLEAN, &muted,
|
|
|
|
|
TAG_BOOLEAN, &adjust_latency,
|
|
|
|
|
TAG_PROPLIST, props,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 14) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_BOOLEAN, &volume_set,
|
|
|
|
|
TAG_BOOLEAN, &early_requests,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 15) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_BOOLEAN, &muted_set,
|
|
|
|
|
TAG_BOOLEAN, &dont_inhibit_auto_suspend,
|
|
|
|
|
TAG_BOOLEAN, &fail_on_suspend,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 17) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_BOOLEAN, &relative_volume,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 18) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_BOOLEAN, &passthrough,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
2020-10-20 16:25:47 +02:00
|
|
|
|
2020-10-02 16:19:53 +02:00
|
|
|
if (client->version >= 21) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_U8, &n_formats,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
|
|
|
|
if (n_formats) {
|
|
|
|
|
uint8_t i;
|
|
|
|
|
for (i = 0; i < n_formats; i++) {
|
2020-10-20 16:25:47 +02:00
|
|
|
struct format_info format;
|
2021-08-18 16:58:22 +02:00
|
|
|
uint32_t r;
|
2020-11-09 16:51:34 +01:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-20 16:25:47 +02:00
|
|
|
TAG_FORMAT_INFO, &format,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-20 16:25:47 +02:00
|
|
|
|
2021-03-10 16:55:01 +01:00
|
|
|
if (n_params < MAX_FORMATS &&
|
|
|
|
|
(params[n_params] = format_info_build_param(&b,
|
2021-08-18 16:58:22 +02:00
|
|
|
SPA_PARAM_EnumFormat, &format, &r)) != NULL) {
|
2020-10-20 16:25:47 +02:00
|
|
|
n_params++;
|
2021-02-19 15:25:32 +01:00
|
|
|
n_valid_formats++;
|
2021-08-18 16:58:22 +02:00
|
|
|
if (r > rate)
|
|
|
|
|
rate = r;
|
2021-02-19 15:25:32 +01:00
|
|
|
} else {
|
|
|
|
|
log_format_info(impl, SPA_LOG_LEVEL_WARN, &format);
|
|
|
|
|
}
|
2020-11-09 16:51:34 +01:00
|
|
|
format_info_clear(&format);
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-10 16:55:01 +01:00
|
|
|
if (sample_spec_valid(&ss)) {
|
2021-12-16 12:56:19 +01:00
|
|
|
if (fix_format || fix_rate || fix_channels) {
|
|
|
|
|
struct sample_spec sfix = ss;
|
|
|
|
|
if (fix_format)
|
|
|
|
|
sfix.format = SPA_AUDIO_FORMAT_UNKNOWN;
|
|
|
|
|
if (fix_rate)
|
|
|
|
|
sfix.rate = 0;
|
|
|
|
|
if (fix_channels)
|
|
|
|
|
sfix.channels = 0;
|
|
|
|
|
if (n_params < MAX_FORMATS &&
|
|
|
|
|
(params[n_params] = format_build_param(&b,
|
|
|
|
|
SPA_PARAM_EnumFormat, &sfix,
|
|
|
|
|
sfix.channels > 0 ? &map : NULL)) != NULL) {
|
|
|
|
|
n_params++;
|
|
|
|
|
n_valid_formats++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-10 16:55:01 +01:00
|
|
|
if (n_params < MAX_FORMATS &&
|
|
|
|
|
(params[n_params] = format_build_param(&b,
|
2021-12-16 12:24:59 +01:00
|
|
|
SPA_PARAM_EnumFormat, &ss,
|
|
|
|
|
ss.channels > 0 ? &map : NULL)) != NULL) {
|
2021-03-10 16:55:01 +01:00
|
|
|
n_params++;
|
|
|
|
|
n_valid_formats++;
|
|
|
|
|
} else {
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_warn("%p: unsupported format:%s rate:%d channels:%u",
|
2021-03-10 16:55:01 +01:00
|
|
|
impl, format_id2name(ss.format), ss.rate,
|
|
|
|
|
ss.channels);
|
|
|
|
|
}
|
2021-08-18 16:58:22 +02:00
|
|
|
rate = ss.rate;
|
2021-03-10 16:55:01 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
if (m->offset != m->length)
|
|
|
|
|
goto error_protocol;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2021-02-19 15:25:32 +01:00
|
|
|
if (n_valid_formats == 0)
|
|
|
|
|
goto error_no_formats;
|
|
|
|
|
|
2021-11-16 13:08:47 +01:00
|
|
|
stream = stream_new(client, STREAM_TYPE_PLAYBACK, tag, &ss, &map, &attr);
|
2020-10-29 11:59:16 +01:00
|
|
|
if (stream == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
2020-10-05 17:13:04 +02:00
|
|
|
stream->corked = corked;
|
|
|
|
|
stream->adjust_latency = adjust_latency;
|
2021-01-22 11:39:47 +01:00
|
|
|
stream->early_requests = early_requests;
|
2020-10-05 21:11:51 +02:00
|
|
|
stream->volume = volume;
|
2020-10-06 06:25:13 +02:00
|
|
|
stream->volume_set = volume_set;
|
2020-10-05 21:11:51 +02:00
|
|
|
stream->muted = muted;
|
2020-10-06 06:25:13 +02:00
|
|
|
stream->muted_set = muted_set;
|
2020-10-23 12:59:53 +02:00
|
|
|
stream->is_underrun = true;
|
2021-01-18 17:16:37 +01:00
|
|
|
stream->underrun_for = -1;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2021-08-18 16:58:22 +02:00
|
|
|
if (rate != 0)
|
|
|
|
|
pw_properties_setf(props, PW_KEY_NODE_RATE, "1/%u", rate);
|
2020-11-03 21:01:24 +01:00
|
|
|
if (no_remix)
|
|
|
|
|
pw_properties_set(props, PW_KEY_STREAM_DONT_REMIX, "true");
|
2020-10-08 19:35:58 +02:00
|
|
|
flags = 0;
|
|
|
|
|
if (no_move)
|
|
|
|
|
flags |= PW_STREAM_FLAG_DONT_RECONNECT;
|
|
|
|
|
|
2022-01-19 17:09:55 +01:00
|
|
|
if (sink_name != NULL) {
|
2020-10-25 19:51:42 +01:00
|
|
|
pw_properties_set(props,
|
|
|
|
|
PW_KEY_NODE_TARGET, sink_name);
|
2022-01-19 17:09:55 +01:00
|
|
|
pw_properties_set(props,
|
|
|
|
|
PW_KEY_TARGET_OBJECT, sink_name);
|
|
|
|
|
} else if (sink_index != SPA_ID_INVALID && sink_index != 0) {
|
2020-10-25 19:51:42 +01:00
|
|
|
pw_properties_setf(props,
|
2022-01-17 12:48:31 +01:00
|
|
|
PW_KEY_NODE_TARGET, "%u",
|
|
|
|
|
index_to_id(manager, sink_index));
|
2022-01-19 17:09:55 +01:00
|
|
|
pw_properties_setf(props,
|
|
|
|
|
PW_KEY_TARGET_OBJECT, "%u", sink_index);
|
|
|
|
|
}
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2020-10-06 11:34:23 +02:00
|
|
|
stream->stream = pw_stream_new(client->core, name, props);
|
|
|
|
|
props = NULL;
|
2020-10-29 11:59:16 +01:00
|
|
|
if (stream->stream == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_debug("%p: new stream %p channel:%d passthrough:%d",
|
2021-08-20 13:47:23 +02:00
|
|
|
impl, stream, stream->channel, passthrough);
|
2020-11-09 16:53:18 +01:00
|
|
|
|
2020-10-06 11:34:23 +02:00
|
|
|
pw_stream_add_listener(stream->stream,
|
|
|
|
|
&stream->stream_listener,
|
|
|
|
|
&stream_events, stream);
|
|
|
|
|
|
2020-10-02 16:19:53 +02:00
|
|
|
pw_stream_connect(stream->stream,
|
|
|
|
|
PW_DIRECTION_OUTPUT,
|
|
|
|
|
SPA_ID_INVALID,
|
2020-10-08 19:35:58 +02:00
|
|
|
flags |
|
2020-10-02 16:19:53 +02:00
|
|
|
PW_STREAM_FLAG_AUTOCONNECT |
|
2020-10-08 15:53:42 +02:00
|
|
|
PW_STREAM_FLAG_RT_PROCESS |
|
2020-10-02 16:19:53 +02:00
|
|
|
PW_STREAM_FLAG_MAP_BUFFERS,
|
|
|
|
|
params, n_params);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
error_errno:
|
|
|
|
|
res = -errno;
|
|
|
|
|
goto error;
|
|
|
|
|
error_protocol:
|
|
|
|
|
res = -EPROTO;
|
|
|
|
|
goto error;
|
2021-02-19 15:25:32 +01:00
|
|
|
error_no_formats:
|
|
|
|
|
res = -ENOTSUP;
|
|
|
|
|
goto error;
|
2020-10-29 11:59:16 +01:00
|
|
|
error_invalid:
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
goto error;
|
2020-10-02 16:19:53 +02:00
|
|
|
error:
|
2021-06-01 11:21:17 +10:00
|
|
|
pw_properties_free(props);
|
2020-10-02 16:19:53 +02:00
|
|
|
if (stream)
|
|
|
|
|
stream_free(stream);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_create_record_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2022-01-17 12:48:31 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-04 20:20:58 +02:00
|
|
|
const char *name = NULL;
|
|
|
|
|
int res;
|
|
|
|
|
struct sample_spec ss;
|
|
|
|
|
struct channel_map map;
|
|
|
|
|
uint32_t source_index;
|
|
|
|
|
const char *source_name;
|
|
|
|
|
struct buffer_attr attr;
|
|
|
|
|
bool corked = false,
|
|
|
|
|
no_remap = false,
|
|
|
|
|
no_remix = false,
|
|
|
|
|
fix_format = false,
|
|
|
|
|
fix_rate = false,
|
|
|
|
|
fix_channels = false,
|
|
|
|
|
no_move = false,
|
|
|
|
|
variable_rate = false,
|
|
|
|
|
peak_detect = false,
|
|
|
|
|
adjust_latency = false,
|
|
|
|
|
early_requests = false,
|
|
|
|
|
dont_inhibit_auto_suspend = false,
|
|
|
|
|
volume_set = true,
|
|
|
|
|
muted = false,
|
|
|
|
|
muted_set = false,
|
|
|
|
|
fail_on_suspend = false,
|
|
|
|
|
relative_volume = false,
|
|
|
|
|
passthrough = false;
|
2021-03-27 17:03:50 +02:00
|
|
|
uint32_t direct_on_input_idx = SPA_ID_INVALID;
|
|
|
|
|
struct volume volume = VOLUME_INIT;
|
2020-10-04 20:20:58 +02:00
|
|
|
struct pw_properties *props = NULL;
|
|
|
|
|
uint8_t n_formats = 0;
|
2020-10-08 15:53:42 +02:00
|
|
|
struct stream *stream = NULL;
|
2021-08-18 16:58:22 +02:00
|
|
|
uint32_t n_params = 0, n_valid_formats = 0, flags, id, rate = 0;
|
2021-03-10 16:55:01 +01:00
|
|
|
const struct spa_pod *params[MAX_FORMATS];
|
2020-10-04 20:20:58 +02:00
|
|
|
uint8_t buffer[4096];
|
|
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buffer, sizeof(buffer));
|
|
|
|
|
|
2020-10-27 17:09:30 +01:00
|
|
|
props = pw_properties_copy(client->props);
|
2020-10-29 11:59:16 +01:00
|
|
|
if (props == NULL)
|
|
|
|
|
goto error_errno;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
if (client->version < 13) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_STRING, &name,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_SAMPLE_SPEC, &ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &map,
|
|
|
|
|
TAG_U32, &source_index,
|
|
|
|
|
TAG_STRING, &source_name,
|
|
|
|
|
TAG_U32, &attr.maxlength,
|
|
|
|
|
TAG_BOOLEAN, &corked,
|
|
|
|
|
TAG_U32, &attr.fragsize,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] CREATE_RECORD_STREAM tag:%u corked:%u source-name:%s source-index:%u",
|
|
|
|
|
client->name, tag, corked, source_name, source_index);
|
2020-10-06 17:56:45 +02:00
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
if (source_index != SPA_ID_INVALID && source_name != NULL)
|
|
|
|
|
goto error_invalid;
|
2020-10-21 17:00:49 +02:00
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
if (client->version >= 12) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_BOOLEAN, &no_remap,
|
|
|
|
|
TAG_BOOLEAN, &no_remix,
|
|
|
|
|
TAG_BOOLEAN, &fix_format,
|
|
|
|
|
TAG_BOOLEAN, &fix_rate,
|
|
|
|
|
TAG_BOOLEAN, &fix_channels,
|
|
|
|
|
TAG_BOOLEAN, &no_move,
|
|
|
|
|
TAG_BOOLEAN, &variable_rate,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 13) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_BOOLEAN, &peak_detect,
|
|
|
|
|
TAG_BOOLEAN, &adjust_latency,
|
|
|
|
|
TAG_PROPLIST, props,
|
|
|
|
|
TAG_U32, &direct_on_input_idx,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 14) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_BOOLEAN, &early_requests,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 15) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_BOOLEAN, &dont_inhibit_auto_suspend,
|
|
|
|
|
TAG_BOOLEAN, &fail_on_suspend,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
if (client->version >= 22) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U8, &n_formats,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
if (n_formats) {
|
|
|
|
|
uint8_t i;
|
|
|
|
|
for (i = 0; i < n_formats; i++) {
|
2020-10-20 16:25:47 +02:00
|
|
|
struct format_info format;
|
2021-08-18 16:58:22 +02:00
|
|
|
uint32_t r;
|
2020-11-09 16:51:34 +01:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-20 16:25:47 +02:00
|
|
|
TAG_FORMAT_INFO, &format,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-20 16:25:47 +02:00
|
|
|
|
2021-03-10 16:55:01 +01:00
|
|
|
if (n_params < MAX_FORMATS &&
|
|
|
|
|
(params[n_params] = format_info_build_param(&b,
|
2021-08-18 16:58:22 +02:00
|
|
|
SPA_PARAM_EnumFormat, &format, &r)) != NULL) {
|
2020-10-20 16:25:47 +02:00
|
|
|
n_params++;
|
2021-02-19 15:25:32 +01:00
|
|
|
n_valid_formats++;
|
2021-08-18 16:58:22 +02:00
|
|
|
if (r > rate)
|
|
|
|
|
rate = r;
|
2021-02-19 15:25:32 +01:00
|
|
|
} else {
|
|
|
|
|
log_format_info(impl, SPA_LOG_LEVEL_WARN, &format);
|
|
|
|
|
}
|
2020-11-09 16:51:34 +01:00
|
|
|
format_info_clear(&format);
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
}
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_CVOLUME, &volume,
|
|
|
|
|
TAG_BOOLEAN, &muted,
|
|
|
|
|
TAG_BOOLEAN, &volume_set,
|
|
|
|
|
TAG_BOOLEAN, &muted_set,
|
|
|
|
|
TAG_BOOLEAN, &relative_volume,
|
|
|
|
|
TAG_BOOLEAN, &passthrough,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2021-03-27 17:03:50 +02:00
|
|
|
} else {
|
|
|
|
|
volume_set = false;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
2021-03-10 16:55:01 +01:00
|
|
|
if (sample_spec_valid(&ss)) {
|
2021-12-16 12:56:19 +01:00
|
|
|
if (fix_format || fix_rate || fix_channels) {
|
|
|
|
|
struct sample_spec sfix = ss;
|
|
|
|
|
if (fix_format)
|
|
|
|
|
sfix.format = SPA_AUDIO_FORMAT_UNKNOWN;
|
|
|
|
|
if (fix_rate)
|
|
|
|
|
sfix.rate = 0;
|
|
|
|
|
if (fix_channels)
|
|
|
|
|
sfix.channels = 0;
|
|
|
|
|
if (n_params < MAX_FORMATS &&
|
|
|
|
|
(params[n_params] = format_build_param(&b,
|
|
|
|
|
SPA_PARAM_EnumFormat, &sfix,
|
|
|
|
|
sfix.channels > 0 ? &map : NULL)) != NULL) {
|
|
|
|
|
n_params++;
|
|
|
|
|
n_valid_formats++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-10 16:55:01 +01:00
|
|
|
if (n_params < MAX_FORMATS &&
|
|
|
|
|
(params[n_params] = format_build_param(&b,
|
2021-12-16 12:24:59 +01:00
|
|
|
SPA_PARAM_EnumFormat, &ss,
|
|
|
|
|
ss.channels > 0 ? &map : NULL)) != NULL) {
|
2021-03-10 16:55:01 +01:00
|
|
|
n_params++;
|
|
|
|
|
n_valid_formats++;
|
|
|
|
|
} else {
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_warn("%p: unsupported format:%s rate:%d channels:%u",
|
2021-03-10 16:55:01 +01:00
|
|
|
impl, format_id2name(ss.format), ss.rate,
|
|
|
|
|
ss.channels);
|
|
|
|
|
}
|
2021-08-18 16:58:22 +02:00
|
|
|
rate = ss.rate;
|
2021-03-10 16:55:01 +01:00
|
|
|
}
|
2020-10-29 11:59:16 +01:00
|
|
|
if (m->offset != m->length)
|
|
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-02-19 15:25:32 +01:00
|
|
|
if (n_valid_formats == 0)
|
|
|
|
|
goto error_no_formats;
|
|
|
|
|
|
2021-11-16 13:08:47 +01:00
|
|
|
stream = stream_new(client, STREAM_TYPE_RECORD, tag, &ss, &map, &attr);
|
2020-10-29 11:59:16 +01:00
|
|
|
if (stream == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
2020-10-06 17:56:45 +02:00
|
|
|
stream->corked = corked;
|
|
|
|
|
stream->adjust_latency = adjust_latency;
|
2021-01-22 11:39:47 +01:00
|
|
|
stream->early_requests = early_requests;
|
2020-10-08 19:36:12 +02:00
|
|
|
stream->volume = volume;
|
|
|
|
|
stream->volume_set = volume_set;
|
|
|
|
|
stream->muted = muted;
|
|
|
|
|
stream->muted_set = muted_set;
|
2020-10-06 16:36:37 +02:00
|
|
|
|
2021-06-30 17:17:36 +02:00
|
|
|
if (client->quirks & QUIRK_REMOVE_CAPTURE_DONT_MOVE)
|
|
|
|
|
no_move = false;
|
|
|
|
|
|
2021-08-18 16:58:22 +02:00
|
|
|
if (rate != 0)
|
|
|
|
|
pw_properties_setf(props, PW_KEY_NODE_RATE, "1/%u", rate);
|
2020-10-08 19:35:58 +02:00
|
|
|
if (peak_detect)
|
|
|
|
|
pw_properties_set(props, PW_KEY_STREAM_MONITOR, "true");
|
2020-11-03 21:01:24 +01:00
|
|
|
if (no_remix)
|
|
|
|
|
pw_properties_set(props, PW_KEY_STREAM_DONT_REMIX, "true");
|
2020-10-08 19:35:58 +02:00
|
|
|
flags = 0;
|
|
|
|
|
if (no_move)
|
|
|
|
|
flags |= PW_STREAM_FLAG_DONT_RECONNECT;
|
|
|
|
|
|
2020-10-27 14:57:15 +01:00
|
|
|
if (direct_on_input_idx != SPA_ID_INVALID) {
|
|
|
|
|
source_index = direct_on_input_idx;
|
|
|
|
|
} else if (source_name != NULL) {
|
2020-10-26 18:10:05 +01:00
|
|
|
if ((id = atoi(source_name)) != 0)
|
|
|
|
|
source_index = id;
|
|
|
|
|
}
|
2021-03-29 13:50:37 +02:00
|
|
|
if (source_index != SPA_ID_INVALID && source_index != 0) {
|
2020-10-25 19:51:42 +01:00
|
|
|
pw_properties_setf(props,
|
2022-01-17 12:48:31 +01:00
|
|
|
PW_KEY_NODE_TARGET, "%u",
|
|
|
|
|
index_to_id(manager, source_index));
|
2022-01-19 17:09:55 +01:00
|
|
|
pw_properties_setf(props,
|
|
|
|
|
PW_KEY_TARGET_OBJECT, "%u", source_index);
|
2020-10-26 18:10:05 +01:00
|
|
|
} else if (source_name != NULL) {
|
2021-06-21 15:04:15 +10:00
|
|
|
if (spa_strendswith(source_name, ".monitor")) {
|
2020-10-26 18:10:05 +01:00
|
|
|
pw_properties_setf(props,
|
|
|
|
|
PW_KEY_NODE_TARGET,
|
|
|
|
|
"%.*s", (int)strlen(source_name)-8, source_name);
|
2022-01-19 17:09:55 +01:00
|
|
|
pw_properties_setf(props,
|
|
|
|
|
PW_KEY_TARGET_OBJECT,
|
|
|
|
|
"%.*s", (int)strlen(source_name)-8, source_name);
|
2021-11-19 20:24:58 +01:00
|
|
|
pw_properties_set(props,
|
|
|
|
|
PW_KEY_STREAM_CAPTURE_SINK, "true");
|
2020-10-26 18:10:05 +01:00
|
|
|
} else {
|
|
|
|
|
pw_properties_set(props,
|
|
|
|
|
PW_KEY_NODE_TARGET, source_name);
|
2022-01-19 17:09:55 +01:00
|
|
|
pw_properties_set(props,
|
|
|
|
|
PW_KEY_TARGET_OBJECT, source_name);
|
2020-10-26 18:10:05 +01:00
|
|
|
}
|
|
|
|
|
}
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
stream->stream = pw_stream_new(client->core, name, props);
|
|
|
|
|
props = NULL;
|
2020-10-29 11:59:16 +01:00
|
|
|
if (stream->stream == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
pw_stream_add_listener(stream->stream,
|
|
|
|
|
&stream->stream_listener,
|
|
|
|
|
&stream_events, stream);
|
|
|
|
|
|
|
|
|
|
pw_stream_connect(stream->stream,
|
|
|
|
|
PW_DIRECTION_INPUT,
|
|
|
|
|
SPA_ID_INVALID,
|
2020-10-08 19:35:58 +02:00
|
|
|
flags |
|
2020-10-04 20:20:58 +02:00
|
|
|
PW_STREAM_FLAG_AUTOCONNECT |
|
2020-10-08 15:53:42 +02:00
|
|
|
PW_STREAM_FLAG_RT_PROCESS |
|
2020-10-04 20:20:58 +02:00
|
|
|
PW_STREAM_FLAG_MAP_BUFFERS,
|
|
|
|
|
params, n_params);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
error_errno:
|
|
|
|
|
res = -errno;
|
|
|
|
|
goto error;
|
|
|
|
|
error_protocol:
|
|
|
|
|
res = -EPROTO;
|
|
|
|
|
goto error;
|
2021-02-19 15:25:32 +01:00
|
|
|
error_no_formats:
|
|
|
|
|
res = -ENOTSUP;
|
|
|
|
|
goto error;
|
2020-10-29 11:59:16 +01:00
|
|
|
error_invalid:
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
goto error;
|
2020-10-04 20:20:58 +02:00
|
|
|
error:
|
2021-06-01 11:21:17 +10:00
|
|
|
pw_properties_free(props);
|
2020-10-04 20:20:58 +02:00
|
|
|
if (stream)
|
|
|
|
|
stream_free(stream);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_delete_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-02 17:14:57 +02:00
|
|
|
{
|
|
|
|
|
uint32_t channel;
|
|
|
|
|
struct stream *stream;
|
|
|
|
|
int res;
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2020-10-02 17:14:57 +02:00
|
|
|
TAG_U32, &channel,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-02 17:14:57 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] DELETE_STREAM tag:%u channel:%u",
|
2020-11-12 13:33:25 +01:00
|
|
|
client->name, tag, channel);
|
|
|
|
|
|
2020-10-02 17:14:57 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
|
|
|
|
if (stream == NULL)
|
2020-11-13 13:28:46 +01:00
|
|
|
return -ENOENT;
|
|
|
|
|
if (command == COMMAND_DELETE_PLAYBACK_STREAM &&
|
|
|
|
|
stream->type != STREAM_TYPE_PLAYBACK)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
if (command == COMMAND_DELETE_RECORD_STREAM &&
|
|
|
|
|
stream->type != STREAM_TYPE_RECORD)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
if (command == COMMAND_DELETE_UPLOAD_STREAM &&
|
|
|
|
|
stream->type != STREAM_TYPE_UPLOAD)
|
|
|
|
|
return -ENOENT;
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
stream_free(stream);
|
|
|
|
|
|
|
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_get_playback_latency(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-02 16:19:53 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2020-10-06 15:34:43 +02:00
|
|
|
struct message *reply;
|
2020-10-02 17:14:57 +02:00
|
|
|
uint32_t channel;
|
2020-11-18 20:15:20 +01:00
|
|
|
struct timeval tv, now;
|
2020-10-02 16:19:53 +02:00
|
|
|
struct stream *stream;
|
|
|
|
|
int res;
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2020-10-02 17:14:57 +02:00
|
|
|
TAG_U32, &channel,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_TIMEVAL, &tv,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_debug("%p: %s tag:%u channel:%u", impl, commands[command].name, tag, channel);
|
2020-10-02 17:14:57 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL || stream->type != STREAM_TYPE_PLAYBACK)
|
|
|
|
|
return -ENOENT;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2021-06-21 10:46:25 +02:00
|
|
|
pw_log_debug("read:%"PRIx64" write:%"PRIx64" queued:%"PRIi64" delay:%"PRIi64
|
2021-01-30 21:04:07 +01:00
|
|
|
" playing:%"PRIu64,
|
2020-10-06 11:34:23 +02:00
|
|
|
stream->read_index, stream->write_index,
|
2021-01-30 21:04:07 +01:00
|
|
|
stream->write_index - stream->read_index, stream->delay,
|
|
|
|
|
stream->playing_for);
|
2020-10-05 17:13:04 +02:00
|
|
|
|
2020-11-18 20:15:20 +01:00
|
|
|
gettimeofday(&now, NULL);
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
message_put(reply,
|
2020-10-06 11:34:23 +02:00
|
|
|
TAG_USEC, stream->delay, /* sink latency + queued samples */
|
2021-06-03 17:36:19 +03:00
|
|
|
TAG_USEC, 0LL, /* always 0 */
|
2020-10-06 11:34:23 +02:00
|
|
|
TAG_BOOLEAN, stream->playing_for > 0 &&
|
|
|
|
|
!stream->corked, /* playing state */
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_TIMEVAL, &tv,
|
2020-11-18 20:15:20 +01:00
|
|
|
TAG_TIMEVAL, &now,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_S64, stream->write_index,
|
|
|
|
|
TAG_S64, stream->read_index,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version >= 13) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-06 11:34:23 +02:00
|
|
|
TAG_U64, stream->underrun_for,
|
|
|
|
|
TAG_U64, stream->playing_for,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-02 16:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_get_record_latency(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-05 17:13:04 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2020-10-06 15:34:43 +02:00
|
|
|
struct message *reply;
|
2020-10-05 17:13:04 +02:00
|
|
|
uint32_t channel;
|
2020-11-18 20:15:20 +01:00
|
|
|
struct timeval tv, now;
|
2020-10-05 17:13:04 +02:00
|
|
|
struct stream *stream;
|
|
|
|
|
int res;
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2020-10-05 17:13:04 +02:00
|
|
|
TAG_U32, &channel,
|
|
|
|
|
TAG_TIMEVAL, &tv,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-05 17:13:04 +02:00
|
|
|
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_debug("%p: %s channel:%u", impl, commands[command].name, channel);
|
2020-10-05 17:13:04 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL || stream->type != STREAM_TYPE_RECORD)
|
|
|
|
|
return -ENOENT;
|
2020-10-05 17:13:04 +02:00
|
|
|
|
2020-11-18 20:15:20 +01:00
|
|
|
gettimeofday(&now, NULL);
|
2020-10-06 15:34:43 +02:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
message_put(reply,
|
2021-06-03 17:36:19 +03:00
|
|
|
TAG_USEC, 0LL, /* monitor latency */
|
2020-10-06 15:34:43 +02:00
|
|
|
TAG_USEC, stream->delay, /* source latency + queued */
|
2020-10-07 11:59:53 +02:00
|
|
|
TAG_BOOLEAN, !stream->corked, /* playing state */
|
2020-10-05 17:13:04 +02:00
|
|
|
TAG_TIMEVAL, &tv,
|
2020-11-18 20:15:20 +01:00
|
|
|
TAG_TIMEVAL, &now,
|
2020-10-05 17:13:04 +02:00
|
|
|
TAG_S64, stream->write_index,
|
|
|
|
|
TAG_S64, stream->read_index,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-05 17:13:04 +02:00
|
|
|
}
|
|
|
|
|
|
2020-11-13 13:28:46 +01:00
|
|
|
static int do_create_upload_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
const char *name;
|
|
|
|
|
struct sample_spec ss;
|
|
|
|
|
struct channel_map map;
|
|
|
|
|
struct pw_properties *props = NULL;
|
|
|
|
|
uint32_t length;
|
|
|
|
|
struct stream *stream = NULL;
|
|
|
|
|
struct message *reply;
|
|
|
|
|
int res;
|
|
|
|
|
|
|
|
|
|
if ((props = pw_properties_copy(client->props)) == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
|
|
|
|
if ((res = message_get(m,
|
|
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_SAMPLE_SPEC, &ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &map,
|
|
|
|
|
TAG_U32, &length,
|
|
|
|
|
TAG_INVALID)) < 0)
|
|
|
|
|
goto error_proto;
|
|
|
|
|
|
|
|
|
|
if (client->version >= 13) {
|
|
|
|
|
if ((res = message_get(m,
|
|
|
|
|
TAG_PROPLIST, props,
|
|
|
|
|
TAG_INVALID)) < 0)
|
|
|
|
|
goto error_proto;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
pw_properties_set(props, PW_KEY_MEDIA_NAME, name);
|
|
|
|
|
}
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
name = pw_properties_get(props, "event.id");
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
name = pw_properties_get(props, PW_KEY_MEDIA_NAME);
|
|
|
|
|
|
|
|
|
|
if (name == NULL ||
|
|
|
|
|
!sample_spec_valid(&ss) ||
|
|
|
|
|
!channel_map_valid(&map) ||
|
|
|
|
|
ss.channels != map.channels ||
|
|
|
|
|
length == 0 || (length % sample_spec_frame_size(&ss) != 0))
|
|
|
|
|
goto error_invalid;
|
|
|
|
|
if (length >= SCACHE_ENTRY_SIZE_MAX)
|
|
|
|
|
goto error_toolarge;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u name:%s length:%d",
|
|
|
|
|
client->name, commands[command].name, tag,
|
2020-11-13 13:28:46 +01:00
|
|
|
name, length);
|
|
|
|
|
|
2021-11-16 13:08:47 +01:00
|
|
|
stream = stream_new(client, STREAM_TYPE_UPLOAD, tag, &ss, &map, &(struct buffer_attr) {
|
|
|
|
|
.maxlength = length,
|
|
|
|
|
});
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
|
|
|
|
stream->props = props;
|
|
|
|
|
|
2022-01-28 16:21:03 +01:00
|
|
|
stream->buffer = calloc(1, MAXLENGTH);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream->buffer == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
|
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
message_put(reply,
|
|
|
|
|
TAG_U32, stream->channel,
|
|
|
|
|
TAG_U32, length,
|
|
|
|
|
TAG_INVALID);
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-11-13 13:28:46 +01:00
|
|
|
|
|
|
|
|
error_errno:
|
|
|
|
|
res = -errno;
|
|
|
|
|
goto error;
|
|
|
|
|
error_proto:
|
|
|
|
|
res = -EPROTO;
|
|
|
|
|
goto error;
|
|
|
|
|
error_invalid:
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
goto error;
|
|
|
|
|
error_toolarge:
|
|
|
|
|
res = -EOVERFLOW;
|
|
|
|
|
goto error;
|
|
|
|
|
error:
|
2021-06-01 11:21:17 +10:00
|
|
|
pw_properties_free(props);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream)
|
|
|
|
|
stream_free(stream);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_finish_upload_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
uint32_t channel, event;
|
2021-11-17 11:30:39 +01:00
|
|
|
struct stream *stream;
|
2020-11-13 13:28:46 +01:00
|
|
|
struct sample *sample;
|
|
|
|
|
const char *name;
|
|
|
|
|
int res;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-11-13 13:28:46 +01:00
|
|
|
TAG_U32, &channel,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-11-13 13:28:46 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
|
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
|
|
|
|
if (stream == NULL || stream->type != STREAM_TYPE_UPLOAD)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
|
|
name = pw_properties_get(stream->props, "event.id");
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
name = pw_properties_get(stream->props, PW_KEY_MEDIA_NAME);
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
goto error_invalid;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u channel:%u name:%s",
|
|
|
|
|
client->name, commands[command].name, tag,
|
2020-11-13 13:28:46 +01:00
|
|
|
channel, name);
|
|
|
|
|
|
2021-11-17 11:30:39 +01:00
|
|
|
struct sample *old = find_sample(impl, SPA_ID_INVALID, name);
|
2022-01-31 12:31:54 +01:00
|
|
|
if (old == NULL || old->ref > 1) {
|
2021-11-17 11:30:39 +01:00
|
|
|
sample = calloc(1, sizeof(*sample));
|
2020-11-13 13:28:46 +01:00
|
|
|
if (sample == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
2021-11-17 11:30:39 +01:00
|
|
|
if (old != NULL) {
|
|
|
|
|
sample->index = old->index;
|
|
|
|
|
spa_assert_se(pw_map_insert_at(&impl->samples, sample->index, sample) == 0);
|
2020-11-13 13:28:46 +01:00
|
|
|
|
2021-11-17 11:30:39 +01:00
|
|
|
old->index = SPA_ID_INVALID;
|
|
|
|
|
sample_unref(old);
|
|
|
|
|
} else {
|
|
|
|
|
sample->index = pw_map_insert_new(&impl->samples, sample);
|
|
|
|
|
if (sample->index == SPA_ID_INVALID)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
}
|
2020-11-13 13:28:46 +01:00
|
|
|
} else {
|
2021-11-17 11:30:39 +01:00
|
|
|
pw_properties_free(old->props);
|
|
|
|
|
free(old->buffer);
|
|
|
|
|
impl->stat.sample_cache -= old->length;
|
|
|
|
|
|
|
|
|
|
sample = old;
|
2020-11-13 13:28:46 +01:00
|
|
|
}
|
2021-11-17 11:30:39 +01:00
|
|
|
|
|
|
|
|
if (old != NULL)
|
|
|
|
|
event = SUBSCRIPTION_EVENT_CHANGE;
|
|
|
|
|
else
|
|
|
|
|
event = SUBSCRIPTION_EVENT_NEW;
|
|
|
|
|
|
2020-11-14 13:30:35 +01:00
|
|
|
sample->ref = 1;
|
2020-11-13 13:28:46 +01:00
|
|
|
sample->impl = impl;
|
|
|
|
|
sample->name = name;
|
|
|
|
|
sample->props = stream->props;
|
|
|
|
|
sample->ss = stream->ss;
|
|
|
|
|
sample->map = stream->map;
|
|
|
|
|
sample->buffer = stream->buffer;
|
|
|
|
|
sample->length = stream->attr.maxlength;
|
|
|
|
|
|
2021-01-19 10:51:23 +01:00
|
|
|
impl->stat.sample_cache += sample->length;
|
|
|
|
|
|
2020-11-13 13:28:46 +01:00
|
|
|
stream->props = NULL;
|
|
|
|
|
stream->buffer = NULL;
|
|
|
|
|
stream_free(stream);
|
|
|
|
|
|
|
|
|
|
broadcast_subscribe_event(impl,
|
|
|
|
|
SUBSCRIPTION_MASK_SAMPLE_CACHE,
|
|
|
|
|
event | SUBSCRIPTION_EVENT_SAMPLE_CACHE,
|
|
|
|
|
sample->index);
|
|
|
|
|
|
|
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
|
|
|
|
|
error_errno:
|
|
|
|
|
res = -errno;
|
2021-11-16 18:25:32 +01:00
|
|
|
free(sample);
|
2020-11-13 13:28:46 +01:00
|
|
|
goto error;
|
|
|
|
|
error_invalid:
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
goto error;
|
|
|
|
|
error:
|
|
|
|
|
stream_free(stream);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-22 19:53:46 +01:00
|
|
|
static const char *get_default(struct client *client, bool sink)
|
|
|
|
|
{
|
|
|
|
|
struct selector sel;
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
struct pw_manager_object *o;
|
|
|
|
|
const char *def, *str, *mon;
|
|
|
|
|
|
|
|
|
|
spa_zero(sel);
|
|
|
|
|
if (sink) {
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_sink;
|
2021-03-05 17:37:12 +01:00
|
|
|
sel.key = PW_KEY_NODE_NAME;
|
|
|
|
|
sel.value = client->default_sink;
|
2021-01-22 19:53:46 +01:00
|
|
|
def = DEFAULT_SINK;
|
|
|
|
|
} else {
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_source_or_monitor;
|
2021-03-05 17:37:12 +01:00
|
|
|
sel.key = PW_KEY_NODE_NAME;
|
|
|
|
|
sel.value = client->default_source;
|
2021-01-22 19:53:46 +01:00
|
|
|
def = DEFAULT_SOURCE;
|
|
|
|
|
}
|
|
|
|
|
sel.accumulate = select_best;
|
|
|
|
|
|
|
|
|
|
o = select_object(manager, &sel);
|
|
|
|
|
if (o == NULL || o->props == NULL)
|
|
|
|
|
return def;
|
|
|
|
|
str = pw_properties_get(o->props, PW_KEY_NODE_NAME);
|
|
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!sink && pw_manager_object_is_monitor(o)) {
|
2021-01-22 19:53:46 +01:00
|
|
|
def = DEFAULT_MONITOR;
|
|
|
|
|
if (str != NULL &&
|
|
|
|
|
(mon = pw_properties_get(o->props, PW_KEY_NODE_NAME".monitor")) == NULL) {
|
|
|
|
|
pw_properties_setf(o->props,
|
|
|
|
|
PW_KEY_NODE_NAME".monitor",
|
|
|
|
|
"%s.monitor", str);
|
|
|
|
|
}
|
|
|
|
|
str = pw_properties_get(o->props, PW_KEY_NODE_NAME".monitor");
|
|
|
|
|
}
|
|
|
|
|
if (str == NULL)
|
|
|
|
|
str = def;
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct pw_manager_object *find_device(struct client *client,
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index, const char *name, bool sink, bool *is_monitor)
|
2021-01-22 19:53:46 +01:00
|
|
|
{
|
|
|
|
|
struct selector sel;
|
2021-10-13 15:39:41 +02:00
|
|
|
bool monitor = false, find_default = false;
|
2022-01-17 10:25:26 +01:00
|
|
|
struct pw_manager_object *o;
|
2021-10-13 15:39:41 +02:00
|
|
|
|
|
|
|
|
if (name != NULL) {
|
|
|
|
|
if (spa_streq(name, DEFAULT_MONITOR)) {
|
|
|
|
|
if (sink)
|
|
|
|
|
return NULL;
|
|
|
|
|
sink = true;
|
|
|
|
|
find_default = true;
|
|
|
|
|
} else if (spa_streq(name, DEFAULT_SOURCE)) {
|
|
|
|
|
if (sink)
|
|
|
|
|
return NULL;
|
|
|
|
|
find_default = true;
|
|
|
|
|
} else if (spa_streq(name, DEFAULT_SINK)) {
|
|
|
|
|
if (!sink)
|
|
|
|
|
return NULL;
|
|
|
|
|
find_default = true;
|
2022-01-17 11:28:40 +01:00
|
|
|
} else if (spa_atou32(name, &index, 0)) {
|
2021-01-22 19:53:46 +01:00
|
|
|
name = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-17 11:28:40 +01:00
|
|
|
if (name == NULL && (index == SPA_ID_INVALID || index == 0))
|
2021-10-13 15:39:41 +02:00
|
|
|
find_default = true;
|
|
|
|
|
|
|
|
|
|
if (find_default) {
|
|
|
|
|
name = get_default(client, sink);
|
2022-01-17 11:28:40 +01:00
|
|
|
index = SPA_ID_INVALID;
|
2021-10-13 15:39:41 +02:00
|
|
|
}
|
|
|
|
|
|
2022-01-17 10:25:26 +01:00
|
|
|
if (name != NULL) {
|
2021-10-13 15:39:41 +02:00
|
|
|
if (spa_strendswith(name, ".monitor")) {
|
|
|
|
|
name = strndupa(name, strlen(name)-8);
|
|
|
|
|
monitor = true;
|
|
|
|
|
}
|
2022-01-17 11:28:40 +01:00
|
|
|
} else if (index == SPA_ID_INVALID)
|
2021-10-13 15:39:41 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
2021-01-22 19:53:46 +01:00
|
|
|
|
|
|
|
|
spa_zero(sel);
|
2021-10-13 15:39:41 +02:00
|
|
|
sel.type = sink ?
|
|
|
|
|
pw_manager_object_is_sink :
|
|
|
|
|
pw_manager_object_is_source_or_monitor;
|
2022-01-17 11:28:40 +01:00
|
|
|
sel.index = index;
|
2021-01-22 19:53:46 +01:00
|
|
|
sel.key = PW_KEY_NODE_NAME;
|
|
|
|
|
sel.value = name;
|
|
|
|
|
|
2022-01-17 10:25:26 +01:00
|
|
|
o = select_object(client->manager, &sel);
|
|
|
|
|
if (o != NULL) {
|
|
|
|
|
if (!sink && pw_manager_object_is_monitor(o))
|
|
|
|
|
monitor = true;
|
|
|
|
|
}
|
|
|
|
|
if (is_monitor)
|
|
|
|
|
*is_monitor = monitor;
|
|
|
|
|
|
|
|
|
|
return o;
|
2021-01-22 19:53:46 +01:00
|
|
|
}
|
|
|
|
|
|
2020-11-15 21:02:49 +01:00
|
|
|
static void sample_play_ready(void *data, uint32_t index)
|
|
|
|
|
{
|
|
|
|
|
struct pending_sample *ps = data;
|
|
|
|
|
struct client *client = ps->client;
|
|
|
|
|
struct message *reply;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] PLAY_SAMPLE tag:%u index:%u",
|
|
|
|
|
client->name, ps->tag, index);
|
2020-11-15 21:02:49 +01:00
|
|
|
|
|
|
|
|
reply = reply_new(client, ps->tag);
|
|
|
|
|
if (client->version >= 13)
|
|
|
|
|
message_put(reply,
|
|
|
|
|
TAG_U32, index,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
client_queue_message(client, reply);
|
2020-11-15 21:02:49 +01:00
|
|
|
}
|
|
|
|
|
|
2021-04-21 12:55:49 +02:00
|
|
|
static void on_sample_done(void *obj, void *data, int res, uint32_t id)
|
|
|
|
|
{
|
|
|
|
|
struct pending_sample *ps = obj;
|
|
|
|
|
struct client *client = ps->client;
|
2022-01-31 14:53:42 +01:00
|
|
|
|
2021-04-21 12:55:49 +02:00
|
|
|
pending_sample_free(ps);
|
2022-01-31 14:53:42 +01:00
|
|
|
client_unref(client);
|
2021-04-21 12:55:49 +02:00
|
|
|
}
|
|
|
|
|
|
2020-12-18 09:48:26 +01:00
|
|
|
static void sample_play_done(void *data, int res)
|
2020-11-13 18:19:56 +01:00
|
|
|
{
|
|
|
|
|
struct pending_sample *ps = data;
|
2020-11-13 19:33:12 +01:00
|
|
|
struct client *client = ps->client;
|
|
|
|
|
struct impl *impl = client->impl;
|
2020-12-18 09:48:26 +01:00
|
|
|
|
|
|
|
|
if (res < 0)
|
|
|
|
|
reply_error(client, COMMAND_PLAY_SAMPLE, ps->tag, res);
|
|
|
|
|
else
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] PLAY_SAMPLE done tag:%u", client->name, ps->tag);
|
2020-12-18 09:48:26 +01:00
|
|
|
|
2021-04-21 12:55:49 +02:00
|
|
|
pw_work_queue_add(impl->work_queue, ps, 0,
|
|
|
|
|
on_sample_done, client);
|
2020-11-13 18:19:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct sample_play_events sample_play_events = {
|
|
|
|
|
VERSION_SAMPLE_PLAY_EVENTS,
|
2020-11-15 21:02:49 +01:00
|
|
|
.ready = sample_play_ready,
|
2020-11-13 18:19:56 +01:00
|
|
|
.done = sample_play_done,
|
|
|
|
|
};
|
|
|
|
|
|
2020-11-13 13:28:46 +01:00
|
|
|
static int do_play_sample(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2020-11-15 21:02:49 +01:00
|
|
|
uint32_t sink_index, volume;
|
2020-11-13 18:19:56 +01:00
|
|
|
struct sample *sample;
|
|
|
|
|
struct sample_play *play;
|
2020-11-13 13:28:46 +01:00
|
|
|
const char *sink_name, *name;
|
|
|
|
|
struct pw_properties *props = NULL;
|
2020-11-13 18:19:56 +01:00
|
|
|
struct pending_sample *ps;
|
2021-01-22 19:53:46 +01:00
|
|
|
struct pw_manager_object *o;
|
2020-11-13 13:28:46 +01:00
|
|
|
int res;
|
|
|
|
|
|
|
|
|
|
if ((props = pw_properties_new(NULL, NULL)) == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
|
|
|
|
if ((res = message_get(m,
|
|
|
|
|
TAG_U32, &sink_index,
|
|
|
|
|
TAG_STRING, &sink_name,
|
|
|
|
|
TAG_U32, &volume,
|
|
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_INVALID)) < 0)
|
|
|
|
|
goto error_proto;
|
|
|
|
|
|
|
|
|
|
if (client->version >= 13) {
|
|
|
|
|
if ((res = message_get(m,
|
|
|
|
|
TAG_PROPLIST, props,
|
|
|
|
|
TAG_INVALID)) < 0)
|
|
|
|
|
goto error_proto;
|
|
|
|
|
|
|
|
|
|
}
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u sink_index:%u sink_name:%s name:%s",
|
|
|
|
|
client->name, commands[command].name, tag,
|
2020-11-13 13:28:46 +01:00
|
|
|
sink_index, sink_name, name);
|
|
|
|
|
|
2021-01-22 19:53:46 +01:00
|
|
|
pw_properties_update(props, &client->props->dict);
|
|
|
|
|
|
2020-11-17 17:14:28 +01:00
|
|
|
if (sink_index != SPA_ID_INVALID && sink_name != NULL)
|
2020-11-17 12:59:09 +01:00
|
|
|
goto error_inval;
|
|
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
o = find_device(client, sink_index, sink_name, PW_DIRECTION_OUTPUT, NULL);
|
2021-01-22 19:53:46 +01:00
|
|
|
if (o == NULL)
|
|
|
|
|
goto error_noent;
|
2020-11-13 13:28:46 +01:00
|
|
|
|
2020-11-14 13:31:07 +01:00
|
|
|
sample = find_sample(impl, SPA_ID_INVALID, name);
|
2020-11-13 18:19:56 +01:00
|
|
|
if (sample == NULL)
|
|
|
|
|
goto error_noent;
|
|
|
|
|
|
2021-01-22 19:53:46 +01:00
|
|
|
pw_properties_setf(props, PW_KEY_NODE_TARGET, "%u", o->id);
|
2022-01-19 17:09:55 +01:00
|
|
|
pw_properties_setf(props, PW_KEY_TARGET_OBJECT, "%"PRIu64, o->serial);
|
2021-01-22 19:53:46 +01:00
|
|
|
|
2020-11-13 18:19:56 +01:00
|
|
|
play = sample_play_new(client->core, sample, props, sizeof(struct pending_sample));
|
|
|
|
|
props = NULL;
|
|
|
|
|
if (play == NULL)
|
|
|
|
|
goto error_errno;
|
|
|
|
|
|
|
|
|
|
ps = play->user_data;
|
2020-11-13 19:33:12 +01:00
|
|
|
ps->client = client;
|
2020-11-13 18:19:56 +01:00
|
|
|
ps->play = play;
|
2020-11-15 21:02:49 +01:00
|
|
|
ps->tag = tag;
|
2020-11-13 18:19:56 +01:00
|
|
|
sample_play_add_listener(play, &ps->listener, &sample_play_events, ps);
|
2021-01-21 11:53:06 +01:00
|
|
|
spa_list_append(&client->pending_samples, &ps->link);
|
|
|
|
|
client->ref++;
|
2020-11-13 18:19:56 +01:00
|
|
|
|
2020-11-15 21:02:49 +01:00
|
|
|
return 0;
|
2020-11-13 13:28:46 +01:00
|
|
|
|
|
|
|
|
error_errno:
|
|
|
|
|
res = -errno;
|
|
|
|
|
goto error;
|
|
|
|
|
error_proto:
|
|
|
|
|
res = -EPROTO;
|
|
|
|
|
goto error;
|
2020-11-17 12:59:09 +01:00
|
|
|
error_inval:
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
goto error;
|
2020-11-13 13:28:46 +01:00
|
|
|
error_noent:
|
|
|
|
|
res = -ENOENT;
|
|
|
|
|
goto error;
|
|
|
|
|
error:
|
2021-06-01 11:21:17 +10:00
|
|
|
pw_properties_free(props);
|
2020-11-13 13:28:46 +01:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_remove_sample(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
const char *name;
|
|
|
|
|
struct sample *sample;
|
|
|
|
|
int res;
|
|
|
|
|
|
|
|
|
|
if ((res = message_get(m,
|
|
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_INVALID)) < 0)
|
|
|
|
|
return -EPROTO;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u name:%s",
|
|
|
|
|
client->name, commands[command].name, tag,
|
2020-11-13 13:28:46 +01:00
|
|
|
name);
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
return -EINVAL;
|
2020-11-14 13:31:07 +01:00
|
|
|
if ((sample = find_sample(impl, SPA_ID_INVALID, name)) == NULL)
|
2020-11-13 13:28:46 +01:00
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
|
|
broadcast_subscribe_event(impl,
|
|
|
|
|
SUBSCRIPTION_MASK_SAMPLE_CACHE,
|
|
|
|
|
SUBSCRIPTION_EVENT_REMOVE |
|
|
|
|
|
SUBSCRIPTION_EVENT_SAMPLE_CACHE,
|
|
|
|
|
sample->index);
|
|
|
|
|
|
2021-11-17 11:30:39 +01:00
|
|
|
pw_map_remove(&impl->samples, sample->index);
|
|
|
|
|
sample->index = SPA_ID_INVALID;
|
|
|
|
|
|
|
|
|
|
sample_unref(sample);
|
2020-11-13 13:28:46 +01:00
|
|
|
|
|
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_cork_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-02 16:19:53 +02:00
|
|
|
{
|
2020-10-04 20:20:58 +02:00
|
|
|
uint32_t channel;
|
2020-10-02 16:19:53 +02:00
|
|
|
bool cork;
|
|
|
|
|
struct stream *stream;
|
|
|
|
|
int res;
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &channel,
|
2020-10-02 16:19:53 +02:00
|
|
|
TAG_BOOLEAN, &cork,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u channel:%u cork:%s",
|
|
|
|
|
client->name, commands[command].name, tag,
|
2020-11-12 13:33:25 +01:00
|
|
|
channel, cork ? "yes" : "no");
|
2020-10-05 17:13:04 +02:00
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL || stream->type == STREAM_TYPE_UPLOAD)
|
|
|
|
|
return -ENOENT;
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2020-10-05 17:13:04 +02:00
|
|
|
stream->corked = cork;
|
2021-02-02 10:42:34 +01:00
|
|
|
pw_stream_set_active(stream->stream, !cork);
|
2021-01-18 17:16:37 +01:00
|
|
|
if (cork) {
|
2020-10-23 12:59:53 +02:00
|
|
|
stream->is_underrun = true;
|
2021-01-18 17:16:37 +01:00
|
|
|
} else {
|
|
|
|
|
stream->playing_for = 0;
|
|
|
|
|
stream->underrun_for = -1;
|
2022-01-07 10:41:10 +01:00
|
|
|
stream_send_request(stream);
|
2021-01-18 17:16:37 +01:00
|
|
|
}
|
2020-10-02 16:19:53 +02:00
|
|
|
|
2020-10-02 17:14:57 +02:00
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_flush_trigger_prebuf_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
uint32_t channel;
|
|
|
|
|
struct stream *stream;
|
|
|
|
|
int res;
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &channel,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u channel:%u",
|
|
|
|
|
client->name, commands[command].name, tag, channel);
|
2020-11-06 16:30:05 +01:00
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-17 17:39:30 +01:00
|
|
|
if (stream == NULL || stream->type == STREAM_TYPE_UPLOAD)
|
2020-11-13 13:28:46 +01:00
|
|
|
return -ENOENT;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
switch (command) {
|
|
|
|
|
case COMMAND_FLUSH_PLAYBACK_STREAM:
|
|
|
|
|
case COMMAND_FLUSH_RECORD_STREAM:
|
2020-10-23 12:59:53 +02:00
|
|
|
stream_flush(stream);
|
2020-10-04 20:20:58 +02:00
|
|
|
break;
|
|
|
|
|
case COMMAND_TRIGGER_PLAYBACK_STREAM:
|
|
|
|
|
case COMMAND_PREBUF_PLAYBACK_STREAM:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
static int set_node_volume_mute(struct pw_manager_object *o,
|
2021-04-29 15:25:04 +02:00
|
|
|
struct volume *vol, bool *mute, bool is_monitor)
|
2020-10-26 13:28:45 +01:00
|
|
|
{
|
|
|
|
|
char buf[1024];
|
|
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buf, sizeof(buf));
|
2020-10-29 11:59:16 +01:00
|
|
|
struct spa_pod_frame f[1];
|
|
|
|
|
struct spa_pod *param;
|
2021-04-29 15:25:04 +02:00
|
|
|
uint32_t volprop, muteprop;
|
2020-10-26 13:28:45 +01:00
|
|
|
|
2020-10-28 18:08:56 +01:00
|
|
|
if (!SPA_FLAG_IS_SET(o->permissions, PW_PERM_W | PW_PERM_X))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EACCES;
|
2021-03-25 09:08:13 +01:00
|
|
|
if (o->proxy == NULL)
|
|
|
|
|
return -ENOENT;
|
2020-10-28 18:08:56 +01:00
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
if (is_monitor) {
|
|
|
|
|
volprop = SPA_PROP_monitorVolumes;
|
|
|
|
|
muteprop = SPA_PROP_monitorMute;
|
|
|
|
|
} else {
|
|
|
|
|
volprop = SPA_PROP_channelVolumes;
|
|
|
|
|
muteprop = SPA_PROP_mute;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
spa_pod_builder_push_object(&b, &f[0],
|
|
|
|
|
SPA_TYPE_OBJECT_Props, SPA_PARAM_Props);
|
|
|
|
|
if (vol)
|
|
|
|
|
spa_pod_builder_add(&b,
|
2021-04-29 15:25:04 +02:00
|
|
|
volprop, SPA_POD_Array(sizeof(float),
|
2020-10-26 13:28:45 +01:00
|
|
|
SPA_TYPE_Float,
|
|
|
|
|
vol->channels,
|
2020-10-29 11:59:16 +01:00
|
|
|
vol->values), 0);
|
|
|
|
|
if (mute)
|
|
|
|
|
spa_pod_builder_add(&b,
|
2021-04-29 15:25:04 +02:00
|
|
|
muteprop, SPA_POD_Bool(*mute), 0);
|
2020-10-29 11:59:16 +01:00
|
|
|
param = spa_pod_builder_pop(&b, &f[0]);
|
2020-10-28 18:08:56 +01:00
|
|
|
|
|
|
|
|
pw_node_set_param((struct pw_node*)o->proxy,
|
2020-10-29 11:59:16 +01:00
|
|
|
SPA_PARAM_Props, 0, param);
|
2020-10-28 18:08:56 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
static int set_card_volume_mute_delay(struct pw_manager_object *o, uint32_t port_index,
|
2021-02-16 22:03:08 +02:00
|
|
|
uint32_t device_id, struct volume *vol, bool *mute, int64_t *latency_offset)
|
2020-10-28 17:57:53 +01:00
|
|
|
{
|
|
|
|
|
char buf[1024];
|
|
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buf, sizeof(buf));
|
2020-10-29 11:59:16 +01:00
|
|
|
struct spa_pod_frame f[2];
|
2020-10-28 17:57:53 +01:00
|
|
|
struct spa_pod *param;
|
|
|
|
|
|
2020-10-28 18:08:56 +01:00
|
|
|
if (!SPA_FLAG_IS_SET(o->permissions, PW_PERM_W | PW_PERM_X))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EACCES;
|
2020-10-28 18:08:56 +01:00
|
|
|
|
2021-03-25 09:08:13 +01:00
|
|
|
if (o->proxy == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2020-10-28 17:57:53 +01:00
|
|
|
spa_pod_builder_push_object(&b, &f[0],
|
|
|
|
|
SPA_TYPE_OBJECT_ParamRoute, SPA_PARAM_Route);
|
|
|
|
|
spa_pod_builder_add(&b,
|
2022-01-17 11:28:40 +01:00
|
|
|
SPA_PARAM_ROUTE_index, SPA_POD_Int(port_index),
|
2020-10-28 17:57:53 +01:00
|
|
|
SPA_PARAM_ROUTE_device, SPA_POD_Int(device_id),
|
|
|
|
|
0);
|
|
|
|
|
spa_pod_builder_prop(&b, SPA_PARAM_ROUTE_props, 0);
|
2020-10-29 11:59:16 +01:00
|
|
|
spa_pod_builder_push_object(&b, &f[1],
|
|
|
|
|
SPA_TYPE_OBJECT_Props, SPA_PARAM_Props);
|
|
|
|
|
if (vol)
|
|
|
|
|
spa_pod_builder_add(&b,
|
|
|
|
|
SPA_PROP_channelVolumes, SPA_POD_Array(sizeof(float),
|
2020-10-28 17:57:53 +01:00
|
|
|
SPA_TYPE_Float,
|
|
|
|
|
vol->channels,
|
2020-10-29 11:59:16 +01:00
|
|
|
vol->values), 0);
|
|
|
|
|
if (mute)
|
|
|
|
|
spa_pod_builder_add(&b,
|
|
|
|
|
SPA_PROP_mute, SPA_POD_Bool(*mute), 0);
|
2021-02-16 22:03:08 +02:00
|
|
|
if (latency_offset)
|
|
|
|
|
spa_pod_builder_add(&b,
|
|
|
|
|
SPA_PROP_latencyOffsetNsec, SPA_POD_Long(*latency_offset), 0);
|
2020-10-29 11:59:16 +01:00
|
|
|
spa_pod_builder_pop(&b, &f[1]);
|
2021-02-22 16:42:29 +01:00
|
|
|
spa_pod_builder_prop(&b, SPA_PARAM_ROUTE_save, 0);
|
|
|
|
|
spa_pod_builder_bool(&b, true);
|
2020-10-28 18:08:56 +01:00
|
|
|
param = spa_pod_builder_pop(&b, &f[0]);
|
|
|
|
|
|
|
|
|
|
pw_device_set_param((struct pw_device*)o->proxy,
|
|
|
|
|
SPA_PARAM_Route, 0, param);
|
2020-10-26 13:28:45 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-04 15:41:11 +01:00
|
|
|
static int set_card_port(struct pw_manager_object *o, uint32_t device_id,
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t port_index)
|
2020-10-28 20:05:13 +01:00
|
|
|
{
|
|
|
|
|
char buf[1024];
|
|
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buf, sizeof(buf));
|
|
|
|
|
|
|
|
|
|
if (!SPA_FLAG_IS_SET(o->permissions, PW_PERM_W | PW_PERM_X))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EACCES;
|
2020-10-28 20:05:13 +01:00
|
|
|
|
2021-03-25 09:08:13 +01:00
|
|
|
if (o->proxy == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2020-10-28 20:05:13 +01:00
|
|
|
pw_device_set_param((struct pw_device*)o->proxy,
|
|
|
|
|
SPA_PARAM_Route, 0,
|
|
|
|
|
spa_pod_builder_add_object(&b,
|
|
|
|
|
SPA_TYPE_OBJECT_ParamRoute, SPA_PARAM_Route,
|
2022-01-17 11:28:40 +01:00
|
|
|
SPA_PARAM_ROUTE_index, SPA_POD_Int(port_index),
|
2021-02-22 16:42:29 +01:00
|
|
|
SPA_PARAM_ROUTE_device, SPA_POD_Int(device_id),
|
|
|
|
|
SPA_PARAM_ROUTE_save, SPA_POD_Bool(true)));
|
2020-10-28 20:05:13 +01:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_set_stream_volume(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-02 17:14:57 +02:00
|
|
|
{
|
2020-10-28 16:48:46 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index;
|
2020-10-02 17:14:57 +02:00
|
|
|
struct stream *stream;
|
2020-10-23 09:36:01 +02:00
|
|
|
struct volume volume;
|
2020-10-26 13:28:45 +01:00
|
|
|
int res;
|
2020-10-02 17:14:57 +02:00
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2020-10-02 17:14:57 +02:00
|
|
|
TAG_CVOLUME, &volume,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-02 17:14:57 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u",
|
2022-01-17 11:28:40 +01:00
|
|
|
client->name, commands[command].name, tag, index);
|
2020-10-02 17:14:57 +02:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
stream = find_stream(client, index);
|
2020-10-26 13:28:45 +01:00
|
|
|
if (stream != NULL) {
|
2021-02-10 19:11:01 +01:00
|
|
|
|
|
|
|
|
if (volume_compare(&stream->volume, &volume) == 0)
|
|
|
|
|
goto done;
|
|
|
|
|
|
2020-10-26 13:28:45 +01:00
|
|
|
pw_stream_set_control(stream->stream,
|
|
|
|
|
SPA_PROP_channelVolumes, volume.channels, volume.values,
|
|
|
|
|
0);
|
|
|
|
|
} else {
|
|
|
|
|
struct selector sel;
|
|
|
|
|
struct pw_manager_object *o;
|
|
|
|
|
|
|
|
|
|
spa_zero(sel);
|
2022-01-17 11:28:40 +01:00
|
|
|
sel.index = index;
|
2020-10-26 13:28:45 +01:00
|
|
|
if (command == COMMAND_SET_SINK_INPUT_VOLUME)
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_sink_input;
|
2020-10-26 13:28:45 +01:00
|
|
|
else
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_source_output;
|
2020-10-26 13:28:45 +01:00
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
o = select_object(manager, &sel);
|
2020-10-26 13:28:45 +01:00
|
|
|
if (o == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-05 21:11:51 +02:00
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
if ((res = set_node_volume_mute(o, &volume, NULL, false)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return res;
|
2020-10-26 13:28:45 +01:00
|
|
|
}
|
2021-02-10 19:11:01 +01:00
|
|
|
done:
|
2021-03-09 09:53:39 +01:00
|
|
|
return operation_new(client, tag);
|
2020-09-30 20:12:34 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_set_stream_mute(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-09-30 20:12:34 +02:00
|
|
|
{
|
2020-10-28 16:48:46 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index;
|
2020-10-04 20:20:58 +02:00
|
|
|
struct stream *stream;
|
|
|
|
|
int res;
|
|
|
|
|
bool mute;
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_BOOLEAN, &mute,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] DO_SET_STREAM_MUTE tag:%u index:%u mute:%u",
|
|
|
|
|
client->name, tag, index, mute);
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
stream = find_stream(client, index);
|
2020-10-26 13:28:45 +01:00
|
|
|
if (stream != NULL) {
|
|
|
|
|
float val;
|
|
|
|
|
|
2021-02-16 17:21:26 +01:00
|
|
|
if (stream->muted == mute)
|
|
|
|
|
goto done;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2020-10-26 13:28:45 +01:00
|
|
|
val = mute ? 1.0f : 0.0f;
|
|
|
|
|
pw_stream_set_control(stream->stream,
|
|
|
|
|
SPA_PROP_mute, 1, &val,
|
|
|
|
|
0);
|
|
|
|
|
} else {
|
|
|
|
|
struct selector sel;
|
|
|
|
|
struct pw_manager_object *o;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2020-10-26 13:28:45 +01:00
|
|
|
spa_zero(sel);
|
2022-01-17 11:28:40 +01:00
|
|
|
sel.index = index;
|
2020-11-19 11:56:51 +01:00
|
|
|
if (command == COMMAND_SET_SINK_INPUT_MUTE)
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_sink_input;
|
2020-10-26 13:28:45 +01:00
|
|
|
else
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_source_output;
|
2020-10-26 13:28:45 +01:00
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
o = select_object(manager, &sel);
|
2020-10-26 13:28:45 +01:00
|
|
|
if (o == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-26 13:28:45 +01:00
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
if ((res = set_node_volume_mute(o, NULL, &mute, false)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return res;
|
2020-10-26 13:28:45 +01:00
|
|
|
}
|
2021-02-10 19:11:01 +01:00
|
|
|
done:
|
2021-03-09 09:53:39 +01:00
|
|
|
return operation_new(client, tag);
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-28 17:57:53 +01:00
|
|
|
static int do_set_volume(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
struct pw_node_info *info;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index, card_id = SPA_ID_INVALID;
|
2020-10-28 17:57:53 +01:00
|
|
|
const char *name, *str;
|
|
|
|
|
struct volume volume;
|
|
|
|
|
struct pw_manager_object *o, *card = NULL;
|
|
|
|
|
int res;
|
|
|
|
|
struct device_info dev_info;
|
|
|
|
|
enum pw_direction direction;
|
2021-04-29 15:25:04 +02:00
|
|
|
bool is_monitor;
|
2020-10-28 17:57:53 +01:00
|
|
|
|
|
|
|
|
if ((res = message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2020-10-28 17:57:53 +01:00
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_CVOLUME, &volume,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-28 17:57:53 +01:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u name:%s",
|
2022-01-17 11:28:40 +01:00
|
|
|
client->name, commands[command].name, tag, index, name);
|
2020-10-28 17:57:53 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((index == SPA_ID_INVALID && name == NULL) ||
|
|
|
|
|
(index != SPA_ID_INVALID && name != NULL))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EINVAL;
|
2020-10-28 17:57:53 +01:00
|
|
|
|
|
|
|
|
if (command == COMMAND_SET_SINK_VOLUME)
|
|
|
|
|
direction = PW_DIRECTION_OUTPUT;
|
|
|
|
|
else
|
|
|
|
|
direction = PW_DIRECTION_INPUT;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
o = find_device(client, index, name, direction == PW_DIRECTION_OUTPUT, &is_monitor);
|
2020-11-13 09:52:02 +01:00
|
|
|
if (o == NULL || (info = o->info) == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-28 17:57:53 +01:00
|
|
|
|
|
|
|
|
dev_info = DEVICE_INFO_INIT(direction);
|
|
|
|
|
|
|
|
|
|
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) {
|
2021-04-15 15:53:05 -04:00
|
|
|
struct selector sel = { .id = card_id, .type = pw_manager_object_is_card, };
|
2020-10-28 17:57:53 +01:00
|
|
|
card = select_object(manager, &sel);
|
|
|
|
|
}
|
2021-08-25 17:33:22 +02:00
|
|
|
collect_device_info(o, card, &dev_info, is_monitor, &impl->defs);
|
2020-10-28 17:57:53 +01:00
|
|
|
|
2021-02-09 18:17:45 +01:00
|
|
|
if (dev_info.have_volume &&
|
|
|
|
|
volume_compare(&dev_info.volume_info.volume, &volume) == 0)
|
|
|
|
|
goto done;
|
|
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
if (card != NULL && !is_monitor && dev_info.active_port != SPA_ID_INVALID)
|
2021-02-16 22:03:08 +02:00
|
|
|
res = set_card_volume_mute_delay(card, dev_info.active_port,
|
|
|
|
|
dev_info.device, &volume, NULL, NULL);
|
2020-10-28 18:08:56 +01:00
|
|
|
else
|
2021-04-29 15:25:04 +02:00
|
|
|
res = set_node_volume_mute(o, &volume, NULL, is_monitor);
|
2020-10-28 17:57:53 +01:00
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
if (res < 0)
|
|
|
|
|
return res;
|
2020-10-28 17:57:53 +01:00
|
|
|
|
2021-02-09 18:17:45 +01:00
|
|
|
done:
|
2021-03-09 09:53:39 +01:00
|
|
|
return operation_new(client, tag);
|
2020-10-28 17:57:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_set_mute(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
2020-10-28 18:08:56 +01:00
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
struct pw_node_info *info;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index, card_id = SPA_ID_INVALID;
|
2020-10-28 18:08:56 +01:00
|
|
|
const char *name, *str;
|
|
|
|
|
bool mute;
|
|
|
|
|
struct pw_manager_object *o, *card = NULL;
|
|
|
|
|
int res;
|
|
|
|
|
struct device_info dev_info;
|
|
|
|
|
enum pw_direction direction;
|
2021-04-29 15:25:04 +02:00
|
|
|
bool is_monitor;
|
2020-10-28 18:08:56 +01:00
|
|
|
|
|
|
|
|
if ((res = message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2020-10-28 18:08:56 +01:00
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_BOOLEAN, &mute,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-28 18:08:56 +01:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u name:%s mute:%d",
|
2022-01-17 11:28:40 +01:00
|
|
|
client->name, commands[command].name, tag, index, name, mute);
|
2020-10-28 18:08:56 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((index == SPA_ID_INVALID && name == NULL) ||
|
|
|
|
|
(index != SPA_ID_INVALID && name != NULL))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EINVAL;
|
2020-10-28 18:08:56 +01:00
|
|
|
|
|
|
|
|
if (command == COMMAND_SET_SINK_MUTE)
|
|
|
|
|
direction = PW_DIRECTION_OUTPUT;
|
|
|
|
|
else
|
|
|
|
|
direction = PW_DIRECTION_INPUT;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
o = find_device(client, index, name, direction == PW_DIRECTION_OUTPUT, &is_monitor);
|
2020-11-13 09:52:02 +01:00
|
|
|
if (o == NULL || (info = o->info) == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-28 18:08:56 +01:00
|
|
|
|
|
|
|
|
dev_info = DEVICE_INFO_INIT(direction);
|
|
|
|
|
|
|
|
|
|
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) {
|
2021-04-15 15:53:05 -04:00
|
|
|
struct selector sel = { .id = card_id, .type = pw_manager_object_is_card, };
|
2020-10-28 18:08:56 +01:00
|
|
|
card = select_object(manager, &sel);
|
|
|
|
|
}
|
2021-08-25 17:33:22 +02:00
|
|
|
collect_device_info(o, card, &dev_info, is_monitor, &impl->defs);
|
2020-10-28 18:08:56 +01:00
|
|
|
|
2021-02-09 18:17:45 +01:00
|
|
|
if (dev_info.have_volume &&
|
|
|
|
|
dev_info.volume_info.mute == mute)
|
|
|
|
|
goto done;
|
|
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
if (card != NULL && !is_monitor && dev_info.active_port != SPA_ID_INVALID)
|
2021-02-16 22:03:08 +02:00
|
|
|
res = set_card_volume_mute_delay(card, dev_info.active_port,
|
|
|
|
|
dev_info.device, NULL, &mute, NULL);
|
2020-10-28 18:08:56 +01:00
|
|
|
else
|
2021-04-29 15:25:04 +02:00
|
|
|
res = set_node_volume_mute(o, NULL, &mute, is_monitor);
|
2020-10-28 18:08:56 +01:00
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
if (res < 0)
|
|
|
|
|
return res;
|
2021-02-09 18:17:45 +01:00
|
|
|
done:
|
2021-03-09 09:53:39 +01:00
|
|
|
return operation_new(client, tag);
|
2020-10-28 17:57:53 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-28 20:05:13 +01:00
|
|
|
static int do_set_port(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
struct pw_node_info *info;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index, card_id = SPA_ID_INVALID, device_id = SPA_ID_INVALID;
|
2022-01-17 09:49:39 +01:00
|
|
|
uint32_t port_index = SPA_ID_INVALID;
|
2020-10-28 20:05:13 +01:00
|
|
|
const char *name, *str, *port_name;
|
|
|
|
|
struct pw_manager_object *o, *card = NULL;
|
|
|
|
|
int res;
|
|
|
|
|
enum pw_direction direction;
|
|
|
|
|
|
|
|
|
|
if ((res = message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2020-10-28 20:05:13 +01:00
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_STRING, &port_name,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-28 20:05:13 +01:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u name:%s port:%s",
|
2022-01-17 11:28:40 +01:00
|
|
|
client->name, commands[command].name, tag, index, name, port_name);
|
2020-10-28 20:05:13 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((index == SPA_ID_INVALID && name == NULL) ||
|
|
|
|
|
(index != SPA_ID_INVALID && name != NULL))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EINVAL;
|
2020-10-28 20:05:13 +01:00
|
|
|
|
|
|
|
|
if (command == COMMAND_SET_SINK_PORT)
|
|
|
|
|
direction = PW_DIRECTION_OUTPUT;
|
|
|
|
|
else
|
|
|
|
|
direction = PW_DIRECTION_INPUT;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
o = find_device(client, index, name, direction == PW_DIRECTION_OUTPUT, NULL);
|
2020-11-13 09:52:02 +01:00
|
|
|
if (o == NULL || (info = o->info) == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-28 20:05:13 +01:00
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
device_id = (uint32_t)atoi(str);
|
|
|
|
|
if (card_id != SPA_ID_INVALID) {
|
2021-04-15 15:53:05 -04:00
|
|
|
struct selector sel = { .id = card_id, .type = pw_manager_object_is_card, };
|
2020-10-28 20:05:13 +01:00
|
|
|
card = select_object(manager, &sel);
|
|
|
|
|
}
|
|
|
|
|
if (card == NULL || device_id == SPA_ID_INVALID)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-28 20:05:13 +01:00
|
|
|
|
2022-01-17 09:49:39 +01:00
|
|
|
port_index = find_port_index(card, direction, port_name);
|
|
|
|
|
if (port_index == SPA_ID_INVALID)
|
2020-12-04 15:41:11 +01:00
|
|
|
return -ENOENT;
|
2020-10-28 20:05:13 +01:00
|
|
|
|
2022-01-17 09:49:39 +01:00
|
|
|
if ((res = set_card_port(card, device_id, port_index)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return res;
|
2020-10-28 20:05:13 +01:00
|
|
|
|
2021-03-09 09:53:39 +01:00
|
|
|
return operation_new(client, tag);
|
2020-10-28 20:05:13 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-16 22:03:08 +02:00
|
|
|
static int do_set_port_latency_offset(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
const char *port_name = NULL;
|
|
|
|
|
struct pw_manager_object *card;
|
|
|
|
|
struct selector sel;
|
|
|
|
|
struct card_info card_info = CARD_INFO_INIT;
|
|
|
|
|
struct port_info *port_info;
|
|
|
|
|
int64_t offset;
|
|
|
|
|
int64_t value;
|
|
|
|
|
int res;
|
|
|
|
|
uint32_t n_ports;
|
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
|
|
spa_zero(sel);
|
|
|
|
|
sel.key = PW_KEY_DEVICE_NAME;
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_card;
|
2021-02-16 22:03:08 +02:00
|
|
|
|
|
|
|
|
if ((res = message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &sel.index,
|
2021-02-16 22:03:08 +02:00
|
|
|
TAG_STRING, &sel.value,
|
|
|
|
|
TAG_STRING, &port_name,
|
|
|
|
|
TAG_S64, &offset,
|
|
|
|
|
TAG_INVALID)) < 0)
|
|
|
|
|
return -EPROTO;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u card_name:%s port_name:%s offset:%"PRIi64,
|
2022-01-17 11:28:40 +01:00
|
|
|
client->name, commands[command].name, tag, sel.index, sel.value, port_name, offset);
|
2021-02-16 22:03:08 +02:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((sel.index == SPA_ID_INVALID && sel.value == NULL) ||
|
|
|
|
|
(sel.index != SPA_ID_INVALID && sel.value != NULL))
|
2021-02-16 22:03:08 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
if (port_name == NULL)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
value = offset * 1000; /* to nsec */
|
|
|
|
|
|
|
|
|
|
if ((card = select_object(manager, &sel)) == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
|
|
collect_card_info(card, &card_info);
|
|
|
|
|
port_info = alloca(card_info.n_ports * sizeof(*port_info));
|
|
|
|
|
card_info.active_profile = SPA_ID_INVALID;
|
|
|
|
|
n_ports = collect_port_info(card, &card_info, NULL, port_info);
|
|
|
|
|
|
|
|
|
|
/* Set offset on all devices of the port */
|
|
|
|
|
res = -ENOENT;
|
|
|
|
|
for (i = 0; i < n_ports; i++) {
|
|
|
|
|
struct port_info *pi = &port_info[i];
|
|
|
|
|
size_t j;
|
|
|
|
|
|
2021-05-18 11:43:49 +10:00
|
|
|
if (!spa_streq(pi->name, port_name))
|
2021-02-16 22:03:08 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
res = 0;
|
|
|
|
|
for (j = 0; j < pi->n_devices; ++j) {
|
2022-01-17 09:49:39 +01:00
|
|
|
res = set_card_volume_mute_delay(card, pi->index, pi->devices[j], NULL, NULL, &value);
|
2021-02-16 22:03:08 +02:00
|
|
|
if (res < 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (res < 0)
|
|
|
|
|
break;
|
|
|
|
|
|
2021-03-09 09:53:39 +01:00
|
|
|
return operation_new(client, tag);
|
2021-02-16 22:03:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_set_stream_name(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
uint32_t channel;
|
|
|
|
|
struct stream *stream;
|
|
|
|
|
const char *name = NULL;
|
|
|
|
|
struct spa_dict_item items[1];
|
|
|
|
|
int res;
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
if ((res = message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &channel,
|
|
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_INVALID)) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] SET_STREAM_NAME tag:%u channel:%d name:%s",
|
|
|
|
|
client->name, tag, channel, name);
|
2020-11-12 13:33:25 +01:00
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL || stream->type == STREAM_TYPE_UPLOAD)
|
|
|
|
|
return -ENOENT;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
items[0] = SPA_DICT_ITEM_INIT(PW_KEY_MEDIA_NAME, name);
|
|
|
|
|
pw_stream_update_properties(stream->stream,
|
|
|
|
|
&SPA_DICT_INIT(items, 1));
|
|
|
|
|
|
|
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_update_proplist(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
uint32_t channel, mode;
|
|
|
|
|
struct stream *stream;
|
|
|
|
|
struct pw_properties *props;
|
|
|
|
|
int res;
|
|
|
|
|
|
|
|
|
|
props = pw_properties_new(NULL, NULL);
|
2020-10-29 11:59:16 +01:00
|
|
|
if (props == NULL)
|
|
|
|
|
return -errno;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
if (command != COMMAND_UPDATE_CLIENT_PROPLIST) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &channel,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
} else {
|
|
|
|
|
channel = SPA_ID_INVALID;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u channel:%d",
|
2020-11-12 13:33:25 +01:00
|
|
|
client->name, commands[command].name, tag, channel);
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &mode,
|
2020-10-20 13:18:54 +02:00
|
|
|
TAG_PROPLIST, props,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
if (command != COMMAND_UPDATE_CLIENT_PROPLIST) {
|
|
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL || stream->type == STREAM_TYPE_UPLOAD)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_noentity;
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
pw_stream_update_properties(stream->stream, &props->dict);
|
|
|
|
|
} else {
|
2021-06-30 17:17:36 +02:00
|
|
|
if (pw_properties_update(client->props, &props->dict) > 0) {
|
|
|
|
|
client_update_quirks(client);
|
|
|
|
|
pw_core_update_properties(client->core, &client->props->dict);
|
|
|
|
|
}
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
res = reply_simple_ack(client, tag);
|
|
|
|
|
exit:
|
2021-06-01 11:21:17 +10:00
|
|
|
pw_properties_free(props);
|
2020-10-04 20:20:58 +02:00
|
|
|
return res;
|
2020-10-29 11:59:16 +01:00
|
|
|
|
|
|
|
|
error_protocol:
|
|
|
|
|
res = -EPROTO;
|
|
|
|
|
goto exit;
|
|
|
|
|
error_noentity:
|
|
|
|
|
res = -ENOENT;
|
|
|
|
|
goto exit;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_remove_proplist(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
uint32_t i, channel;
|
|
|
|
|
struct stream *stream;
|
|
|
|
|
struct pw_properties *props;
|
|
|
|
|
struct spa_dict dict;
|
|
|
|
|
struct spa_dict_item *items;
|
|
|
|
|
int res;
|
|
|
|
|
|
|
|
|
|
props = pw_properties_new(NULL, NULL);
|
2020-10-29 11:59:16 +01:00
|
|
|
if (props == NULL)
|
|
|
|
|
return -errno;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
if (command != COMMAND_REMOVE_CLIENT_PROPLIST) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &channel,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
} else {
|
|
|
|
|
channel = SPA_ID_INVALID;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u channel:%d",
|
2020-11-12 13:33:25 +01:00
|
|
|
client->name, commands[command].name, tag, channel);
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
const char *key;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_STRING, &key,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
if (key == NULL)
|
|
|
|
|
break;
|
|
|
|
|
pw_properties_set(props, key, key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dict.n_items = props->dict.n_items;
|
2020-10-21 12:03:45 +02:00
|
|
|
dict.items = items = alloca(sizeof(struct spa_dict_item) * dict.n_items);
|
2020-10-04 20:20:58 +02:00
|
|
|
for (i = 0; i < dict.n_items; i++) {
|
|
|
|
|
items[i].key = props->dict.items[i].key;
|
|
|
|
|
items[i].value = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (command != COMMAND_UPDATE_CLIENT_PROPLIST) {
|
|
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL || stream->type == STREAM_TYPE_UPLOAD)
|
2020-10-29 11:59:16 +01:00
|
|
|
goto error_noentity;
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
pw_stream_update_properties(stream->stream, &dict);
|
|
|
|
|
} else {
|
|
|
|
|
pw_core_update_properties(client->core, &dict);
|
|
|
|
|
}
|
|
|
|
|
res = reply_simple_ack(client, tag);
|
|
|
|
|
exit:
|
2021-06-01 11:21:17 +10:00
|
|
|
pw_properties_free(props);
|
2020-10-04 20:20:58 +02:00
|
|
|
return res;
|
2020-10-29 11:59:16 +01:00
|
|
|
|
|
|
|
|
error_protocol:
|
|
|
|
|
res = -EPROTO;
|
|
|
|
|
goto exit;
|
|
|
|
|
error_noentity:
|
|
|
|
|
res = -ENOENT;
|
|
|
|
|
goto exit;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-26 13:28:45 +01:00
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_get_server_info(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2020-11-05 10:36:13 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2021-12-30 21:44:01 +01:00
|
|
|
struct pw_core_info *info = manager ? manager->info : NULL;
|
2020-10-04 20:20:58 +02:00
|
|
|
char name[256];
|
2020-10-06 15:34:43 +02:00
|
|
|
struct message *reply;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] GET_SERVER_INFO tag:%u", client->name, tag);
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-02-02 12:09:29 +01:00
|
|
|
snprintf(name, sizeof(name), "PulseAudio (on PipeWire %s)", pw_get_library_version());
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
message_put(reply,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_STRING, name,
|
2021-08-05 12:53:46 +02:00
|
|
|
TAG_STRING, "15.0.0",
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_STRING, pw_get_user_name(),
|
|
|
|
|
TAG_STRING, pw_get_host_name(),
|
2021-04-09 11:12:13 +02:00
|
|
|
TAG_SAMPLE_SPEC, &impl->defs.sample_spec,
|
2021-12-30 21:44:01 +01:00
|
|
|
TAG_STRING, manager ? get_default(client, true) : "", /* default sink name */
|
|
|
|
|
TAG_STRING, manager ? get_default(client, false) : "", /* default source name */
|
2021-09-13 10:50:01 +02:00
|
|
|
TAG_U32, info ? info->cookie : 0, /* cookie */
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version >= 15) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2021-04-09 11:12:13 +02:00
|
|
|
TAG_CHANNEL_MAP, &impl->defs.channel_map,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_stat(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2020-10-06 15:34:43 +02:00
|
|
|
struct message *reply;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] STAT tag:%u", client->name, tag);
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
message_put(reply,
|
2021-01-19 10:51:23 +01:00
|
|
|
TAG_U32, impl->stat.n_allocated, /* n_allocated */
|
|
|
|
|
TAG_U32, impl->stat.allocated, /* allocated size */
|
|
|
|
|
TAG_U32, impl->stat.n_accumulated, /* n_accumulated */
|
|
|
|
|
TAG_U32, impl->stat.accumulated, /* accumulated_size */
|
|
|
|
|
TAG_U32, impl->stat.sample_cache, /* sample cache size */
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_lookup(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
2020-10-06 15:34:43 +02:00
|
|
|
struct message *reply;
|
2020-10-25 19:51:42 +01:00
|
|
|
struct pw_manager_object *o;
|
2020-10-28 17:57:53 +01:00
|
|
|
const char *name;
|
2020-12-05 19:16:04 +01:00
|
|
|
bool is_sink = command == COMMAND_LOOKUP_SINK;
|
|
|
|
|
bool is_monitor;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-28 17:57:53 +01:00
|
|
|
TAG_STRING, &name,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] LOOKUP tag:%u name:'%s'", client->name, tag, name);
|
2020-10-26 13:28:45 +01:00
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
if ((o = find_device(client, SPA_ID_INVALID, name, is_sink, &is_monitor)) == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-14 16:45:46 +02:00
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
message_put(reply,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_drain_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
uint32_t channel;
|
|
|
|
|
struct stream *stream;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &channel,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] DRAIN tag:%u channel:%d", client->name, tag, channel);
|
2020-10-04 20:20:58 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL || stream->type != STREAM_TYPE_PLAYBACK)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2020-10-14 17:42:52 +02:00
|
|
|
stream->drain_tag = tag;
|
2020-11-16 15:42:04 +01:00
|
|
|
stream->draining = true;
|
2021-03-22 10:31:09 +01:00
|
|
|
pw_stream_set_active(stream->stream, true);
|
|
|
|
|
|
2020-10-14 17:42:52 +02:00
|
|
|
return 0;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-25 19:51:42 +01:00
|
|
|
static int fill_client_info(struct client *client, struct message *m,
|
2020-10-25 15:28:42 +01:00
|
|
|
struct pw_manager_object *o)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
2020-10-25 15:28:42 +01:00
|
|
|
struct pw_client_info *info = o->info;
|
2022-01-17 11:28:40 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-26 18:10:05 +01:00
|
|
|
const char *str;
|
|
|
|
|
uint32_t module_id = SPA_ID_INVALID;
|
2020-10-25 15:28:42 +01:00
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_client(o) || info == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2020-10-26 18:10:05 +01:00
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_MODULE_ID)) != NULL)
|
|
|
|
|
module_id = (uint32_t)atoi(str);
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index, /* client index */
|
2020-10-25 15:28:42 +01:00
|
|
|
TAG_STRING, pw_properties_get(o->props, PW_KEY_APP_NAME),
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, id_to_index(manager, module_id), /* module index */
|
|
|
|
|
TAG_STRING, "PipeWire", /* driver */
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 13) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(m,
|
2020-11-13 09:52:02 +01:00
|
|
|
TAG_PROPLIST, info->props,
|
2020-10-25 15:28:42 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
2020-10-25 19:51:42 +01:00
|
|
|
return 0;
|
2020-10-25 15:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-25 19:51:42 +01:00
|
|
|
static int fill_module_info(struct client *client, struct message *m,
|
2020-10-25 15:28:42 +01:00
|
|
|
struct pw_manager_object *o)
|
|
|
|
|
{
|
|
|
|
|
struct pw_module_info *info = o->info;
|
|
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_module(o) || info == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2020-10-25 15:28:42 +01:00
|
|
|
message_put(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index, /* module index */
|
2020-10-26 13:28:45 +01:00
|
|
|
TAG_STRING, info->name,
|
|
|
|
|
TAG_STRING, info->args,
|
2020-10-25 15:28:42 +01:00
|
|
|
TAG_U32, -1, /* n_used */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version < 15) {
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_BOOLEAN, false, /* auto unload deprecated */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 15) {
|
|
|
|
|
message_put(m,
|
2020-10-26 13:28:45 +01:00
|
|
|
TAG_PROPLIST, info->props,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
2020-10-25 19:51:42 +01:00
|
|
|
return 0;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2021-03-01 13:57:28 +01:00
|
|
|
static int fill_ext_module_info(struct client *client, struct message *m,
|
|
|
|
|
struct module *module)
|
|
|
|
|
{
|
|
|
|
|
message_put(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, module->index, /* module index */
|
2021-03-01 13:57:28 +01:00
|
|
|
TAG_STRING, module->name,
|
|
|
|
|
TAG_STRING, module->args,
|
|
|
|
|
TAG_U32, -1, /* n_used */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version < 15) {
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_BOOLEAN, false, /* auto unload deprecated */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 15) {
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_PROPLIST, module->props,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-16 22:03:08 +02:00
|
|
|
static int64_t get_port_latency_offset(struct client *client, struct pw_manager_object *card, struct port_info *pi)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager *m = client->manager;
|
|
|
|
|
struct pw_manager_object *o;
|
|
|
|
|
size_t j;
|
|
|
|
|
|
|
|
|
|
/*
|
2021-07-14 15:41:58 +10:00
|
|
|
* The latency offset is a property of nodes in PipeWire, so we look it up on the
|
2021-02-16 22:03:08 +02:00
|
|
|
* nodes. We'll return the latency offset of the first node in the port.
|
|
|
|
|
*
|
|
|
|
|
* This is also because we need to be consistent with
|
|
|
|
|
* send_latency_offset_subscribe_event, which sends events on node changes. The
|
|
|
|
|
* route data might not be updated yet when these events arrive.
|
|
|
|
|
*/
|
|
|
|
|
for (j = 0; j < pi->n_devices; ++j) {
|
|
|
|
|
spa_list_for_each(o, &m->object_list, link) {
|
|
|
|
|
const char *str;
|
|
|
|
|
uint32_t card_id = SPA_ID_INVALID;
|
|
|
|
|
uint32_t device_id = SPA_ID_INVALID;
|
|
|
|
|
struct pw_node_info *info;
|
|
|
|
|
|
|
|
|
|
if (o->creating || o->removing)
|
|
|
|
|
continue;
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_sink(o) && !pw_manager_object_is_source_or_monitor(o))
|
2021-02-16 22:03:08 +02:00
|
|
|
continue;
|
|
|
|
|
if ((info = o->info) == NULL || info->props == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_DEVICE_ID)) != NULL)
|
|
|
|
|
card_id = (uint32_t)atoi(str);
|
|
|
|
|
if (card_id != card->id)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, "card.profile.device")) != NULL)
|
|
|
|
|
device_id = (uint32_t)atoi(str);
|
|
|
|
|
|
|
|
|
|
if (device_id == pi->devices[j])
|
|
|
|
|
return get_node_latency_offset(o);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0LL;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-28 15:20:36 +01:00
|
|
|
static int fill_card_info(struct client *client, struct message *m,
|
|
|
|
|
struct pw_manager_object *o)
|
|
|
|
|
{
|
2022-01-17 11:28:40 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-28 15:20:36 +01:00
|
|
|
struct pw_device_info *info = o->info;
|
2021-03-18 15:38:29 +01:00
|
|
|
const char *str, *drv_name;
|
2020-10-28 15:20:36 +01:00
|
|
|
uint32_t module_id = SPA_ID_INVALID, n_profiles, n;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct card_info card_info = CARD_INFO_INIT;
|
2020-10-28 15:20:36 +01:00
|
|
|
struct profile_info *profile_info;
|
|
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_card(o) || info == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-28 15:20:36 +01:00
|
|
|
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_MODULE_ID)) != NULL)
|
|
|
|
|
module_id = (uint32_t)atoi(str);
|
|
|
|
|
|
2021-03-18 15:38:29 +01:00
|
|
|
drv_name = spa_dict_lookup(info->props, PW_KEY_DEVICE_API);
|
2021-05-18 11:40:50 +10:00
|
|
|
if (drv_name && spa_streq("bluez5", drv_name))
|
2021-03-18 15:38:29 +01:00
|
|
|
drv_name = "module-bluez5-device.c"; /* blueman needs this */
|
|
|
|
|
|
2020-10-28 15:20:36 +01:00
|
|
|
message_put(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index, /* card index */
|
2020-10-28 15:20:36 +01:00
|
|
|
TAG_STRING, spa_dict_lookup(info->props, PW_KEY_DEVICE_NAME),
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, id_to_index(manager, module_id),
|
2021-03-18 15:38:29 +01:00
|
|
|
TAG_STRING, drv_name,
|
2020-10-28 15:20:36 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
collect_card_info(o, &card_info);
|
2020-10-28 15:20:36 +01:00
|
|
|
|
|
|
|
|
message_put(m,
|
2020-10-28 16:48:46 +01:00
|
|
|
TAG_U32, card_info.n_profiles, /* n_profiles */
|
2020-10-28 15:20:36 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
profile_info = alloca(card_info.n_profiles * sizeof(*profile_info));
|
|
|
|
|
n_profiles = collect_profile_info(o, &card_info, profile_info);
|
2020-10-28 15:20:36 +01:00
|
|
|
|
|
|
|
|
for (n = 0; n < n_profiles; n++) {
|
|
|
|
|
struct profile_info *pi = &profile_info[n];
|
|
|
|
|
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_STRING, pi->name, /* profile name */
|
|
|
|
|
TAG_STRING, pi->description, /* profile description */
|
|
|
|
|
TAG_U32, pi->n_sinks, /* n_sinks */
|
|
|
|
|
TAG_U32, pi->n_sources, /* n_sources */
|
|
|
|
|
TAG_U32, pi->priority, /* priority */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version >= 29) {
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_U32, pi->available != SPA_PARAM_AVAILABILITY_no, /* available */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
message_put(m,
|
2020-10-28 16:48:46 +01:00
|
|
|
TAG_STRING, card_info.active_profile_name, /* active profile name */
|
2020-10-28 15:20:36 +01:00
|
|
|
TAG_PROPLIST, info->props,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version >= 26) {
|
|
|
|
|
uint32_t n_ports;
|
|
|
|
|
struct port_info *port_info, *pi;
|
|
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
port_info = alloca(card_info.n_ports * sizeof(*port_info));
|
|
|
|
|
card_info.active_profile = SPA_ID_INVALID;
|
|
|
|
|
n_ports = collect_port_info(o, &card_info, NULL, port_info);
|
2020-10-28 15:20:36 +01:00
|
|
|
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_U32, n_ports, /* n_ports */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
for (n = 0; n < n_ports; n++) {
|
|
|
|
|
struct spa_dict_item *items;
|
|
|
|
|
struct spa_dict *pdict = NULL, dict;
|
2021-03-20 15:02:55 +02:00
|
|
|
uint32_t i, pi_n_profiles;
|
2020-10-28 15:20:36 +01:00
|
|
|
|
|
|
|
|
pi = &port_info[n];
|
|
|
|
|
|
|
|
|
|
if (pi->info && pi->n_props > 0) {
|
|
|
|
|
items = alloca(pi->n_props * sizeof(*items));
|
|
|
|
|
dict.items = items;
|
|
|
|
|
pdict = collect_props(pi->info, &dict);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_STRING, pi->name, /* port name */
|
|
|
|
|
TAG_STRING, pi->description, /* port description */
|
|
|
|
|
TAG_U32, pi->priority, /* port priority */
|
|
|
|
|
TAG_U32, pi->available, /* port available */
|
|
|
|
|
TAG_U8, pi->direction == SPA_DIRECTION_INPUT ? 2 : 1, /* port direction */
|
|
|
|
|
TAG_PROPLIST, pdict, /* port proplist */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2021-03-20 15:02:55 +02:00
|
|
|
pi_n_profiles = SPA_MIN(pi->n_profiles, n_profiles);
|
|
|
|
|
if (pi->n_profiles != pi_n_profiles) {
|
|
|
|
|
/* libpulse assumes port profile array size <= n_profiles */
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_error("%p: card %d port %d profiles inconsistent (%d < %d)",
|
2021-03-20 15:02:55 +02:00
|
|
|
client->impl, o->id, n, n_profiles, pi->n_profiles);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-28 15:20:36 +01:00
|
|
|
message_put(m,
|
2021-03-20 15:02:55 +02:00
|
|
|
TAG_U32, pi_n_profiles, /* n_profiles */
|
2020-10-28 15:20:36 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
2021-03-20 15:02:55 +02:00
|
|
|
for (i = 0; i < pi_n_profiles; i++) {
|
2021-03-20 15:32:26 +02:00
|
|
|
uint32_t j;
|
|
|
|
|
const char *name = "off";
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < n_profiles; ++j) {
|
2022-01-17 09:49:39 +01:00
|
|
|
if (profile_info[j].index == pi->profiles[i]) {
|
2021-03-20 15:32:26 +02:00
|
|
|
name = profile_info[j].name;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-28 15:20:36 +01:00
|
|
|
message_put(m,
|
2021-03-20 15:32:26 +02:00
|
|
|
TAG_STRING, name, /* profile name */
|
2020-10-28 15:20:36 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 27) {
|
2021-02-16 22:03:08 +02:00
|
|
|
int64_t latency_offset = get_port_latency_offset(client, o, pi);
|
2020-10-28 15:20:36 +01:00
|
|
|
message_put(m,
|
2021-02-16 22:03:08 +02:00
|
|
|
TAG_S64, latency_offset / 1000, /* port latency offset */
|
2020-10-28 15:20:36 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 34) {
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_STRING, pi->availability_group, /* available group */
|
|
|
|
|
TAG_U32, pi->type, /* port type */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-25 19:51:42 +01:00
|
|
|
static int fill_sink_info(struct client *client, struct message *m,
|
|
|
|
|
struct pw_manager_object *o)
|
2020-10-06 17:56:45 +02:00
|
|
|
{
|
2021-08-25 17:33:22 +02:00
|
|
|
struct impl *impl = client->impl;
|
2020-10-25 19:51:42 +01:00
|
|
|
struct pw_node_info *info = o->info;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-11-26 09:27:19 +01:00
|
|
|
const char *name, *desc, *str;
|
2020-10-26 16:59:30 +01:00
|
|
|
char *monitor_name = NULL;
|
2020-10-26 18:10:05 +01:00
|
|
|
uint32_t module_id = SPA_ID_INVALID;
|
|
|
|
|
uint32_t card_id = SPA_ID_INVALID;
|
2020-10-28 10:53:12 +01:00
|
|
|
struct pw_manager_object *card = NULL;
|
2020-10-27 17:09:06 +01:00
|
|
|
uint32_t flags;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct card_info card_info = CARD_INFO_INIT;
|
2020-10-28 15:20:36 +01:00
|
|
|
struct device_info dev_info = DEVICE_INFO_INIT(PW_DIRECTION_OUTPUT);
|
2021-04-05 17:36:38 +02:00
|
|
|
size_t size;
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_sink(o) || info == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2021-04-05 17:36:38 +02:00
|
|
|
name = spa_dict_lookup(info->props, PW_KEY_NODE_NAME);
|
2020-11-26 09:27:19 +01:00
|
|
|
if ((desc = spa_dict_lookup(info->props, PW_KEY_NODE_DESCRIPTION)) == NULL)
|
2021-04-05 17:36:38 +02:00
|
|
|
desc = name ? name : "Unknown";
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
name = "unknown";
|
|
|
|
|
|
|
|
|
|
size = strlen(name) + 10;
|
|
|
|
|
monitor_name = alloca(size);
|
2021-04-15 15:53:05 -04:00
|
|
|
if (pw_manager_object_is_source(o))
|
2021-04-05 17:36:38 +02:00
|
|
|
snprintf(monitor_name, size, "%s", name);
|
|
|
|
|
else
|
|
|
|
|
snprintf(monitor_name, size, "%s.monitor", name);
|
2020-11-26 09:27:19 +01:00
|
|
|
|
2020-10-26 18:10:05 +01:00
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_MODULE_ID)) != NULL)
|
|
|
|
|
module_id = (uint32_t)atoi(str);
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_DEVICE_ID)) != NULL)
|
|
|
|
|
card_id = (uint32_t)atoi(str);
|
2020-10-28 10:53:12 +01:00
|
|
|
if ((str = spa_dict_lookup(info->props, "card.profile.device")) != NULL)
|
|
|
|
|
dev_info.device = (uint32_t)atoi(str);
|
|
|
|
|
if (card_id != SPA_ID_INVALID) {
|
2021-04-15 15:53:05 -04:00
|
|
|
struct selector sel = { .id = card_id, .type = pw_manager_object_is_card, };
|
2020-10-28 16:48:46 +01:00
|
|
|
card = select_object(manager, &sel);
|
2020-10-28 10:53:12 +01:00
|
|
|
}
|
2020-10-28 16:48:46 +01:00
|
|
|
if (card)
|
|
|
|
|
collect_card_info(card, &card_info);
|
|
|
|
|
|
2021-08-25 17:33:22 +02:00
|
|
|
collect_device_info(o, card, &dev_info, false, &impl->defs);
|
2020-10-26 16:59:30 +01:00
|
|
|
|
2020-11-24 10:18:17 +01:00
|
|
|
if (!sample_spec_valid(&dev_info.ss) ||
|
|
|
|
|
!channel_map_valid(&dev_info.map) ||
|
2020-11-24 11:27:38 +01:00
|
|
|
!volume_valid(&dev_info.volume_info.volume)) {
|
2021-01-02 20:37:44 +01:00
|
|
|
pw_log_warn("%d: sink not ready: sample:%d map:%d volume:%d",
|
|
|
|
|
o->id, sample_spec_valid(&dev_info.ss),
|
|
|
|
|
channel_map_valid(&dev_info.map),
|
|
|
|
|
volume_valid(&dev_info.volume_info.volume));
|
2020-11-24 10:18:17 +01:00
|
|
|
return -ENOENT;
|
2020-11-24 11:27:38 +01:00
|
|
|
}
|
2020-11-24 10:18:17 +01:00
|
|
|
|
2020-10-27 17:09:06 +01:00
|
|
|
flags = SINK_LATENCY | SINK_DYNAMIC_LATENCY | SINK_DECIBEL_VOLUME;
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_DEVICE_API)) != NULL)
|
2021-08-09 15:27:42 +02:00
|
|
|
flags |= SINK_HARDWARE;
|
2021-10-14 13:45:58 +02:00
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_NODE_NETWORK)) != NULL)
|
|
|
|
|
flags |= SINK_NETWORK;
|
2020-10-28 10:53:12 +01:00
|
|
|
if (SPA_FLAG_IS_SET(dev_info.volume_info.flags, VOLUME_HW_VOLUME))
|
2021-08-09 15:27:42 +02:00
|
|
|
flags |= SINK_HW_VOLUME_CTRL;
|
2020-10-28 10:53:12 +01:00
|
|
|
if (SPA_FLAG_IS_SET(dev_info.volume_info.flags, VOLUME_HW_MUTE))
|
2021-08-09 15:27:42 +02:00
|
|
|
flags |= SINK_HW_MUTE_CTRL;
|
2021-09-01 13:21:31 +02:00
|
|
|
if (dev_info.have_iec958codecs)
|
|
|
|
|
flags |= SINK_SET_FORMATS;
|
2020-10-27 17:09:06 +01:00
|
|
|
|
2021-06-30 17:17:36 +02:00
|
|
|
if (client->quirks & QUIRK_FORCE_S16_FORMAT)
|
|
|
|
|
dev_info.ss.format = SPA_AUDIO_FORMAT_S16;
|
|
|
|
|
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index, /* sink index */
|
2020-11-26 09:27:19 +01:00
|
|
|
TAG_STRING, name,
|
|
|
|
|
TAG_STRING, desc,
|
2020-10-28 16:48:46 +01:00
|
|
|
TAG_SAMPLE_SPEC, &dev_info.ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &dev_info.map,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, id_to_index(manager, module_id), /* module index */
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_CVOLUME, &dev_info.volume_info.volume,
|
|
|
|
|
TAG_BOOLEAN, dev_info.volume_info.mute,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index, /* monitor source index */
|
2020-10-26 16:59:30 +01:00
|
|
|
TAG_STRING, monitor_name, /* monitor source name */
|
2020-10-25 19:51:42 +01:00
|
|
|
TAG_USEC, 0LL, /* latency */
|
|
|
|
|
TAG_STRING, "PipeWire", /* driver */
|
2020-10-27 17:09:06 +01:00
|
|
|
TAG_U32, flags, /* flags */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version >= 13) {
|
|
|
|
|
message_put(m,
|
2020-10-25 19:51:42 +01:00
|
|
|
TAG_PROPLIST, info->props,
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_USEC, 0LL, /* requested latency */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 15) {
|
2021-06-25 13:23:22 +02:00
|
|
|
bool is_linked = collect_is_linked(manager, o->id, SPA_DIRECTION_INPUT);
|
|
|
|
|
int state = node_state(info->state);
|
|
|
|
|
|
|
|
|
|
/* running with nothing linked is probably the monitor that is
|
|
|
|
|
* keeping this sink busy */
|
|
|
|
|
if (state == STATE_RUNNING && !is_linked)
|
|
|
|
|
state = STATE_IDLE;
|
|
|
|
|
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_VOLUME, dev_info.volume_info.base, /* base volume */
|
2021-06-25 13:23:22 +02:00
|
|
|
TAG_U32, state, /* state */
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_U32, dev_info.volume_info.steps, /* n_volume_steps */
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, card ? card->index : SPA_ID_INVALID, /* card index */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 16) {
|
2020-10-28 10:53:12 +01:00
|
|
|
uint32_t n_ports, n;
|
|
|
|
|
struct port_info *port_info, *pi;
|
|
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
port_info = alloca(card_info.n_ports * sizeof(*port_info));
|
|
|
|
|
n_ports = collect_port_info(card, &card_info, &dev_info, port_info);
|
2020-10-28 10:53:12 +01:00
|
|
|
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_U32, n_ports, /* n_ports */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
2020-10-28 10:53:12 +01:00
|
|
|
for (n = 0; n < n_ports; n++) {
|
|
|
|
|
pi = &port_info[n];
|
2020-10-27 18:01:28 +01:00
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_STRING, pi->name, /* name */
|
|
|
|
|
TAG_STRING, pi->description, /* description */
|
|
|
|
|
TAG_U32, pi->priority, /* priority */
|
2020-10-27 18:01:28 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 24) {
|
|
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_U32, pi->available, /* available */
|
2020-10-27 18:01:28 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 34) {
|
|
|
|
|
message_put(m,
|
2020-10-28 12:18:26 +01:00
|
|
|
TAG_STRING, pi->availability_group, /* availability_group */
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_U32, pi->type, /* type */
|
2020-10-27 18:01:28 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_STRING, dev_info.active_port_name, /* active port name */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 21) {
|
2021-08-12 17:22:57 +02:00
|
|
|
struct pw_manager_param *p;
|
|
|
|
|
struct format_info info[32];
|
|
|
|
|
uint32_t i, n_info = 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;
|
2021-09-01 13:11:08 +02:00
|
|
|
if (info[n_info].encoding == ENCODING_ANY ||
|
|
|
|
|
(info[n_info].encoding == ENCODING_PCM && info[n_info].props != NULL)) {
|
|
|
|
|
format_info_clear(&info[n_info]);
|
2021-08-12 17:22:57 +02:00
|
|
|
continue;
|
2021-09-01 13:11:08 +02:00
|
|
|
}
|
2021-08-12 17:22:57 +02:00
|
|
|
n_info++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2021-08-12 17:22:57 +02:00
|
|
|
TAG_U8, n_info, /* n_formats */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
2021-08-12 17:22:57 +02:00
|
|
|
for (i = 0; i < n_info; i++) {
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_FORMAT_INFO, &info[i],
|
|
|
|
|
TAG_INVALID);
|
2021-09-01 13:11:08 +02:00
|
|
|
format_info_clear(&info[i]);
|
2021-08-12 17:22:57 +02:00
|
|
|
}
|
2020-10-06 17:56:45 +02:00
|
|
|
}
|
2020-10-25 19:51:42 +01:00
|
|
|
return 0;
|
2020-10-06 17:56:45 +02:00
|
|
|
}
|
|
|
|
|
|
2022-01-06 21:27:40 +02:00
|
|
|
static int fill_source_info_proplist(struct message *m, struct pw_manager_object *o,
|
|
|
|
|
struct pw_node_info *info)
|
|
|
|
|
{
|
|
|
|
|
struct pw_properties *props = NULL;
|
|
|
|
|
struct spa_dict *props_dict = info->props;
|
|
|
|
|
|
|
|
|
|
if (pw_manager_object_is_monitor(o)) {
|
|
|
|
|
props = pw_properties_new_dict(info->props);
|
|
|
|
|
if (props == NULL)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
pw_properties_set(props, PW_KEY_DEVICE_CLASS, "monitor");
|
|
|
|
|
props_dict = &props->dict;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message_put(m, TAG_PROPLIST, props_dict, TAG_INVALID);
|
|
|
|
|
pw_properties_free(props);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-25 19:51:42 +01:00
|
|
|
static int fill_source_info(struct client *client, struct message *m,
|
|
|
|
|
struct pw_manager_object *o)
|
2020-10-06 17:56:45 +02:00
|
|
|
{
|
2021-08-25 17:33:22 +02:00
|
|
|
struct impl *impl = client->impl;
|
2020-10-25 19:51:42 +01:00
|
|
|
struct pw_node_info *info = o->info;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-25 19:51:42 +01:00
|
|
|
bool is_monitor;
|
2020-10-26 18:10:05 +01:00
|
|
|
const char *name, *desc, *str;
|
2020-10-26 16:59:30 +01:00
|
|
|
char *monitor_name = NULL;
|
|
|
|
|
char *monitor_desc = NULL;
|
2020-10-26 18:10:05 +01:00
|
|
|
uint32_t module_id = SPA_ID_INVALID;
|
|
|
|
|
uint32_t card_id = SPA_ID_INVALID;
|
2020-10-28 10:53:12 +01:00
|
|
|
struct pw_manager_object *card = NULL;
|
2020-10-27 17:09:06 +01:00
|
|
|
uint32_t flags;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct card_info card_info = CARD_INFO_INIT;
|
2020-10-28 15:20:36 +01:00
|
|
|
struct device_info dev_info = DEVICE_INFO_INIT(PW_DIRECTION_INPUT);
|
2021-04-05 17:36:38 +02:00
|
|
|
size_t size;
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
is_monitor = pw_manager_object_is_monitor(o);
|
|
|
|
|
if ((!pw_manager_object_is_source(o) && !is_monitor) || info == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2021-04-05 17:36:38 +02:00
|
|
|
name = spa_dict_lookup(info->props, PW_KEY_NODE_NAME);
|
|
|
|
|
if ((desc = spa_dict_lookup(info->props, PW_KEY_NODE_DESCRIPTION)) == NULL)
|
|
|
|
|
desc = name ? name : "Unknown";
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
name = "unknown";
|
|
|
|
|
|
|
|
|
|
size = strlen(name) + 10;
|
|
|
|
|
monitor_name = alloca(size);
|
|
|
|
|
snprintf(monitor_name, size, "%s.monitor", name);
|
|
|
|
|
|
|
|
|
|
size = strlen(desc) + 20;
|
|
|
|
|
monitor_desc = alloca(size);
|
|
|
|
|
snprintf(monitor_desc, size, "Monitor of %s", desc);
|
2020-11-26 09:27:19 +01:00
|
|
|
|
2020-10-26 18:10:05 +01:00
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_MODULE_ID)) != NULL)
|
|
|
|
|
module_id = (uint32_t)atoi(str);
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_DEVICE_ID)) != NULL)
|
|
|
|
|
card_id = (uint32_t)atoi(str);
|
2020-10-28 10:53:12 +01:00
|
|
|
if ((str = spa_dict_lookup(info->props, "card.profile.device")) != NULL)
|
|
|
|
|
dev_info.device = (uint32_t)atoi(str);
|
|
|
|
|
|
|
|
|
|
if (card_id != SPA_ID_INVALID) {
|
2021-04-15 15:53:05 -04:00
|
|
|
struct selector sel = { .id = card_id, .type = pw_manager_object_is_card, };
|
2020-10-28 16:48:46 +01:00
|
|
|
card = select_object(manager, &sel);
|
2020-10-28 10:53:12 +01:00
|
|
|
}
|
2020-10-28 16:48:46 +01:00
|
|
|
if (card)
|
|
|
|
|
collect_card_info(card, &card_info);
|
|
|
|
|
|
2021-08-25 17:33:22 +02:00
|
|
|
collect_device_info(o, card, &dev_info, is_monitor, &impl->defs);
|
2020-10-26 16:59:30 +01:00
|
|
|
|
2020-11-24 10:18:17 +01:00
|
|
|
if (!sample_spec_valid(&dev_info.ss) ||
|
|
|
|
|
!channel_map_valid(&dev_info.map) ||
|
2020-11-24 11:27:38 +01:00
|
|
|
!volume_valid(&dev_info.volume_info.volume)) {
|
2021-01-02 20:37:44 +01:00
|
|
|
pw_log_warn("%d: source not ready: sample:%d map:%d volume:%d",
|
|
|
|
|
o->id, sample_spec_valid(&dev_info.ss),
|
|
|
|
|
channel_map_valid(&dev_info.map),
|
|
|
|
|
volume_valid(&dev_info.volume_info.volume));
|
2020-11-24 10:18:17 +01:00
|
|
|
return -ENOENT;
|
2020-11-24 11:27:38 +01:00
|
|
|
}
|
2020-11-24 10:18:17 +01:00
|
|
|
|
2020-10-27 17:09:06 +01:00
|
|
|
flags = SOURCE_LATENCY | SOURCE_DYNAMIC_LATENCY | SOURCE_DECIBEL_VOLUME;
|
|
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_DEVICE_API)) != NULL)
|
2021-08-09 15:27:42 +02:00
|
|
|
flags |= SOURCE_HARDWARE;
|
2021-10-14 13:45:58 +02:00
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_NODE_NETWORK)) != NULL)
|
|
|
|
|
flags |= SOURCE_NETWORK;
|
2020-10-28 10:53:12 +01:00
|
|
|
if (SPA_FLAG_IS_SET(dev_info.volume_info.flags, VOLUME_HW_VOLUME))
|
2021-08-09 15:27:42 +02:00
|
|
|
flags |= SOURCE_HW_VOLUME_CTRL;
|
2020-10-28 10:53:12 +01:00
|
|
|
if (SPA_FLAG_IS_SET(dev_info.volume_info.flags, VOLUME_HW_MUTE))
|
2021-08-09 15:27:42 +02:00
|
|
|
flags |= SOURCE_HW_MUTE_CTRL;
|
2020-10-27 17:09:06 +01:00
|
|
|
|
2021-06-30 17:17:36 +02:00
|
|
|
if (client->quirks & QUIRK_FORCE_S16_FORMAT)
|
|
|
|
|
dev_info.ss.format = SPA_AUDIO_FORMAT_S16;
|
|
|
|
|
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index, /* source index */
|
2020-10-27 10:12:27 +01:00
|
|
|
TAG_STRING, is_monitor ? monitor_name : name,
|
|
|
|
|
TAG_STRING, is_monitor ? monitor_desc : desc,
|
2020-10-28 16:48:46 +01:00
|
|
|
TAG_SAMPLE_SPEC, &dev_info.ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &dev_info.map,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, id_to_index(manager, module_id), /* module index */
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_CVOLUME, &dev_info.volume_info.volume,
|
|
|
|
|
TAG_BOOLEAN, dev_info.volume_info.mute,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, is_monitor ? o->index : SPA_ID_INVALID,/* monitor of sink */
|
2020-10-26 16:59:30 +01:00
|
|
|
TAG_STRING, is_monitor ? name : NULL, /* monitor of sink name */
|
2020-10-26 18:10:05 +01:00
|
|
|
TAG_USEC, 0LL, /* latency */
|
|
|
|
|
TAG_STRING, "PipeWire", /* driver */
|
2020-10-27 17:09:06 +01:00
|
|
|
TAG_U32, flags, /* flags */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version >= 13) {
|
2022-01-06 21:27:40 +02:00
|
|
|
int res;
|
|
|
|
|
if ((res = fill_source_info_proplist(m, o, info)) < 0)
|
|
|
|
|
return res;
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
|
|
|
|
TAG_USEC, 0LL, /* requested latency */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 15) {
|
2021-06-25 13:23:22 +02:00
|
|
|
bool is_linked = collect_is_linked(manager, o->id, SPA_DIRECTION_OUTPUT);
|
|
|
|
|
int state = node_state(info->state);
|
|
|
|
|
|
|
|
|
|
/* running with nothing linked is probably the sink that is
|
|
|
|
|
* keeping this source busy */
|
|
|
|
|
if (state == STATE_RUNNING && !is_linked)
|
|
|
|
|
state = STATE_IDLE;
|
|
|
|
|
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_VOLUME, dev_info.volume_info.base, /* base volume */
|
2021-06-25 13:23:22 +02:00
|
|
|
TAG_U32, state, /* state */
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_U32, dev_info.volume_info.steps, /* n_volume_steps */
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, card ? card->index : SPA_ID_INVALID, /* card index */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 16) {
|
2020-10-28 10:53:12 +01:00
|
|
|
uint32_t n_ports, n;
|
|
|
|
|
struct port_info *port_info, *pi;
|
|
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
port_info = alloca(card_info.n_ports * sizeof(*port_info));
|
|
|
|
|
n_ports = collect_port_info(card, &card_info, &dev_info, port_info);
|
2020-10-28 10:53:12 +01:00
|
|
|
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_U32, n_ports, /* n_ports */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
2020-10-28 10:53:12 +01:00
|
|
|
for (n = 0; n < n_ports; n++) {
|
|
|
|
|
pi = &port_info[n];
|
2020-10-27 18:01:28 +01:00
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_STRING, pi->name, /* name */
|
|
|
|
|
TAG_STRING, pi->description, /* description */
|
|
|
|
|
TAG_U32, pi->priority, /* priority */
|
2020-10-27 18:01:28 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 24) {
|
|
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_U32, pi->available, /* available */
|
2020-10-27 18:01:28 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 34) {
|
|
|
|
|
message_put(m,
|
2020-10-28 12:18:26 +01:00
|
|
|
TAG_STRING, pi->availability_group, /* availability_group */
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_U32, pi->type, /* type */
|
2020-10-27 18:01:28 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-06 17:56:45 +02:00
|
|
|
message_put(m,
|
2020-10-28 10:53:12 +01:00
|
|
|
TAG_STRING, dev_info.active_port_name, /* active port name */
|
2020-10-06 17:56:45 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 21) {
|
|
|
|
|
struct format_info info;
|
|
|
|
|
spa_zero(info);
|
|
|
|
|
info.encoding = ENCODING_PCM;
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_U8, 1, /* n_formats */
|
|
|
|
|
TAG_FORMAT_INFO, &info,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
2020-10-25 19:51:42 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-06 19:50:25 +02:00
|
|
|
static const char *get_media_name(struct pw_node_info *info)
|
|
|
|
|
{
|
|
|
|
|
const char *media_name;
|
|
|
|
|
media_name = spa_dict_lookup(info->props, PW_KEY_MEDIA_NAME);
|
|
|
|
|
if (media_name == NULL)
|
|
|
|
|
media_name = "";
|
|
|
|
|
return media_name;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-25 19:51:42 +01:00
|
|
|
static int fill_sink_input_info(struct client *client, struct message *m,
|
|
|
|
|
struct pw_manager_object *o)
|
|
|
|
|
{
|
2021-08-25 17:33:22 +02:00
|
|
|
struct impl *impl = client->impl;
|
2020-10-25 19:51:42 +01:00
|
|
|
struct pw_node_info *info = o->info;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-26 16:59:46 +01:00
|
|
|
struct pw_manager_object *peer;
|
2020-10-26 18:10:05 +01:00
|
|
|
const char *str;
|
|
|
|
|
uint32_t module_id = SPA_ID_INVALID, client_id = SPA_ID_INVALID;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t peer_index;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct device_info dev_info = DEVICE_INFO_INIT(PW_DIRECTION_OUTPUT);
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_sink_input(o) || info == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2020-10-26 18:10:05 +01:00
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_MODULE_ID)) != NULL)
|
|
|
|
|
module_id = (uint32_t)atoi(str);
|
2021-04-20 21:05:59 +02:00
|
|
|
if (!pw_manager_object_is_virtual(o) &&
|
|
|
|
|
(str = spa_dict_lookup(info->props, PW_KEY_CLIENT_ID)) != NULL)
|
2020-10-26 18:10:05 +01:00
|
|
|
client_id = (uint32_t)atoi(str);
|
|
|
|
|
|
2021-08-25 17:33:22 +02:00
|
|
|
collect_device_info(o, NULL, &dev_info, false, &impl->defs);
|
2020-10-27 10:12:27 +01:00
|
|
|
|
2020-11-24 10:18:17 +01:00
|
|
|
if (!sample_spec_valid(&dev_info.ss) ||
|
|
|
|
|
!channel_map_valid(&dev_info.map) ||
|
|
|
|
|
!volume_valid(&dev_info.volume_info.volume))
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
peer = find_linked(manager, o->id, PW_DIRECTION_OUTPUT);
|
2022-01-17 11:28:40 +01:00
|
|
|
if (peer && pw_manager_object_is_sink(peer))
|
|
|
|
|
peer_index = peer->index;
|
|
|
|
|
else
|
|
|
|
|
peer_index = SPA_ID_INVALID;
|
2020-10-26 16:59:46 +01:00
|
|
|
|
2020-10-25 19:51:42 +01:00
|
|
|
message_put(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index, /* sink_input index */
|
2021-02-06 19:50:25 +02:00
|
|
|
TAG_STRING, get_media_name(info),
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, id_to_index(manager, module_id), /* module index */
|
|
|
|
|
TAG_U32, id_to_index(manager, client_id), /* client index */
|
|
|
|
|
TAG_U32, peer_index, /* sink index */
|
2020-10-28 16:48:46 +01:00
|
|
|
TAG_SAMPLE_SPEC, &dev_info.ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &dev_info.map,
|
|
|
|
|
TAG_CVOLUME, &dev_info.volume_info.volume,
|
2020-10-25 19:51:42 +01:00
|
|
|
TAG_USEC, 0LL, /* latency */
|
|
|
|
|
TAG_USEC, 0LL, /* sink latency */
|
|
|
|
|
TAG_STRING, "PipeWire", /* resample method */
|
|
|
|
|
TAG_STRING, "PipeWire", /* driver */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 11)
|
|
|
|
|
message_put(m,
|
2020-10-28 16:48:46 +01:00
|
|
|
TAG_BOOLEAN, dev_info.volume_info.mute, /* muted */
|
2020-10-25 19:51:42 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 13)
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_PROPLIST, info->props,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 19)
|
|
|
|
|
message_put(m,
|
2020-10-27 10:12:27 +01:00
|
|
|
TAG_BOOLEAN, info->state != PW_NODE_STATE_RUNNING, /* corked */
|
2020-10-25 19:51:42 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 20)
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_BOOLEAN, true, /* has_volume */
|
|
|
|
|
TAG_BOOLEAN, true, /* volume writable */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 21) {
|
|
|
|
|
struct format_info fi;
|
2021-03-10 17:27:11 +01:00
|
|
|
format_info_from_spec(&fi, &dev_info.ss, &dev_info.map);
|
2020-10-25 19:51:42 +01:00
|
|
|
message_put(m,
|
|
|
|
|
TAG_FORMAT_INFO, &fi,
|
|
|
|
|
TAG_INVALID);
|
2021-03-10 17:27:11 +01:00
|
|
|
format_info_clear(&fi);
|
2020-10-25 19:51:42 +01:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int fill_source_output_info(struct client *client, struct message *m,
|
|
|
|
|
struct pw_manager_object *o)
|
|
|
|
|
{
|
2021-08-25 17:33:22 +02:00
|
|
|
struct impl *impl = client->impl;
|
2020-10-25 19:51:42 +01:00
|
|
|
struct pw_node_info *info = o->info;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-26 16:59:46 +01:00
|
|
|
struct pw_manager_object *peer;
|
2020-10-26 18:10:05 +01:00
|
|
|
const char *str;
|
|
|
|
|
uint32_t module_id = SPA_ID_INVALID, client_id = SPA_ID_INVALID;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t peer_index;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct device_info dev_info = DEVICE_INFO_INIT(PW_DIRECTION_INPUT);
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
if (!pw_manager_object_is_source_output(o) || info == NULL || info->props == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-25 19:51:42 +01:00
|
|
|
|
2020-10-26 18:10:05 +01:00
|
|
|
if ((str = spa_dict_lookup(info->props, PW_KEY_MODULE_ID)) != NULL)
|
|
|
|
|
module_id = (uint32_t)atoi(str);
|
2021-04-20 21:05:59 +02:00
|
|
|
if (!pw_manager_object_is_virtual(o) &&
|
|
|
|
|
(str = spa_dict_lookup(info->props, PW_KEY_CLIENT_ID)) != NULL)
|
2020-10-26 18:10:05 +01:00
|
|
|
client_id = (uint32_t)atoi(str);
|
|
|
|
|
|
2021-08-25 17:33:22 +02:00
|
|
|
collect_device_info(o, NULL, &dev_info, false, &impl->defs);
|
2020-10-27 10:12:27 +01:00
|
|
|
|
2020-11-24 10:18:17 +01:00
|
|
|
if (!sample_spec_valid(&dev_info.ss) ||
|
|
|
|
|
!channel_map_valid(&dev_info.map) ||
|
|
|
|
|
!volume_valid(&dev_info.volume_info.volume))
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2020-10-28 16:48:46 +01:00
|
|
|
peer = find_linked(manager, o->id, PW_DIRECTION_INPUT);
|
2022-01-17 11:28:40 +01:00
|
|
|
if (peer && pw_manager_object_is_source_or_monitor(peer))
|
|
|
|
|
peer_index = peer->index;
|
|
|
|
|
else
|
|
|
|
|
peer_index = SPA_ID_INVALID;
|
2020-10-26 16:59:46 +01:00
|
|
|
|
2020-10-25 19:51:42 +01:00
|
|
|
message_put(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, o->index, /* source_output index */
|
2021-02-06 19:50:25 +02:00
|
|
|
TAG_STRING, get_media_name(info),
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, id_to_index(manager, module_id), /* module index */
|
|
|
|
|
TAG_U32, id_to_index(manager, client_id), /* client index */
|
|
|
|
|
TAG_U32, peer_index, /* source index */
|
2020-10-28 16:48:46 +01:00
|
|
|
TAG_SAMPLE_SPEC, &dev_info.ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &dev_info.map,
|
2020-10-25 19:51:42 +01:00
|
|
|
TAG_USEC, 0LL, /* latency */
|
|
|
|
|
TAG_USEC, 0LL, /* source latency */
|
|
|
|
|
TAG_STRING, "PipeWire", /* resample method */
|
|
|
|
|
TAG_STRING, "PipeWire", /* driver */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 13)
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_PROPLIST, info->props,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 19)
|
|
|
|
|
message_put(m,
|
2020-10-27 10:12:27 +01:00
|
|
|
TAG_BOOLEAN, info->state != PW_NODE_STATE_RUNNING, /* corked */
|
2020-10-25 19:51:42 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 22) {
|
|
|
|
|
struct format_info fi;
|
2021-03-10 17:27:11 +01:00
|
|
|
format_info_from_spec(&fi, &dev_info.ss, &dev_info.map);
|
2020-10-25 19:51:42 +01:00
|
|
|
message_put(m,
|
2020-10-28 16:48:46 +01:00
|
|
|
TAG_CVOLUME, &dev_info.volume_info.volume,
|
|
|
|
|
TAG_BOOLEAN, dev_info.volume_info.mute, /* muted */
|
2020-10-25 19:51:42 +01:00
|
|
|
TAG_BOOLEAN, true, /* has_volume */
|
|
|
|
|
TAG_BOOLEAN, true, /* volume writable */
|
|
|
|
|
TAG_FORMAT_INFO, &fi,
|
|
|
|
|
TAG_INVALID);
|
2021-03-10 17:27:11 +01:00
|
|
|
format_info_clear(&fi);
|
2020-10-25 19:51:42 +01:00
|
|
|
}
|
|
|
|
|
return 0;
|
2020-10-06 17:56:45 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_get_info(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-25 15:51:46 +01:00
|
|
|
struct message *reply = NULL;
|
2020-10-29 11:59:16 +01:00
|
|
|
int res;
|
2020-10-25 15:28:42 +01:00
|
|
|
struct pw_manager_object *o;
|
2020-10-26 13:28:45 +01:00
|
|
|
struct selector sel;
|
|
|
|
|
int (*fill_func) (struct client *client, struct message *m, struct pw_manager_object *o) = NULL;
|
|
|
|
|
|
|
|
|
|
spa_zero(sel);
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &sel.index,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-25 15:51:46 +01:00
|
|
|
goto error_protocol;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-03-01 13:57:28 +01:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if (command == COMMAND_GET_MODULE_INFO && (sel.index & MODULE_FLAG) != 0) {
|
2021-03-01 13:57:28 +01:00
|
|
|
struct module *module;
|
2022-01-17 11:28:40 +01:00
|
|
|
module = pw_map_lookup(&impl->modules, sel.index & MODULE_INDEX_MASK);
|
2021-03-01 13:57:28 +01:00
|
|
|
if (module == NULL)
|
|
|
|
|
goto error_noentity;
|
|
|
|
|
fill_ext_module_info(client, reply, module);
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2021-03-01 13:57:28 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
switch (command) {
|
|
|
|
|
case COMMAND_GET_CLIENT_INFO:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_client;
|
2020-10-26 13:28:45 +01:00
|
|
|
fill_func = fill_client_info;
|
2020-10-04 20:20:58 +02:00
|
|
|
break;
|
|
|
|
|
case COMMAND_GET_MODULE_INFO:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_module;
|
2020-10-26 13:28:45 +01:00
|
|
|
fill_func = fill_module_info;
|
2020-10-25 15:28:42 +01:00
|
|
|
break;
|
2020-10-04 20:20:58 +02:00
|
|
|
case COMMAND_GET_CARD_INFO:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_card;
|
2020-10-26 13:28:45 +01:00
|
|
|
sel.key = PW_KEY_DEVICE_NAME;
|
|
|
|
|
fill_func = fill_card_info;
|
2020-10-25 19:51:42 +01:00
|
|
|
break;
|
2020-10-04 20:20:58 +02:00
|
|
|
case COMMAND_GET_SINK_INFO:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_sink;
|
2020-10-26 13:28:45 +01:00
|
|
|
sel.key = PW_KEY_NODE_NAME;
|
|
|
|
|
fill_func = fill_sink_info;
|
2020-10-06 17:56:45 +02:00
|
|
|
break;
|
2020-10-04 20:20:58 +02:00
|
|
|
case COMMAND_GET_SOURCE_INFO:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_source_or_monitor;
|
2020-10-26 13:28:45 +01:00
|
|
|
sel.key = PW_KEY_NODE_NAME;
|
|
|
|
|
fill_func = fill_source_info;
|
2020-10-04 20:20:58 +02:00
|
|
|
break;
|
|
|
|
|
case COMMAND_GET_SINK_INPUT_INFO:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_sink_input;
|
2020-10-26 13:28:45 +01:00
|
|
|
fill_func = fill_sink_input_info;
|
2020-10-25 19:51:42 +01:00
|
|
|
break;
|
2020-10-04 20:20:58 +02:00
|
|
|
case COMMAND_GET_SOURCE_OUTPUT_INFO:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_source_output;
|
2020-10-26 13:28:45 +01:00
|
|
|
fill_func = fill_source_output_info;
|
2020-10-04 20:20:58 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2020-10-26 13:28:45 +01:00
|
|
|
if (sel.key) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-26 13:28:45 +01:00
|
|
|
TAG_STRING, &sel.value,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-26 13:28:45 +01:00
|
|
|
goto error_protocol;
|
|
|
|
|
}
|
2020-10-29 11:59:16 +01:00
|
|
|
if (fill_func == NULL)
|
|
|
|
|
goto error_invalid;
|
2020-10-26 13:28:45 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if (sel.index != SPA_ID_INVALID && sel.value != NULL)
|
2020-10-26 13:28:45 +01:00
|
|
|
goto error_invalid;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u name:%s", client->name,
|
|
|
|
|
commands[command].name, tag, sel.index, sel.value);
|
2021-03-30 10:15:36 +02:00
|
|
|
|
2021-01-04 23:06:24 +02:00
|
|
|
if (command == COMMAND_GET_SINK_INFO || command == COMMAND_GET_SOURCE_INFO) {
|
2022-01-17 11:28:40 +01:00
|
|
|
o = find_device(client, sel.index, sel.value,
|
2021-10-13 15:38:59 +02:00
|
|
|
command == COMMAND_GET_SINK_INFO, NULL);
|
2021-01-04 23:06:24 +02:00
|
|
|
} else {
|
2022-01-17 11:28:40 +01:00
|
|
|
if (sel.value == NULL && sel.index == SPA_ID_INVALID)
|
2021-01-04 23:06:24 +02:00
|
|
|
goto error_invalid;
|
2021-10-13 15:38:59 +02:00
|
|
|
o = select_object(manager, &sel);
|
2021-01-04 23:06:24 +02:00
|
|
|
}
|
2020-10-26 13:28:45 +01:00
|
|
|
if (o == NULL)
|
|
|
|
|
goto error_noentity;
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
if ((res = fill_func(client, reply, o)) < 0)
|
2020-10-25 19:51:42 +01:00
|
|
|
goto error;
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-25 15:51:46 +01:00
|
|
|
|
|
|
|
|
error_protocol:
|
2020-10-29 11:59:16 +01:00
|
|
|
res = -EPROTO;
|
2020-10-25 15:51:46 +01:00
|
|
|
goto error;
|
2020-10-26 13:28:45 +01:00
|
|
|
error_noentity:
|
2020-10-29 11:59:16 +01:00
|
|
|
res = -ENOENT;
|
2020-10-26 13:28:45 +01:00
|
|
|
goto error;
|
2020-10-25 15:51:46 +01:00
|
|
|
error_invalid:
|
2020-10-29 11:59:16 +01:00
|
|
|
res = -EINVAL;
|
2020-10-25 15:51:46 +01:00
|
|
|
goto error;
|
|
|
|
|
error:
|
|
|
|
|
if (reply)
|
2021-01-19 11:06:00 +01:00
|
|
|
message_free(impl, reply, false, false);
|
2020-10-29 11:59:16 +01:00
|
|
|
return res;
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-11-14 13:36:26 +01:00
|
|
|
static uint64_t bytes_to_usec(uint64_t length, const struct sample_spec *ss)
|
|
|
|
|
{
|
|
|
|
|
uint64_t u;
|
2021-03-27 17:03:50 +02:00
|
|
|
uint64_t frame_size = sample_spec_frame_size(ss);
|
|
|
|
|
if (frame_size == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
u = length / frame_size;
|
2020-11-14 13:36:26 +01:00
|
|
|
u *= SPA_USEC_PER_SEC;
|
|
|
|
|
u /= ss->rate;
|
|
|
|
|
return u;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-14 13:31:07 +01:00
|
|
|
static int fill_sample_info(struct client *client, struct message *m,
|
|
|
|
|
struct sample *sample)
|
|
|
|
|
{
|
2021-01-21 09:42:04 +01:00
|
|
|
struct volume vol;
|
|
|
|
|
|
|
|
|
|
volume_make(&vol, sample->ss.channels);
|
2020-11-14 13:31:07 +01:00
|
|
|
|
|
|
|
|
message_put(m,
|
|
|
|
|
TAG_U32, sample->index,
|
|
|
|
|
TAG_STRING, sample->name,
|
|
|
|
|
TAG_CVOLUME, &vol,
|
2020-11-14 13:36:26 +01:00
|
|
|
TAG_USEC, bytes_to_usec(sample->length, &sample->ss),
|
2020-11-14 13:31:07 +01:00
|
|
|
TAG_SAMPLE_SPEC, &sample->ss,
|
|
|
|
|
TAG_CHANNEL_MAP, &sample->map,
|
|
|
|
|
TAG_U32, sample->length,
|
|
|
|
|
TAG_BOOLEAN, false, /* lazy */
|
|
|
|
|
TAG_STRING, NULL, /* filename */
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
|
|
|
|
|
if (client->version >= 13) {
|
|
|
|
|
message_put(m,
|
2020-11-16 11:10:41 +01:00
|
|
|
TAG_PROPLIST, &sample->props->dict,
|
2020-11-14 13:31:07 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_get_sample_info(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
struct message *reply = NULL;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index;
|
2020-11-14 13:31:07 +01:00
|
|
|
const char *name;
|
|
|
|
|
struct sample *sample;
|
|
|
|
|
int res;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2020-11-14 13:31:07 +01:00
|
|
|
TAG_STRING, &name,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-11-14 13:31:07 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((index == SPA_ID_INVALID && name == NULL) ||
|
|
|
|
|
(index != SPA_ID_INVALID && name != NULL))
|
2020-11-14 13:31:07 +01:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u name:%s", client->name,
|
|
|
|
|
commands[command].name, tag, index, name);
|
2020-11-14 13:31:07 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((sample = find_sample(impl, index, name)) == NULL)
|
2020-11-14 13:31:07 +01:00
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
if ((res = fill_sample_info(client, reply, sample)) < 0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-11-14 13:31:07 +01:00
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
if (reply)
|
2021-01-19 11:06:00 +01:00
|
|
|
message_free(impl, reply, false, false);
|
2020-11-14 13:31:07 +01:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_get_sample_info_list(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
struct message *reply;
|
|
|
|
|
union pw_map_item *item;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u", client->name,
|
2020-11-14 13:31:07 +01:00
|
|
|
commands[command].name, tag);
|
|
|
|
|
|
|
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
pw_array_for_each(item, &impl->samples.items) {
|
|
|
|
|
struct sample *s = item->data;
|
2021-08-09 15:27:42 +02:00
|
|
|
if (pw_map_item_is_free(item))
|
2020-11-14 13:31:07 +01:00
|
|
|
continue;
|
|
|
|
|
fill_sample_info(client, reply, s);
|
|
|
|
|
}
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-11-14 13:31:07 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-25 15:28:42 +01:00
|
|
|
struct info_list_data {
|
|
|
|
|
struct client *client;
|
|
|
|
|
struct message *reply;
|
2020-10-25 19:51:42 +01:00
|
|
|
int (*fill_func) (struct client *client, struct message *m, struct pw_manager_object *o);
|
2020-10-25 15:28:42 +01:00
|
|
|
};
|
|
|
|
|
|
2020-10-25 19:51:42 +01:00
|
|
|
static int do_list_info(void *data, struct pw_manager_object *object)
|
2020-10-25 16:24:11 +01:00
|
|
|
{
|
|
|
|
|
struct info_list_data *info = data;
|
2020-10-25 19:51:42 +01:00
|
|
|
info->fill_func(info->client, info->reply, object);
|
2020-10-25 16:24:11 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-01 13:57:28 +01:00
|
|
|
static int do_info_list_module(void *item, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct module *m = item;
|
|
|
|
|
struct info_list_data *info = data;
|
|
|
|
|
fill_ext_module_info(info->client, info->reply, m);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_get_info_list(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
2020-10-28 16:48:46 +01:00
|
|
|
struct pw_manager *manager = client->manager;
|
2020-10-25 15:28:42 +01:00
|
|
|
struct info_list_data info;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u", client->name,
|
2020-11-12 13:33:25 +01:00
|
|
|
commands[command].name, tag);
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2020-10-26 13:28:45 +01:00
|
|
|
spa_zero(info);
|
2020-10-25 15:28:42 +01:00
|
|
|
info.client = client;
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
switch (command) {
|
|
|
|
|
case COMMAND_GET_CLIENT_INFO_LIST:
|
2020-10-25 19:51:42 +01:00
|
|
|
info.fill_func = fill_client_info;
|
2020-10-04 20:20:58 +02:00
|
|
|
break;
|
|
|
|
|
case COMMAND_GET_MODULE_INFO_LIST:
|
2020-10-25 19:51:42 +01:00
|
|
|
info.fill_func = fill_module_info;
|
2020-10-25 15:28:42 +01:00
|
|
|
break;
|
2020-10-04 20:20:58 +02:00
|
|
|
case COMMAND_GET_CARD_INFO_LIST:
|
2020-10-25 19:51:42 +01:00
|
|
|
info.fill_func = fill_card_info;
|
2020-10-25 16:24:11 +01:00
|
|
|
break;
|
2020-10-04 20:20:58 +02:00
|
|
|
case COMMAND_GET_SINK_INFO_LIST:
|
2020-10-25 19:51:42 +01:00
|
|
|
info.fill_func = fill_sink_info;
|
2020-10-06 17:56:45 +02:00
|
|
|
break;
|
2020-10-04 20:20:58 +02:00
|
|
|
case COMMAND_GET_SOURCE_INFO_LIST:
|
2020-10-25 19:51:42 +01:00
|
|
|
info.fill_func = fill_source_info;
|
2020-10-04 20:20:58 +02:00
|
|
|
break;
|
|
|
|
|
case COMMAND_GET_SINK_INPUT_INFO_LIST:
|
2020-10-25 19:51:42 +01:00
|
|
|
info.fill_func = fill_sink_input_info;
|
|
|
|
|
break;
|
2020-10-04 20:20:58 +02:00
|
|
|
case COMMAND_GET_SOURCE_OUTPUT_INFO_LIST:
|
2020-10-25 19:51:42 +01:00
|
|
|
info.fill_func = fill_source_output_info;
|
2020-10-04 20:20:58 +02:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return -ENOTSUP;
|
|
|
|
|
}
|
2020-10-29 11:59:16 +01:00
|
|
|
|
|
|
|
|
info.reply = reply_new(client, tag);
|
2020-10-25 19:51:42 +01:00
|
|
|
if (info.fill_func)
|
2020-10-28 16:48:46 +01:00
|
|
|
pw_manager_for_each_object(manager, do_list_info, &info);
|
2020-10-25 15:28:42 +01:00
|
|
|
|
2021-03-01 13:57:28 +01:00
|
|
|
if (command == COMMAND_GET_MODULE_INFO_LIST)
|
|
|
|
|
pw_map_for_each(&impl->modules, do_info_list_module, &info);
|
|
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, info.reply);
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_set_stream_buffer_attr(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
uint32_t channel;
|
|
|
|
|
struct stream *stream;
|
2020-10-06 15:34:43 +02:00
|
|
|
struct message *reply;
|
2020-10-04 20:20:58 +02:00
|
|
|
struct buffer_attr attr;
|
|
|
|
|
bool adjust_latency = false, early_requests = false;
|
2022-01-28 17:34:36 +01:00
|
|
|
uint64_t lat_usec;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &channel,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u channel:%u", client->name,
|
2020-11-06 16:30:05 +01:00
|
|
|
commands[command].name, tag, channel);
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-10-29 11:59:16 +01:00
|
|
|
if (stream == NULL)
|
|
|
|
|
return -ENOENT;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
|
|
|
|
if (command == COMMAND_SET_PLAYBACK_STREAM_BUFFER_ATTR) {
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream->type != STREAM_TYPE_PLAYBACK)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &attr.maxlength,
|
|
|
|
|
TAG_U32, &attr.tlength,
|
|
|
|
|
TAG_U32, &attr.prebuf,
|
|
|
|
|
TAG_U32, &attr.minreq,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
} else {
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream->type != STREAM_TYPE_RECORD)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-29 11:59:16 +01:00
|
|
|
TAG_U32, &attr.maxlength,
|
|
|
|
|
TAG_U32, &attr.fragsize,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 13) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-29 11:59:16 +01:00
|
|
|
TAG_BOOLEAN, &adjust_latency,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
}
|
|
|
|
|
if (client->version >= 14) {
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-29 11:59:16 +01:00
|
|
|
TAG_BOOLEAN, &early_requests,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
}
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
|
2022-01-28 17:34:36 +01:00
|
|
|
stream->adjust_latency = adjust_latency;
|
|
|
|
|
stream->early_requests = early_requests;
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
if (command == COMMAND_SET_PLAYBACK_STREAM_BUFFER_ATTR) {
|
2022-01-28 17:34:36 +01:00
|
|
|
lat_usec = set_playback_buffer_attr(stream, &attr);
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, stream->attr.maxlength,
|
|
|
|
|
TAG_U32, stream->attr.tlength,
|
|
|
|
|
TAG_U32, stream->attr.prebuf,
|
|
|
|
|
TAG_U32, stream->attr.minreq,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 13) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2022-01-28 17:34:36 +01:00
|
|
|
TAG_USEC, lat_usec, /* configured_sink_latency */
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-01-28 17:34:36 +01:00
|
|
|
lat_usec = set_record_buffer_attr(stream, &attr);
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, stream->attr.maxlength,
|
|
|
|
|
TAG_U32, stream->attr.fragsize,
|
|
|
|
|
TAG_INVALID);
|
|
|
|
|
if (client->version >= 13) {
|
2020-10-06 15:34:43 +02:00
|
|
|
message_put(reply,
|
2022-01-28 17:34:36 +01:00
|
|
|
TAG_USEC, lat_usec, /* configured_source_latency */
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_INVALID);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2020-10-04 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 15:34:43 +02:00
|
|
|
static int do_update_stream_sample_rate(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
|
|
|
|
uint32_t channel, rate;
|
|
|
|
|
struct stream *stream;
|
2021-01-12 13:14:05 +01:00
|
|
|
bool match;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-04 20:20:58 +02:00
|
|
|
TAG_U32, &channel,
|
|
|
|
|
TAG_U32, &rate,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u channel:%u rate:%u", client->name,
|
2020-11-06 16:30:05 +01:00
|
|
|
commands[command].name, tag, channel, rate);
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
stream = pw_map_lookup(&client->streams, channel);
|
2020-11-13 13:28:46 +01:00
|
|
|
if (stream == NULL || stream->type == STREAM_TYPE_UPLOAD)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
|
|
|
|
|
2021-01-12 13:14:05 +01:00
|
|
|
if (stream->rate_match == NULL)
|
|
|
|
|
return -ENOTSUP;
|
|
|
|
|
|
|
|
|
|
match = rate != stream->ss.rate;
|
|
|
|
|
stream->rate = rate;
|
|
|
|
|
stream->rate_match->rate = match ?
|
|
|
|
|
(double)rate/(double)stream->ss.rate : 1.0;
|
|
|
|
|
SPA_FLAG_UPDATE(stream->rate_match->flags,
|
|
|
|
|
SPA_IO_RATE_MATCH_FLAG_ACTIVE, match);
|
|
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-17 11:37:39 +01:00
|
|
|
static int do_extension(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index;
|
2020-11-17 11:37:39 +01:00
|
|
|
const char *name;
|
2021-06-18 23:51:54 +02:00
|
|
|
const struct extension *ext;
|
2020-11-17 11:37:39 +01:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2020-11-17 11:37:39 +01:00
|
|
|
TAG_STRING, &name,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-11-17 11:37:39 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u name:%s", client->name,
|
|
|
|
|
commands[command].name, tag, index, name);
|
2020-11-17 11:37:39 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((index == SPA_ID_INVALID && name == NULL) ||
|
|
|
|
|
(index != SPA_ID_INVALID && name != NULL))
|
2020-11-17 11:37:39 +01:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
ext = extension_find(index, name);
|
2020-11-17 11:37:39 +01:00
|
|
|
if (ext == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
|
|
return ext->process(client, tag, m);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-28 19:39:02 +01:00
|
|
|
static int do_set_profile(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
struct pw_manager_object *o;
|
|
|
|
|
const char *profile_name;
|
2022-01-17 09:49:39 +01:00
|
|
|
uint32_t profile_index = SPA_ID_INVALID;
|
2020-10-28 19:39:02 +01:00
|
|
|
struct selector sel;
|
|
|
|
|
char buf[1024];
|
|
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buf, sizeof(buf));
|
|
|
|
|
|
|
|
|
|
spa_zero(sel);
|
|
|
|
|
sel.key = PW_KEY_DEVICE_NAME;
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_card;
|
2020-10-28 19:39:02 +01:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &sel.index,
|
2020-10-28 19:39:02 +01:00
|
|
|
TAG_STRING, &sel.value,
|
|
|
|
|
TAG_STRING, &profile_name,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
2020-10-28 19:39:02 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u name:%s profile:%s", client->name,
|
|
|
|
|
commands[command].name, tag, sel.index, sel.value, profile_name);
|
2020-10-28 19:39:02 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((sel.index == SPA_ID_INVALID && sel.value == NULL) ||
|
|
|
|
|
(sel.index != SPA_ID_INVALID && sel.value != NULL))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EINVAL;
|
2020-10-28 19:39:02 +01:00
|
|
|
if (profile_name == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EINVAL;
|
2020-10-28 19:39:02 +01:00
|
|
|
|
|
|
|
|
if ((o = select_object(manager, &sel)) == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-28 19:39:02 +01:00
|
|
|
|
2022-01-17 09:49:39 +01:00
|
|
|
if ((profile_index = find_profile_index(o, profile_name)) == SPA_ID_INVALID)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
2020-10-28 19:39:02 +01:00
|
|
|
|
|
|
|
|
if (!SPA_FLAG_IS_SET(o->permissions, PW_PERM_W | PW_PERM_X))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EACCES;
|
2020-10-28 19:39:02 +01:00
|
|
|
|
2021-03-25 09:08:13 +01:00
|
|
|
if (o->proxy == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2021-08-09 15:27:42 +02:00
|
|
|
pw_device_set_param((struct pw_device*)o->proxy,
|
|
|
|
|
SPA_PARAM_Profile, 0,
|
|
|
|
|
spa_pod_builder_add_object(&b,
|
|
|
|
|
SPA_TYPE_OBJECT_ParamProfile, SPA_PARAM_Profile,
|
2022-01-17 09:49:39 +01:00
|
|
|
SPA_PARAM_PROFILE_index, SPA_POD_Int(profile_index),
|
2021-08-09 15:27:42 +02:00
|
|
|
SPA_PARAM_PROFILE_save, SPA_POD_Bool(true)));
|
2020-10-28 19:39:02 +01:00
|
|
|
|
2021-03-09 09:53:39 +01:00
|
|
|
return operation_new(client, tag);
|
2020-10-29 11:59:16 +01:00
|
|
|
}
|
2020-10-28 19:39:02 +01:00
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
static int do_set_default(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
struct pw_manager_object *o;
|
2021-04-02 10:05:56 +02:00
|
|
|
const char *name, *str;
|
2020-10-29 11:59:16 +01:00
|
|
|
int res;
|
|
|
|
|
bool sink = command == COMMAND_SET_DEFAULT_SINK;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-29 11:59:16 +01:00
|
|
|
TAG_STRING, &name,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u name:%s", client->name,
|
2020-11-06 16:30:05 +01:00
|
|
|
commands[command].name, tag, name);
|
2020-10-29 11:59:16 +01:00
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
if (name != NULL && (o = find_device(client, SPA_ID_INVALID, name, sink, NULL)) == NULL)
|
2021-03-06 20:06:06 +01:00
|
|
|
return -ENOENT;
|
|
|
|
|
|
2021-03-06 19:58:52 +01:00
|
|
|
if (name != NULL) {
|
2021-04-02 10:05:56 +02:00
|
|
|
if (o->props && (str = pw_properties_get(o->props, PW_KEY_NODE_NAME)) != NULL)
|
|
|
|
|
name = str;
|
2021-06-21 15:04:15 +10:00
|
|
|
else if (spa_strendswith(name, ".monitor"))
|
2021-03-18 10:28:47 +01:00
|
|
|
name = strndupa(name, strlen(name)-8);
|
|
|
|
|
|
2021-03-06 19:58:52 +01:00
|
|
|
res = pw_manager_set_metadata(manager, client->metadata_default,
|
|
|
|
|
PW_ID_CORE,
|
|
|
|
|
sink ? METADATA_CONFIG_DEFAULT_SINK : METADATA_CONFIG_DEFAULT_SOURCE,
|
|
|
|
|
"Spa:String:JSON", "{ \"name\": \"%s\" }", name);
|
|
|
|
|
} else {
|
|
|
|
|
res = pw_manager_set_metadata(manager, client->metadata_default,
|
|
|
|
|
PW_ID_CORE,
|
|
|
|
|
sink ? METADATA_CONFIG_DEFAULT_SINK : METADATA_CONFIG_DEFAULT_SOURCE,
|
|
|
|
|
NULL, NULL);
|
|
|
|
|
}
|
|
|
|
|
if (res < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return res;
|
|
|
|
|
|
2021-03-11 15:39:19 +01:00
|
|
|
return operation_new(client, tag);
|
2020-10-29 11:59:16 +01:00
|
|
|
}
|
|
|
|
|
|
2021-01-20 20:33:16 +01:00
|
|
|
static int do_suspend(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager_object *o;
|
|
|
|
|
const char *name;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index, cmd;
|
2021-01-20 20:33:16 +01:00
|
|
|
bool sink = command == COMMAND_SUSPEND_SINK, suspend;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2021-01-20 20:33:16 +01:00
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_BOOLEAN, &suspend,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2021-01-20 20:33:16 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u name:%s", client->name,
|
|
|
|
|
commands[command].name, tag, index, name);
|
2021-01-20 20:33:16 +01:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((o = find_device(client, index, name, sink, NULL)) == NULL)
|
2021-01-20 20:33:16 +01:00
|
|
|
return -ENOENT;
|
|
|
|
|
|
2021-03-25 09:08:13 +01:00
|
|
|
if (o->proxy == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2021-01-20 20:33:16 +01:00
|
|
|
if (suspend) {
|
|
|
|
|
cmd = SPA_NODE_COMMAND_Suspend;
|
|
|
|
|
pw_node_send_command((struct pw_node*)o->proxy, &SPA_NODE_COMMAND_INIT(cmd));
|
|
|
|
|
}
|
2021-03-09 09:53:39 +01:00
|
|
|
return operation_new(client, tag);
|
2021-01-20 20:33:16 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
static int do_move_stream(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
2021-01-18 13:23:23 +02:00
|
|
|
struct pw_manager_object *o, *dev, *dev_default;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index, index_device;
|
2021-08-09 21:57:05 +03:00
|
|
|
int target_id;
|
2020-10-29 11:59:16 +01:00
|
|
|
const char *name_device;
|
|
|
|
|
struct selector sel;
|
|
|
|
|
int res;
|
|
|
|
|
bool sink = command == COMMAND_MOVE_SINK_INPUT;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
|
|
|
|
TAG_U32, &index_device,
|
2020-10-29 11:59:16 +01:00
|
|
|
TAG_STRING, &name_device,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((index_device == SPA_ID_INVALID && name_device == NULL) ||
|
|
|
|
|
(index_device != SPA_ID_INVALID && name_device != NULL))
|
2020-10-29 11:59:16 +01:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u device:%d name:%s", client->name,
|
|
|
|
|
commands[command].name, tag, index, index_device, name_device);
|
2020-10-29 11:59:16 +01:00
|
|
|
|
|
|
|
|
spa_zero(sel);
|
2022-01-17 11:28:40 +01:00
|
|
|
sel.index = index;
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = sink ? pw_manager_object_is_sink_input: pw_manager_object_is_source_output;
|
2020-10-29 11:59:16 +01:00
|
|
|
|
|
|
|
|
o = select_object(manager, &sel);
|
|
|
|
|
if (o == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((dev = find_device(client, index_device, name_device, sink, NULL)) == NULL)
|
2020-10-29 11:59:16 +01:00
|
|
|
return -ENOENT;
|
|
|
|
|
|
2021-04-29 15:25:04 +02:00
|
|
|
dev_default = find_device(client, SPA_ID_INVALID, NULL, sink, NULL);
|
2021-01-18 13:23:23 +02:00
|
|
|
if (dev == dev_default) {
|
|
|
|
|
/*
|
|
|
|
|
* When moving streams to a node that is equal to the default,
|
|
|
|
|
* Pulseaudio understands this to mean '... and unset preferred sink/source',
|
|
|
|
|
* forgetting target.node. Follow that behavior here.
|
|
|
|
|
*/
|
2021-08-09 21:57:05 +03:00
|
|
|
target_id = -1;
|
|
|
|
|
} else {
|
|
|
|
|
target_id = dev->id;
|
2021-01-18 13:23:23 +02:00
|
|
|
}
|
|
|
|
|
|
2021-08-09 21:57:05 +03:00
|
|
|
if ((res = pw_manager_set_metadata(manager, client->metadata_default,
|
|
|
|
|
o->id,
|
|
|
|
|
METADATA_TARGET_NODE,
|
|
|
|
|
SPA_TYPE_INFO_BASE"Id", "%d", target_id)) < 0)
|
|
|
|
|
return res;
|
|
|
|
|
|
2020-10-29 11:59:16 +01:00
|
|
|
return reply_simple_ack(client, tag);
|
2020-10-28 19:39:02 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-29 12:09:19 +01:00
|
|
|
static int do_kill(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
struct pw_manager_object *o;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index;
|
2020-10-29 12:09:19 +01:00
|
|
|
struct selector sel;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &index,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 12:09:19 +01:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u", client->name,
|
|
|
|
|
commands[command].name, tag, index);
|
2020-10-29 12:09:19 +01:00
|
|
|
|
|
|
|
|
spa_zero(sel);
|
2022-01-17 11:28:40 +01:00
|
|
|
sel.index = index;
|
2020-10-29 12:09:19 +01:00
|
|
|
switch (command) {
|
|
|
|
|
case COMMAND_KILL_CLIENT:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_client;
|
2020-10-29 12:09:19 +01:00
|
|
|
break;
|
|
|
|
|
case COMMAND_KILL_SINK_INPUT:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_sink_input;
|
2020-10-29 12:09:19 +01:00
|
|
|
break;
|
|
|
|
|
case COMMAND_KILL_SOURCE_OUTPUT:
|
2021-04-15 15:53:05 -04:00
|
|
|
sel.type = pw_manager_object_is_source_output;
|
2020-10-29 12:09:19 +01:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((o = select_object(manager, &sel)) == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
|
|
pw_registry_destroy(manager->registry, o->id);
|
|
|
|
|
|
|
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-11 22:47:47 +01:00
|
|
|
static void handle_module_loaded(struct module *module, struct client *client, uint32_t tag, int result)
|
2020-10-29 13:53:23 -03:00
|
|
|
{
|
2021-11-11 22:47:47 +01:00
|
|
|
const char *client_name = client != NULL ? client->name : "?";
|
2021-03-01 13:57:28 +01:00
|
|
|
struct impl *impl = module->impl;
|
2020-10-29 13:53:23 -03:00
|
|
|
|
2021-11-11 22:47:47 +01:00
|
|
|
spa_assert(!SPA_RESULT_IS_ASYNC(result));
|
2020-10-29 13:53:23 -03:00
|
|
|
|
2021-06-10 18:37:48 +02:00
|
|
|
if (SPA_RESULT_IS_OK(result)) {
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] loaded module index:%u name:%s",
|
|
|
|
|
client_name, module->index, module->name);
|
2020-10-29 13:53:23 -03:00
|
|
|
|
2021-06-10 18:37:48 +02:00
|
|
|
module->loaded = true;
|
2021-06-06 15:49:58 +02:00
|
|
|
|
2021-06-10 18:37:48 +02:00
|
|
|
broadcast_subscribe_event(impl,
|
2021-03-01 13:57:28 +01:00
|
|
|
SUBSCRIPTION_MASK_MODULE,
|
|
|
|
|
SUBSCRIPTION_EVENT_NEW | SUBSCRIPTION_EVENT_MODULE,
|
2022-01-17 11:28:40 +01:00
|
|
|
module->index);
|
2021-03-01 13:57:28 +01:00
|
|
|
|
2021-11-11 22:47:47 +01:00
|
|
|
if (client != NULL) {
|
|
|
|
|
struct message *reply = reply_new(client, tag);
|
|
|
|
|
|
|
|
|
|
message_put(reply,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, module->index,
|
2021-11-11 22:47:47 +01:00
|
|
|
TAG_INVALID);
|
|
|
|
|
client_queue_message(client, reply);
|
|
|
|
|
}
|
2021-06-10 18:37:48 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_warn("%p: [%s] failed to load module index:%u name:%s result:%d (%s)",
|
2021-11-11 22:47:47 +01:00
|
|
|
impl, client_name,
|
2022-01-17 11:28:40 +01:00
|
|
|
module->index, module->name,
|
2021-08-09 15:27:42 +02:00
|
|
|
result, spa_strerror(result));
|
2021-06-10 18:37:48 +02:00
|
|
|
|
|
|
|
|
module_schedule_unload(module);
|
2021-11-11 22:47:47 +01:00
|
|
|
|
|
|
|
|
if (client != NULL)
|
|
|
|
|
reply_error(client, COMMAND_LOAD_MODULE, tag, result);
|
2021-06-10 18:37:48 +02:00
|
|
|
}
|
2021-11-11 22:47:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct pending_module {
|
|
|
|
|
struct client *client;
|
|
|
|
|
struct spa_hook client_listener;
|
|
|
|
|
|
|
|
|
|
struct module *module;
|
|
|
|
|
struct spa_hook module_listener;
|
|
|
|
|
|
|
|
|
|
uint32_t tag;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void on_module_loaded(void *data, int result)
|
|
|
|
|
{
|
|
|
|
|
struct pending_module *pm = data;
|
|
|
|
|
|
|
|
|
|
if (pm->client != NULL)
|
|
|
|
|
spa_hook_remove(&pm->client_listener);
|
|
|
|
|
|
|
|
|
|
spa_hook_remove(&pm->module_listener);
|
|
|
|
|
|
|
|
|
|
handle_module_loaded(pm->module, pm->client, pm->tag, result);
|
|
|
|
|
|
|
|
|
|
free(pm);
|
|
|
|
|
}
|
2021-06-10 18:37:48 +02:00
|
|
|
|
2021-11-12 18:54:17 +01:00
|
|
|
static void on_module_destroy(void *data)
|
|
|
|
|
{
|
|
|
|
|
on_module_loaded(data, -ECANCELED);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-11 22:47:47 +01:00
|
|
|
static void on_client_disconnect(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct pending_module *pm = data;
|
|
|
|
|
|
|
|
|
|
spa_hook_remove(&pm->client_listener);
|
|
|
|
|
pm->client = NULL;
|
2020-10-29 13:53:23 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_load_module(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
2021-11-11 22:47:47 +01:00
|
|
|
static const struct module_events module_events = {
|
2021-03-01 13:57:28 +01:00
|
|
|
VERSION_MODULE_EVENTS,
|
|
|
|
|
.loaded = on_module_loaded,
|
2021-11-12 18:54:17 +01:00
|
|
|
.destroy = on_module_destroy,
|
2021-03-01 13:57:28 +01:00
|
|
|
};
|
2021-11-11 22:47:47 +01:00
|
|
|
static const struct client_events client_events = {
|
|
|
|
|
VERSION_CLIENT_EVENTS,
|
|
|
|
|
.disconnect = on_client_disconnect,
|
|
|
|
|
};
|
2020-10-29 13:53:23 -03:00
|
|
|
|
2021-06-10 18:37:48 +02:00
|
|
|
const char *name, *argument;
|
|
|
|
|
struct module *module;
|
|
|
|
|
int r;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2020-10-29 13:53:23 -03:00
|
|
|
TAG_STRING, &name,
|
|
|
|
|
TAG_STRING, &argument,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 13:53:23 -03:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s name:%s argument:%s",
|
2020-11-12 13:33:25 +01:00
|
|
|
client->name, commands[command].name, name, argument);
|
2020-10-29 13:53:23 -03:00
|
|
|
|
2021-06-19 00:09:09 +02:00
|
|
|
module = module_create(client, name, argument);
|
2021-03-01 13:57:28 +01:00
|
|
|
if (module == NULL)
|
|
|
|
|
return -errno;
|
|
|
|
|
|
2021-11-11 22:47:47 +01:00
|
|
|
r = module_load(client, module);
|
|
|
|
|
if (SPA_RESULT_IS_ASYNC(r)) {
|
|
|
|
|
struct pending_module *pm = calloc(1, sizeof(*pm));
|
|
|
|
|
if (pm == NULL)
|
|
|
|
|
return -errno;
|
2021-03-01 13:57:28 +01:00
|
|
|
|
2021-11-11 22:47:47 +01:00
|
|
|
pm->tag = tag;
|
|
|
|
|
pm->client = client;
|
|
|
|
|
pm->module = module;
|
2021-06-10 18:37:48 +02:00
|
|
|
|
2021-11-11 22:47:47 +01:00
|
|
|
module_add_listener(module, &pm->module_listener, &module_events, pm);
|
|
|
|
|
client_add_listener(client, &pm->client_listener, &client_events, pm);
|
|
|
|
|
} else {
|
|
|
|
|
handle_module_loaded(module, client, tag, r);
|
|
|
|
|
}
|
2021-06-10 18:37:48 +02:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* return 0 to prevent `handle_packet()` from sending a reply
|
2021-11-11 22:47:47 +01:00
|
|
|
* because we want `handle_module_loaded()` to send the reply
|
2021-06-10 18:37:48 +02:00
|
|
|
*/
|
|
|
|
|
return 0;
|
2020-10-29 13:53:23 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_unload_module(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
struct module *module;
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t module_index;
|
2020-10-29 13:53:23 -03:00
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2022-01-17 11:28:40 +01:00
|
|
|
TAG_U32, &module_index,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2020-10-29 13:53:23 -03:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u index:%u", client->name,
|
|
|
|
|
commands[command].name, tag, module_index);
|
2020-10-29 13:53:23 -03:00
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
if (module_index == SPA_ID_INVALID)
|
2021-03-01 13:57:28 +01:00
|
|
|
return -EINVAL;
|
2022-01-17 11:28:40 +01:00
|
|
|
if ((module_index & MODULE_FLAG) == 0)
|
2021-03-01 13:57:28 +01:00
|
|
|
return -EPERM;
|
|
|
|
|
|
2022-01-17 11:28:40 +01:00
|
|
|
module = pw_map_lookup(&impl->modules, module_index & MODULE_INDEX_MASK);
|
2021-03-01 13:57:28 +01:00
|
|
|
if (module == NULL)
|
2020-10-29 13:53:23 -03:00
|
|
|
return -ENOENT;
|
|
|
|
|
|
2022-01-30 17:08:55 +01:00
|
|
|
module_unload(module);
|
2021-03-01 13:57:28 +01:00
|
|
|
|
2020-10-29 13:53:23 -03:00
|
|
|
return reply_simple_ack(client, tag);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-20 00:11:12 +02:00
|
|
|
static int do_send_object_message(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = client->impl;
|
|
|
|
|
struct pw_manager *manager = client->manager;
|
|
|
|
|
const char *object_path = NULL;
|
|
|
|
|
const char *message = NULL;
|
|
|
|
|
const char *params = NULL;
|
|
|
|
|
char *response = NULL;
|
|
|
|
|
char *path = NULL;
|
|
|
|
|
struct message *reply;
|
|
|
|
|
struct pw_manager_object *o;
|
|
|
|
|
int len = 0;
|
|
|
|
|
int res;
|
|
|
|
|
|
2021-05-10 11:25:06 +10:00
|
|
|
if (message_get(m,
|
2021-03-20 00:11:12 +02:00
|
|
|
TAG_STRING, &object_path,
|
|
|
|
|
TAG_STRING, &message,
|
|
|
|
|
TAG_STRING, ¶ms,
|
2021-05-10 11:25:06 +10:00
|
|
|
TAG_INVALID) < 0)
|
2021-03-20 00:11:12 +02:00
|
|
|
return -EPROTO;
|
|
|
|
|
|
2021-11-05 16:22:22 +01:00
|
|
|
pw_log_info("[%s] %s tag:%u object_path:'%s' message:'%s' params:'%s'",
|
2021-03-20 00:11:12 +02:00
|
|
|
client->name, commands[command].name, tag, object_path,
|
|
|
|
|
message, params ? params : "<null>");
|
|
|
|
|
|
|
|
|
|
if (object_path == NULL || message == NULL)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
len = strlen(object_path);
|
|
|
|
|
if (len > 0 && object_path[len - 1] == '/')
|
|
|
|
|
--len;
|
|
|
|
|
path = strndup(object_path, len);
|
|
|
|
|
if (path == NULL)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
res = -ENOENT;
|
|
|
|
|
|
|
|
|
|
spa_list_for_each(o, &manager->object_list, link) {
|
2021-05-18 11:36:13 +10:00
|
|
|
if (o->message_object_path && spa_streq(o->message_object_path, path)) {
|
2021-03-20 00:11:12 +02:00
|
|
|
if (o->message_handler)
|
|
|
|
|
res = o->message_handler(manager, o, message, params, &response);
|
|
|
|
|
else
|
|
|
|
|
res = -ENOSYS;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free(path);
|
|
|
|
|
if (res < 0)
|
|
|
|
|
return res;
|
|
|
|
|
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_debug("%p: object message response:'%s'", impl, response ? response : "<null>");
|
2021-03-20 00:11:12 +02:00
|
|
|
|
|
|
|
|
reply = reply_new(client, tag);
|
|
|
|
|
message_put(reply, TAG_STRING, response, TAG_INVALID);
|
|
|
|
|
free(response);
|
2021-06-18 23:36:35 +02:00
|
|
|
return client_queue_message(client, reply);
|
2021-03-20 00:11:12 +02:00
|
|
|
}
|
|
|
|
|
|
2020-11-13 13:28:46 +01:00
|
|
|
static int do_error_access(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
|
|
|
|
{
|
|
|
|
|
return -EACCES;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-16 22:03:08 +02:00
|
|
|
static SPA_UNUSED int do_error_not_implemented(struct client *client, uint32_t command, uint32_t tag, struct message *m)
|
2020-11-13 13:28:46 +01:00
|
|
|
{
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 21:22:19 +01:00
|
|
|
#define COMMAND(name, ...) [COMMAND_ ## name] = { #name, __VA_ARGS__ }
|
2021-06-18 21:37:14 +02:00
|
|
|
const struct command commands[COMMAND_MAX] =
|
2020-10-04 20:20:58 +02:00
|
|
|
{
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(ERROR),
|
|
|
|
|
COMMAND(TIMEOUT), /* pseudo command */
|
|
|
|
|
COMMAND(REPLY),
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2020-10-02 17:14:57 +02:00
|
|
|
/* CLIENT->SERVER */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(CREATE_PLAYBACK_STREAM, do_create_playback_stream),
|
|
|
|
|
COMMAND(DELETE_PLAYBACK_STREAM, do_delete_stream),
|
|
|
|
|
COMMAND(CREATE_RECORD_STREAM, do_create_record_stream),
|
|
|
|
|
COMMAND(DELETE_RECORD_STREAM, do_delete_stream),
|
|
|
|
|
COMMAND(EXIT, do_error_access),
|
2021-12-30 21:36:04 +01:00
|
|
|
COMMAND(AUTH, do_command_auth, COMMAND_ACCESS_WITHOUT_AUTH | COMMAND_ACCESS_WITHOUT_MANAGER),
|
|
|
|
|
COMMAND(SET_CLIENT_NAME, do_set_client_name, COMMAND_ACCESS_WITHOUT_MANAGER),
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(LOOKUP_SINK, do_lookup),
|
|
|
|
|
COMMAND(LOOKUP_SOURCE, do_lookup),
|
|
|
|
|
COMMAND(DRAIN_PLAYBACK_STREAM, do_drain_stream),
|
2021-12-30 21:36:04 +01:00
|
|
|
COMMAND(STAT, do_stat, COMMAND_ACCESS_WITHOUT_MANAGER),
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(GET_PLAYBACK_LATENCY, do_get_playback_latency),
|
|
|
|
|
COMMAND(CREATE_UPLOAD_STREAM, do_create_upload_stream),
|
|
|
|
|
COMMAND(DELETE_UPLOAD_STREAM, do_delete_stream),
|
|
|
|
|
COMMAND(FINISH_UPLOAD_STREAM, do_finish_upload_stream),
|
|
|
|
|
COMMAND(PLAY_SAMPLE, do_play_sample),
|
|
|
|
|
COMMAND(REMOVE_SAMPLE, do_remove_sample),
|
|
|
|
|
|
2021-12-30 21:44:01 +01:00
|
|
|
COMMAND(GET_SERVER_INFO, do_get_server_info, COMMAND_ACCESS_WITHOUT_MANAGER),
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(GET_SINK_INFO, do_get_info),
|
|
|
|
|
COMMAND(GET_SOURCE_INFO, do_get_info),
|
|
|
|
|
COMMAND(GET_MODULE_INFO, do_get_info),
|
|
|
|
|
COMMAND(GET_CLIENT_INFO, do_get_info),
|
|
|
|
|
COMMAND(GET_SINK_INPUT_INFO, do_get_info),
|
|
|
|
|
COMMAND(GET_SOURCE_OUTPUT_INFO, do_get_info),
|
|
|
|
|
COMMAND(GET_SAMPLE_INFO, do_get_sample_info),
|
|
|
|
|
COMMAND(GET_CARD_INFO, do_get_info),
|
|
|
|
|
COMMAND(SUBSCRIBE, do_subscribe),
|
|
|
|
|
|
|
|
|
|
COMMAND(GET_SINK_INFO_LIST, do_get_info_list),
|
|
|
|
|
COMMAND(GET_SOURCE_INFO_LIST, do_get_info_list),
|
|
|
|
|
COMMAND(GET_MODULE_INFO_LIST, do_get_info_list),
|
|
|
|
|
COMMAND(GET_CLIENT_INFO_LIST, do_get_info_list),
|
|
|
|
|
COMMAND(GET_SINK_INPUT_INFO_LIST, do_get_info_list),
|
|
|
|
|
COMMAND(GET_SOURCE_OUTPUT_INFO_LIST, do_get_info_list),
|
|
|
|
|
COMMAND(GET_SAMPLE_INFO_LIST, do_get_sample_info_list),
|
|
|
|
|
COMMAND(GET_CARD_INFO_LIST, do_get_info_list),
|
|
|
|
|
|
|
|
|
|
COMMAND(SET_SINK_VOLUME, do_set_volume),
|
|
|
|
|
COMMAND(SET_SINK_INPUT_VOLUME, do_set_stream_volume),
|
|
|
|
|
COMMAND(SET_SOURCE_VOLUME, do_set_volume),
|
|
|
|
|
|
|
|
|
|
COMMAND(SET_SINK_MUTE, do_set_mute),
|
|
|
|
|
COMMAND(SET_SOURCE_MUTE, do_set_mute),
|
|
|
|
|
|
|
|
|
|
COMMAND(CORK_PLAYBACK_STREAM, do_cork_stream),
|
|
|
|
|
COMMAND(FLUSH_PLAYBACK_STREAM, do_flush_trigger_prebuf_stream),
|
|
|
|
|
COMMAND(TRIGGER_PLAYBACK_STREAM, do_flush_trigger_prebuf_stream),
|
|
|
|
|
COMMAND(PREBUF_PLAYBACK_STREAM, do_flush_trigger_prebuf_stream),
|
|
|
|
|
|
|
|
|
|
COMMAND(SET_DEFAULT_SINK, do_set_default),
|
|
|
|
|
COMMAND(SET_DEFAULT_SOURCE, do_set_default),
|
|
|
|
|
|
|
|
|
|
COMMAND(SET_PLAYBACK_STREAM_NAME, do_set_stream_name),
|
|
|
|
|
COMMAND(SET_RECORD_STREAM_NAME, do_set_stream_name),
|
|
|
|
|
|
|
|
|
|
COMMAND(KILL_CLIENT, do_kill),
|
|
|
|
|
COMMAND(KILL_SINK_INPUT, do_kill),
|
|
|
|
|
COMMAND(KILL_SOURCE_OUTPUT, do_kill),
|
|
|
|
|
|
|
|
|
|
COMMAND(LOAD_MODULE, do_load_module),
|
|
|
|
|
COMMAND(UNLOAD_MODULE, do_unload_module),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Obsolete */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(ADD_AUTOLOAD___OBSOLETE, do_error_access),
|
|
|
|
|
COMMAND(REMOVE_AUTOLOAD___OBSOLETE, do_error_access),
|
|
|
|
|
COMMAND(GET_AUTOLOAD_INFO___OBSOLETE, do_error_access),
|
|
|
|
|
COMMAND(GET_AUTOLOAD_INFO_LIST___OBSOLETE, do_error_access),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(GET_RECORD_LATENCY, do_get_record_latency),
|
|
|
|
|
COMMAND(CORK_RECORD_STREAM, do_cork_stream),
|
|
|
|
|
COMMAND(FLUSH_RECORD_STREAM, do_flush_trigger_prebuf_stream),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* SERVER->CLIENT */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(REQUEST),
|
|
|
|
|
COMMAND(OVERFLOW),
|
|
|
|
|
COMMAND(UNDERFLOW),
|
|
|
|
|
COMMAND(PLAYBACK_STREAM_KILLED),
|
|
|
|
|
COMMAND(RECORD_STREAM_KILLED),
|
|
|
|
|
COMMAND(SUBSCRIBE_EVENT),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* A few more client->server commands */
|
|
|
|
|
|
|
|
|
|
/* Supported since protocol v10 (0.9.5) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(MOVE_SINK_INPUT, do_move_stream),
|
|
|
|
|
COMMAND(MOVE_SOURCE_OUTPUT, do_move_stream),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v11 (0.9.7) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(SET_SINK_INPUT_MUTE, do_set_stream_mute),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(SUSPEND_SINK, do_suspend),
|
|
|
|
|
COMMAND(SUSPEND_SOURCE, do_suspend),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v12 (0.9.8) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(SET_PLAYBACK_STREAM_BUFFER_ATTR, do_set_stream_buffer_attr),
|
|
|
|
|
COMMAND(SET_RECORD_STREAM_BUFFER_ATTR, do_set_stream_buffer_attr),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(UPDATE_PLAYBACK_STREAM_SAMPLE_RATE, do_update_stream_sample_rate),
|
|
|
|
|
COMMAND(UPDATE_RECORD_STREAM_SAMPLE_RATE, do_update_stream_sample_rate),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* SERVER->CLIENT */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(PLAYBACK_STREAM_SUSPENDED),
|
|
|
|
|
COMMAND(RECORD_STREAM_SUSPENDED),
|
|
|
|
|
COMMAND(PLAYBACK_STREAM_MOVED),
|
|
|
|
|
COMMAND(RECORD_STREAM_MOVED),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v13 (0.9.11) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(UPDATE_RECORD_STREAM_PROPLIST, do_update_proplist),
|
|
|
|
|
COMMAND(UPDATE_PLAYBACK_STREAM_PROPLIST, do_update_proplist),
|
|
|
|
|
COMMAND(UPDATE_CLIENT_PROPLIST, do_update_proplist),
|
2020-10-04 20:20:58 +02:00
|
|
|
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(REMOVE_RECORD_STREAM_PROPLIST, do_remove_proplist),
|
|
|
|
|
COMMAND(REMOVE_PLAYBACK_STREAM_PROPLIST, do_remove_proplist),
|
|
|
|
|
COMMAND(REMOVE_CLIENT_PROPLIST, do_remove_proplist),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* SERVER->CLIENT */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(STARTED),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v14 (0.9.12) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(EXTENSION, do_extension),
|
2020-10-02 17:14:57 +02:00
|
|
|
/* Supported since protocol v15 (0.9.15) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(SET_CARD_PROFILE, do_set_profile),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
2020-10-04 20:20:58 +02:00
|
|
|
/* SERVER->CLIENT */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(CLIENT_EVENT),
|
|
|
|
|
COMMAND(PLAYBACK_STREAM_EVENT),
|
|
|
|
|
COMMAND(RECORD_STREAM_EVENT),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* SERVER->CLIENT */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(PLAYBACK_BUFFER_ATTR_CHANGED),
|
|
|
|
|
COMMAND(RECORD_BUFFER_ATTR_CHANGED),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v16 (0.9.16) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(SET_SINK_PORT, do_set_port),
|
|
|
|
|
COMMAND(SET_SOURCE_PORT, do_set_port),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v22 (1.0) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(SET_SOURCE_OUTPUT_VOLUME, do_set_stream_volume),
|
|
|
|
|
COMMAND(SET_SOURCE_OUTPUT_MUTE, do_set_stream_mute),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v27 (3.0) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(SET_PORT_LATENCY_OFFSET, do_set_port_latency_offset),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v30 (6.0) */
|
|
|
|
|
/* BOTH DIRECTIONS */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(ENABLE_SRBCHANNEL, do_error_access),
|
|
|
|
|
COMMAND(DISABLE_SRBCHANNEL, do_error_access),
|
2020-10-02 17:14:57 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v31 (9.0)
|
|
|
|
|
* BOTH DIRECTIONS */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(REGISTER_MEMFD_SHMID, do_error_access),
|
2021-03-20 00:11:12 +02:00
|
|
|
|
|
|
|
|
/* Supported since protocol v35 (15.0) */
|
2021-12-30 21:22:19 +01:00
|
|
|
COMMAND(SEND_OBJECT_MESSAGE, do_send_object_message),
|
2020-09-30 20:12:34 +02:00
|
|
|
};
|
2021-12-30 21:22:19 +01:00
|
|
|
#undef COMMAND
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2020-11-13 13:28:46 +01:00
|
|
|
static int impl_free_sample(void *item, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct sample *s = item;
|
2022-01-30 18:55:54 +01:00
|
|
|
|
|
|
|
|
spa_assert(s->ref == 1);
|
|
|
|
|
sample_unref(s);
|
|
|
|
|
|
2020-11-13 13:28:46 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-30 18:52:05 +01:00
|
|
|
static int impl_unload_module(void *item, void *data)
|
2021-03-01 13:57:28 +01:00
|
|
|
{
|
|
|
|
|
struct module *m = item;
|
2022-01-30 18:52:05 +01:00
|
|
|
module_unload(m);
|
2021-03-01 13:57:28 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-30 18:45:36 +01:00
|
|
|
static void impl_clear(struct impl *impl)
|
2020-09-30 20:12:34 +02:00
|
|
|
{
|
2022-01-30 18:45:36 +01:00
|
|
|
struct message *msg;
|
2020-10-08 11:57:35 +02:00
|
|
|
struct server *s;
|
2021-01-21 11:53:06 +01:00
|
|
|
struct client *c;
|
2021-03-26 15:14:53 +01:00
|
|
|
|
2022-01-30 18:45:36 +01:00
|
|
|
spa_list_consume(s, &impl->servers, link)
|
|
|
|
|
server_free(s);
|
2021-01-21 11:53:06 +01:00
|
|
|
|
|
|
|
|
spa_list_consume(c, &impl->cleanup_clients, link)
|
|
|
|
|
client_free(c);
|
2022-01-30 18:45:36 +01:00
|
|
|
|
|
|
|
|
spa_list_consume(msg, &impl->free_messages, link)
|
|
|
|
|
message_free(impl, msg, true, true);
|
2021-03-26 15:14:53 +01:00
|
|
|
|
2020-11-13 13:28:46 +01:00
|
|
|
pw_map_for_each(&impl->samples, impl_free_sample, impl);
|
|
|
|
|
pw_map_clear(&impl->samples);
|
2022-01-30 18:45:36 +01:00
|
|
|
|
2022-01-30 18:52:05 +01:00
|
|
|
pw_map_for_each(&impl->modules, impl_unload_module, impl);
|
2021-03-01 13:57:28 +01:00
|
|
|
pw_map_clear(&impl->modules);
|
2021-03-26 15:14:53 +01:00
|
|
|
|
2022-02-03 18:52:54 +01:00
|
|
|
#ifdef HAVE_DBUS
|
2022-01-30 18:45:36 +01:00
|
|
|
if (impl->dbus_name) {
|
|
|
|
|
dbus_release_name(impl->dbus_name);
|
|
|
|
|
impl->dbus_name = NULL;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (impl->context) {
|
|
|
|
|
spa_hook_remove(&impl->context_listener);
|
|
|
|
|
impl->context = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-21 09:43:02 +01:00
|
|
|
pw_properties_free(impl->props);
|
2022-01-30 18:45:36 +01:00
|
|
|
impl->props = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void impl_free(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
impl_clear(impl);
|
2020-09-30 20:12:34 +02:00
|
|
|
free(impl);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-20 10:46:08 +02:00
|
|
|
static void context_destroy(void *data)
|
|
|
|
|
{
|
2022-01-30 18:45:36 +01:00
|
|
|
impl_clear(data);
|
2020-10-20 10:46:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_context_events context_events = {
|
|
|
|
|
PW_VERSION_CONTEXT_EVENTS,
|
|
|
|
|
.destroy = context_destroy,
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-23 14:57:45 +01:00
|
|
|
static int parse_frac(struct pw_properties *props, const char *key, const char *def,
|
|
|
|
|
struct spa_fraction *res)
|
|
|
|
|
{
|
|
|
|
|
const char *str;
|
|
|
|
|
if (props == NULL ||
|
|
|
|
|
(str = pw_properties_get(props, key)) == NULL)
|
|
|
|
|
str = def;
|
|
|
|
|
if (sscanf(str, "%u/%u", &res->num, &res->denom) != 2 || res->denom == 0)
|
|
|
|
|
return -EINVAL;
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_info(": defaults: %s = %u/%u", key, res->num, res->denom);
|
2021-02-23 14:57:45 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
2021-04-09 11:30:57 +02:00
|
|
|
|
2021-04-09 11:45:06 +02:00
|
|
|
static int parse_position(struct pw_properties *props, const char *key, const char *def,
|
2021-04-09 11:12:13 +02:00
|
|
|
struct channel_map *res)
|
|
|
|
|
{
|
|
|
|
|
const char *str;
|
2021-04-09 11:30:57 +02:00
|
|
|
struct spa_json it[2];
|
|
|
|
|
char v[256];
|
|
|
|
|
|
2021-04-09 11:12:13 +02:00
|
|
|
if (props == NULL ||
|
|
|
|
|
(str = pw_properties_get(props, key)) == NULL)
|
|
|
|
|
str = def;
|
2021-04-09 11:30:57 +02:00
|
|
|
|
|
|
|
|
spa_json_init(&it[0], str, strlen(str));
|
2021-08-09 15:27:42 +02:00
|
|
|
if (spa_json_enter_array(&it[0], &it[1]) <= 0)
|
|
|
|
|
spa_json_init(&it[1], str, strlen(str));
|
2021-04-09 11:30:57 +02:00
|
|
|
|
|
|
|
|
res->channels = 0;
|
|
|
|
|
while (spa_json_get_string(&it[1], v, sizeof(v)) > 0 &&
|
|
|
|
|
res->channels < SPA_AUDIO_MAX_CHANNELS) {
|
|
|
|
|
res->map[res->channels++] = channel_name2id(v);
|
|
|
|
|
}
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_info(": defaults: %s = %s", key, str);
|
2021-04-09 11:12:13 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
static int parse_format(struct pw_properties *props, const char *key, const char *def,
|
|
|
|
|
struct sample_spec *res)
|
|
|
|
|
{
|
|
|
|
|
const char *str;
|
|
|
|
|
if (props == NULL ||
|
|
|
|
|
(str = pw_properties_get(props, key)) == NULL)
|
|
|
|
|
str = def;
|
2021-04-09 11:30:57 +02:00
|
|
|
res->format = format_name2id(str);
|
2021-05-12 18:06:48 +02:00
|
|
|
if (res->format == SPA_AUDIO_FORMAT_UNKNOWN) {
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_warn(": unknown format %s, default to %s", str, def);
|
2021-05-12 18:06:48 +02:00
|
|
|
res->format = format_name2id(def);
|
|
|
|
|
}
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_info(": defaults: %s = %s", key, str);
|
2021-04-09 11:12:13 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
2021-02-23 14:57:45 +01:00
|
|
|
|
|
|
|
|
static void load_defaults(struct defs *def, struct pw_properties *props)
|
|
|
|
|
{
|
|
|
|
|
parse_frac(props, "pulse.min.req", DEFAULT_MIN_REQ, &def->min_req);
|
|
|
|
|
parse_frac(props, "pulse.default.req", DEFAULT_DEFAULT_REQ, &def->default_req);
|
|
|
|
|
parse_frac(props, "pulse.min.frag", DEFAULT_MIN_FRAG, &def->min_frag);
|
|
|
|
|
parse_frac(props, "pulse.default.frag", DEFAULT_DEFAULT_FRAG, &def->default_frag);
|
|
|
|
|
parse_frac(props, "pulse.default.tlength", DEFAULT_DEFAULT_TLENGTH, &def->default_tlength);
|
|
|
|
|
parse_frac(props, "pulse.min.quantum", DEFAULT_MIN_QUANTUM, &def->min_quantum);
|
2021-04-09 11:12:13 +02:00
|
|
|
parse_format(props, "pulse.default.format", DEFAULT_FORMAT, &def->sample_spec);
|
2021-04-09 11:45:06 +02:00
|
|
|
parse_position(props, "pulse.default.position", DEFAULT_POSITION, &def->channel_map);
|
2021-04-09 11:12:13 +02:00
|
|
|
def->sample_spec.channels = def->channel_map.channels;
|
2022-01-12 17:50:12 +01:00
|
|
|
def->quantum_limit = 8192;
|
2021-02-23 14:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-08 11:57:35 +02:00
|
|
|
struct pw_protocol_pulse *pw_protocol_pulse_new(struct pw_context *context,
|
|
|
|
|
struct pw_properties *props, size_t user_data_size)
|
2020-09-30 20:12:34 +02:00
|
|
|
{
|
2021-04-21 15:58:30 +02:00
|
|
|
const struct spa_support *support;
|
|
|
|
|
struct spa_cpu *cpu;
|
|
|
|
|
uint32_t n_support;
|
2021-05-26 04:00:08 +02:00
|
|
|
struct impl *impl;
|
|
|
|
|
const char *str;
|
|
|
|
|
int res = 0;
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2021-05-26 04:00:08 +02:00
|
|
|
impl = calloc(1, sizeof(*impl) + user_data_size);
|
2020-09-30 20:12:34 +02:00
|
|
|
if (impl == NULL)
|
2021-02-21 09:43:02 +01:00
|
|
|
goto error_exit;
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2021-02-21 09:43:02 +01:00
|
|
|
if (props == NULL)
|
|
|
|
|
props = pw_properties_new(NULL, NULL);
|
|
|
|
|
if (props == NULL)
|
|
|
|
|
goto error_free;
|
|
|
|
|
|
2021-04-21 15:58:30 +02:00
|
|
|
support = pw_context_get_support(context, &n_support);
|
|
|
|
|
cpu = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_CPU);
|
|
|
|
|
|
|
|
|
|
if ((str = pw_properties_get(props, "vm.overrides")) != NULL) {
|
|
|
|
|
if (cpu != NULL && spa_cpu_get_vm_type(cpu) != SPA_CPU_VM_NONE)
|
|
|
|
|
pw_properties_update_string(props, str, strlen(str));
|
|
|
|
|
pw_properties_set(props, "vm.overrides", NULL);
|
2020-11-12 12:17:12 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-23 14:57:45 +01:00
|
|
|
load_defaults(&impl->defs, props);
|
|
|
|
|
|
2020-11-03 12:22:35 +01:00
|
|
|
debug_messages = pw_debug_is_category_enabled("connection");
|
|
|
|
|
|
2020-10-08 11:57:35 +02:00
|
|
|
impl->context = context;
|
|
|
|
|
impl->loop = pw_context_get_main_loop(context);
|
|
|
|
|
impl->props = props;
|
2021-01-21 11:53:06 +01:00
|
|
|
|
2021-04-21 12:55:49 +02:00
|
|
|
impl->work_queue = pw_context_get_work_queue(context);
|
|
|
|
|
if (impl->work_queue == NULL)
|
2021-01-21 11:53:06 +01:00
|
|
|
goto error_free;
|
|
|
|
|
|
2020-10-08 11:57:35 +02:00
|
|
|
spa_list_init(&impl->servers);
|
2020-11-12 10:17:19 +01:00
|
|
|
impl->rate_limit.interval = 2 * SPA_NSEC_PER_SEC;
|
|
|
|
|
impl->rate_limit.burst = 1;
|
2020-11-13 13:28:46 +01:00
|
|
|
pw_map_init(&impl->samples, 16, 16);
|
2021-03-01 13:57:28 +01:00
|
|
|
pw_map_init(&impl->modules, 16, 16);
|
2021-01-21 11:53:06 +01:00
|
|
|
spa_list_init(&impl->cleanup_clients);
|
2021-01-19 11:06:00 +01:00
|
|
|
spa_list_init(&impl->free_messages);
|
2020-09-30 20:12:34 +02:00
|
|
|
|
2021-04-21 15:58:30 +02:00
|
|
|
str = pw_properties_get(props, "server.address");
|
|
|
|
|
if (str == NULL) {
|
|
|
|
|
pw_properties_setf(props, "server.address",
|
|
|
|
|
"[ \"%s-%s\" ]",
|
|
|
|
|
PW_PROTOCOL_PULSE_DEFAULT_SERVER,
|
|
|
|
|
get_server_name(context));
|
|
|
|
|
str = pw_properties_get(props, "server.address");
|
|
|
|
|
}
|
2021-05-26 04:00:08 +02:00
|
|
|
|
2021-04-21 15:58:30 +02:00
|
|
|
if (str == NULL)
|
|
|
|
|
goto error_free;
|
|
|
|
|
|
2021-06-18 23:46:50 +02:00
|
|
|
if ((res = servers_create_and_start(impl, str, NULL)) < 0) {
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_error("%p: no servers could be started: %s",
|
2021-08-09 15:27:42 +02:00
|
|
|
impl, spa_strerror(res));
|
2021-05-26 08:58:08 +10:00
|
|
|
goto error_free;
|
2021-05-26 04:00:08 +02:00
|
|
|
}
|
2021-05-26 08:58:08 +10:00
|
|
|
|
2021-04-10 11:06:18 +02:00
|
|
|
if ((res = create_pid_file()) < 0) {
|
2021-09-22 09:28:54 +10:00
|
|
|
pw_log_warn("%p: can't create pid file: %s",
|
2021-08-09 15:27:42 +02:00
|
|
|
impl, spa_strerror(res));
|
2021-04-10 11:06:18 +02:00
|
|
|
}
|
2021-06-16 10:33:32 +02:00
|
|
|
pw_context_add_listener(context, &impl->context_listener,
|
|
|
|
|
&context_events, impl);
|
2021-05-26 04:00:08 +02:00
|
|
|
|
2022-02-03 18:52:54 +01:00
|
|
|
#ifdef HAVE_DBUS
|
2021-03-26 15:14:53 +01:00
|
|
|
impl->dbus_name = dbus_request_name(context, "org.pulseaudio.Server");
|
2021-10-09 15:00:04 +02:00
|
|
|
#endif
|
2020-11-20 11:52:57 +01:00
|
|
|
|
2021-05-26 04:00:08 +02:00
|
|
|
return (struct pw_protocol_pulse *) impl;
|
2020-11-12 12:17:12 +01:00
|
|
|
|
|
|
|
|
error_free:
|
|
|
|
|
free(impl);
|
2021-05-26 04:00:08 +02:00
|
|
|
|
2021-02-21 09:43:02 +01:00
|
|
|
error_exit:
|
2021-06-01 11:21:17 +10:00
|
|
|
pw_properties_free(props);
|
2021-05-26 04:00:08 +02:00
|
|
|
|
|
|
|
|
if (res < 0)
|
|
|
|
|
errno = -res;
|
|
|
|
|
|
2020-11-12 12:17:12 +01:00
|
|
|
return NULL;
|
2020-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *pw_protocol_pulse_get_user_data(struct pw_protocol_pulse *pulse)
|
|
|
|
|
{
|
2021-05-06 13:41:44 +10:00
|
|
|
return SPA_PTROFF(pulse, sizeof(struct impl), void);
|
2020-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pw_protocol_pulse_destroy(struct pw_protocol_pulse *pulse)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = (struct impl*)pulse;
|
|
|
|
|
impl_free(impl);
|
2020-09-30 20:12:34 +02:00
|
|
|
}
|