2017-05-23 19:15:33 +02:00
|
|
|
/* PipeWire
|
2016-09-15 17:51:34 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Copyright © 2018 Wim Taymans
|
2016-09-15 17:51:34 +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:
|
2016-09-15 17:51:34 +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.
|
2016-09-15 17:51:34 +02:00
|
|
|
*/
|
|
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
#include <stdio.h>
|
2016-09-15 17:51:34 +02:00
|
|
|
#include <dlfcn.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <poll.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/mman.h>
|
2018-04-24 17:06:37 +02:00
|
|
|
#include <time.h>
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-11-10 13:36:14 +01:00
|
|
|
#include <spa/node/node.h>
|
|
|
|
|
#include <spa/monitor/monitor.h>
|
|
|
|
|
#include <spa/pod/parser.h>
|
2018-09-05 16:41:07 +02:00
|
|
|
#include <spa/debug/pod.h>
|
2017-07-11 15:57:20 +02:00
|
|
|
|
|
|
|
|
#include <pipewire/log.h>
|
2017-08-08 19:55:14 +02:00
|
|
|
#include <pipewire/type.h>
|
2017-07-11 15:57:20 +02:00
|
|
|
#include <pipewire/node.h>
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
#include "spa-monitor.h"
|
2017-07-07 17:55:26 +02:00
|
|
|
#include "spa-node.h"
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
struct monitor_item {
|
|
|
|
|
char *id;
|
|
|
|
|
struct spa_list link;
|
|
|
|
|
struct pw_node *node;
|
2017-08-22 18:30:10 +02:00
|
|
|
struct spa_handle *handle;
|
2017-05-23 19:15:33 +02:00
|
|
|
};
|
2016-11-15 20:12:31 +01:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
struct impl {
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_spa_monitor this;
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_core *core;
|
2017-07-18 14:58:14 +02:00
|
|
|
struct pw_global *parent;
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
void *hnd;
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
struct spa_list item_list;
|
2017-05-23 19:15:33 +02:00
|
|
|
};
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2018-04-24 17:06:37 +02:00
|
|
|
static struct monitor_item *add_item(struct pw_spa_monitor *this,
|
|
|
|
|
struct spa_pod *item, uint64_t now)
|
2016-09-15 17:51:34 +02:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl = SPA_CONTAINER_OF(this, struct impl, this);
|
|
|
|
|
int res;
|
|
|
|
|
struct spa_handle *handle;
|
|
|
|
|
struct monitor_item *mitem;
|
|
|
|
|
void *node_iface;
|
|
|
|
|
struct pw_properties *props = NULL;
|
2018-04-24 17:06:37 +02:00
|
|
|
const char *name, *id, *klass, *str;
|
2017-05-26 08:05:01 +02:00
|
|
|
struct spa_handle_factory *factory;
|
2018-01-30 15:08:44 +01:00
|
|
|
enum spa_monitor_item_state state;
|
2017-05-26 08:05:01 +02:00
|
|
|
struct spa_pod *info = NULL;
|
2017-08-04 10:18:54 +02:00
|
|
|
const struct spa_support *support;
|
2018-01-30 15:08:44 +01:00
|
|
|
enum pw_spa_node_flags flags;
|
2017-08-04 10:18:54 +02:00
|
|
|
uint32_t n_support;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2017-11-13 17:57:38 +01:00
|
|
|
if (spa_pod_object_parse(item,
|
2018-08-23 17:47:57 +02:00
|
|
|
":", SPA_MONITOR_ITEM_id, "s", &id,
|
2018-08-25 12:08:29 +02:00
|
|
|
":", SPA_MONITOR_ITEM_state, "I", &state,
|
2018-08-23 17:47:57 +02:00
|
|
|
":", SPA_MONITOR_ITEM_name, "s", &name,
|
|
|
|
|
":", SPA_MONITOR_ITEM_class, "s", &klass,
|
|
|
|
|
":", SPA_MONITOR_ITEM_factory, "p", &factory,
|
2018-09-05 16:41:07 +02:00
|
|
|
":", SPA_MONITOR_ITEM_info, "T", &info, NULL) < 0) {
|
|
|
|
|
pw_log_warn("monitor %p: could not parse item", this);
|
|
|
|
|
spa_debug_pod(0, NULL, item);
|
2018-04-24 17:06:37 +02:00
|
|
|
return NULL;
|
2018-09-05 16:41:07 +02:00
|
|
|
}
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
pw_log_debug("monitor %p: add: \"%s\" (%s)", this, name, id);
|
|
|
|
|
|
|
|
|
|
props = pw_properties_new(NULL, NULL);
|
|
|
|
|
|
|
|
|
|
if (info) {
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
|
|
|
|
|
|
|
|
|
spa_pod_parser_pod(&prs, info);
|
|
|
|
|
if (spa_pod_parser_get(&prs, "[", NULL) == 0) {
|
|
|
|
|
while (true) {
|
|
|
|
|
const char *key, *val;
|
|
|
|
|
if (spa_pod_parser_get(&prs, "ss", &key, &val, NULL) < 0)
|
|
|
|
|
break;
|
|
|
|
|
pw_properties_set(props, key, val);
|
|
|
|
|
}
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-24 17:06:37 +02:00
|
|
|
if ((str = pw_properties_get(props, "device.form_factor")) != NULL)
|
|
|
|
|
if (strcmp(str, "internal") == 0)
|
|
|
|
|
now = 0;
|
|
|
|
|
if (now != 0)
|
|
|
|
|
pw_properties_setf(props, "node.plugged", "%"PRIu64, now);
|
|
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
support = pw_core_get_support(impl->core, &n_support);
|
|
|
|
|
|
2018-04-09 10:06:17 +02:00
|
|
|
handle = calloc(1, spa_handle_factory_get_size(factory, NULL));
|
2017-05-26 08:05:01 +02:00
|
|
|
if ((res = spa_handle_factory_init(factory,
|
|
|
|
|
handle,
|
|
|
|
|
&props->dict,
|
2017-08-04 10:18:54 +02:00
|
|
|
support,
|
|
|
|
|
n_support)) < 0) {
|
2018-09-24 09:33:09 +02:00
|
|
|
pw_properties_free(props);
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_log_error("can't make factory instance: %d", res);
|
2018-04-24 17:06:37 +02:00
|
|
|
return NULL;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
2018-08-27 15:03:11 +02:00
|
|
|
if ((res = spa_handle_get_interface(handle, SPA_TYPE_INTERFACE_Node, &node_iface)) < 0) {
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_log_error("can't get NODE interface: %d", res);
|
2018-09-24 09:33:09 +02:00
|
|
|
pw_properties_free(props);
|
2018-04-24 17:06:37 +02:00
|
|
|
return NULL;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
2018-01-30 15:08:44 +01:00
|
|
|
flags = PW_SPA_NODE_FLAG_ACTIVATE;
|
2018-08-29 18:08:52 +02:00
|
|
|
flags |= (state == SPA_MONITOR_ITEM_STATE_Available) ? 0 : PW_SPA_NODE_FLAG_DISABLE;
|
2018-01-30 15:08:44 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
mitem = calloc(1, sizeof(struct monitor_item));
|
|
|
|
|
mitem->id = strdup(id);
|
2017-08-22 18:30:10 +02:00
|
|
|
mitem->handle = handle;
|
2017-07-18 14:58:14 +02:00
|
|
|
mitem->node = pw_spa_node_new(impl->core, NULL, impl->parent, name,
|
2018-01-30 15:08:44 +01:00
|
|
|
flags,
|
2017-10-13 16:18:42 +02:00
|
|
|
node_iface, handle, props, 0);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
spa_list_append(&impl->item_list, &mitem->link);
|
2018-04-24 17:06:37 +02:00
|
|
|
|
|
|
|
|
return mitem;
|
2016-11-15 20:12:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
static struct monitor_item *find_item(struct pw_spa_monitor *this, const char *id)
|
2016-11-15 20:12:31 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl = SPA_CONTAINER_OF(this, struct impl, this);
|
|
|
|
|
struct monitor_item *mitem;
|
|
|
|
|
|
|
|
|
|
spa_list_for_each(mitem, &impl->item_list, link) {
|
|
|
|
|
if (strcmp(mitem->id, id) == 0) {
|
|
|
|
|
return mitem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
2016-11-15 20:12:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
void destroy_item(struct monitor_item *mitem)
|
2016-11-15 20:12:31 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_node_destroy(mitem->node);
|
|
|
|
|
spa_list_remove(&mitem->link);
|
2017-08-22 18:30:10 +02:00
|
|
|
spa_handle_clear(mitem->handle);
|
|
|
|
|
free(mitem->handle);
|
2017-05-26 08:05:01 +02:00
|
|
|
free(mitem->id);
|
|
|
|
|
free(mitem);
|
2016-09-15 17:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
2018-04-24 17:06:37 +02:00
|
|
|
static void remove_item(struct pw_spa_monitor *this, struct spa_pod *item, uint64_t now)
|
2016-09-15 17:51:34 +02:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct monitor_item *mitem;
|
|
|
|
|
const char *name, *id;
|
|
|
|
|
|
2017-11-13 17:57:38 +01:00
|
|
|
if (spa_pod_object_parse(item,
|
2018-08-23 17:47:57 +02:00
|
|
|
":", SPA_MONITOR_ITEM_name, "s", &name,
|
|
|
|
|
":", SPA_MONITOR_ITEM_id, "s", &id, NULL) < 0)
|
2017-09-21 18:57:41 +02:00
|
|
|
return;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
pw_log_debug("monitor %p: remove: \"%s\" (%s)", this, name, id);
|
|
|
|
|
mitem = find_item(this, id);
|
|
|
|
|
if (mitem)
|
|
|
|
|
destroy_item(mitem);
|
2016-09-15 17:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
2018-04-24 17:06:37 +02:00
|
|
|
static void change_item(struct pw_spa_monitor *this, struct spa_pod *item, uint64_t now)
|
2018-01-30 15:08:44 +01:00
|
|
|
{
|
|
|
|
|
struct monitor_item *mitem;
|
|
|
|
|
const char *name, *id;
|
|
|
|
|
enum spa_monitor_item_state state;
|
|
|
|
|
|
|
|
|
|
if (spa_pod_object_parse(item,
|
2018-08-23 17:47:57 +02:00
|
|
|
":", SPA_MONITOR_ITEM_name, "s", &name,
|
2018-08-25 12:08:29 +02:00
|
|
|
":", SPA_MONITOR_ITEM_state, "I", &state,
|
2018-08-23 17:47:57 +02:00
|
|
|
":", SPA_MONITOR_ITEM_id, "s", &id, NULL) < 0)
|
2018-01-30 15:08:44 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pw_log_debug("monitor %p: change: \"%s\" (%s)", this, name, id);
|
|
|
|
|
mitem = find_item(this, id);
|
2018-04-24 17:06:37 +02:00
|
|
|
if (mitem == NULL)
|
|
|
|
|
mitem = add_item(this, item, now);
|
2018-01-30 15:08:44 +01:00
|
|
|
if (mitem == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
switch (state) {
|
2018-08-29 18:08:52 +02:00
|
|
|
case SPA_MONITOR_ITEM_STATE_Available:
|
2018-01-30 15:08:44 +01:00
|
|
|
pw_node_set_enabled(mitem->node, true);
|
|
|
|
|
break;
|
2018-08-29 18:08:52 +02:00
|
|
|
case SPA_MONITOR_ITEM_STATE_Disabled:
|
|
|
|
|
case SPA_MONITOR_ITEM_STATE_Unavailable:
|
2018-01-30 15:08:44 +01:00
|
|
|
pw_node_set_enabled(mitem->node, false);
|
|
|
|
|
break;
|
2018-08-29 18:08:52 +02:00
|
|
|
default:
|
|
|
|
|
break;
|
2018-01-30 15:08:44 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-06 06:42:26 +02:00
|
|
|
static void on_monitor_event(void *data, struct spa_event *event)
|
2016-09-15 17:51:34 +02:00
|
|
|
{
|
2017-08-06 06:42:26 +02:00
|
|
|
struct impl *impl = data;
|
2017-06-14 18:32:39 +02:00
|
|
|
struct pw_spa_monitor *this = &impl->this;
|
2018-04-24 17:06:37 +02:00
|
|
|
struct timespec now;
|
|
|
|
|
uint64_t now_nsec;
|
2018-08-23 17:47:57 +02:00
|
|
|
struct spa_pod *item;
|
2018-04-24 17:06:37 +02:00
|
|
|
|
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
|
|
now_nsec = now.tv_sec * SPA_NSEC_PER_SEC + now.tv_nsec;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-08-23 17:47:57 +02:00
|
|
|
item = SPA_POD_CONTENTS(struct spa_event, event);
|
2018-08-24 10:53:09 +02:00
|
|
|
switch (SPA_MONITOR_EVENT_ID(event)) {
|
|
|
|
|
case SPA_MONITOR_EVENT_Added:
|
2018-04-24 17:06:37 +02:00
|
|
|
add_item(this, item, now_nsec);
|
2018-08-23 17:47:57 +02:00
|
|
|
break;
|
2018-08-24 10:53:09 +02:00
|
|
|
case SPA_MONITOR_EVENT_Removed:
|
2018-04-24 17:06:37 +02:00
|
|
|
remove_item(this, item, now_nsec);
|
2018-08-23 17:47:57 +02:00
|
|
|
break;
|
2018-08-24 10:53:09 +02:00
|
|
|
case SPA_MONITOR_EVENT_Changed:
|
2018-04-24 17:06:37 +02:00
|
|
|
change_item(this, item, now_nsec);
|
2018-08-23 17:47:57 +02:00
|
|
|
break;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
2016-09-15 17:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
static void update_monitor(struct pw_core *core, const char *name)
|
2017-01-20 15:53:03 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
const char *monitors;
|
|
|
|
|
struct spa_dict_item item;
|
2017-08-08 15:01:36 +02:00
|
|
|
const struct pw_properties *props;
|
2017-11-20 15:26:44 +01:00
|
|
|
struct spa_dict dict = SPA_DICT_INIT(&item, 1);
|
2017-01-20 15:53:03 +01:00
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
props = pw_core_get_properties(core);
|
|
|
|
|
|
|
|
|
|
if (props)
|
2017-08-08 15:01:36 +02:00
|
|
|
monitors = pw_properties_get(props, "monitors");
|
2017-05-26 08:05:01 +02:00
|
|
|
else
|
|
|
|
|
monitors = NULL;
|
2017-01-20 15:53:03 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
item.key = "monitors";
|
|
|
|
|
if (monitors == NULL)
|
|
|
|
|
item.value = name;
|
|
|
|
|
else
|
|
|
|
|
asprintf((char **) &item.value, "%s,%s", monitors, name);
|
2017-03-24 16:14:17 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_core_update_properties(core, &dict);
|
2017-01-20 15:53:03 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
if (monitors != NULL)
|
|
|
|
|
free((void *) item.value);
|
2017-01-20 15:53:03 +01:00
|
|
|
}
|
|
|
|
|
|
2017-05-25 13:28:15 +02:00
|
|
|
static const struct spa_monitor_callbacks callbacks = {
|
2017-06-14 18:32:39 +02:00
|
|
|
SPA_VERSION_MONITOR_CALLBACKS,
|
2017-08-06 06:42:26 +02:00
|
|
|
.event = on_monitor_event,
|
2017-05-25 13:28:15 +02:00
|
|
|
};
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_spa_monitor *pw_spa_monitor_load(struct pw_core *core,
|
2017-07-18 14:58:14 +02:00
|
|
|
struct pw_global *parent,
|
2017-06-19 12:19:22 +02:00
|
|
|
const char *dir,
|
2017-05-26 08:05:01 +02:00
|
|
|
const char *lib,
|
2017-08-22 18:30:10 +02:00
|
|
|
const char *factory_name,
|
|
|
|
|
const char *system_name,
|
|
|
|
|
size_t user_data_size)
|
2016-09-15 17:51:34 +02:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl;
|
|
|
|
|
struct pw_spa_monitor *this;
|
|
|
|
|
struct spa_handle *handle;
|
|
|
|
|
int res;
|
|
|
|
|
void *iface;
|
|
|
|
|
void *hnd;
|
|
|
|
|
uint32_t index;
|
|
|
|
|
spa_handle_factory_enum_func_t enum_func;
|
|
|
|
|
const struct spa_handle_factory *factory;
|
2017-06-19 12:19:22 +02:00
|
|
|
char *filename;
|
2017-08-04 10:18:54 +02:00
|
|
|
const struct spa_support *support;
|
|
|
|
|
uint32_t n_support;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2017-06-19 12:19:22 +02:00
|
|
|
asprintf(&filename, "%s/%s.so", dir, lib);
|
|
|
|
|
|
|
|
|
|
if ((hnd = dlopen(filename, RTLD_NOW)) == NULL) {
|
|
|
|
|
pw_log_error("can't load %s: %s", filename, dlerror());
|
|
|
|
|
goto open_failed;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
|
|
|
|
if ((enum_func = dlsym(hnd, SPA_HANDLE_FACTORY_ENUM_FUNC_NAME)) == NULL) {
|
|
|
|
|
pw_log_error("can't find enum function");
|
|
|
|
|
goto no_symbol;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-13 09:41:41 +01:00
|
|
|
for (index = 0;;) {
|
|
|
|
|
if ((res = enum_func(&factory, &index)) <= 0) {
|
|
|
|
|
if (res != 0)
|
|
|
|
|
pw_log_error("can't enumerate factories: %s", spa_strerror(res));
|
2017-05-26 08:05:01 +02:00
|
|
|
goto enum_failed;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp(factory->name, factory_name) == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-04-09 10:06:17 +02:00
|
|
|
handle = calloc(1, spa_handle_factory_get_size(factory, NULL));
|
|
|
|
|
if (handle == NULL)
|
|
|
|
|
goto no_mem;
|
|
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
support = pw_core_get_support(core, &n_support);
|
2018-04-09 10:06:17 +02:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
if ((res = spa_handle_factory_init(factory,
|
2017-08-04 10:18:54 +02:00
|
|
|
handle, NULL, support, n_support)) < 0) {
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_log_error("can't make factory instance: %d", res);
|
|
|
|
|
goto init_failed;
|
|
|
|
|
}
|
2018-08-27 15:03:11 +02:00
|
|
|
if ((res = spa_handle_get_interface(handle, SPA_TYPE_INTERFACE_Monitor, &iface)) < 0) {
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_log_error("can't get MONITOR interface: %d", res);
|
|
|
|
|
goto interface_failed;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
impl = calloc(1, sizeof(struct impl) + user_data_size);
|
2017-05-26 08:05:01 +02:00
|
|
|
impl->core = core;
|
2017-07-18 14:58:14 +02:00
|
|
|
impl->parent = parent;
|
2017-05-26 08:05:01 +02:00
|
|
|
impl->hnd = hnd;
|
|
|
|
|
|
|
|
|
|
this = &impl->this;
|
|
|
|
|
this->monitor = iface;
|
2017-06-19 12:19:22 +02:00
|
|
|
this->lib = filename;
|
2017-05-26 08:05:01 +02:00
|
|
|
this->factory_name = strdup(factory_name);
|
|
|
|
|
this->system_name = strdup(system_name);
|
|
|
|
|
this->handle = handle;
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
if (user_data_size > 0)
|
|
|
|
|
this->user_data = SPA_MEMBER(impl, sizeof(struct impl), void);
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
update_monitor(core, this->system_name);
|
|
|
|
|
|
|
|
|
|
spa_list_init(&impl->item_list);
|
|
|
|
|
|
2017-11-13 09:41:41 +01:00
|
|
|
for (index = 0;;) {
|
2017-11-13 17:57:38 +01:00
|
|
|
struct spa_pod *item;
|
|
|
|
|
uint8_t buffer[4096];
|
|
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buffer, sizeof(buffer));
|
2017-05-26 08:05:01 +02:00
|
|
|
int res;
|
|
|
|
|
|
2017-11-13 17:57:38 +01:00
|
|
|
if ((res = spa_monitor_enum_items(this->monitor, &index, &item, &b)) <= 0) {
|
2017-11-13 09:41:41 +01:00
|
|
|
if (res != 0)
|
|
|
|
|
pw_log_debug("spa_monitor_enum_items: %s\n", spa_strerror(res));
|
2017-05-26 08:05:01 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2018-04-24 17:06:37 +02:00
|
|
|
add_item(this, item, 0);
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
2017-06-18 19:48:31 +02:00
|
|
|
spa_monitor_set_callbacks(this->monitor, &callbacks, impl);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
|
|
interface_failed:
|
|
|
|
|
spa_handle_clear(handle);
|
|
|
|
|
init_failed:
|
|
|
|
|
free(handle);
|
2018-04-09 10:06:17 +02:00
|
|
|
no_mem:
|
2017-05-26 08:05:01 +02:00
|
|
|
enum_failed:
|
|
|
|
|
no_symbol:
|
|
|
|
|
dlclose(hnd);
|
2017-06-19 12:19:22 +02:00
|
|
|
open_failed:
|
|
|
|
|
free(filename);
|
2017-05-26 08:05:01 +02:00
|
|
|
return NULL;
|
2016-11-14 12:42:00 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
void pw_spa_monitor_destroy(struct pw_spa_monitor *monitor)
|
2016-11-14 12:42:00 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl = SPA_CONTAINER_OF(monitor, struct impl, this);
|
|
|
|
|
struct monitor_item *mitem, *tmp;
|
2016-11-14 12:42:00 +01:00
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
pw_log_debug("spa-monitor %p: destroy", impl);
|
2016-11-14 12:42:00 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
spa_list_for_each_safe(mitem, tmp, &impl->item_list, link)
|
2017-08-22 18:30:10 +02:00
|
|
|
destroy_item(mitem);
|
2016-11-15 20:12:31 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
spa_handle_clear(monitor->handle);
|
|
|
|
|
free(monitor->handle);
|
|
|
|
|
free(monitor->lib);
|
|
|
|
|
free(monitor->factory_name);
|
|
|
|
|
free(monitor->system_name);
|
2016-11-15 20:12:31 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
dlclose(impl->hnd);
|
|
|
|
|
free(impl);
|
2016-09-15 17:51:34 +02:00
|
|
|
}
|