#include <stdio.h>
#include <errno.h>
#include <math.h>
#include <time.h>
 
#include "config.h"
 
 
 
#define NAME "bluez-session"
 
struct impl;
struct object;
 
struct node {
        struct impl *impl;
        struct object *object;
        uint32_t id;
 
};
 
struct object {
        struct impl *impl;
        uint32_t id;
 
 
};
 
struct impl {
        struct timespec now;
 
 
 
 
};
 
static struct node *find_node(struct object *obj, uint32_t id)
{
        struct node *node;
 
                if (node->id == id)
                        return node;
        }
        return NULL;
}
 
static void update_node(struct object *obj, struct node *node,
{
}
 
static struct node *create_node(struct object *obj, uint32_t id,
{
        struct node *node;
        struct impl *impl = obj->impl;
        int res;
        void *iface;
 
 
                return NULL;
 
                        info->props);
        if (handle == NULL) {
                goto exit;
        }
 
                goto unload_handle;
        }
 
        node = calloc(1, sizeof(*node));
        if (node == NULL)
                goto unload_handle;
 
        node->impl = impl;
        node->object = obj;
        node->id = id;
        node->handle = handle;
        node->node = iface;
                        info->
type, info->props, node->node, 0);
 
        if (node->proxy == NULL)
                goto clean_node;
 
 
        update_node(obj, node, info);
 
        return node;
 
clean_node:
        free(node);
unload_handle:
exit:
        return NULL;
}
 
static void remove_node(struct object *obj, struct node *node)
{
        free(node->handle);
        free(node);
}
 
static void device_object_info(void *data, uint32_t id,
{
        struct object *obj = data;
        struct node *node;
 
        node = find_node(obj, id);
 
        if (info == NULL) {
                if (node == NULL) {
                        return;
                }
                remove_node(obj, node);
        } else if (node == NULL) {
                create_node(obj, id, info);
        } else {
                update_node(obj, node, info);
        }
 
}
 
        .object_info = device_object_info
};
 
static struct object *find_object(struct impl *impl, uint32_t id)
{
        struct object *obj;
 
                if (obj->id == id)
                        return obj;
        }
        return NULL;
}
 
static void update_object(struct impl *impl, struct object *obj,
{
}
 
static struct object *create_object(struct impl *impl, uint32_t id,
{
        struct object *obj;
        int res;
        void *iface;
 
 
                return NULL;
 
                        info->props);
        if (handle == NULL) {
                goto exit;
        }
 
                goto unload_handle;
        }
 
        obj = calloc(1, sizeof(*obj));
        if (obj == NULL)
                goto unload_handle;
 
        obj->impl = impl;
        obj->id = id;
        obj->handle = handle;
        obj->device = iface;
                        info->
type, info->props, obj->device, 0);
 
        if (obj->proxy == NULL)
                goto clean_object;
 
 
                        &obj->listener, &device_events, obj);
 
 
        update_object(impl, obj, info);
 
        return obj;
 
clean_object:
        free(obj);
unload_handle:
exit:
        return NULL;
}
 
static void remove_object(struct impl *impl, struct object *obj)
{
        free(obj->handle);
        free(obj);
}
 
static void dbus_device_object_info(void *data, uint32_t id,
{
        struct impl *impl = data;
        struct object *obj;
 
        obj = find_object(impl, id);
 
        if (info == NULL) {
                if (obj == NULL)
                        return;
                remove_object(impl, obj);
        } else if (obj == NULL) {
                if (create_object(impl, id, info) == NULL)
                        return;
        } else {
                update_object(impl, obj, info);
        }
}
 
{
        .object_info = dbus_device_object_info,
};
 
static int start_monitor(struct impl *impl)
{
        int res;
        void *iface;
 
        if (handle == NULL) {
                res = -errno;
                goto out;
        }
 
                goto out_unload;
        }
 
        impl->handle = handle;
        impl->device = iface;
 
 
        return 0;
 
      out_unload:
      out:
        return res;
}
 
