pipewire/src/modules/module-protocol-pulse/modules/module-x11-bell.c
Barnabás Pőcze c9f632da9f pulse-server: serve module properties from static list
None of the modules really need a dynamic property list,
so serve the properties from a static list.
2022-06-02 15:17:45 +02:00

153 lines
4.2 KiB
C

/* PipeWire
*
* Copyright © 2022 Wim Taymans <wim.taymans@gmail.com>
*
* 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.
*/
#include <pipewire/pipewire.h>
#include "../module.h"
#define NAME "x11-bell"
PW_LOG_TOPIC_STATIC(mod_topic, "mod." NAME);
#define PW_LOG_TOPIC_DEFAULT mod_topic
struct module_x11_bell_data {
struct module *module;
struct pw_impl_module *mod;
struct spa_hook mod_listener;
};
static void module_destroy(void *data)
{
struct module_x11_bell_data *d = data;
spa_hook_remove(&d->mod_listener);
d->mod = NULL;
module_schedule_unload(d->module);
}
static const struct pw_impl_module_events module_events = {
PW_VERSION_IMPL_MODULE_EVENTS,
.destroy = module_destroy
};
static int module_x11_bell_load(struct client *client, struct module *module)
{
struct module_x11_bell_data *data = module->user_data;
FILE *f;
char *args;
const char *str;
size_t size;
if ((f = open_memstream(&args, &size)) == NULL)
return -errno;
fprintf(f, "{");
if ((str = pw_properties_get(module->props, "sink")) != NULL)
fprintf(f, " sink.name = \"%s\"", str);
if ((str = pw_properties_get(module->props, "sample")) != NULL)
fprintf(f, " sample.name = \"%s\"", str);
if ((str = pw_properties_get(module->props, "display")) != NULL)
fprintf(f, " x11.display = \"%s\"", str);
if ((str = pw_properties_get(module->props, "xauthority")) != NULL)
fprintf(f, " x11.xauthority = \"%s\"", str);
fprintf(f, " }");
fclose(f);
data->mod = pw_context_load_module(module->impl->context,
"libpipewire-module-x11-bell",
args, NULL);
free(args);
if (data->mod == NULL)
return -errno;
pw_impl_module_add_listener(data->mod,
&data->mod_listener,
&module_events, data);
return 0;
}
static int module_x11_bell_unload(struct module *module)
{
struct module_x11_bell_data *d = module->user_data;
if (d->mod) {
spa_hook_remove(&d->mod_listener);
pw_impl_module_destroy(d->mod);
d->mod = NULL;
}
return 0;
}
static const struct spa_dict_item module_x11_bell_info[] = {
{ PW_KEY_MODULE_AUTHOR, "Wim Taymans <wim.taymans@gmail.com>" },
{ PW_KEY_MODULE_DESCRIPTION, "X11 bell interceptor" },
{ PW_KEY_MODULE_USAGE, "sink=<sink to connect to> "
"sample=<the sample to play> "
"display=<X11 display> "
"xauthority=<X11 Authority>" },
{ PW_KEY_MODULE_VERSION, PACKAGE_VERSION },
};
struct module *create_module_x11_bell(struct impl *impl, const char *argument)
{
struct pw_properties *props = NULL;
struct module_x11_bell_data *data;
struct module *module;
int res;
PW_LOG_TOPIC_INIT(mod_topic);
props = pw_properties_new_dict(&SPA_DICT_INIT_ARRAY(module_x11_bell_info));
if (props == NULL) {
res = -EINVAL;
goto out;
}
if (argument)
module_args_add_props(props, argument);
module = module_new(impl, sizeof(struct module_x11_bell_data));
if (module == NULL) {
res = -errno;
goto out;
}
module->props = props;
data = module->user_data;
data->module = module;
return module;
out:
pw_properties_free(props);
errno = -res;
return NULL;
}
DEFINE_MODULE_INFO(module_x11_bell) = {
.name = "module-x11-bell",
.create = create_module_x11_bell,
.load = module_x11_bell_load,
.unload = module_x11_bell_unload,
.properties = &SPA_DICT_INIT_ARRAY(module_x11_bell_info),
};