2021-04-15 15:53:05 -04:00
|
|
|
/* PipeWire
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2020 Georges Basile Stavracas Neto
|
|
|
|
|
* Copyright © 2021 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef PIPEWIRE_PULSE_MODULE_H
|
|
|
|
|
#define PIPEWIRE_PULSE_MODULE_H
|
|
|
|
|
|
|
|
|
|
#include <spa/param/audio/raw.h>
|
2021-06-19 00:09:09 +02:00
|
|
|
#include <spa/utils/hook.h>
|
2021-04-15 15:53:05 -04:00
|
|
|
|
2021-06-18 23:36:35 +02:00
|
|
|
#include "client.h"
|
2021-04-15 15:53:05 -04:00
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
|
|
struct module;
|
2021-06-19 00:09:09 +02:00
|
|
|
struct pw_properties;
|
2021-04-15 15:53:05 -04:00
|
|
|
|
|
|
|
|
struct module_info {
|
|
|
|
|
const char *name;
|
|
|
|
|
struct module *(*create) (struct impl *impl, const char *args);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct module_events {
|
|
|
|
|
#define VERSION_MODULE_EVENTS 0
|
|
|
|
|
uint32_t version;
|
|
|
|
|
|
2021-06-10 18:37:48 +02:00
|
|
|
void (*loaded) (void *data, int result);
|
2021-11-12 18:54:17 +01:00
|
|
|
void (*destroy) (void *data);
|
2021-04-15 15:53:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct module_methods {
|
|
|
|
|
#define VERSION_MODULE_METHODS 0
|
|
|
|
|
uint32_t version;
|
|
|
|
|
|
|
|
|
|
int (*load) (struct client *client, struct module *module);
|
|
|
|
|
int (*unload) (struct client *client, struct module *module);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct module {
|
2022-01-17 11:28:40 +01:00
|
|
|
uint32_t index;
|
2021-04-15 15:53:05 -04:00
|
|
|
const char *name;
|
|
|
|
|
const char *args;
|
|
|
|
|
struct pw_properties *props;
|
|
|
|
|
struct impl *impl;
|
|
|
|
|
const struct module_methods *methods;
|
2021-06-10 18:31:50 +02:00
|
|
|
struct spa_hook_list listener_list;
|
2021-04-15 15:53:05 -04:00
|
|
|
void *user_data;
|
2021-06-06 15:49:58 +02:00
|
|
|
unsigned int loaded:1;
|
2021-12-28 19:21:01 +01:00
|
|
|
unsigned int unloading:1;
|
2021-04-15 15:53:05 -04:00
|
|
|
};
|
|
|
|
|
|
2021-06-19 00:09:09 +02:00
|
|
|
#define module_emit_loaded(m,r) spa_hook_list_call(&m->listener_list, struct module_events, loaded, 0, r)
|
2021-11-12 18:54:17 +01:00
|
|
|
#define module_emit_destroy(m) spa_hook_list_call(&(m)->listener_list, struct module_events, destroy, 0)
|
2021-06-19 00:09:09 +02:00
|
|
|
|
|
|
|
|
struct module *module_create(struct client *client, const char *name, const char *args);
|
|
|
|
|
void module_free(struct module *module);
|
2021-04-15 15:53:05 -04:00
|
|
|
struct module *module_new(struct impl *impl, const struct module_methods *methods, size_t user_data);
|
2021-06-19 00:09:09 +02:00
|
|
|
int module_load(struct client *client, struct module *module);
|
|
|
|
|
int module_unload(struct client *client, struct module *module);
|
2021-04-21 13:11:16 +02:00
|
|
|
void module_schedule_unload(struct module *module);
|
2021-04-15 15:53:05 -04:00
|
|
|
|
2021-06-19 00:09:09 +02:00
|
|
|
void module_add_listener(struct module *module,
|
|
|
|
|
struct spa_hook *listener,
|
|
|
|
|
const struct module_events *events, void *data);
|
|
|
|
|
|
2021-04-15 15:53:05 -04:00
|
|
|
void module_args_add_props(struct pw_properties *props, const char *str);
|
|
|
|
|
int module_args_to_audioinfo(struct impl *impl, struct pw_properties *props, struct spa_audio_info_raw *info);
|
2021-09-21 17:37:39 +02:00
|
|
|
bool module_args_parse_bool(const char *str);
|
2021-04-15 15:53:05 -04:00
|
|
|
|
|
|
|
|
#endif
|