blob: 3f293775f8de737bd632d04adc158a064907a391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#define _POSIX_C_SOURCE 200809L
#include <fcntl.h>
#include <stdbool.h>
#include <stdlib.h>
#include <unistd.h>
#include <wayland-server-core.h>
#include <wlr/backend/session/interface.h>
#include <wlr/util/log.h>
#include "backend/session/session.h"
#include "util/signal.h"
const struct session_impl session_noop;
static int noop_session_open(struct wlr_session *base, const char *path) {
return open(path, O_RDWR | O_CLOEXEC);
}
static void noop_session_close(struct wlr_session *base, int fd) {
close(fd);
}
static bool noop_change_vt(struct wlr_session *base, unsigned vt) {
return false;
}
static void noop_session_destroy(struct wlr_session *base) {
free(base);
}
static struct wlr_session *noop_session_create(struct wl_display *disp) {
struct wlr_session *session = calloc(1, sizeof(*session));
if (!session) {
wlr_log_errno(WLR_ERROR, "Allocation failed");
return NULL;
}
session_init(session);
session->impl = &session_noop;
session->active = true;
wlr_log(WLR_INFO, "Successfully initialized noop session");
return session;
}
const struct session_impl session_noop = {
.create = noop_session_create,
.destroy = noop_session_destroy,
.open = noop_session_open,
.close = noop_session_close,
.change_vt = noop_change_vt,
};
|