diff options
author | Kirill Primak <vyivel@posteo.net> | 2021-08-09 17:57:19 +0300 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-08-10 19:15:48 +0200 |
commit | a6a80850b729eefaafac325256023ee92b21be34 (patch) | |
tree | 14d4f66a8fd3e06cc95668705b83763f5bb97153 /util/addon.c | |
parent | 604674dc54a3b2cb4b73de267c8c2bcae259c4b6 (diff) |
util: add wlr_addon
Diffstat (limited to 'util/addon.c')
-rw-r--r-- | util/addon.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/util/addon.c b/util/addon.c new file mode 100644 index 00000000..7de54a73 --- /dev/null +++ b/util/addon.c @@ -0,0 +1,49 @@ +#include <assert.h> +#include <stdlib.h> +#include <wayland-server-core.h> + +#include "wlr/util/addon.h" + +void wlr_addon_set_init(struct wlr_addon_set *set) { + wl_list_init(&set->addons); +} + +void wlr_addon_set_finish(struct wlr_addon_set *set) { + struct wlr_addon *addon, *tmp; + wl_list_for_each_safe(addon, tmp, &set->addons, link) { + wlr_addon_finish(addon); + addon->impl->destroy(addon); + } +} + +void wlr_addon_init(struct wlr_addon *addon, struct wlr_addon_set *set, + const void *owner, const struct wlr_addon_interface *impl) { + assert(owner); + struct wlr_addon *iter; + wl_list_for_each(iter, &set->addons, link) { + if (iter->owner == addon->owner) { + assert(0 && "Can't have two addons with the same owner"); + } + } + wl_list_insert(&set->addons, &addon->link); + addon->owner = owner; + addon->impl = impl; +} + +void wlr_addon_finish(struct wlr_addon *addon) { + if (addon->owner) { + addon->owner = NULL; + wl_list_remove(&addon->link); + } +} + +struct wlr_addon *wlr_addon_find_by_owner(struct wlr_addon_set *set, + const void *owner) { + struct wlr_addon *addon; + wl_list_for_each(addon, &set->addons, link) { + if (addon->owner == owner) { + return addon; + } + } + return NULL; +} |