wlroots-hyprland/backend/session/session.c

55 lines
1.2 KiB
C
Raw Normal View History

2017-05-03 04:11:22 +02:00
#include <stddef.h>
#include <stdarg.h>
2017-07-11 09:18:34 +02:00
#include <wlr/backend/session.h>
#include <wlr/backend/session/interface.h>
2017-06-21 18:10:07 +02:00
#include <wlr/util/log.h>
2017-05-03 04:11:22 +02:00
2017-06-05 01:30:37 +02:00
extern const struct session_impl session_logind;
extern const struct session_impl session_direct;
static const struct session_impl *impls[] = {
2017-05-03 04:11:22 +02:00
#ifdef HAS_SYSTEMD
2017-06-05 01:30:37 +02:00
&session_logind,
2017-05-03 04:11:22 +02:00
#endif
2017-06-05 01:30:37 +02:00
&session_direct,
2017-05-03 04:11:22 +02:00
NULL,
};
struct wlr_session *wlr_session_create(struct wl_display *disp) {
2017-06-05 01:30:37 +02:00
const struct session_impl **iter;
2017-05-03 04:11:22 +02:00
2017-06-05 01:30:37 +02:00
for (iter = impls; *iter; ++iter) {
struct wlr_session *session = (*iter)->create(disp);
2017-05-03 04:11:22 +02:00
if (session) {
return session;
}
}
wlr_log(L_ERROR, "Failed to load session backend");
2017-05-03 04:11:22 +02:00
return NULL;
}
void wlr_session_destroy(struct wlr_session *session) {
if (!session) {
return;
}
session->impl->destroy(session);
2017-05-03 04:11:22 +02:00
};
2017-07-09 07:53:13 +02:00
int wlr_session_open_file(struct wlr_session *session, const char *path) {
2017-06-05 01:30:37 +02:00
return session->impl->open(session, path);
2017-05-03 04:11:22 +02:00
}
void wlr_session_close_file(struct wlr_session *session, int fd) {
2017-06-05 01:30:37 +02:00
session->impl->close(session, fd);
2017-05-03 04:11:22 +02:00
}
2017-05-13 13:56:40 +02:00
2017-07-09 07:53:13 +02:00
bool wlr_session_change_vt(struct wlr_session *session, unsigned vt) {
if (!session) {
return false;
}
2017-06-05 01:30:37 +02:00
return session->impl->change_vt(session, vt);
2017-05-13 13:56:40 +02:00
}