2018-08-02 11:25:27 +02:00
|
|
|
/* PipeWire
|
|
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Copyright © 2018 Wim Taymans
|
2018-08-02 11:25:27 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* 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:
|
2018-08-02 11:25:27 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* 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.
|
2018-08-02 11:25:27 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <math.h>
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#include <spa/node/node.h>
|
|
|
|
|
#include <spa/utils/hook.h>
|
|
|
|
|
#include <spa/param/audio/format-utils.h>
|
2018-10-18 15:16:59 +02:00
|
|
|
#include <spa/param/props.h>
|
2018-11-16 16:41:13 +01:00
|
|
|
#include <spa/debug/pod.h>
|
2019-09-30 21:23:29 +02:00
|
|
|
#include <spa/support/dbus.h>
|
2018-08-02 11:25:27 +02:00
|
|
|
|
2019-01-14 12:58:23 +01:00
|
|
|
#include "pipewire/pipewire.h"
|
2018-08-02 11:25:27 +02:00
|
|
|
#include "pipewire/private.h"
|
2019-11-04 17:27:41 +01:00
|
|
|
#include "extensions/session-manager.h"
|
2018-08-02 11:25:27 +02:00
|
|
|
|
2019-09-30 21:23:29 +02:00
|
|
|
#include <dbus/dbus.h>
|
|
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
#include "media-session.h"
|
|
|
|
|
|
2018-09-11 15:25:35 +02:00
|
|
|
#define NAME "media-session"
|
|
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
#define sm_media_session_emit(s,m,v,...) spa_hook_list_call(&s->hooks, struct sm_media_session_events, m, v, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
#define sm_media_session_emit_update(s,obj) sm_media_session_emit(s, update, 0, obj)
|
|
|
|
|
#define sm_media_session_emit_remove(s,obj) sm_media_session_emit(s, remove, 0, obj)
|
|
|
|
|
#define sm_media_session_emit_rescan(s,seq) sm_media_session_emit(s, rescan, 0, seq)
|
|
|
|
|
|
|
|
|
|
int sm_monitor_start(struct sm_media_session *sess);
|
|
|
|
|
int sm_policy_ep_start(struct sm_media_session *sess);
|
|
|
|
|
|
|
|
|
|
/** user data to add to an object */
|
|
|
|
|
struct data {
|
|
|
|
|
struct spa_list link;
|
|
|
|
|
const char *id;
|
|
|
|
|
size_t size;
|
|
|
|
|
};
|
2019-07-10 20:24:11 +02:00
|
|
|
|
2018-08-02 11:25:27 +02:00
|
|
|
struct impl {
|
2019-11-14 18:35:29 +01:00
|
|
|
struct sm_media_session this;
|
2018-08-02 11:25:27 +02:00
|
|
|
|
2019-11-07 16:03:00 +01:00
|
|
|
struct pw_remote *monitor_remote;
|
|
|
|
|
struct spa_hook monitor_listener;
|
2018-09-11 15:25:35 +02:00
|
|
|
|
2019-11-07 16:03:00 +01:00
|
|
|
struct pw_remote *policy_remote;
|
|
|
|
|
struct spa_hook policy_listener;
|
2019-11-14 18:35:29 +01:00
|
|
|
|
|
|
|
|
struct pw_core_proxy *core_proxy;
|
|
|
|
|
struct spa_hook core_listener;
|
|
|
|
|
|
|
|
|
|
struct pw_registry_proxy *registry_proxy;
|
|
|
|
|
struct spa_hook registry_listener;
|
|
|
|
|
|
|
|
|
|
struct pw_map globals;
|
|
|
|
|
struct spa_hook_list hooks;
|
|
|
|
|
|
|
|
|
|
struct pw_client_session_proxy *client_session;
|
|
|
|
|
struct spa_hook client_session_listener;
|
|
|
|
|
|
2019-11-15 12:07:26 +01:00
|
|
|
int rescan_seq;
|
|
|
|
|
int last_seq;
|
2019-11-14 18:35:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void add_object(struct impl *impl, struct sm_object *obj)
|
|
|
|
|
{
|
|
|
|
|
size_t size = pw_map_get_size(&impl->globals);
|
|
|
|
|
while (obj->id > size)
|
|
|
|
|
pw_map_insert_at(&impl->globals, size++, NULL);
|
|
|
|
|
pw_map_insert_at(&impl->globals, obj->id, obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void remove_object(struct impl *impl, struct sm_object *obj)
|
|
|
|
|
{
|
|
|
|
|
pw_map_insert_at(&impl->globals, obj->id, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void *find_object(struct impl *impl, uint32_t id)
|
|
|
|
|
{
|
|
|
|
|
void *obj;
|
|
|
|
|
if ((obj = pw_map_lookup(&impl->globals, id)) != NULL)
|
|
|
|
|
return obj;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct data *object_find_data(struct sm_object *obj, const char *id)
|
|
|
|
|
{
|
|
|
|
|
struct data *d;
|
|
|
|
|
spa_list_for_each(d, &obj->data, link) {
|
|
|
|
|
if (strcmp(d->id, id) == 0)
|
|
|
|
|
return d;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *sm_object_add_data(struct sm_object *obj, const char *id, size_t size)
|
|
|
|
|
{
|
|
|
|
|
struct data *d;
|
|
|
|
|
|
|
|
|
|
d = object_find_data(obj, id);
|
|
|
|
|
if (d != NULL) {
|
|
|
|
|
if (d->size == size)
|
|
|
|
|
goto done;
|
|
|
|
|
spa_list_remove(&d->link);
|
|
|
|
|
free(d);
|
|
|
|
|
}
|
|
|
|
|
d = calloc(1, sizeof(struct data) + size);
|
|
|
|
|
d->id = id;
|
|
|
|
|
d->size = size;
|
|
|
|
|
|
|
|
|
|
spa_list_append(&obj->data, &d->link);
|
|
|
|
|
done:
|
|
|
|
|
return SPA_MEMBER(d, sizeof(struct data), void);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *sm_object_get_data(struct sm_object *obj, const char *id)
|
|
|
|
|
{
|
|
|
|
|
struct data *d;
|
|
|
|
|
d = object_find_data(obj, id);
|
|
|
|
|
if (d == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
return SPA_MEMBER(d, sizeof(struct data), void);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int sm_object_remove_data(struct sm_object *obj, const char *id)
|
|
|
|
|
{
|
|
|
|
|
struct data *d;
|
|
|
|
|
d = object_find_data(obj, id);
|
|
|
|
|
if (d == NULL)
|
|
|
|
|
return -ENOENT;
|
|
|
|
|
spa_list_remove(&d->link);
|
|
|
|
|
free(d);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Clients
|
|
|
|
|
*/
|
|
|
|
|
static void client_event_info(void *object, const struct pw_client_info *info)
|
|
|
|
|
{
|
|
|
|
|
struct sm_client *client = object;
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(client->obj.session, struct impl, this);
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME" %p: client %d info", impl, client->obj.id);
|
|
|
|
|
client->info = pw_client_info_update(client->info, info);
|
|
|
|
|
|
|
|
|
|
client->avail |= SM_CLIENT_CHANGE_MASK_INFO;
|
|
|
|
|
client->changed |= SM_CLIENT_CHANGE_MASK_INFO;
|
|
|
|
|
sm_media_session_emit_update(impl, &client->obj);
|
|
|
|
|
client->changed = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_client_proxy_events client_events = {
|
|
|
|
|
PW_VERSION_CLIENT_PROXY_EVENTS,
|
|
|
|
|
.info = client_event_info,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void client_destroy(void *object)
|
|
|
|
|
{
|
|
|
|
|
struct sm_client *client = object;
|
|
|
|
|
if (client->info)
|
|
|
|
|
pw_client_info_free(client->info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Node
|
|
|
|
|
*/
|
|
|
|
|
static void node_event_info(void *object, const struct pw_node_info *info)
|
|
|
|
|
{
|
|
|
|
|
struct sm_node *node = object;
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(node->obj.session, struct impl, this);
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME" %p: node %d info", impl, node->obj.id);
|
|
|
|
|
node->info = pw_node_info_update(node->info, info);
|
|
|
|
|
|
|
|
|
|
node->avail |= SM_NODE_CHANGE_MASK_INFO;
|
|
|
|
|
node->changed |= SM_NODE_CHANGE_MASK_INFO;
|
|
|
|
|
sm_media_session_emit_update(impl, &node->obj);
|
|
|
|
|
node->changed = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_node_proxy_events node_events = {
|
|
|
|
|
PW_VERSION_NODE_PROXY_EVENTS,
|
|
|
|
|
.info = node_event_info,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void node_destroy(void *object)
|
|
|
|
|
{
|
|
|
|
|
struct sm_node *node = object;
|
|
|
|
|
struct sm_port *port;
|
|
|
|
|
|
|
|
|
|
spa_list_consume(port, &node->port_list, link) {
|
|
|
|
|
port->node = NULL;
|
|
|
|
|
spa_list_remove(&port->link);
|
|
|
|
|
}
|
|
|
|
|
if (node->info)
|
|
|
|
|
pw_node_info_free(node->info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Port
|
|
|
|
|
*/
|
|
|
|
|
static void port_event_info(void *object, const struct pw_port_info *info)
|
|
|
|
|
{
|
|
|
|
|
struct sm_port *port = object;
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(port->obj.session, struct impl, this);
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME" %p: port %d info", impl, port->obj.id);
|
|
|
|
|
port->info = pw_port_info_update(port->info, info);
|
|
|
|
|
|
|
|
|
|
port->avail |= SM_PORT_CHANGE_MASK_INFO;
|
|
|
|
|
port->changed |= SM_PORT_CHANGE_MASK_INFO;
|
|
|
|
|
sm_media_session_emit_update(impl, &port->obj);
|
|
|
|
|
port->changed = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_port_proxy_events port_events = {
|
|
|
|
|
PW_VERSION_PORT_PROXY_EVENTS,
|
|
|
|
|
.info = port_event_info,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void port_destroy(void *object)
|
|
|
|
|
{
|
|
|
|
|
struct sm_port *port = object;
|
|
|
|
|
if (port->info)
|
|
|
|
|
pw_port_info_free(port->info);
|
|
|
|
|
if (port->node) {
|
|
|
|
|
spa_list_remove(&port->link);
|
|
|
|
|
port->node->changed |= SM_NODE_CHANGE_MASK_PORTS;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Endpoint
|
|
|
|
|
*/
|
|
|
|
|
static void endpoint_event_info(void *object, const struct pw_endpoint_info *info)
|
|
|
|
|
{
|
|
|
|
|
struct sm_endpoint *endpoint = object;
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(endpoint->obj.session, struct impl, this);
|
|
|
|
|
struct pw_endpoint_info *i = endpoint->info;
|
|
|
|
|
const char *str;
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME" %p: endpoint %d info", impl, endpoint->obj.id);
|
|
|
|
|
if (i == NULL && info) {
|
|
|
|
|
i = endpoint->info = calloc(1, sizeof(struct pw_endpoint_info));
|
|
|
|
|
i->id = info->id;
|
|
|
|
|
i->name = info->name ? strdup(info->name) : NULL;
|
|
|
|
|
i->media_class = info->media_class ? strdup(info->media_class) : NULL;
|
|
|
|
|
i->direction = info->direction;
|
|
|
|
|
i->flags = info->flags;
|
|
|
|
|
}
|
|
|
|
|
i->change_mask = info->change_mask;
|
|
|
|
|
if (info->change_mask & PW_ENDPOINT_CHANGE_MASK_SESSION) {
|
|
|
|
|
i->session_id = info->session_id;
|
|
|
|
|
}
|
|
|
|
|
if (info->change_mask & PW_ENDPOINT_CHANGE_MASK_PROPS) {
|
|
|
|
|
if (i->props)
|
|
|
|
|
pw_properties_free ((struct pw_properties *)i->props);
|
|
|
|
|
i->props = (struct spa_dict *) pw_properties_new_dict (info->props);
|
|
|
|
|
if ((str = spa_dict_lookup(i->props, PW_KEY_PRIORITY_SESSION)) != NULL)
|
|
|
|
|
endpoint->priority = pw_properties_parse_int(str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
endpoint->avail |= SM_ENDPOINT_CHANGE_MASK_INFO;
|
|
|
|
|
endpoint->changed |= SM_ENDPOINT_CHANGE_MASK_INFO;
|
|
|
|
|
sm_media_session_emit_update(impl, &endpoint->obj);
|
|
|
|
|
endpoint->changed = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_endpoint_proxy_events endpoint_events = {
|
|
|
|
|
PW_VERSION_ENDPOINT_PROXY_EVENTS,
|
|
|
|
|
.info = endpoint_event_info,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void endpoint_destroy(void *object)
|
|
|
|
|
{
|
|
|
|
|
struct sm_endpoint *endpoint = object;
|
|
|
|
|
struct sm_endpoint_stream *stream;
|
|
|
|
|
|
|
|
|
|
if (endpoint->info) {
|
|
|
|
|
free(endpoint->info->name);
|
|
|
|
|
free(endpoint->info->media_class);
|
|
|
|
|
free(endpoint->info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
spa_list_consume(stream, &endpoint->stream_list, link) {
|
|
|
|
|
stream->endpoint = NULL;
|
|
|
|
|
spa_list_remove(&stream->link);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Endpoint Stream
|
|
|
|
|
*/
|
|
|
|
|
static void endpoint_stream_event_info(void *object, const struct pw_endpoint_stream_info *info)
|
|
|
|
|
{
|
|
|
|
|
struct sm_endpoint_stream *stream = object;
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(stream->obj.session, struct impl, this);
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME" %p: endpoint stream %d info", impl, stream->obj.id);
|
|
|
|
|
if (stream->info == NULL && info) {
|
|
|
|
|
stream->info = calloc(1, sizeof(struct pw_endpoint_stream_info));
|
|
|
|
|
stream->info->version = PW_VERSION_ENDPOINT_STREAM_INFO;
|
|
|
|
|
stream->info->id = info->id;
|
|
|
|
|
stream->info->endpoint_id = info->endpoint_id;
|
|
|
|
|
stream->info->name = info->name ? strdup(info->name) : NULL;
|
|
|
|
|
}
|
|
|
|
|
stream->info->change_mask = info->change_mask;
|
|
|
|
|
|
|
|
|
|
stream->avail |= SM_ENDPOINT_CHANGE_MASK_INFO;
|
|
|
|
|
stream->changed |= SM_ENDPOINT_CHANGE_MASK_INFO;
|
|
|
|
|
sm_media_session_emit_update(impl, &stream->obj);
|
|
|
|
|
stream->changed = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_endpoint_stream_proxy_events endpoint_stream_events = {
|
|
|
|
|
PW_VERSION_ENDPOINT_PROXY_EVENTS,
|
|
|
|
|
.info = endpoint_stream_event_info,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void endpoint_stream_destroy(void *object)
|
|
|
|
|
{
|
|
|
|
|
struct sm_endpoint_stream *stream = object;
|
|
|
|
|
|
|
|
|
|
if (stream->info) {
|
|
|
|
|
free(stream->info->name);
|
|
|
|
|
free(stream->info);
|
|
|
|
|
}
|
|
|
|
|
if (stream->endpoint) {
|
|
|
|
|
stream->endpoint = NULL;
|
|
|
|
|
spa_list_remove(&stream->link);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* Proxy
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
destroy_proxy (void *data)
|
|
|
|
|
{
|
|
|
|
|
struct sm_object *obj = data;
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(obj->session, struct impl, this);
|
|
|
|
|
|
|
|
|
|
sm_media_session_emit_remove(impl, obj);
|
|
|
|
|
|
|
|
|
|
if (obj->destroy)
|
|
|
|
|
obj->destroy(obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_proxy_events proxy_events = {
|
|
|
|
|
PW_VERSION_PROXY_EVENTS,
|
|
|
|
|
.destroy = destroy_proxy,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
registry_global(void *data,uint32_t id,
|
|
|
|
|
uint32_t permissions, uint32_t type, uint32_t version,
|
|
|
|
|
const struct spa_dict *props)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
|
|
|
|
int res;
|
|
|
|
|
const void *events;
|
|
|
|
|
uint32_t client_version;
|
|
|
|
|
pw_destroy_t destroy;
|
|
|
|
|
struct sm_object *obj;
|
|
|
|
|
struct pw_proxy *proxy;
|
|
|
|
|
size_t user_data_size;
|
|
|
|
|
const char *str;
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME " %p: new global '%d' %d", impl, id, type);
|
|
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
case PW_TYPE_INTERFACE_Client:
|
|
|
|
|
events = &client_events;
|
|
|
|
|
client_version = PW_VERSION_CLIENT_PROXY;
|
|
|
|
|
destroy = (pw_destroy_t) client_destroy;
|
|
|
|
|
user_data_size = sizeof(struct sm_client);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PW_TYPE_INTERFACE_Node:
|
|
|
|
|
events = &node_events;
|
|
|
|
|
client_version = PW_VERSION_NODE_PROXY;
|
|
|
|
|
destroy = (pw_destroy_t) node_destroy;
|
|
|
|
|
user_data_size = sizeof(struct sm_node);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PW_TYPE_INTERFACE_Port:
|
|
|
|
|
events = &port_events;
|
|
|
|
|
client_version = PW_VERSION_PORT_PROXY;
|
|
|
|
|
destroy = (pw_destroy_t) port_destroy;
|
|
|
|
|
user_data_size = sizeof(struct sm_port);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PW_TYPE_INTERFACE_Endpoint:
|
|
|
|
|
events = &endpoint_events;
|
|
|
|
|
client_version = PW_VERSION_ENDPOINT_PROXY;
|
|
|
|
|
destroy = (pw_destroy_t) endpoint_destroy;
|
|
|
|
|
user_data_size = sizeof(struct sm_endpoint);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PW_TYPE_INTERFACE_EndpointStream:
|
|
|
|
|
events = &endpoint_stream_events;
|
|
|
|
|
client_version = PW_VERSION_ENDPOINT_STREAM_PROXY;
|
|
|
|
|
destroy = (pw_destroy_t) endpoint_stream_destroy;
|
|
|
|
|
user_data_size = sizeof(struct sm_endpoint_stream);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
proxy = pw_registry_proxy_bind(impl->registry_proxy,
|
|
|
|
|
id, type, client_version, user_data_size);
|
|
|
|
|
if (proxy == NULL) {
|
|
|
|
|
res = -errno;
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
obj = pw_proxy_get_user_data(proxy);
|
|
|
|
|
obj->session = &impl->this;
|
|
|
|
|
obj->id = id;
|
|
|
|
|
obj->type = type;
|
|
|
|
|
obj->props = props ? pw_properties_new_dict(props) : pw_properties_new(NULL, NULL);
|
|
|
|
|
obj->proxy = proxy;
|
|
|
|
|
obj->destroy = destroy;
|
|
|
|
|
obj->mask = SM_OBJECT_CHANGE_MASK_PROPERTIES | SM_OBJECT_CHANGE_MASK_BIND;
|
|
|
|
|
obj->avail = obj->mask;
|
|
|
|
|
spa_list_init(&obj->data);
|
|
|
|
|
|
|
|
|
|
add_object(impl, obj);
|
|
|
|
|
pw_proxy_add_listener(proxy, &obj->proxy_listener, &proxy_events, obj);
|
|
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
case PW_TYPE_INTERFACE_Node:
|
|
|
|
|
{
|
|
|
|
|
struct sm_node *node = (struct sm_node*) obj;
|
|
|
|
|
spa_list_init(&node->port_list);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case PW_TYPE_INTERFACE_Port:
|
|
|
|
|
{
|
|
|
|
|
struct sm_port *port = (struct sm_port*) obj;
|
|
|
|
|
|
|
|
|
|
if (props) {
|
|
|
|
|
if ((str = spa_dict_lookup(props, PW_KEY_PORT_DIRECTION)) != NULL)
|
2019-11-15 12:05:18 +01:00
|
|
|
port->direction = strcmp(str, "out") == 0 ?
|
2019-11-14 18:35:29 +01:00
|
|
|
PW_DIRECTION_OUTPUT : PW_DIRECTION_INPUT;
|
|
|
|
|
if ((str = spa_dict_lookup(props, PW_KEY_NODE_ID)) != NULL)
|
|
|
|
|
port->node = find_object(impl, atoi(str));
|
|
|
|
|
|
2019-11-15 12:05:18 +01:00
|
|
|
pw_log_debug(NAME" %p: port %d parent node %s direction:%d", impl, id, str,
|
|
|
|
|
port->direction);
|
2019-11-14 18:35:29 +01:00
|
|
|
if (port->node) {
|
|
|
|
|
spa_list_append(&port->node->port_list, &port->link);
|
|
|
|
|
port->node->changed |= SM_NODE_CHANGE_MASK_PORTS;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case PW_TYPE_INTERFACE_Endpoint:
|
|
|
|
|
{
|
|
|
|
|
struct sm_endpoint *endpoint = (struct sm_endpoint*) obj;
|
|
|
|
|
spa_list_init(&endpoint->stream_list);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case PW_TYPE_INTERFACE_EndpointStream:
|
|
|
|
|
{
|
|
|
|
|
struct sm_endpoint_stream *stream = (struct sm_endpoint_stream*) obj;
|
|
|
|
|
|
|
|
|
|
if (props) {
|
|
|
|
|
if ((str = spa_dict_lookup(props, PW_KEY_ENDPOINT_ID)) != NULL)
|
|
|
|
|
stream->endpoint = find_object(impl, atoi(str));
|
|
|
|
|
pw_log_debug(NAME" %p: stream %d parent endpoint %s", impl, id, str);
|
|
|
|
|
if (stream->endpoint) {
|
|
|
|
|
spa_list_append(&stream->endpoint->stream_list, &stream->link);
|
|
|
|
|
stream->endpoint->changed |= SM_ENDPOINT_CHANGE_MASK_STREAMS;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
sm_media_session_emit_update(impl, obj);
|
|
|
|
|
|
|
|
|
|
pw_proxy_add_object_listener(proxy, &obj->object_listener, events, obj);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
pw_log_warn(NAME" %p: can't handle global %d: %s", impl, id, spa_strerror(res));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int sm_media_session_add_listener(struct sm_media_session *sess, struct spa_hook *listener,
|
|
|
|
|
const struct sm_media_session_events *events, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(sess, struct impl, this);
|
|
|
|
|
spa_hook_list_append(&impl->hooks, listener, events, data);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct sm_object *sm_media_session_find_object(struct sm_media_session *sess, uint32_t id)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(sess, struct impl, this);
|
|
|
|
|
return find_object(impl, id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int sm_media_session_schedule_rescan(struct sm_media_session *sess)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(sess, struct impl, this);
|
|
|
|
|
if (impl->core_proxy)
|
2019-11-15 12:07:26 +01:00
|
|
|
impl->rescan_seq = pw_core_proxy_sync(impl->core_proxy, 0, impl->last_seq);
|
|
|
|
|
return impl->rescan_seq;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int sm_media_session_roundtrip(struct sm_media_session *sess)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(sess, struct impl, this);
|
|
|
|
|
struct pw_main_loop *loop = sess->loop;
|
|
|
|
|
int seq, res;
|
|
|
|
|
|
|
|
|
|
if (impl->core_proxy == NULL)
|
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
|
|
seq = pw_core_proxy_sync(impl->core_proxy, 0, impl->last_seq);
|
|
|
|
|
pw_log_debug(NAME" %p: roundtrip %d", impl, seq);
|
|
|
|
|
|
|
|
|
|
pw_loop_enter(loop->loop);
|
2019-11-15 13:34:16 +01:00
|
|
|
while (impl->last_seq <= seq) {
|
2019-11-15 12:07:26 +01:00
|
|
|
if ((res = pw_loop_iterate(loop->loop, -1)) < 0) {
|
|
|
|
|
pw_log_warn(NAME" %p: iterate error %d (%s)",
|
|
|
|
|
loop, res, spa_strerror(res));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pw_loop_leave(loop->loop);
|
|
|
|
|
if (res >= 0)
|
|
|
|
|
res = seq;
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME" %p: roundtrip done %d", impl, res);
|
|
|
|
|
|
|
|
|
|
return res;
|
2019-11-14 18:35:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
registry_global_remove(void *data, uint32_t id)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
|
|
|
|
struct sm_object *obj;
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME " %p: remove global '%d'", impl, id);
|
|
|
|
|
|
|
|
|
|
if ((obj = find_object(impl, id)) == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
remove_object(impl, obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_registry_proxy_events registry_events = {
|
|
|
|
|
PW_VERSION_REGISTRY_PROXY_EVENTS,
|
|
|
|
|
.global = registry_global,
|
|
|
|
|
.global_remove = registry_global_remove,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct pw_proxy *sm_media_session_export(struct sm_media_session *sess,
|
|
|
|
|
uint32_t type, struct pw_properties *properties,
|
|
|
|
|
void *object, size_t user_data_size)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(sess, struct impl, this);
|
|
|
|
|
return pw_remote_export(impl->monitor_remote, type,
|
|
|
|
|
properties, object, user_data_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct pw_proxy *sm_media_session_create_object(struct sm_media_session *sess,
|
|
|
|
|
const char *factory_name, uint32_t type, uint32_t version,
|
|
|
|
|
const struct spa_dict *props, size_t user_data_size)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(sess, struct impl, this);
|
|
|
|
|
return pw_core_proxy_create_object(impl->core_proxy,
|
|
|
|
|
factory_name, type, version, props, user_data_size);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-15 12:08:46 +01:00
|
|
|
int sm_media_session_create_links(struct sm_media_session *sess,
|
|
|
|
|
const struct spa_dict *dict)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = SPA_CONTAINER_OF(sess, struct impl, this);
|
|
|
|
|
struct sm_object *obj;
|
|
|
|
|
struct sm_node *outnode, *innode;
|
|
|
|
|
struct sm_port *outport, *inport;
|
|
|
|
|
struct pw_properties *props;
|
|
|
|
|
const char *str;
|
|
|
|
|
int res;
|
|
|
|
|
|
|
|
|
|
sm_media_session_roundtrip(sess);
|
|
|
|
|
|
|
|
|
|
/* find output node */
|
|
|
|
|
if ((str = spa_dict_lookup(dict, PW_KEY_LINK_OUTPUT_NODE)) == NULL) {
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
pw_log_error(NAME" %p: no output node given", impl);
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
if ((obj = find_object(impl, atoi(str))) == NULL ||
|
|
|
|
|
obj->type != PW_TYPE_INTERFACE_Node) {
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
pw_log_error(NAME" %p: can find output node %s", impl, str);
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
outnode = (struct sm_node*)obj;
|
|
|
|
|
|
|
|
|
|
/* find input node */
|
|
|
|
|
if ((str = spa_dict_lookup(dict, PW_KEY_LINK_INPUT_NODE)) == NULL) {
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
pw_log_error(NAME" %p: no input node given", impl);
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
if ((obj = find_object(impl, atoi(str))) == NULL ||
|
|
|
|
|
obj->type != PW_TYPE_INTERFACE_Node) {
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
pw_log_error(NAME" %p: can find input node %s", impl, str);
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
innode = (struct sm_node*)obj;
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME" %p: linking %d -> %d", impl, outnode->obj.id, innode->obj.id);
|
|
|
|
|
|
|
|
|
|
props = pw_properties_new(NULL, NULL);
|
|
|
|
|
pw_properties_setf(props, PW_KEY_LINK_OUTPUT_NODE, "%d", outnode->obj.id);
|
|
|
|
|
pw_properties_setf(props, PW_KEY_LINK_INPUT_NODE, "%d", innode->obj.id);
|
|
|
|
|
|
|
|
|
|
for (outport = spa_list_first(&outnode->port_list, struct sm_port, link),
|
|
|
|
|
inport = spa_list_first(&innode->port_list, struct sm_port, link);
|
|
|
|
|
!spa_list_is_end(outport, &outnode->port_list, link) &&
|
|
|
|
|
!spa_list_is_end(inport, &innode->port_list, link);) {
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME" %p: port %d:%d -> %d:%d", impl,
|
|
|
|
|
outport->direction, outport->obj.id,
|
|
|
|
|
inport->direction, inport->obj.id);
|
|
|
|
|
|
|
|
|
|
if (outport->direction == PW_DIRECTION_OUTPUT &&
|
|
|
|
|
inport->direction == PW_DIRECTION_INPUT) {
|
|
|
|
|
|
|
|
|
|
pw_properties_setf(props, PW_KEY_LINK_OUTPUT_PORT, "%d", outport->obj.id);
|
|
|
|
|
pw_properties_setf(props, PW_KEY_LINK_INPUT_PORT, "%d", inport->obj.id);
|
|
|
|
|
|
|
|
|
|
sm_media_session_create_object(sess, "link-factory",
|
|
|
|
|
PW_TYPE_INTERFACE_Link,
|
|
|
|
|
PW_VERSION_LINK_PROXY,
|
|
|
|
|
&props->dict, 0);
|
|
|
|
|
|
|
|
|
|
outport = spa_list_next(outport, link);
|
|
|
|
|
inport = spa_list_next(inport, link);
|
|
|
|
|
} else {
|
|
|
|
|
if (outport->direction != PW_DIRECTION_OUTPUT)
|
|
|
|
|
outport = spa_list_next(outport, link);
|
|
|
|
|
if (inport->direction != PW_DIRECTION_INPUT)
|
|
|
|
|
inport = spa_list_next(inport, link);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pw_properties_free(props);
|
|
|
|
|
|
|
|
|
|
res = 0;
|
|
|
|
|
exit:
|
|
|
|
|
return res;
|
|
|
|
|
}
|
2019-11-14 18:35:29 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Session implementation
|
|
|
|
|
*/
|
|
|
|
|
static int client_session_set_id(void *object, uint32_t id)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = object;
|
|
|
|
|
|
|
|
|
|
pw_log_debug("got sesssion id:%d", id);
|
|
|
|
|
impl->this.info.id = id;
|
|
|
|
|
|
|
|
|
|
pw_client_session_proxy_update(impl->client_session,
|
|
|
|
|
PW_CLIENT_SESSION_UPDATE_INFO,
|
|
|
|
|
0, NULL,
|
|
|
|
|
&impl->this.info);
|
|
|
|
|
|
|
|
|
|
return sm_monitor_start(&impl->this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int client_session_set_param(void *object, uint32_t id, uint32_t flags,
|
|
|
|
|
const struct spa_pod *param)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = object;
|
|
|
|
|
pw_proxy_error((struct pw_proxy*)impl->client_session,
|
|
|
|
|
-ENOTSUP, "Session:SetParam not supported");
|
|
|
|
|
return -ENOTSUP;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int client_session_link_set_param(void *object, uint32_t link_id, uint32_t id, uint32_t flags,
|
|
|
|
|
const struct spa_pod *param)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = object;
|
|
|
|
|
pw_proxy_error((struct pw_proxy*)impl->client_session,
|
|
|
|
|
-ENOTSUP, "Session:LinkSetParam not supported");
|
|
|
|
|
return -ENOTSUP;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int client_session_link_request_state(void *object, uint32_t link_id, uint32_t state)
|
|
|
|
|
{
|
|
|
|
|
return -ENOTSUP;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_client_session_proxy_events client_session_events = {
|
|
|
|
|
PW_VERSION_CLIENT_SESSION_PROXY_METHODS,
|
|
|
|
|
.set_id = client_session_set_id,
|
|
|
|
|
.set_param = client_session_set_param,
|
|
|
|
|
.link_set_param = client_session_link_set_param,
|
|
|
|
|
.link_request_state = client_session_link_request_state,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int start_session(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
impl->client_session = pw_core_proxy_create_object(impl->core_proxy,
|
|
|
|
|
"client-session",
|
|
|
|
|
PW_TYPE_INTERFACE_ClientSession,
|
|
|
|
|
PW_VERSION_CLIENT_SESSION_PROXY,
|
|
|
|
|
NULL, 0);
|
|
|
|
|
impl->this.info.version = PW_VERSION_SESSION_INFO;
|
|
|
|
|
|
|
|
|
|
pw_client_session_proxy_add_listener(impl->client_session,
|
|
|
|
|
&impl->client_session_listener,
|
|
|
|
|
&client_session_events,
|
|
|
|
|
impl);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int start_policy(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
return sm_policy_ep_start(&impl->this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void core_done(void *data, uint32_t id, int seq)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
2019-11-15 12:07:26 +01:00
|
|
|
impl->last_seq = seq;
|
|
|
|
|
if (impl->rescan_seq == seq) {
|
|
|
|
|
pw_log_trace(NAME" %p: rescan %u %d", impl, id, seq);
|
2019-11-14 18:35:29 +01:00
|
|
|
sm_media_session_emit_rescan(impl, seq);
|
2019-11-15 12:07:26 +01:00
|
|
|
}
|
2019-11-14 18:35:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_core_proxy_events core_events = {
|
|
|
|
|
PW_VERSION_CORE_EVENTS,
|
|
|
|
|
.done = core_done
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void on_monitor_state_changed(void *_data, enum pw_remote_state old,
|
|
|
|
|
enum pw_remote_state state, const char *error)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = _data;
|
|
|
|
|
struct sm_media_session *sess = &impl->this;
|
|
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
|
case PW_REMOTE_STATE_ERROR:
|
|
|
|
|
pw_log_error(NAME" %p: remote error: %s", impl, error);
|
|
|
|
|
pw_main_loop_quit(sess->loop);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PW_REMOTE_STATE_CONNECTED:
|
|
|
|
|
pw_log_info(NAME" %p: connected", impl);
|
|
|
|
|
impl->core_proxy = pw_remote_get_core_proxy(impl->monitor_remote);
|
|
|
|
|
pw_core_proxy_add_listener(impl->core_proxy,
|
|
|
|
|
&impl->core_listener,
|
|
|
|
|
&core_events, impl);
|
|
|
|
|
impl->registry_proxy = pw_core_proxy_get_registry(impl->core_proxy,
|
|
|
|
|
PW_VERSION_REGISTRY_PROXY, 0);
|
|
|
|
|
pw_registry_proxy_add_listener(impl->registry_proxy,
|
|
|
|
|
&impl->registry_listener,
|
|
|
|
|
®istry_events, impl);
|
|
|
|
|
start_session(impl);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PW_REMOTE_STATE_UNCONNECTED:
|
|
|
|
|
pw_log_info(NAME" %p: disconnected", impl);
|
|
|
|
|
pw_main_loop_quit(sess->loop);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
printf("remote state: \"%s\"\n", pw_remote_state_as_string(state));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_remote_events monitor_remote_events = {
|
|
|
|
|
PW_VERSION_REMOTE_EVENTS,
|
|
|
|
|
.state_changed = on_monitor_state_changed,
|
2018-08-02 11:25:27 +02:00
|
|
|
};
|
|
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
static void on_policy_state_changed(void *_data, enum pw_remote_state old,
|
|
|
|
|
enum pw_remote_state state, const char *error)
|
2018-08-02 11:25:27 +02:00
|
|
|
{
|
|
|
|
|
struct impl *impl = _data;
|
2019-11-14 18:35:29 +01:00
|
|
|
struct sm_media_session *sess = &impl->this;
|
2018-08-02 11:25:27 +02:00
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
|
case PW_REMOTE_STATE_ERROR:
|
2018-09-11 15:25:35 +02:00
|
|
|
pw_log_error(NAME" %p: remote error: %s", impl, error);
|
2019-11-14 18:35:29 +01:00
|
|
|
pw_main_loop_quit(sess->loop);
|
2018-08-02 11:25:27 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PW_REMOTE_STATE_CONNECTED:
|
2018-09-26 13:22:21 +02:00
|
|
|
pw_log_info(NAME" %p: connected", impl);
|
2019-11-14 18:35:29 +01:00
|
|
|
start_policy(impl);
|
2018-08-02 11:25:27 +02:00
|
|
|
break;
|
2018-09-26 13:22:21 +02:00
|
|
|
|
|
|
|
|
case PW_REMOTE_STATE_UNCONNECTED:
|
|
|
|
|
pw_log_info(NAME" %p: disconnected", impl);
|
2019-11-14 18:35:29 +01:00
|
|
|
pw_main_loop_quit(sess->loop);
|
2018-09-26 13:22:21 +02:00
|
|
|
break;
|
2018-08-02 11:25:27 +02:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
printf("remote state: \"%s\"\n", pw_remote_state_as_string(state));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
static const struct pw_remote_events policy_remote_events = {
|
2018-08-02 11:25:27 +02:00
|
|
|
PW_VERSION_REMOTE_EVENTS,
|
2019-11-14 18:35:29 +01:00
|
|
|
.state_changed = on_policy_state_changed,
|
2018-08-02 11:25:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
struct impl impl = { 0, };
|
2019-11-07 16:03:00 +01:00
|
|
|
int res;
|
2018-08-02 11:25:27 +02:00
|
|
|
|
|
|
|
|
pw_init(&argc, &argv);
|
|
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
impl.this.loop = pw_main_loop_new(NULL);
|
|
|
|
|
impl.this.core = pw_core_new(pw_main_loop_get_loop(impl.this.loop), NULL, 0);
|
2018-08-02 11:25:27 +02:00
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
pw_core_add_spa_lib(impl.this.core, "api.bluez5.*", "bluez5/libspa-bluez5");
|
|
|
|
|
pw_core_add_spa_lib(impl.this.core, "api.alsa.*", "alsa/libspa-alsa");
|
|
|
|
|
pw_core_add_spa_lib(impl.this.core, "api.v4l2.*", "v4l2/libspa-v4l2");
|
2019-07-10 20:24:11 +02:00
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
impl.monitor_remote = pw_remote_new(impl.this.core, NULL, 0);
|
|
|
|
|
pw_remote_add_listener(impl.monitor_remote, &impl.monitor_listener, &monitor_remote_events, &impl);
|
2019-11-07 16:03:00 +01:00
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
impl.policy_remote = pw_remote_new(impl.this.core, NULL, 0);
|
|
|
|
|
pw_remote_add_listener(impl.policy_remote, &impl.policy_listener, &policy_remote_events, &impl);
|
2019-11-07 16:03:00 +01:00
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
pw_module_load(impl.this.core, "libpipewire-module-client-device", NULL, NULL);
|
|
|
|
|
pw_module_load(impl.this.core, "libpipewire-module-adapter", NULL, NULL);
|
|
|
|
|
pw_module_load(impl.this.core, "libpipewire-module-metadata", NULL, NULL);
|
|
|
|
|
pw_module_load(impl.this.core, "libpipewire-module-session-manager", NULL, NULL);
|
2019-07-10 20:24:11 +02:00
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
pw_map_init(&impl.globals, 64, 64);
|
|
|
|
|
spa_hook_list_init(&impl.hooks);
|
2018-08-02 11:25:27 +02:00
|
|
|
|
2019-11-07 16:03:00 +01:00
|
|
|
if ((res = pw_remote_connect(impl.monitor_remote)) < 0)
|
|
|
|
|
return res;
|
|
|
|
|
if ((res = pw_remote_connect(impl.policy_remote)) < 0)
|
|
|
|
|
return res;
|
2019-11-03 10:31:14 +01:00
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
pw_main_loop_run(impl.this.loop);
|
2018-08-02 11:25:27 +02:00
|
|
|
|
2019-11-14 18:35:29 +01:00
|
|
|
pw_core_destroy(impl.this.core);
|
|
|
|
|
pw_main_loop_destroy(impl.this.loop);
|
2018-08-02 11:25:27 +02:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|