wlroots/include/wlr/backend/session.h

84 lines
2.0 KiB
C
Raw Normal View History

2017-05-03 02:11:22 +00:00
#ifndef WLR_SESSION_H
#define WLR_SESSION_H
#include <stdbool.h>
2017-05-13 11:56:40 +00:00
#include <wayland-server.h>
2017-08-26 02:02:04 +00:00
#include <libudev.h>
2017-05-14 01:07:34 +00:00
#include <sys/types.h>
2017-05-13 11:56:40 +00:00
2017-06-04 23:30:37 +00:00
struct session_impl;
2017-05-13 13:12:47 +00:00
struct wlr_device {
int fd;
dev_t dev;
struct wl_signal signal;
struct wl_list link;
};
2017-05-13 13:12:47 +00:00
struct wlr_session {
2017-06-04 23:30:37 +00:00
const struct session_impl *impl;
2017-07-09 11:02:41 +00:00
/*
* Signal for when the session becomes active/inactive.
* It's called when we swap virtual terminal.
*/
struct wl_signal session_signal;
2017-07-09 05:53:13 +00:00
bool active;
unsigned vtnr;
char seat[8];
2017-08-26 02:02:04 +00:00
struct udev *udev;
struct udev_monitor *mon;
struct wl_event_source *udev_event;
struct wl_list devices;
2017-05-13 13:12:47 +00:00
};
2017-05-03 02:11:22 +00:00
2017-07-09 11:02:41 +00:00
/*
* Opens a session, taking control of the current virtual terminal.
* This should not be called if another program is already in control
* of the terminal (Xorg, another Wayland compositor, etc.).
*
* If logind support is not enabled, you must have CAP_SYS_ADMIN or be root.
* It is safe to drop priviledges after this is called.
*
* Returns NULL on error.
*/
struct wlr_session *wlr_session_create(struct wl_display *disp);
2017-07-09 11:02:41 +00:00
/*
* Closes a previously opened session and restores the virtual terminal.
* You should call wlr_session_close_file on each files you opened
* with wlr_session_open_file before you call this.
*/
void wlr_session_destroy(struct wlr_session *session);
2017-07-09 11:02:41 +00:00
/*
* Opens the file at path.
* This can only be used to open DRM or evdev (input) devices.
*
* When the session becomes inactive:
* - DRM files lose their DRM master status
* - evdev files become invalid and should be closed
*
* Returns -errno on error.
*/
2017-07-09 05:53:13 +00:00
int wlr_session_open_file(struct wlr_session *session, const char *path);
2017-07-09 11:02:41 +00:00
/*
* Closes a file previously opened with wlr_session_open_file.
*/
2017-05-03 02:11:22 +00:00
void wlr_session_close_file(struct wlr_session *session, int fd);
2017-07-09 11:02:41 +00:00
2017-08-26 02:02:04 +00:00
void wlr_session_signal_add(struct wlr_session *session, int fd,
struct wl_listener *listener);
2017-07-09 11:02:41 +00:00
/*
* Changes the virtual terminal.
*/
2017-07-09 05:53:13 +00:00
bool wlr_session_change_vt(struct wlr_session *session, unsigned vt);
2017-05-03 02:11:22 +00:00
2017-08-26 02:02:04 +00:00
int wlr_session_find_gpu(struct wlr_session *session);
2017-05-03 02:11:22 +00:00
#endif