This adds the types/wlr_idle_inhibit_v1 implementation.master
parent
088028c570
commit
50d573b2ca
@ -0,0 +1,27 @@
|
||||
#ifndef WLR_TYPES_WLR_IDLE_INHIBIT_V1_H
|
||||
#define WLR_TYPES_WLR_IDLE_INHIBIT_V1_H
|
||||
|
||||
#include <wayland-server.h>
|
||||
|
||||
struct wlr_idle_inhibit_v1 {
|
||||
struct wl_list clients;
|
||||
struct wl_global *global;
|
||||
|
||||
struct wl_listener display_destroy;
|
||||
struct wl_signal new_inhibitor;
|
||||
};
|
||||
|
||||
struct wlr_idle_inhibit_inhibitor_v1 {
|
||||
struct wlr_surface *surface;
|
||||
struct wl_resource *resource;
|
||||
struct wl_listener surface_destroy;
|
||||
|
||||
struct wl_list link; // wlr_idle_inhibit_manager::inhibitors;
|
||||
|
||||
struct wl_signal destroy;
|
||||
};
|
||||
|
||||
struct wlr_idle_inhibit_v1 *wlr_idle_inhibit_v1_create(struct wl_display *display);
|
||||
void wlr_idle_inhibit_v1_destroy(struct wlr_idle_inhibit_v1 *idle_inhibit);
|
||||
|
||||
#endif
|
@ -0,0 +1,191 @@
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include <wlr/types/wlr_surface.h>
|
||||
#include <wlr/types/wlr_idle_inhibit_v1.h>
|
||||
#include "wayland-util.h"
|
||||
#include "wayland-server.h"
|
||||
#include "idle-inhibit-unstable-v1-protocol.h"
|
||||
|
||||
struct wlr_idle_inhibit_manager {
|
||||
struct wlr_idle_inhibit_v1 *wlr_idle_inhibit;
|
||||
struct wl_resource *resource;
|
||||
|
||||
struct wl_list link; // wlr_idle_inhibit_v1::clients
|
||||
|
||||
struct wl_list inhibitors;
|
||||
};
|
||||
|
||||
static void idle_inhibit_inhibitor_destroy(struct wl_resource *resource) {
|
||||
struct wlr_idle_inhibit_inhibitor_v1 *inhibitor = wl_resource_get_user_data(resource);
|
||||
assert(inhibitor);
|
||||
|
||||
wl_signal_emit(&inhibitor->destroy, inhibitor->surface);
|
||||
|
||||
wl_list_remove(&inhibitor->link);
|
||||
wl_list_remove(&inhibitor->surface_destroy.link);
|
||||
free(inhibitor);
|
||||
}
|
||||
|
||||
static void idle_inhibit_inhibitor_handle_surface_destroy(struct wl_listener *listener,
|
||||
void *data) {
|
||||
assert(listener);
|
||||
struct wlr_idle_inhibit_inhibitor_v1 *inhibitor =
|
||||
wl_container_of(listener, inhibitor, surface_destroy);
|
||||
|
||||
wl_resource_destroy(inhibitor->resource);
|
||||
}
|
||||
|
||||
static void idle_inhibit_inhibitor_v1_handle_destroy(struct wl_client *client,
|
||||
struct wl_resource *manager_resource) {
|
||||
wl_resource_destroy(manager_resource);
|
||||
}
|
||||
|
||||
static struct zwp_idle_inhibitor_v1_interface idle_inhibitor_impl = {
|
||||
.destroy = idle_inhibit_inhibitor_v1_handle_destroy,
|
||||
};
|
||||
|
||||
static void wlr_create_inhibitor(struct wl_client *client,
|
||||
struct wl_resource *resource, uint32_t id,
|
||||
struct wl_resource *surface_resource) {
|
||||
struct wlr_surface *surface = wl_resource_get_user_data(surface_resource);
|
||||
struct wlr_idle_inhibit_manager *manager = wl_resource_get_user_data(resource);
|
||||
assert(surface && manager);
|
||||
|
||||
struct wlr_idle_inhibit_inhibitor_v1 *inhibitor = calloc(1, sizeof(struct wlr_idle_inhibit_inhibitor_v1));
|
||||
if (!inhibitor) {
|
||||
wl_client_post_no_memory(client);
|
||||
return;
|
||||
}
|
||||
|
||||
struct wl_resource *wl_resource = wl_resource_create(client,
|
||||
&zwp_idle_inhibitor_v1_interface, 1, id);
|
||||
if (!wl_resource) {
|
||||
wl_client_post_no_memory(client);
|
||||
free(inhibitor);
|
||||
return;
|
||||
}
|
||||
|
||||
inhibitor->resource = wl_resource;
|
||||
inhibitor->surface = surface;
|
||||
wl_signal_init(&inhibitor->destroy);
|
||||
|
||||
inhibitor->surface_destroy.notify = idle_inhibit_inhibitor_handle_surface_destroy;
|
||||
wl_signal_add(&surface->events.destroy, &inhibitor->surface_destroy);
|
||||
|
||||
|
||||
wl_resource_set_implementation(wl_resource, &idle_inhibitor_impl,
|
||||
inhibitor, idle_inhibit_inhibitor_destroy);
|
||||
|
||||
wl_list_insert(&manager->inhibitors, &inhibitor->link);
|
||||
wl_signal_emit(&manager->wlr_idle_inhibit->new_inhibitor, inhibitor);
|
||||
}
|
||||
|
||||
|
||||
static void idle_inhibit_manager_destroy(struct wl_resource *resource) {
|
||||
struct wlr_idle_inhibit_manager *manager = wl_resource_get_user_data(resource);
|
||||
assert(manager);
|
||||
|
||||
wl_list_remove(&manager->link);
|
||||
|
||||
struct wlr_idle_inhibit_inhibitor_v1 *inhibitor;
|
||||
struct wlr_idle_inhibit_inhibitor_v1 *tmp;
|
||||
wl_list_for_each_safe(inhibitor, tmp, &manager->inhibitors, link) {
|
||||
wl_resource_destroy(inhibitor->resource);
|
||||
}
|
||||
}
|
||||
|
||||
static void idle_inhibit_manager_handle_destroy(struct wl_client *client,
|
||||
struct wl_resource *manager_resource) {
|
||||
wl_resource_destroy(manager_resource);
|
||||
}
|
||||
|
||||
static struct zwp_idle_inhibit_manager_v1_interface idle_inhibit_impl = {
|
||||
.destroy = idle_inhibit_manager_handle_destroy,
|
||||
.create_inhibitor = wlr_create_inhibitor,
|
||||
};
|
||||
|
||||
void wlr_idle_inhibit_v1_destroy(struct wlr_idle_inhibit_v1 *idle_inhibit);
|
||||
|
||||
|
||||
static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
||||
struct wlr_idle_inhibit_v1 *idle_inhibit =
|
||||
wl_container_of(listener, idle_inhibit, display_destroy);
|
||||
|
||||
wlr_idle_inhibit_v1_destroy(idle_inhibit);
|
||||
}
|
||||
|
||||
static void idle_inhibit_bind(struct wl_client *wl_client, void *data,
|
||||
uint32_t version, uint32_t id) {
|
||||
struct wlr_idle_inhibit_v1 *idle_inhibit = data;
|
||||
assert(wl_client && idle_inhibit);
|
||||
|
||||
struct wlr_idle_inhibit_manager *manager = calloc(1, sizeof(struct wlr_idle_inhibit_manager));
|
||||
if (!manager) {
|
||||
wl_client_post_no_memory(wl_client);
|
||||
return;
|
||||
}
|
||||
|
||||
struct wl_resource *wl_resource = wl_resource_create(wl_client,
|
||||
&zwp_idle_inhibit_manager_v1_interface, version, id);
|
||||
|
||||
if (!wl_resource) {
|
||||
wl_client_post_no_memory(wl_client);
|
||||
free(manager);
|
||||
return;
|
||||
}
|
||||
|
||||
manager->resource = wl_resource;
|
||||
wl_list_init(&manager->inhibitors);
|
||||
wl_list_insert(&idle_inhibit->clients, &manager->link);
|
||||
manager->wlr_idle_inhibit = idle_inhibit;
|
||||
|
||||
|
||||
wl_resource_set_implementation(wl_resource, &idle_inhibit_impl,
|
||||
manager, idle_inhibit_manager_destroy);
|
||||
wlr_log(L_DEBUG, "idle_inhibit bound");
|
||||
}
|
||||
|
||||
void wlr_idle_inhibit_v1_destroy(struct wlr_idle_inhibit_v1 *idle_inhibit) {
|
||||
if (!idle_inhibit) {
|
||||
return;
|
||||
}
|
||||
|
||||
wl_list_remove(&idle_inhibit->display_destroy.link);
|
||||
|
||||
struct wlr_idle_inhibit_manager *manager;
|
||||
struct wlr_idle_inhibit_manager *tmp;
|
||||
wl_list_for_each_safe(manager, tmp, &idle_inhibit->clients, link) {
|
||||
wl_resource_destroy(manager->resource);
|
||||
}
|
||||
|
||||
wl_global_destroy(idle_inhibit->global);
|
||||
free(idle_inhibit);
|
||||
}
|
||||
|
||||
struct wlr_idle_inhibit_v1 *wlr_idle_inhibit_v1_create(struct wl_display *display) {
|
||||
struct wlr_idle_inhibit_v1 *idle_inhibit = calloc(1, sizeof(struct wlr_idle_inhibit_v1));
|
||||
|
||||
if (!idle_inhibit) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
wl_list_init(&idle_inhibit->clients);
|
||||
idle_inhibit->display_destroy.notify = handle_display_destroy;
|
||||
wl_display_add_destroy_listener(display, &idle_inhibit->display_destroy);
|
||||
wl_signal_init(&idle_inhibit->new_inhibitor);
|
||||
|
||||
idle_inhibit->global = wl_global_create(display,
|
||||
&zwp_idle_inhibit_manager_v1_interface, 1,
|
||||
idle_inhibit, idle_inhibit_bind);
|
||||
|
||||
if (!idle_inhibit->global) {
|
||||
wl_list_remove(&idle_inhibit->display_destroy.link);
|
||||
free(idle_inhibit);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
wlr_log(L_DEBUG, "idle_inhibit manager created");
|
||||
|
||||
return idle_inhibit;
|
||||
}
|
Loading…
Reference in new issue