pipewire/src/modules/zeroconf-utils/avahi-poll.c
2026-02-26 17:09:45 +01:00

204 lines
4.2 KiB
C

/* PipeWire */
/* SPDX-FileCopyrightText: Copyright © 2021 Wim Taymans */
/* SPDX-License-Identifier: MIT */
#include <pipewire/pipewire.h>
#include "avahi-poll.h"
struct impl {
AvahiPoll api;
struct pw_context *context;
struct pw_loop *loop;
struct pw_timer_queue *timer_queue;
};
struct AvahiWatch {
struct impl *impl;
struct spa_source *source;
AvahiWatchEvent events;
AvahiWatchCallback callback;
void *userdata;
unsigned int dispatching;
};
struct AvahiTimeout {
struct impl *impl;
struct pw_timer timer;
AvahiTimeoutCallback callback;
void *userdata;
};
static AvahiWatchEvent from_pw_events(uint32_t mask)
{
return (mask & SPA_IO_IN ? AVAHI_WATCH_IN : 0) |
(mask & SPA_IO_OUT ? AVAHI_WATCH_OUT : 0) |
(mask & SPA_IO_ERR ? AVAHI_WATCH_ERR : 0) |
(mask & SPA_IO_HUP ? AVAHI_WATCH_HUP : 0);
}
static uint32_t to_pw_events(AvahiWatchEvent e) {
return (e & AVAHI_WATCH_IN ? SPA_IO_IN : 0) |
(e & AVAHI_WATCH_OUT ? SPA_IO_OUT : 0) |
(e & AVAHI_WATCH_ERR ? SPA_IO_ERR : 0) |
(e & AVAHI_WATCH_HUP ? SPA_IO_HUP : 0);
}
static void watch_callback(void *data, int fd, uint32_t mask)
{
AvahiWatch *w = data;
w->dispatching += 1;
w->events = from_pw_events(mask);
w->callback(w, fd, w->events, w->userdata);
w->events = 0;
if (--w->dispatching == 0 && !w->source)
free(w);
}
static AvahiWatch* watch_new(const AvahiPoll *api, int fd, AvahiWatchEvent event,
AvahiWatchCallback callback, void *userdata)
{
struct impl *impl = api->userdata;
AvahiWatch *w;
w = calloc(1, sizeof(*w));
if (w == NULL)
return NULL;
w->impl = impl;
w->events = 0;
w->callback = callback;
w->userdata = userdata;
w->source = pw_loop_add_io(impl->loop, fd, to_pw_events(event),
false, watch_callback, w);
if (w->source == NULL) {
free(w);
return NULL;
}
return w;
}
static void watch_update(AvahiWatch *w, AvahiWatchEvent event)
{
struct impl *impl = w->impl;
pw_loop_update_io(impl->loop, w->source, to_pw_events(event));
}
static AvahiWatchEvent watch_get_events(AvahiWatch *w)
{
return w->events;
}
static void watch_free(AvahiWatch *w)
{
pw_loop_destroy_source(w->impl->loop, w->source);
w->source = NULL;
if (!w->dispatching)
free(w);
}
static void timeout_callback(void *data)
{
AvahiTimeout *w = data;
w->callback(w, w->userdata);
}
static int schedule_timeout(AvahiTimeout *t, const struct timeval *tv)
{
struct timeval now;
int64_t timeout_ns;
if (tv == NULL)
return 0;
/* Get current REALTIME (same clock domain as Avahi) */
if (gettimeofday(&now, NULL) < 0)
return -errno;
/* Calculate relative timeout: target - now */
timeout_ns = ((int64_t)tv->tv_sec - now.tv_sec) * SPA_NSEC_PER_SEC +
((int64_t)tv->tv_usec - now.tv_usec) * 1000UL;
/* Ensure minimum timeout */
if (timeout_ns <= 0)
timeout_ns = 1;
return pw_timer_queue_add(t->impl->timer_queue, &t->timer, NULL,
timeout_ns, timeout_callback, t);
}
static AvahiTimeout* timeout_new(const AvahiPoll *api, const struct timeval *tv,
AvahiTimeoutCallback callback, void *userdata)
{
struct impl *impl = api->userdata;
AvahiTimeout *w;
w = calloc(1, sizeof(*w));
if (w == NULL)
return NULL;
w->impl = impl;
w->callback = callback;
w->userdata = userdata;
if (schedule_timeout(w, tv) < 0) {
free(w);
return NULL;
}
return w;
}
static void timeout_update(AvahiTimeout *t, const struct timeval *tv)
{
/* Cancel the existing timer */
pw_timer_queue_cancel(&t->timer);
/* Schedule new timeout if provided */
schedule_timeout(t, tv);
}
static void timeout_free(AvahiTimeout *t)
{
pw_timer_queue_cancel(&t->timer);
free(t);
}
static const AvahiPoll avahi_poll_api = {
.watch_new = watch_new,
.watch_update = watch_update,
.watch_get_events = watch_get_events,
.watch_free = watch_free,
.timeout_new = timeout_new,
.timeout_update = timeout_update,
.timeout_free = timeout_free,
};
AvahiPoll* pw_avahi_poll_new(struct pw_context *context)
{
struct impl *impl;
impl = calloc(1, sizeof(*impl));
if (impl == NULL)
return NULL;
impl->context = context;
impl->loop = pw_context_get_main_loop(context);
impl->timer_queue = pw_context_get_timer_queue(context);
impl->api = avahi_poll_api;
impl->api.userdata = impl;
return &impl->api;
}
void pw_avahi_poll_free(AvahiPoll *p)
{
struct impl *impl = SPA_CONTAINER_OF(p, struct impl, api);
free(impl);
}