aboutsummaryrefslogtreecommitdiff
path: root/session/direct.c
blob: c2b155e51a10b0944ea4a50a392815d733612064 (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
52
53
54
55
56
57
58
59
#define _POSIX_C_SOURCE 200809L
#include <errno.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <wayland-server.h>
#include <wlr/session/interface.h>
#include "common/log.h"

const struct session_impl session_direct;

struct direct_session {
	struct wlr_session base;
};

static int direct_session_open(struct wlr_session *restrict base,
	const char *restrict path) {
	return open(path, O_RDWR | O_CLOEXEC);
}

static void direct_session_close(struct wlr_session *base, int fd) {
	close(fd);
}

static bool direct_change_vt(struct wlr_session *base, int vt) {
	// TODO
	return false;
}

static void direct_session_finish(struct wlr_session *base) {
	struct direct_session *session = wl_container_of(base, session, base);

	free(session);
}

static struct wlr_session *direct_session_start(struct wl_display *disp) {
	struct direct_session *session = calloc(1, sizeof(*session));
	if (!session) {
		wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
		return NULL;
	}

	wlr_log(L_INFO, "Successfully loaded direct session");

	session->base.impl = &session_direct;
	session->base.active = true;
	wl_signal_init(&session->base.session_signal);
	return &session->base;
}

const struct session_impl session_direct = {
	.start = direct_session_start,
	.finish = direct_session_finish,
	.open = direct_session_open,
	.close = direct_session_close,
	.change_vt = direct_change_vt,
};