wlroots/rootston/keyboard.c

186 lines
5.5 KiB
C
Raw Normal View History

2017-09-23 22:32:03 +00:00
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
2017-10-02 16:21:39 +00:00
#include <unistd.h>
2017-09-23 22:32:03 +00:00
#include <wayland-server.h>
#include <wlr/types/wlr_input_device.h>
#include <wlr/types/wlr_pointer.h>
#include <wlr/backend/multi.h>
#include <wlr/backend/session.h>
#include <wlr/util/log.h>
#include <xkbcommon/xkbcommon.h>
#include "rootston/input.h"
2017-10-02 13:24:01 +00:00
static ssize_t keyboard_pressed_keysym_index(struct roots_keyboard *keyboard,
xkb_keysym_t keysym) {
for (size_t i = 0; i < ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP; i++) {
if (keyboard->pressed_keysyms[i] == keysym) {
2017-10-02 10:12:06 +00:00
return i;
}
}
return -1;
}
2017-09-28 12:54:57 +00:00
static const char *exec_prefix = "exec ";
static void keyboard_binding_execute(struct roots_keyboard *keyboard,
const char *command) {
2017-10-02 10:12:06 +00:00
struct roots_server *server = keyboard->input->server;
if (strcmp(command, "exit") == 0) {
wl_display_terminate(server->wl_display);
} else if (strcmp(command, "close") == 0) {
if (keyboard->input->last_active_view != NULL) {
view_close(keyboard->input->last_active_view);
}
2017-10-12 19:15:58 +00:00
} else if (strcmp(command, "next_window") == 0) {
if (server->desktop->views->length > 0) {
struct roots_view *view = server->desktop->views->items[0];
set_view_focus(keyboard->input, server->desktop, view);
wlr_seat_keyboard_notify_enter(keyboard->input->wl_seat,
view->wlr_surface);
}
} else if (strncmp(exec_prefix, command, strlen(exec_prefix)) == 0) {
const char *shell_cmd = command + strlen(exec_prefix);
2017-10-02 16:21:39 +00:00
pid_t pid = fork();
if (pid < 0) {
wlr_log(L_ERROR, "cannot execute binding command: fork() failed");
return;
} else if (pid == 0) {
execl("/bin/sh", "/bin/sh", "-c", shell_cmd, (void *)NULL);
2017-10-02 16:21:39 +00:00
}
} else {
wlr_log(L_ERROR, "unknown binding command: %s", command);
}
}
2017-10-02 10:12:06 +00:00
static void keyboard_keysym_press(struct roots_keyboard *keyboard,
xkb_keysym_t keysym) {
2017-10-02 13:24:01 +00:00
ssize_t i = keyboard_pressed_keysym_index(keyboard, keysym);
2017-10-02 10:12:06 +00:00
if (i < 0) {
i = keyboard_pressed_keysym_index(keyboard, XKB_KEY_NoSymbol);
2017-10-02 10:12:06 +00:00
if (i >= 0) {
2017-10-02 13:24:01 +00:00
keyboard->pressed_keysyms[i] = keysym;
2017-10-02 10:12:06 +00:00
}
}
if (keysym >= XKB_KEY_XF86Switch_VT_1 &&
2017-10-02 13:24:01 +00:00
keysym <= XKB_KEY_XF86Switch_VT_12) {
struct roots_server *server = keyboard->input->server;
2017-10-02 13:24:01 +00:00
if (wlr_backend_is_multi(server->backend)) {
struct wlr_session *session =
wlr_multi_get_session(server->backend);
if (session) {
unsigned vt = keysym - XKB_KEY_XF86Switch_VT_1 + 1;
wlr_session_change_vt(session, vt);
2017-09-23 22:32:03 +00:00
}
}
return;
}
uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
struct wl_list *bindings = &keyboard->input->server->config->bindings;
struct binding_config *bc;
wl_list_for_each(bc, bindings, link) {
if (modifiers ^ bc->modifiers) {
continue;
}
bool ok = true;
for (size_t i = 0; i < bc->keysyms_len; i++) {
ssize_t j = keyboard_pressed_keysym_index(keyboard, bc->keysyms[i]);
if (j < 0) {
ok = false;
break;
}
}
if (ok) {
keyboard_binding_execute(keyboard, bc->command);
}
2017-09-23 22:32:03 +00:00
}
}
2017-10-02 13:24:01 +00:00
static void keyboard_keysym_release(struct roots_keyboard *keyboard,
xkb_keysym_t keysym) {
ssize_t i = keyboard_pressed_keysym_index(keyboard, keysym);
2017-10-02 10:12:06 +00:00
if (i >= 0) {
keyboard->pressed_keysyms[i] = XKB_KEY_NoSymbol;
2017-10-02 10:12:06 +00:00
}
}
static void keyboard_key_notify(struct wl_listener *listener, void *data) {
struct wlr_event_keyboard_key *event = data;
struct roots_keyboard *keyboard = wl_container_of(listener, keyboard, key);
uint32_t keycode = event->keycode + 8;
const xkb_keysym_t *syms;
int syms_len = xkb_state_key_get_syms(keyboard->device->keyboard->xkb_state,
keycode, &syms);
2017-10-02 13:24:01 +00:00
for (int i = 0; i < syms_len; i++) {
if (event->state == WLR_KEY_PRESSED) {
keyboard_keysym_press(keyboard, syms[i]);
} else { // WLR_KEY_RELEASED
keyboard_keysym_release(keyboard, syms[i]);
}
2017-10-02 10:12:06 +00:00
}
}
2017-09-23 22:32:03 +00:00
void keyboard_add(struct wlr_input_device *device, struct roots_input *input) {
struct roots_keyboard *keyboard = calloc(sizeof(struct roots_keyboard), 1);
if (keyboard == NULL) {
return;
}
2017-09-28 23:05:38 +00:00
device->data = keyboard;
2017-09-23 22:32:03 +00:00
keyboard->device = device;
keyboard->input = input;
keyboard->key.notify = keyboard_key_notify;
wl_signal_add(&device->keyboard->events.key, &keyboard->key);
wl_list_insert(&input->keyboards, &keyboard->link);
2017-10-26 17:59:32 +00:00
struct keyboard_config *config = config_get_keyboard(input->config,
device);
2017-09-23 22:32:03 +00:00
struct xkb_rule_names rules;
memset(&rules, 0, sizeof(rules));
2017-10-26 17:59:32 +00:00
if (config != NULL) {
rules.rules = config->rules;
rules.model = config->model;
rules.layout = config->layout;
rules.variant = config->variant;
rules.options = config->options;
}
if (rules.rules == NULL) {
rules.rules = getenv("XKB_DEFAULT_RULES");
}
if (rules.model == NULL) {
rules.model = getenv("XKB_DEFAULT_MODEL");
}
if (rules.layout == NULL) {
rules.layout = getenv("XKB_DEFAULT_LAYOUT");
}
if (rules.variant == NULL) {
rules.variant = getenv("XKB_DEFAULT_VARIANT");
}
if (rules.options == NULL) {
rules.options = getenv("XKB_DEFAULT_OPTIONS");
}
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
if (context == NULL) {
wlr_log(L_ERROR, "Cannot create XKB context");
return;
}
2017-10-01 15:35:22 +00:00
wlr_keyboard_set_keymap(device->keyboard, xkb_map_new_from_names(context,
&rules, XKB_KEYMAP_COMPILE_NO_FLAGS));
2017-09-23 22:32:03 +00:00
xkb_context_unref(context);
2017-09-28 12:54:57 +00:00
wlr_seat_attach_keyboard(input->wl_seat, device);
2017-09-23 22:32:03 +00:00
}
2017-09-28 23:05:38 +00:00
void keyboard_remove(struct wlr_input_device *device, struct roots_input *input) {
struct roots_keyboard *keyboard = device->data;
wlr_seat_detach_keyboard(input->wl_seat, device->keyboard);
wl_list_remove(&keyboard->key.link);
wl_list_remove(&keyboard->link);
free(keyboard);
}