PipeWire 1.0.5
Loading...
Searching...
No Matches
Tutorial - Part 3: Forcing A Roundtrip

Tutorial - Part 2: Enumerating Objects | Index | Tutorial - Part 4: Playing A Tone

In this tutorial we show how to force a roundtrip to the server to make sure an action completed.

We'll change our example from Tutorial 2 slightly and add the extra code to implement the roundtrip.

Let's take the following small method first:

struct roundtrip_data {
int pending;
struct pw_main_loop *loop;
};
static void on_core_done(void *data, uint32_t id, int seq)
{
struct roundtrip_data *d = data;
if (id == PW_ID_CORE && seq == d->pending)
}
static void roundtrip(struct pw_core *core, struct pw_main_loop *loop)
{
static const struct pw_core_events core_events = {
.done = on_core_done,
};
struct roundtrip_data d = { .loop = loop };
struct spa_hook core_listener;
pw_core_add_listener(core, &core_listener, &core_events, &d);
d.pending = pw_core_sync(core, PW_ID_CORE, 0);
spa_hook_remove(&core_listener);
}
#define pw_core_sync(c,...)
Do server roundtrip.
Definition core.h:370
#define PW_ID_CORE
default ID for the core object after connect
Definition core.h:62
#define pw_core_add_listener(c,...)
Definition core.h:364
#define PW_VERSION_CORE_EVENTS
Definition core.h:128
int pw_main_loop_quit(struct pw_main_loop *loop)
Quit a main loop.
Definition main-loop.c:106
int pw_main_loop_run(struct pw_main_loop *loop)
Run a main loop.
Definition main-loop.c:120
static void spa_hook_remove(struct spa_hook *hook)
Remove a hook.
Definition hook.h:391
Core events.
Definition core.h:126
A main loop object.
A hook, contains the structure with functions and the data passed to the functions.
Definition hook.h:350

Let's take a look at what this method does.

struct spa_hook core_listener;
pw_core_add_listener(core, &core_listener, &core_events, &d);

First of all we add a listener for the events of the core object. We are only interested in the done event in this tutorial. This is the event handler:

static void on_core_done(void *data, uint32_t id, int seq)
{
struct roundtrip_data *d = data;
if (id == PW_ID_CORE && seq == d->pending)
}

When the done event is received for an object with id PW_ID_CORE and a certain sequence number seq, this function will call pw_main_loop_quit().

Next we do:

d.pending = pw_core_sync(core, PW_ID_CORE, 0);

This triggers the sync method on the core object with id PW_ID_CORE and sequence number 0.

Because this is a method on a proxy object, it will be executed asynchronously and the return value will reflect this. PipeWire uses the return values of the underlying SPA (Simple Plugin API) helper objects (See also SPA Design ).

Because all messages on the PipeWire server are handled sequentially, the sync method will be executed after all previous methods are completed. The PipeWire server will emit a done event with the same ID and the return value of the original pw_core_sync() method in the sequence number.

We then run the mainloop to send the messages to the server and receive the events:

When we get the done event, we can compare it to the sync method and then we know that we did a complete roundtrip and there are no more pending methods on the server. We can quit the mainloop and remove the listener:

spa_hook_remove(&core_listener);

If we add this roundtrip method to our code and call it instead of the pw_main_loop_run() we will exit the program after all previous methods are finished. This means that the pw_core_get_registry() call completed and thus that we also received all events for the globals on the server.

/* [roundtrip] */
struct roundtrip_data {
int pending;
struct pw_main_loop *loop;
};
static void on_core_done(void *data, uint32_t id, int seq)
{
struct roundtrip_data *d = data;
if (id == PW_ID_CORE && seq == d->pending)
}
static void roundtrip(struct pw_core *core, struct pw_main_loop *loop)
{
static const struct pw_core_events core_events = {
.done = on_core_done,
};
struct roundtrip_data d = { .loop = loop };
struct spa_hook core_listener;
pw_core_add_listener(core, &core_listener, &core_events, &d);
d.pending = pw_core_sync(core, PW_ID_CORE, 0);
spa_hook_remove(&core_listener);
}
/* [roundtrip] */
static void registry_event_global(void *data, uint32_t id,
uint32_t permissions, const char *type, uint32_t version,
const struct spa_dict *props)
{
printf("object: id:%u type:%s/%d\n", id, type, version);
}
static const struct pw_registry_events registry_events = {
.global = registry_event_global,
};
int main(int argc, char *argv[])
{
struct pw_main_loop *loop;
struct pw_context *context;
struct pw_core *core;
struct pw_registry *registry;
struct spa_hook registry_listener;
pw_init(&argc, &argv);
loop = pw_main_loop_new(NULL /* properties */);
NULL /* properties */,
0 /* user_data size */);
core = pw_context_connect(context,
NULL /* properties */,
0 /* user_data size */);
0 /* user_data size */);
pw_registry_add_listener(registry, &registry_listener,
&registry_events, NULL);
roundtrip(core, loop);
pw_proxy_destroy((struct pw_proxy*)registry);
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:393
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:179
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:391
int pw_core_disconnect(struct pw_core *core)
disconnect and destroy a core
Definition core.c:478
#define PW_VERSION_REGISTRY
Definition core.h:52
static struct pw_registry * pw_core_get_registry(struct pw_core *core, uint32_t version, size_t user_data_size)
Definition core.h:406
void pw_main_loop_destroy(struct pw_main_loop *loop)
Destroy a loop.
Definition main-loop.c:71
struct pw_main_loop * pw_main_loop_new(const struct spa_dict *props)
Create a new main loop.
Definition main-loop.c:61
struct pw_loop * pw_main_loop_get_loop(struct pw_main_loop *loop)
Get the loop implementation.
Definition main-loop.c:94
void pw_init(int *argc, char **argv[])
Initialize PipeWire.
Definition pipewire.c:556
void pw_proxy_destroy(struct pw_proxy *proxy)
destroy a proxy
Definition proxy.c:206
#define PW_VERSION_REGISTRY_EVENTS
Definition core.h:484
#define pw_registry_add_listener(p,...)
Registry.
Definition core.h:568
pipewire/pipewire.h
Registry events.
Definition core.h:482
Definition dict.h:39

To compile the simple test application, copy it into a tutorial3.c file and use:

    gcc -Wall tutorial3.c -o tutorial3 $(pkg-config --cflags --libs libpipewire-0.3)

Now that our program completes, we can take a look at how we can destroy the objects we created. Let's destroy each of them in reverse order that we created them:

pw_proxy_destroy((struct pw_proxy*)registry);

The registry is a proxy and can be destroyed with the generic proxy destroy method. After destroying the object, you should not use it anymore. It is an error to destroy an object more than once.

We can disconnect from the server with:

This will also destroy the core proxy object and will remove the proxies that might have been created on this connection.

We can finally destroy our context and mainloop to conclude this tutorial:

Tutorial - Part 2: Enumerating Objects | Index | Tutorial - Part 4: Playing A Tone