2017-05-23 19:15:33 +02:00
|
|
|
/* PipeWire
|
2016-11-14 12:42:00 +01:00
|
|
|
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-07 17:55:26 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
|
|
2017-05-16 09:20:42 +02:00
|
|
|
#include <spa/node.h>
|
2017-08-22 18:30:10 +02:00
|
|
|
#include <spa/graph.h>
|
2016-11-14 12:42:00 +01:00
|
|
|
|
|
|
|
|
#include "spa-node.h"
|
2017-08-22 18:30:10 +02:00
|
|
|
#include "pipewire/node.h"
|
|
|
|
|
#include "pipewire/port.h"
|
|
|
|
|
#include "pipewire/log.h"
|
2017-08-04 10:18:54 +02:00
|
|
|
#include "pipewire/private.h"
|
2016-11-14 12:42:00 +01:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
struct impl {
|
2017-07-07 17:55:26 +02:00
|
|
|
struct pw_node *this;
|
|
|
|
|
|
2017-09-18 11:54:25 +02:00
|
|
|
struct pw_client *owner;
|
|
|
|
|
struct pw_global *parent;
|
|
|
|
|
|
2017-07-07 17:55:26 +02:00
|
|
|
bool async_init;
|
2016-11-14 12:42:00 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
void *hnd;
|
2017-07-07 17:55:26 +02:00
|
|
|
struct spa_handle *handle;
|
|
|
|
|
struct spa_node *node; /**< handle to SPA node */
|
|
|
|
|
char *lib;
|
|
|
|
|
char *factory_name;
|
2017-08-04 10:18:54 +02:00
|
|
|
|
2017-08-08 16:56:29 +02:00
|
|
|
struct spa_hook node_listener;
|
2017-07-07 17:55:26 +02:00
|
|
|
};
|
|
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
static void pw_spa_node_destroy(void *data)
|
2017-07-07 17:55:26 +02:00
|
|
|
{
|
2017-08-04 10:18:54 +02:00
|
|
|
struct impl *impl = data;
|
|
|
|
|
struct pw_node *node = impl->this;
|
2017-07-07 17:55:26 +02:00
|
|
|
|
|
|
|
|
pw_log_debug("spa-node %p: destroy", node);
|
|
|
|
|
|
|
|
|
|
if (impl->handle) {
|
|
|
|
|
spa_handle_clear(impl->handle);
|
|
|
|
|
free(impl->handle);
|
|
|
|
|
}
|
|
|
|
|
free(impl->lib);
|
|
|
|
|
free(impl->factory_name);
|
|
|
|
|
if (impl->hnd)
|
|
|
|
|
dlclose(impl->hnd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void complete_init(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
struct pw_node *this = impl->this;
|
2017-09-18 11:54:25 +02:00
|
|
|
pw_node_register(this, impl->owner, impl->parent);
|
2017-09-18 20:37:00 +02:00
|
|
|
pw_node_set_active(this, true);
|
2017-07-07 17:55:26 +02:00
|
|
|
}
|
|
|
|
|
|
2017-08-25 18:59:01 +02:00
|
|
|
static void on_node_done(void *data, uint32_t seq, int res)
|
2017-07-07 17:55:26 +02:00
|
|
|
{
|
2017-08-06 06:42:26 +02:00
|
|
|
struct impl *impl = data;
|
2017-07-07 17:55:26 +02:00
|
|
|
struct pw_node *this = impl->this;
|
|
|
|
|
|
|
|
|
|
if (impl->async_init) {
|
|
|
|
|
complete_init(impl);
|
|
|
|
|
impl->async_init = false;
|
|
|
|
|
}
|
|
|
|
|
pw_log_debug("spa-node %p: async complete event %d %d", this, seq, res);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
static const struct pw_node_events node_events = {
|
|
|
|
|
PW_VERSION_NODE_EVENTS,
|
2017-08-04 10:18:54 +02:00
|
|
|
.destroy = pw_spa_node_destroy,
|
2017-08-25 18:59:01 +02:00
|
|
|
.async_complete = on_node_done,
|
2017-07-07 17:55:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct pw_node *
|
|
|
|
|
pw_spa_node_new(struct pw_core *core,
|
2017-09-18 11:54:25 +02:00
|
|
|
struct pw_client *owner,
|
2017-07-18 14:58:14 +02:00
|
|
|
struct pw_global *parent,
|
2017-07-07 17:55:26 +02:00
|
|
|
const char *name,
|
|
|
|
|
bool async,
|
|
|
|
|
struct spa_node *node,
|
|
|
|
|
struct spa_clock *clock,
|
2017-08-22 18:30:10 +02:00
|
|
|
struct pw_properties *properties,
|
|
|
|
|
size_t user_data_size)
|
2017-07-07 17:55:26 +02:00
|
|
|
{
|
|
|
|
|
struct pw_node *this;
|
|
|
|
|
struct impl *impl;
|
|
|
|
|
|
2017-09-18 11:54:25 +02:00
|
|
|
this = pw_node_new(core, name, properties, sizeof(struct impl) + user_data_size);
|
2017-07-07 17:55:26 +02:00
|
|
|
if (this == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
this->clock = clock;
|
|
|
|
|
|
|
|
|
|
impl = this->user_data;
|
|
|
|
|
impl->this = this;
|
2017-09-18 11:54:25 +02:00
|
|
|
impl->owner = owner;
|
|
|
|
|
impl->parent = parent;
|
2017-07-07 17:55:26 +02:00
|
|
|
impl->node = node;
|
|
|
|
|
impl->async_init = async;
|
|
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
pw_node_add_listener(this, &impl->node_listener, &node_events, impl);
|
2017-09-07 10:22:32 +02:00
|
|
|
pw_node_set_implementation(this, impl->node);
|
2017-07-07 17:55:26 +02:00
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
if (!async)
|
2017-07-07 17:55:26 +02:00
|
|
|
complete_init(impl);
|
|
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
setup_props(struct pw_core *core, struct spa_node *spa_node, struct pw_properties *pw_props)
|
|
|
|
|
{
|
|
|
|
|
int res;
|
|
|
|
|
struct spa_props *props;
|
|
|
|
|
void *state = NULL;
|
|
|
|
|
const char *key;
|
2017-08-22 18:30:10 +02:00
|
|
|
struct pw_type *t = pw_core_get_type(core);
|
2017-07-07 17:55:26 +02:00
|
|
|
|
|
|
|
|
if ((res = spa_node_get_props(spa_node, &props)) != SPA_RESULT_OK) {
|
|
|
|
|
pw_log_debug("spa_node_get_props failed: %d", res);
|
|
|
|
|
return SPA_RESULT_ERROR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while ((key = pw_properties_iterate(pw_props, &state))) {
|
|
|
|
|
struct spa_pod_prop *prop;
|
|
|
|
|
uint32_t id;
|
|
|
|
|
|
|
|
|
|
if (!spa_type_is_a(key, SPA_TYPE_PROPS_BASE))
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
id = spa_type_map_get_id(t->map, key);
|
2017-07-07 17:55:26 +02:00
|
|
|
if (id == SPA_ID_INVALID)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if ((prop = spa_pod_object_find_prop(&props->object, id))) {
|
|
|
|
|
const char *value = pw_properties_get(pw_props, key);
|
|
|
|
|
|
|
|
|
|
pw_log_info("configure prop %s", key);
|
|
|
|
|
|
|
|
|
|
switch(prop->body.value.type) {
|
|
|
|
|
case SPA_POD_TYPE_ID:
|
|
|
|
|
SPA_POD_VALUE(struct spa_pod_id, &prop->body.value) =
|
2017-08-22 18:30:10 +02:00
|
|
|
spa_type_map_get_id(t->map, value);
|
2017-07-07 17:55:26 +02:00
|
|
|
break;
|
|
|
|
|
case SPA_POD_TYPE_INT:
|
|
|
|
|
SPA_POD_VALUE(struct spa_pod_int, &prop->body.value) = atoi(value);
|
|
|
|
|
break;
|
|
|
|
|
case SPA_POD_TYPE_LONG:
|
|
|
|
|
SPA_POD_VALUE(struct spa_pod_long, &prop->body.value) = atoi(value);
|
|
|
|
|
break;
|
|
|
|
|
case SPA_POD_TYPE_FLOAT:
|
|
|
|
|
SPA_POD_VALUE(struct spa_pod_float, &prop->body.value) = atof(value);
|
|
|
|
|
break;
|
|
|
|
|
case SPA_POD_TYPE_DOUBLE:
|
|
|
|
|
SPA_POD_VALUE(struct spa_pod_double, &prop->body.value) = atof(value);
|
|
|
|
|
break;
|
|
|
|
|
case SPA_POD_TYPE_STRING:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((res = spa_node_set_props(spa_node, props)) != SPA_RESULT_OK) {
|
|
|
|
|
pw_log_debug("spa_node_set_props failed: %d", res);
|
|
|
|
|
return SPA_RESULT_ERROR;
|
|
|
|
|
}
|
|
|
|
|
return SPA_RESULT_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct pw_node *pw_spa_node_load(struct pw_core *core,
|
2017-09-18 11:54:25 +02:00
|
|
|
struct pw_client *owner,
|
2017-07-18 14:58:14 +02:00
|
|
|
struct pw_global *parent,
|
2017-07-07 17:55:26 +02:00
|
|
|
const char *lib,
|
|
|
|
|
const char *factory_name,
|
|
|
|
|
const char *name,
|
2017-08-22 18:30:10 +02:00
|
|
|
struct pw_properties *properties,
|
|
|
|
|
size_t user_data_size)
|
2017-07-07 17:55:26 +02:00
|
|
|
{
|
|
|
|
|
struct pw_node *this;
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl;
|
|
|
|
|
struct spa_node *spa_node;
|
|
|
|
|
struct spa_clock *spa_clock;
|
|
|
|
|
int res;
|
|
|
|
|
struct spa_handle *handle;
|
|
|
|
|
void *hnd;
|
|
|
|
|
uint32_t index;
|
|
|
|
|
spa_handle_factory_enum_func_t enum_func;
|
|
|
|
|
const struct spa_handle_factory *factory;
|
|
|
|
|
void *iface;
|
2017-06-19 12:19:22 +02:00
|
|
|
char *filename;
|
2017-07-07 17:55:26 +02:00
|
|
|
const char *dir;
|
|
|
|
|
bool async;
|
2017-08-22 18:30:10 +02:00
|
|
|
const struct spa_support *support;
|
|
|
|
|
uint32_t n_support;
|
|
|
|
|
struct pw_type *t = pw_core_get_type(core);
|
2017-07-07 17:55:26 +02:00
|
|
|
|
|
|
|
|
if ((dir = getenv("SPA_PLUGIN_DIR")) == NULL)
|
|
|
|
|
dir = PLUGINDIR;
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (index = 0;; index++) {
|
|
|
|
|
if ((res = enum_func(&factory, index)) < 0) {
|
|
|
|
|
if (res != SPA_RESULT_ENUM_END)
|
|
|
|
|
pw_log_error("can't enumerate factories: %d", res);
|
|
|
|
|
goto enum_failed;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp(factory->name, factory_name) == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
support = pw_core_get_support(core, &n_support);
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
handle = calloc(1, factory->size);
|
|
|
|
|
if ((res = spa_handle_factory_init(factory,
|
2017-08-22 18:30:10 +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;
|
|
|
|
|
}
|
2017-07-07 17:55:26 +02:00
|
|
|
async = SPA_RESULT_IS_ASYNC(res);
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
if ((res = spa_handle_get_interface(handle, t->spa_node, &iface)) < 0) {
|
2017-06-06 13:30:34 +02:00
|
|
|
pw_log_error("can't get node interface %d", res);
|
2017-05-26 08:05:01 +02:00
|
|
|
goto interface_failed;
|
|
|
|
|
}
|
|
|
|
|
spa_node = iface;
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
if ((res = spa_handle_get_interface(handle, t->spa_clock, &iface)) < 0) {
|
2017-05-26 08:05:01 +02:00
|
|
|
iface = NULL;
|
|
|
|
|
}
|
|
|
|
|
spa_clock = iface;
|
|
|
|
|
|
2017-07-07 17:55:26 +02:00
|
|
|
if (properties != NULL) {
|
|
|
|
|
if (setup_props(core, spa_node, properties) != SPA_RESULT_OK) {
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_log_debug("Unrecognized properties");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
this = pw_spa_node_new(core, owner, parent, name, async,
|
|
|
|
|
spa_node, spa_clock, properties, user_data_size);
|
|
|
|
|
|
|
|
|
|
impl = this->user_data;
|
2017-07-07 17:55:26 +02:00
|
|
|
impl->hnd = hnd;
|
|
|
|
|
impl->handle = handle;
|
|
|
|
|
impl->lib = filename;
|
|
|
|
|
impl->factory_name = strdup(factory_name);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
|
|
interface_failed:
|
|
|
|
|
spa_handle_clear(handle);
|
|
|
|
|
init_failed:
|
|
|
|
|
free(handle);
|
|
|
|
|
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
|
|
|
}
|