static void on_core_error(void *data, uint32_t id, int seq, int res, const char *message)
{
        struct impl *impl = data;
 
 
}
 
        .error = on_core_error,
};
 
int main(int argc, char *argv[])
{
        struct impl impl = { 0, };
        int res;
 
 
 
        clock_gettime(CLOCK_MONOTONIC, &impl.now);
 
 
        if (impl.core == NULL) {
                return -1;
        }
 
                        &impl.core_listener,
                        &core_events, &impl);
 
        if ((res = start_monitor(&impl)) < 0) {
                return -1;
        }
 
 
 
        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:398
 
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:187
 
struct spa_handle * pw_context_load_spa_handle(struct pw_context *context, const char *factory_name, const struct spa_dict *info)
Definition: context.c:1458
 
#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
 
#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
 
#define pw_log_warn(...)
Definition: src/pipewire/log.h:163
 
#define pw_log_debug(...)
Definition: src/pipewire/log.h:165
 
#define pw_log_error(...)
Definition: src/pipewire/log.h:162
 
struct pw_main_loop * pw_main_loop_new(const struct spa_dict *props)
Create a new main loop.
Definition: main-loop.c:80
 
int pw_main_loop_quit(struct pw_main_loop *loop)
Quit a main loop.
Definition: main-loop.c:125
 
void pw_main_loop_destroy(struct pw_main_loop *loop)
Destroy a loop.
Definition: main-loop.c:90
 
int pw_main_loop_run(struct pw_main_loop *loop)
Run a main loop.
Definition: main-loop.c:139
 
struct pw_loop * pw_main_loop_get_loop(struct pw_main_loop *loop)
Get the loop implementation.
Definition: main-loop.c:113
 
void pw_init(int *argc, char **argv[])
Initialize PipeWire.
Definition: pipewire.c:578
 
int pw_unload_spa_handle(struct spa_handle *handle)
Definition: pipewire.c:334
 
void pw_proxy_destroy(struct pw_proxy *proxy)
destroy a proxy
Definition: proxy.c:231
 
static int spa_debug_dict(int indent, const struct spa_dict *dict)
Definition: debug/dict.h:55
 
#define SPA_TYPE_INTERFACE_Device
Definition: spa/include/spa/monitor/device.h:56
 
#define SPA_VERSION_DEVICE_EVENTS
version of the structure
Definition: spa/include/spa/monitor/device.h:142
 
#define spa_device_add_listener(d,...)
Set events to receive asynchronous notifications from the device.
Definition: spa/include/spa/monitor/device.h:282
 
#define spa_handle_get_interface(h,...)
Definition: plugin.h:80
 
static void spa_hook_remove(struct spa_hook *hook)
Remove a hook.
Definition: hook.h:392
 
static void spa_list_init(struct spa_list *list)
Definition: list.h:55
 
static void spa_list_remove(struct spa_list *elem)
Definition: list.h:85
 
#define spa_list_for_each(pos, head, member)
Definition: list.h:127
 
#define spa_list_append(list, item)
Definition: list.h:97
 
#define SPA_NAME_API_BLUEZ5_ENUM_DBUS
keys for bluez5 factory names
Definition: names.h:150
 
#define SPA_TYPE_INTERFACE_Node
Definition: spa/include/spa/node/node.h:57
 
#define spa_strerror(err)
Definition: result.h:69
 
static bool spa_streq(const char *s1, const char *s2)
Definition: string.h:61
 
Core events.
Definition: core.h:141
 
spa_device_events:
Definition: spa/include/spa/monitor/device.h:139
 
Information about a device object.
Definition: spa/include/spa/monitor/device.h:93
 
const char * type
the object type managed by this device
Definition: spa/include/spa/monitor/device.h:98
 
const char * factory_name
a factory name that implements the object
Definition: spa/include/spa/monitor/device.h:99
 
Definition: spa/include/spa/monitor/device.h:60
 
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:351
 
Definition: spa/include/spa/node/node.h:61