2023-02-08 18:12:00 +01:00
|
|
|
/* PipeWire */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2020 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2020-01-31 15:07:26 +01:00
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2023-07-11 19:31:27 +02:00
|
|
|
#include <spa/pod/builder.h>
|
2020-01-31 15:07:26 +01:00
|
|
|
#include <spa/utils/result.h>
|
|
|
|
|
#include <spa/utils/ringbuffer.h>
|
|
|
|
|
#include <spa/param/profiler.h>
|
|
|
|
|
|
|
|
|
|
#include <pipewire/private.h>
|
|
|
|
|
#include <pipewire/impl.h>
|
2021-06-18 17:51:24 +03:00
|
|
|
#include <pipewire/extensions/profiler.h>
|
2020-01-31 15:07:26 +01:00
|
|
|
|
2021-06-24 14:06:30 +10:00
|
|
|
/** \page page_module_profiler PipeWire Module: Profiler
|
2022-04-21 20:22:45 +02:00
|
|
|
*
|
|
|
|
|
* The profiler module provides a Profiler interface for applications that
|
|
|
|
|
* can be used to receive profiling information.
|
|
|
|
|
*
|
|
|
|
|
* Use tools like pw-top and pw-profiler to collect profiling information
|
|
|
|
|
* about the pipewire graph.
|
|
|
|
|
*
|
|
|
|
|
* ## Example configuration
|
|
|
|
|
*
|
|
|
|
|
* The module has no arguments and is usually added to the config file of
|
|
|
|
|
* the main pipewire daemon.
|
|
|
|
|
*
|
|
|
|
|
*\code{.unparsed}
|
|
|
|
|
* context.modules = [
|
|
|
|
|
* { name = libpipewire-module-profiler }
|
|
|
|
|
* ]
|
|
|
|
|
*\endcode
|
|
|
|
|
*
|
|
|
|
|
* ## See also
|
|
|
|
|
*
|
2022-04-22 15:18:24 +02:00
|
|
|
* - `pw-top`: a tool to display realtime profiler data
|
|
|
|
|
* - `pw-profiler`: a tool to collect and render profiler data
|
2021-06-24 14:06:30 +10:00
|
|
|
*/
|
|
|
|
|
|
2020-01-31 15:07:26 +01:00
|
|
|
#define NAME "profiler"
|
|
|
|
|
|
2021-09-16 15:35:10 +10:00
|
|
|
PW_LOG_TOPIC(mod_topic, "mod." NAME);
|
|
|
|
|
#define PW_LOG_TOPIC_DEFAULT mod_topic
|
|
|
|
|
|
2021-06-18 15:42:14 +02:00
|
|
|
#define TMP_BUFFER (16 * 1024)
|
2020-01-31 15:07:26 +01:00
|
|
|
#define MAX_BUFFER (8 * 1024 * 1024)
|
|
|
|
|
#define MIN_FLUSH (16 * 1024)
|
|
|
|
|
#define DEFAULT_IDLE 5
|
|
|
|
|
#define DEFAULT_INTERVAL 1
|
|
|
|
|
|
|
|
|
|
int pw_protocol_native_ext_profiler_init(struct pw_context *context);
|
|
|
|
|
|
|
|
|
|
#define pw_profiler_resource(r,m,v,...) \
|
|
|
|
|
pw_resource_call(r,struct pw_profiler_events,m,v,__VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
#define pw_profiler_resource_profile(r,...) \
|
|
|
|
|
pw_profiler_resource(r,profile,0,__VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
static const struct spa_dict_item module_props[] = {
|
|
|
|
|
{ PW_KEY_MODULE_AUTHOR, "Wim Taymans <wim.taymans@gmail.com>" },
|
|
|
|
|
{ PW_KEY_MODULE_DESCRIPTION, "Generate Profiling data" },
|
|
|
|
|
{ PW_KEY_MODULE_VERSION, PACKAGE_VERSION },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct impl {
|
|
|
|
|
struct pw_context *context;
|
|
|
|
|
struct pw_properties *properties;
|
|
|
|
|
|
2023-07-11 19:31:27 +02:00
|
|
|
struct pw_loop *main_loop;
|
2023-04-28 11:12:02 +02:00
|
|
|
struct pw_loop *data_loop;
|
|
|
|
|
|
2020-01-31 15:07:26 +01:00
|
|
|
struct spa_hook context_listener;
|
|
|
|
|
struct spa_hook module_listener;
|
|
|
|
|
|
|
|
|
|
struct pw_global *global;
|
2021-11-09 23:08:31 +01:00
|
|
|
struct spa_hook global_listener;
|
2020-01-31 15:07:26 +01:00
|
|
|
|
|
|
|
|
int64_t count;
|
|
|
|
|
uint32_t busy;
|
|
|
|
|
uint32_t empty;
|
|
|
|
|
struct spa_source *flush_timeout;
|
|
|
|
|
unsigned int flushing:1;
|
|
|
|
|
unsigned int listening:1;
|
|
|
|
|
|
|
|
|
|
struct spa_ringbuffer buffer;
|
2021-06-18 15:42:14 +02:00
|
|
|
uint8_t tmp[TMP_BUFFER];
|
2020-01-31 15:07:26 +01:00
|
|
|
uint8_t data[MAX_BUFFER];
|
2021-05-07 09:58:10 +02:00
|
|
|
|
|
|
|
|
uint8_t flush[MAX_BUFFER + sizeof(struct spa_pod_struct)];
|
2020-01-31 15:07:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct resource_data {
|
|
|
|
|
struct impl *impl;
|
|
|
|
|
|
|
|
|
|
struct pw_resource *resource;
|
|
|
|
|
struct spa_hook resource_listener;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void start_flush(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
struct timespec value, interval;
|
|
|
|
|
|
|
|
|
|
value.tv_sec = 0;
|
|
|
|
|
value.tv_nsec = 1;
|
|
|
|
|
interval.tv_sec = DEFAULT_INTERVAL;
|
|
|
|
|
interval.tv_nsec = 0;
|
2023-07-11 19:31:27 +02:00
|
|
|
pw_loop_update_timer(impl->main_loop,
|
2020-01-31 15:07:26 +01:00
|
|
|
impl->flush_timeout, &value, &interval, false);
|
|
|
|
|
impl->flushing = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void stop_flush(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
struct timespec value, interval;
|
|
|
|
|
|
|
|
|
|
if (!impl->flushing)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
value.tv_sec = 0;
|
|
|
|
|
value.tv_nsec = 0;
|
|
|
|
|
interval.tv_sec = 0;
|
|
|
|
|
interval.tv_nsec = 0;
|
2023-07-11 19:31:27 +02:00
|
|
|
pw_loop_update_timer(impl->main_loop,
|
2020-01-31 15:07:26 +01:00
|
|
|
impl->flush_timeout, &value, &interval, false);
|
|
|
|
|
impl->flushing = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void flush_timeout(void *data, uint64_t expirations)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
2021-05-07 09:58:10 +02:00
|
|
|
int32_t avail;
|
2020-01-31 15:07:26 +01:00
|
|
|
uint32_t idx;
|
|
|
|
|
struct spa_pod_struct *p;
|
|
|
|
|
struct pw_resource *resource;
|
|
|
|
|
|
|
|
|
|
avail = spa_ringbuffer_get_read_index(&impl->buffer, &idx);
|
|
|
|
|
|
2021-09-16 15:35:10 +10:00
|
|
|
pw_log_trace("%p avail %d", impl, avail);
|
2020-01-31 15:07:26 +01:00
|
|
|
|
|
|
|
|
if (avail <= 0) {
|
|
|
|
|
if (++impl->empty == DEFAULT_IDLE)
|
|
|
|
|
stop_flush(impl);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
impl->empty = 0;
|
|
|
|
|
|
2021-05-07 09:58:10 +02:00
|
|
|
p = (struct spa_pod_struct *)impl->flush;
|
2020-01-31 15:07:26 +01:00
|
|
|
*p = SPA_POD_INIT_Struct(avail);
|
|
|
|
|
|
|
|
|
|
spa_ringbuffer_read_data(&impl->buffer, impl->data, MAX_BUFFER,
|
|
|
|
|
idx % MAX_BUFFER,
|
2021-05-06 13:41:44 +10:00
|
|
|
SPA_PTROFF(p, sizeof(struct spa_pod_struct), void), avail);
|
2020-01-31 15:07:26 +01:00
|
|
|
spa_ringbuffer_read_update(&impl->buffer, idx + avail);
|
|
|
|
|
|
|
|
|
|
spa_list_for_each(resource, &impl->global->resource_list, link)
|
|
|
|
|
pw_profiler_resource_profile(resource, &p->pod);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-20 20:33:03 +01:00
|
|
|
static void context_do_profile(void *data, struct pw_impl_node *node)
|
2020-01-31 15:07:26 +01:00
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
|
|
|
|
struct spa_pod_builder b;
|
|
|
|
|
struct spa_pod_frame f[2];
|
2023-05-24 13:50:38 +02:00
|
|
|
uint32_t id = node->info.id;
|
2023-05-23 16:46:30 +02:00
|
|
|
struct pw_node_activation *a = node->rt.target.activation;
|
2020-01-31 15:07:26 +01:00
|
|
|
struct spa_io_position *pos = &a->position;
|
|
|
|
|
struct pw_node_target *t;
|
|
|
|
|
int32_t filled;
|
|
|
|
|
uint32_t idx, avail;
|
|
|
|
|
|
2021-05-07 10:12:16 +02:00
|
|
|
if (SPA_FLAG_IS_SET(pos->clock.flags, SPA_IO_CLOCK_FLAG_FREEWHEEL))
|
|
|
|
|
return;
|
|
|
|
|
|
2021-06-18 15:42:14 +02:00
|
|
|
spa_pod_builder_init(&b, impl->tmp, sizeof(impl->tmp));
|
2020-01-31 15:07:26 +01:00
|
|
|
spa_pod_builder_push_object(&b, &f[0],
|
|
|
|
|
SPA_TYPE_OBJECT_Profiler, 0);
|
|
|
|
|
|
2020-02-03 12:33:01 +01:00
|
|
|
spa_pod_builder_prop(&b, SPA_PROFILER_info, 0);
|
2020-01-31 15:07:26 +01:00
|
|
|
spa_pod_builder_add_struct(&b,
|
|
|
|
|
SPA_POD_Long(impl->count),
|
|
|
|
|
SPA_POD_Float(a->cpu_load[0]),
|
|
|
|
|
SPA_POD_Float(a->cpu_load[1]),
|
2020-12-20 12:24:26 +01:00
|
|
|
SPA_POD_Float(a->cpu_load[2]),
|
|
|
|
|
SPA_POD_Int(a->xrun_count));
|
2020-02-03 12:33:01 +01:00
|
|
|
|
|
|
|
|
spa_pod_builder_prop(&b, SPA_PROFILER_clock, 0);
|
|
|
|
|
spa_pod_builder_add_struct(&b,
|
|
|
|
|
SPA_POD_Int(pos->clock.flags),
|
|
|
|
|
SPA_POD_Int(pos->clock.id),
|
|
|
|
|
SPA_POD_String(pos->clock.name),
|
2020-01-31 15:07:26 +01:00
|
|
|
SPA_POD_Long(pos->clock.nsec),
|
|
|
|
|
SPA_POD_Fraction(&pos->clock.rate),
|
|
|
|
|
SPA_POD_Long(pos->clock.position),
|
|
|
|
|
SPA_POD_Long(pos->clock.duration),
|
|
|
|
|
SPA_POD_Long(pos->clock.delay),
|
|
|
|
|
SPA_POD_Double(pos->clock.rate_diff),
|
2020-02-03 12:33:01 +01:00
|
|
|
SPA_POD_Long(pos->clock.next_nsec));
|
|
|
|
|
|
2021-05-07 10:12:16 +02:00
|
|
|
|
2020-02-03 12:33:01 +01:00
|
|
|
spa_pod_builder_prop(&b, SPA_PROFILER_driverBlock, 0);
|
|
|
|
|
spa_pod_builder_add_struct(&b,
|
2023-05-24 13:50:38 +02:00
|
|
|
SPA_POD_Int(id),
|
2020-02-03 12:33:01 +01:00
|
|
|
SPA_POD_String(node->name),
|
2020-01-31 15:07:26 +01:00
|
|
|
SPA_POD_Long(a->prev_signal_time),
|
|
|
|
|
SPA_POD_Long(a->signal_time),
|
|
|
|
|
SPA_POD_Long(a->awake_time),
|
|
|
|
|
SPA_POD_Long(a->finish_time),
|
2020-12-20 12:24:26 +01:00
|
|
|
SPA_POD_Int(a->status),
|
2023-06-02 13:23:55 +02:00
|
|
|
SPA_POD_Fraction(&node->latency),
|
|
|
|
|
SPA_POD_Int(a->xrun_count));
|
2020-01-31 15:07:26 +01:00
|
|
|
|
|
|
|
|
spa_list_for_each(t, &node->rt.target_list, link) {
|
|
|
|
|
struct pw_impl_node *n = t->node;
|
|
|
|
|
struct pw_node_activation *na;
|
2022-02-11 12:24:16 +01:00
|
|
|
struct spa_fraction latency;
|
2020-01-31 15:07:26 +01:00
|
|
|
|
2023-06-09 17:06:48 +02:00
|
|
|
if (t->id == id || t->flags & PW_NODE_TARGET_PEER)
|
2020-01-31 15:07:26 +01:00
|
|
|
continue;
|
|
|
|
|
|
2023-05-24 13:50:38 +02:00
|
|
|
if (n != NULL) {
|
|
|
|
|
latency = n->latency;
|
|
|
|
|
if (n->force_quantum != 0)
|
|
|
|
|
latency.num = n->force_quantum;
|
|
|
|
|
if (n->force_rate != 0)
|
|
|
|
|
latency.denom = n->force_rate;
|
|
|
|
|
else if (n->rate.denom != 0)
|
|
|
|
|
latency.denom = n->rate.denom;
|
|
|
|
|
} else {
|
|
|
|
|
spa_zero(latency);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
na = t->activation;
|
2020-01-31 15:07:26 +01:00
|
|
|
spa_pod_builder_prop(&b, SPA_PROFILER_followerBlock, 0);
|
|
|
|
|
spa_pod_builder_add_struct(&b,
|
2023-05-24 13:50:38 +02:00
|
|
|
SPA_POD_Int(t->id),
|
|
|
|
|
SPA_POD_String(t->name),
|
2020-02-03 12:33:01 +01:00
|
|
|
SPA_POD_Long(a->signal_time),
|
2020-01-31 15:07:26 +01:00
|
|
|
SPA_POD_Long(na->signal_time),
|
|
|
|
|
SPA_POD_Long(na->awake_time),
|
|
|
|
|
SPA_POD_Long(na->finish_time),
|
2020-12-20 12:24:26 +01:00
|
|
|
SPA_POD_Int(na->status),
|
2023-06-02 13:23:55 +02:00
|
|
|
SPA_POD_Fraction(&latency),
|
|
|
|
|
SPA_POD_Int(na->xrun_count));
|
2020-01-31 15:07:26 +01:00
|
|
|
}
|
|
|
|
|
spa_pod_builder_pop(&b, &f[0]);
|
|
|
|
|
|
2021-06-18 15:42:14 +02:00
|
|
|
if (b.state.offset > sizeof(impl->tmp))
|
|
|
|
|
goto done;
|
|
|
|
|
|
2020-01-31 15:07:26 +01:00
|
|
|
filled = spa_ringbuffer_get_write_index(&impl->buffer, &idx);
|
|
|
|
|
if (filled < 0 || filled > MAX_BUFFER) {
|
2021-09-16 15:35:10 +10:00
|
|
|
pw_log_warn("%p: queue xrun %d", impl, filled);
|
2020-01-31 15:07:26 +01:00
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
avail = MAX_BUFFER - filled;
|
|
|
|
|
if (avail < b.state.offset) {
|
2021-09-16 15:35:10 +10:00
|
|
|
pw_log_warn("%p: queue full %d < %d", impl, avail, b.state.offset);
|
2020-01-31 15:07:26 +01:00
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
spa_ringbuffer_write_data(&impl->buffer,
|
|
|
|
|
impl->data, MAX_BUFFER,
|
|
|
|
|
idx % MAX_BUFFER,
|
|
|
|
|
b.data, b.state.offset);
|
|
|
|
|
spa_ringbuffer_write_update(&impl->buffer, idx + b.state.offset);
|
|
|
|
|
|
|
|
|
|
if (!impl->flushing || filled + b.state.offset > MIN_FLUSH)
|
|
|
|
|
start_flush(impl);
|
|
|
|
|
done:
|
|
|
|
|
impl->count++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_context_driver_events context_events = {
|
|
|
|
|
PW_VERSION_CONTEXT_DRIVER_EVENTS,
|
2020-12-20 20:33:03 +01:00
|
|
|
.incomplete = context_do_profile,
|
|
|
|
|
.complete = context_do_profile,
|
2020-01-31 15:07:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void stop_listener(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
if (impl->listening) {
|
2023-05-21 15:36:00 +02:00
|
|
|
pw_context_driver_remove_listener(impl->context,
|
|
|
|
|
&impl->context_listener);
|
2020-01-31 15:07:26 +01:00
|
|
|
impl->listening = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void resource_destroy(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
|
|
|
|
if (--impl->busy == 0) {
|
2021-09-16 15:35:10 +10:00
|
|
|
pw_log_info("%p: stopping profiler", impl);
|
2020-01-31 15:07:26 +01:00
|
|
|
stop_listener(impl);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_resource_events resource_events = {
|
|
|
|
|
PW_VERSION_RESOURCE_EVENTS,
|
|
|
|
|
.destroy = resource_destroy,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2021-09-27 15:09:32 +02:00
|
|
|
global_bind(void *object, struct pw_impl_client *client, uint32_t permissions,
|
2020-01-31 15:07:26 +01:00
|
|
|
uint32_t version, uint32_t id)
|
|
|
|
|
{
|
2021-09-27 15:09:32 +02:00
|
|
|
struct impl *impl = object;
|
2020-01-31 15:07:26 +01:00
|
|
|
struct pw_global *global = impl->global;
|
|
|
|
|
struct pw_resource *resource;
|
|
|
|
|
struct resource_data *data;
|
|
|
|
|
|
|
|
|
|
resource = pw_resource_new(client, id, permissions,
|
|
|
|
|
PW_TYPE_INTERFACE_Profiler, version, sizeof(*data));
|
|
|
|
|
if (resource == NULL)
|
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
|
|
data = pw_resource_get_user_data(resource);
|
|
|
|
|
data->impl = impl;
|
|
|
|
|
data->resource = resource;
|
|
|
|
|
pw_global_add_resource(global, resource);
|
|
|
|
|
|
|
|
|
|
pw_resource_add_listener(resource, &data->resource_listener,
|
|
|
|
|
&resource_events, impl);
|
|
|
|
|
|
|
|
|
|
if (++impl->busy == 1) {
|
2021-09-16 15:35:10 +10:00
|
|
|
pw_log_info("%p: starting profiler", impl);
|
2023-05-21 15:36:00 +02:00
|
|
|
pw_context_driver_add_listener(impl->context,
|
|
|
|
|
&impl->context_listener,
|
|
|
|
|
&context_events, impl);
|
2020-01-31 15:07:26 +01:00
|
|
|
impl->listening = true;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void module_destroy(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
|
|
|
|
|
2021-11-09 23:08:31 +01:00
|
|
|
if (impl->global != NULL)
|
|
|
|
|
pw_global_destroy(impl->global);
|
2020-01-31 15:07:26 +01:00
|
|
|
|
|
|
|
|
spa_hook_remove(&impl->module_listener);
|
|
|
|
|
|
2021-06-01 11:21:17 +10:00
|
|
|
pw_properties_free(impl->properties);
|
2020-01-31 15:07:26 +01:00
|
|
|
|
2023-07-11 19:31:27 +02:00
|
|
|
pw_loop_destroy_source(impl->main_loop, impl->flush_timeout);
|
2021-11-09 23:44:27 +01:00
|
|
|
|
2020-01-31 15:07:26 +01:00
|
|
|
free(impl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_impl_module_events module_events = {
|
|
|
|
|
PW_VERSION_IMPL_MODULE_EVENTS,
|
|
|
|
|
.destroy = module_destroy,
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-09 23:08:31 +01:00
|
|
|
static void global_destroy(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct impl *impl = data;
|
|
|
|
|
|
|
|
|
|
stop_listener(impl);
|
|
|
|
|
stop_flush(impl);
|
|
|
|
|
|
|
|
|
|
spa_hook_remove(&impl->global_listener);
|
|
|
|
|
impl->global = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_global_events global_events = {
|
|
|
|
|
PW_VERSION_GLOBAL_EVENTS,
|
|
|
|
|
.destroy = global_destroy,
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-31 15:07:26 +01:00
|
|
|
SPA_EXPORT
|
|
|
|
|
int pipewire__module_init(struct pw_impl_module *module, const char *args)
|
|
|
|
|
{
|
|
|
|
|
struct pw_context *context = pw_impl_module_get_context(module);
|
|
|
|
|
struct pw_properties *props;
|
|
|
|
|
struct impl *impl;
|
2022-01-15 17:21:22 +01:00
|
|
|
static const char * const keys[] = {
|
|
|
|
|
PW_KEY_OBJECT_SERIAL,
|
|
|
|
|
NULL
|
|
|
|
|
};
|
2020-01-31 15:07:26 +01:00
|
|
|
|
2021-09-16 15:35:10 +10:00
|
|
|
PW_LOG_TOPIC_INIT(mod_topic);
|
|
|
|
|
|
2020-01-31 15:07:26 +01:00
|
|
|
impl = calloc(1, sizeof(struct impl));
|
|
|
|
|
if (impl == NULL)
|
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
|
|
pw_protocol_native_ext_profiler_init(context);
|
|
|
|
|
|
|
|
|
|
pw_log_debug("module %p: new %s", impl, args);
|
|
|
|
|
|
|
|
|
|
if (args)
|
|
|
|
|
props = pw_properties_new_string(args);
|
|
|
|
|
else
|
|
|
|
|
props = pw_properties_new(NULL, NULL);
|
|
|
|
|
|
|
|
|
|
impl->context = context;
|
|
|
|
|
impl->properties = props;
|
2023-07-11 19:31:27 +02:00
|
|
|
impl->main_loop = pw_context_get_main_loop(impl->context);
|
|
|
|
|
impl->data_loop = pw_data_loop_get_loop(pw_context_get_data_loop(impl->context));
|
2020-01-31 15:07:26 +01:00
|
|
|
|
|
|
|
|
spa_ringbuffer_init(&impl->buffer);
|
|
|
|
|
|
|
|
|
|
impl->global = pw_global_new(context,
|
|
|
|
|
PW_TYPE_INTERFACE_Profiler,
|
|
|
|
|
PW_VERSION_PROFILER,
|
|
|
|
|
pw_properties_copy(props),
|
|
|
|
|
global_bind, impl);
|
|
|
|
|
if (impl->global == NULL) {
|
|
|
|
|
free(impl);
|
|
|
|
|
return -errno;
|
|
|
|
|
}
|
2023-07-11 19:31:27 +02:00
|
|
|
pw_properties_setf(impl->properties, PW_KEY_OBJECT_ID, "%d", pw_global_get_id(impl->global));
|
2022-01-15 17:21:22 +01:00
|
|
|
pw_properties_setf(impl->properties, PW_KEY_OBJECT_SERIAL, "%"PRIu64,
|
|
|
|
|
pw_global_get_serial(impl->global));
|
2020-01-31 15:07:26 +01:00
|
|
|
|
2023-07-11 19:31:27 +02:00
|
|
|
impl->flush_timeout = pw_loop_add_timer(impl->main_loop, flush_timeout, impl);
|
2020-01-31 15:07:26 +01:00
|
|
|
|
2022-01-15 17:21:22 +01:00
|
|
|
pw_global_update_keys(impl->global, &impl->properties->dict, keys);
|
|
|
|
|
|
2020-01-31 15:07:26 +01:00
|
|
|
pw_impl_module_add_listener(module, &impl->module_listener, &module_events, impl);
|
|
|
|
|
|
|
|
|
|
pw_impl_module_update_properties(module, &SPA_DICT_INIT_ARRAY(module_props));
|
|
|
|
|
|
|
|
|
|
pw_global_register(impl->global);
|
|
|
|
|
|
2021-11-09 23:08:31 +01:00
|
|
|
pw_global_add_listener(impl->global, &impl->global_listener, &global_events, impl);
|
|
|
|
|
|
2020-01-31 15:07:26 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|