PipeWire  0.3.40
export-spa.c

Exporting and loading a SPA node, using Core API.

/* 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.
*/
/*
[title]
Exporting and loading a SPA node, using \ref api_pw_core.
[title]
*/
#include <stdio.h>
#include <sys/mman.h>
#include <signal.h>
#include <pipewire/impl.h>
struct data {
struct pw_main_loop *loop;
struct pw_context *context;
struct pw_core *core;
struct spa_hook core_listener;
struct spa_node *node;
const char *library;
const char *factory;
const char *path;
struct pw_proxy *proxy;
struct spa_hook proxy_listener;
uint32_t id;
};
static void proxy_event_bound(void *object, uint32_t global_id)
{
struct data *data = object;
if (data->id != global_id) {
printf("node id: %u\n", global_id);
data->id = global_id;
}
}
static const struct pw_proxy_events proxy_events = {
.bound = proxy_event_bound,
};
static int make_node(struct data *data)
{
struct pw_properties *props;
struct spa_handle *hndl;
void *iface;
int res;
props = pw_properties_new(SPA_KEY_LIBRARY_NAME, data->library,
SPA_KEY_FACTORY_NAME, data->factory,
NULL);
hndl = pw_context_load_spa_handle(data->context, data->factory, &props->dict);
if (hndl == NULL)
return -errno;
if ((res = spa_handle_get_interface(hndl, SPA_TYPE_INTERFACE_Node, &iface)) < 0)
return res;
data->node = iface;
if (data->path) {
}
data->proxy = pw_core_export(data->core,
data->node, 0);
if (data->proxy == NULL)
return -errno;
pw_proxy_add_listener(data->proxy,
&data->proxy_listener, &proxy_events, data);
return 0;
}
static void on_core_error(void *data, uint32_t id, int seq, int res, const char *message)
{
struct data *d = data;
pw_log_error("error id:%u seq:%d res:%d (%s): %s",
id, seq, res, spa_strerror(res), message);
if (id == PW_ID_CORE)
}
static const struct pw_core_events core_events = {
.error = on_core_error,
};
static void do_quit(void *data, int signal_number)
{
struct data *d = data;
}
int main(int argc, char *argv[])
{
struct data data = { 0, };
struct pw_loop *l;
pw_init(&argc, &argv);
if (argc < 3) {
fprintf(stderr, "usage: %s <library> <factory> [path]\n\n"
"\texample: %s v4l2/libspa-v4l2 api.v4l2.source\n\n",
argv[0], argv[0]);
return -1;
}
data.loop = pw_main_loop_new(NULL);
l = pw_main_loop_get_loop(data.loop);
pw_loop_add_signal(l, SIGINT, do_quit, &data);
pw_loop_add_signal(l, SIGTERM, do_quit, &data);
data.context = pw_context_new(l, NULL, 0);
data.library = argv[1];
data.factory = argv[2];
if (argc > 3)
data.path = argv[3];
pw_context_load_module(data.context, "libpipewire-module-spa-node-factory", NULL, NULL);
data.core = pw_context_connect(data.context, NULL, 0);
if (data.core == NULL) {
printf("can't connect: %m\n");
return -1;
}
&data.core_listener,
&core_events, &data);
if (make_node(&data) < 0) {
pw_log_error("can't make node");
return -1;
}
pw_main_loop_run(data.loop);
pw_proxy_destroy(data.proxy);
pw_core_disconnect(data.core);
pw_context_destroy(data.context);
return 0;
}
void pw_context_destroy(struct pw_context *context)
destroy a context object, all resources except the main_loop will be destroyed
Definition: context.c:413
struct pw_context * pw_context_new(struct pw_loop *main_loop, struct pw_properties *props, size_t user_data_size)
Make a new context object for a given main_loop.
Definition: context.c:189
struct spa_handle * pw_context_load_spa_handle(struct pw_context *context, const char *factory_name, const struct spa_dict *info)
Definition: context.c:1306
#define PW_ID_CORE
default ID for the core object after connect
Definition: core.h:79
struct pw_core * pw_context_connect(struct pw_context *context, struct pw_properties *properties, size_t user_data_size)
Connect to a PipeWire instance.
Definition: core.c:402
int pw_core_disconnect(struct pw_core *core)
disconnect and destroy a core
Definition: core.c:489
#define pw_core_add_listener(c,...)
Definition: core.h:363
#define PW_VERSION_CORE_EVENTS
Definition: core.h:143
struct pw_proxy * pw_core_export(struct pw_core *core, const char *type, const struct spa_dict *props, void *object, size_t user_data_size)
Export an object into the PipeWire instance associated with core.
Definition: core.c:275
struct pw_impl_module * pw_context_load_module(struct pw_context *context, const char *name, const char *args, struct pw_properties *properties)
Load a module.
Definition: impl-module.c:160
#define PW_KEY_NODE_TARGET
node wants to be connected to the target node/session
Definition: keys.h:217
#define PW_KEY_NODE_AUTOCONNECT
node wants to be automatically connected to a compatible node
Definition: keys.h:214
#define pw_log_error(...)
Definition: log.h:157
#define pw_loop_add_signal(l,...)
Definition: loop.h:83
struct pw_main_loop * pw_main_loop_new(const struct spa_dict *props)
Create a new main loop.
Definition: main-loop.c:87
int pw_main_loop_quit(struct pw_main_loop *loop)
Quit a main loop.
Definition: main-loop.c:132
void pw_main_loop_destroy(struct pw_main_loop *loop)
Destroy a loop.
Definition: main-loop.c:97
int pw_main_loop_run(struct pw_main_loop *loop)
Run a main loop.
Definition: main-loop.c:146
struct pw_loop * pw_main_loop_get_loop(struct pw_main_loop *loop)
Get the loop implementation.
Definition: main-loop.c:120
void pw_init(int *argc, char **argv[])
Initialize PipeWire.
Definition: pipewire.c:586
void pw_properties_free(struct pw_properties *properties)
Free a properties object.
Definition: properties.c:368
struct pw_properties * pw_properties_new(const char *key,...) 1
Make a new properties object.
Definition: properties.c:102
int pw_properties_set(struct pw_properties *properties, const char *key, const char *value)
Set a property value.
Definition: properties.c:439
void pw_proxy_add_listener(struct pw_proxy *proxy, struct spa_hook *listener, const struct pw_proxy_events *events, void *data)
Add an event listener to proxy.
Definition: proxy.c:197
#define PW_VERSION_PROXY_EVENTS
Definition: proxy.h:118
void pw_proxy_destroy(struct pw_proxy *proxy)
destroy a proxy
Definition: proxy.c:231
#define SPA_KEY_FACTORY_NAME
the name of a factory
Definition: plugin.h:222
#define SPA_KEY_LIBRARY_NAME
the name of a library.
Definition: plugin.h:231
#define spa_handle_get_interface(h,...)
Definition: plugin.h:80
#define SPA_TYPE_INTERFACE_Node
Definition: node.h:57
#define spa_strerror(err)
Definition: result.h:69
pipewire/impl.h
spa/utils/result.h
Core events.
Definition: core.h:141
Definition: loop.h:51
A main loop object.
Definition: properties.h:53
struct spa_dict dict
dictionary of key/values
Definition: properties.h:54
Proxy events, use pw_proxy_add_listener.
Definition: proxy.h:116
Definition: plugin.h:50
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:342
Definition: node.h:61