2018-11-23 12:43:47 +01:00
|
|
|
/* PipeWire
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2018 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
|
|
|
|
|
|
#include <spa/param/props.h>
|
|
|
|
|
#include <spa/pod/iter.h>
|
|
|
|
|
#include <spa/debug/types.h>
|
|
|
|
|
|
|
|
|
|
#include "spa-device.h"
|
|
|
|
|
#include "pipewire/private.h"
|
|
|
|
|
|
|
|
|
|
struct impl {
|
2019-12-11 11:34:02 +01:00
|
|
|
struct pw_impl_device *this;
|
2018-11-23 12:43:47 +01:00
|
|
|
|
|
|
|
|
enum pw_spa_device_flags flags;
|
|
|
|
|
|
|
|
|
|
void *unload;
|
|
|
|
|
struct spa_handle *handle;
|
|
|
|
|
struct spa_device *device;
|
|
|
|
|
|
|
|
|
|
struct spa_hook device_listener;
|
|
|
|
|
|
|
|
|
|
void *user_data;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void device_destroy(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
2019-12-11 11:34:02 +01:00
|
|
|
struct pw_impl_device *device = impl->this;
|
2018-11-23 12:43:47 +01:00
|
|
|
|
|
|
|
|
pw_log_debug("spa-device %p: free", device);
|
|
|
|
|
|
|
|
|
|
spa_hook_remove(&impl->device_listener);
|
2019-05-20 09:49:39 +02:00
|
|
|
if (impl->handle)
|
|
|
|
|
pw_unload_spa_handle(impl->handle);
|
2018-11-23 12:43:47 +01:00
|
|
|
}
|
|
|
|
|
|
2019-12-11 11:34:02 +01:00
|
|
|
static const struct pw_impl_device_events device_events = {
|
|
|
|
|
PW_VERSION_IMPL_DEVICE_EVENTS,
|
2018-11-23 12:43:47 +01:00
|
|
|
.destroy = device_destroy,
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-11 11:34:02 +01:00
|
|
|
struct pw_impl_device *
|
2019-12-10 18:19:56 +01:00
|
|
|
pw_spa_device_new(struct pw_context *context,
|
2018-11-23 12:43:47 +01:00
|
|
|
enum pw_spa_device_flags flags,
|
|
|
|
|
struct spa_device *device,
|
|
|
|
|
struct spa_handle *handle,
|
|
|
|
|
struct pw_properties *properties,
|
|
|
|
|
size_t user_data_size)
|
|
|
|
|
{
|
2019-12-11 11:34:02 +01:00
|
|
|
struct pw_impl_device *this;
|
2018-11-23 12:43:47 +01:00
|
|
|
struct impl *impl;
|
2019-06-19 16:22:22 +02:00
|
|
|
int res;
|
2018-11-23 12:43:47 +01:00
|
|
|
|
2019-12-11 17:56:24 +01:00
|
|
|
this = pw_context_create_device(context, properties, sizeof(struct impl) + user_data_size);
|
2018-11-23 12:43:47 +01:00
|
|
|
if (this == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
impl = this->user_data;
|
|
|
|
|
impl->this = this;
|
|
|
|
|
impl->device = device;
|
2019-05-20 09:49:39 +02:00
|
|
|
impl->handle = handle;
|
2018-11-23 12:43:47 +01:00
|
|
|
impl->flags = flags;
|
|
|
|
|
|
|
|
|
|
if (user_data_size > 0)
|
|
|
|
|
impl->user_data = SPA_MEMBER(impl, sizeof(struct impl), void);
|
|
|
|
|
|
2019-12-11 11:34:02 +01:00
|
|
|
pw_impl_device_add_listener(this, &impl->device_listener, &device_events, impl);
|
|
|
|
|
pw_impl_device_set_implementation(this, impl->device);
|
2018-11-23 12:43:47 +01:00
|
|
|
|
2019-10-02 17:58:04 +02:00
|
|
|
if (!SPA_FLAG_IS_SET(impl->flags, PW_SPA_DEVICE_FLAG_NO_REGISTER)) {
|
2019-12-11 11:34:02 +01:00
|
|
|
if ((res = pw_impl_device_register(this, NULL)) < 0)
|
2019-06-19 16:22:22 +02:00
|
|
|
goto error_register;
|
|
|
|
|
}
|
2018-11-23 12:43:47 +01:00
|
|
|
return this;
|
2019-06-19 16:22:22 +02:00
|
|
|
|
|
|
|
|
error_register:
|
2019-12-11 11:34:02 +01:00
|
|
|
pw_impl_device_destroy(this);
|
2019-06-19 16:22:22 +02:00
|
|
|
errno = -res;
|
|
|
|
|
return NULL;
|
2018-11-23 12:43:47 +01:00
|
|
|
}
|
|
|
|
|
|
2019-12-11 11:34:02 +01:00
|
|
|
void *pw_spa_device_get_user_data(struct pw_impl_device *device)
|
2018-11-23 12:43:47 +01:00
|
|
|
{
|
|
|
|
|
struct impl *impl = device->user_data;
|
|
|
|
|
return impl->user_data;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-11 11:34:02 +01:00
|
|
|
struct pw_impl_device *pw_spa_device_load(struct pw_context *context,
|
2018-11-23 12:43:47 +01:00
|
|
|
const char *factory_name,
|
|
|
|
|
enum pw_spa_device_flags flags,
|
|
|
|
|
struct pw_properties *properties,
|
|
|
|
|
size_t user_data_size)
|
|
|
|
|
{
|
2019-12-11 11:34:02 +01:00
|
|
|
struct pw_impl_device *this;
|
2019-05-20 09:49:39 +02:00
|
|
|
struct spa_handle *handle;
|
|
|
|
|
void *iface;
|
|
|
|
|
int res;
|
2018-11-23 12:43:47 +01:00
|
|
|
|
2019-12-10 18:19:56 +01:00
|
|
|
handle = pw_context_load_spa_handle(context, factory_name,
|
2019-06-07 10:12:44 +02:00
|
|
|
properties ? &properties->dict : NULL);
|
2019-06-20 11:04:34 +02:00
|
|
|
if (handle == NULL)
|
|
|
|
|
goto error_load;
|
2019-05-20 09:49:39 +02:00
|
|
|
|
2019-06-20 11:04:34 +02:00
|
|
|
if ((res = spa_handle_get_interface(handle, SPA_TYPE_INTERFACE_Device, &iface)) < 0)
|
|
|
|
|
goto error_interface;
|
2018-11-23 12:43:47 +01:00
|
|
|
|
2019-12-10 18:19:56 +01:00
|
|
|
this = pw_spa_device_new(context, flags,
|
2019-05-20 09:49:39 +02:00
|
|
|
iface, handle, properties, user_data_size);
|
2019-06-20 11:04:34 +02:00
|
|
|
if (this == NULL)
|
|
|
|
|
goto error_device;
|
2018-11-23 12:43:47 +01:00
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
2019-06-20 11:04:34 +02:00
|
|
|
error_load:
|
|
|
|
|
res = -errno;
|
|
|
|
|
pw_log_error("can't load device handle: %m");
|
|
|
|
|
goto error_exit;
|
|
|
|
|
error_interface:
|
|
|
|
|
pw_log_error("can't get device interface %d", res);
|
|
|
|
|
goto error_exit_unload;
|
|
|
|
|
error_device:
|
|
|
|
|
res = -errno;
|
|
|
|
|
pw_log_error("can't create device: %m");
|
|
|
|
|
goto error_exit_unload;
|
|
|
|
|
|
|
|
|
|
error_exit_unload:
|
2019-05-31 16:06:14 +02:00
|
|
|
pw_unload_spa_handle(handle);
|
2019-06-20 11:04:34 +02:00
|
|
|
error_exit:
|
2019-06-19 16:22:22 +02:00
|
|
|
errno = -res;
|
2018-11-23 12:43:47 +01:00
|
|
|
return NULL;
|
|
|
|
|
}
|