forked from swaywm/swaylock
-
Notifications
You must be signed in to change notification settings - Fork 4
/
seat.c
277 lines (251 loc) · 8.75 KB
/
seat.c
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#define _POSIX_C_SOURCE 200809L
#include <assert.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <time.h>
#include <unistd.h>
#include <xkbcommon/xkbcommon.h>
#include "log.h"
#include "swaylock.h"
#include "seat.h"
#include "loop.h"
static void keyboard_keymap(void *data, struct wl_keyboard *wl_keyboard,
uint32_t format, int32_t fd, uint32_t size) {
struct swaylock_seat *seat = data;
struct swaylock_state *state = seat->state;
if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
close(fd);
swaylock_log(LOG_ERROR, "Unknown keymap format %d, aborting", format);
exit(1);
}
char *map_shm = mmap(NULL, size - 1, PROT_READ, MAP_PRIVATE, fd, 0);
if (map_shm == MAP_FAILED) {
close(fd);
swaylock_log(LOG_ERROR, "Unable to initialize keymap shm, aborting");
exit(1);
}
struct xkb_keymap *keymap = xkb_keymap_new_from_buffer(
state->xkb.context, map_shm, size - 1, XKB_KEYMAP_FORMAT_TEXT_V1,
XKB_KEYMAP_COMPILE_NO_FLAGS);
munmap(map_shm, size - 1);
close(fd);
assert(keymap);
struct xkb_state *xkb_state = xkb_state_new(keymap);
assert(xkb_state);
xkb_keymap_unref(state->xkb.keymap);
xkb_state_unref(state->xkb.state);
state->xkb.keymap = keymap;
state->xkb.state = xkb_state;
}
static void keyboard_enter(void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, struct wl_surface *surface, struct wl_array *keys) {
// Who cares
}
static void keyboard_leave(void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, struct wl_surface *surface) {
// Who cares
}
static void keyboard_repeat(void *data) {
struct swaylock_seat *seat = data;
struct swaylock_state *state = seat->state;
seat->repeat_timer = loop_add_timer(
state->eventloop, seat->repeat_period_ms, keyboard_repeat, seat);
swaylock_handle_key(state, seat->repeat_sym, seat->repeat_codepoint);
}
static void keyboard_key(void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, uint32_t time, uint32_t key, uint32_t _key_state) {
struct swaylock_seat *seat = data;
struct swaylock_state *state = seat->state;
enum wl_keyboard_key_state key_state = _key_state;
xkb_keysym_t sym = xkb_state_key_get_one_sym(state->xkb.state, key + 8);
uint32_t keycode = key_state == WL_KEYBOARD_KEY_STATE_PRESSED ?
key + 8 : 0;
uint32_t codepoint = xkb_state_key_get_utf32(state->xkb.state, keycode);
if (key_state == WL_KEYBOARD_KEY_STATE_PRESSED) {
if (state->grace_timer) {
/* still in grace period, immediately unlock */
swaylock_log(LOG_DEBUG, "Key press during grace period, unlocking");
state->run_display = false;
return;
}
swaylock_handle_key(state, sym, codepoint);
}
if (seat->repeat_timer) {
loop_remove_timer(seat->state->eventloop, seat->repeat_timer);
seat->repeat_timer = NULL;
}
if (key_state == WL_KEYBOARD_KEY_STATE_PRESSED && seat->repeat_period_ms > 0) {
seat->repeat_sym = sym;
seat->repeat_codepoint = codepoint;
seat->repeat_timer = loop_add_timer(
seat->state->eventloop, seat->repeat_delay_ms, keyboard_repeat, seat);
}
}
static void keyboard_modifiers(void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, uint32_t mods_depressed, uint32_t mods_latched,
uint32_t mods_locked, uint32_t group) {
struct swaylock_seat *seat = data;
struct swaylock_state *state = seat->state;
if (state->xkb.state == NULL) {
return;
}
int layout_same = xkb_state_layout_index_is_active(state->xkb.state,
group, XKB_STATE_LAYOUT_EFFECTIVE);
if (!layout_same) {
damage_state(state);
}
xkb_state_update_mask(state->xkb.state,
mods_depressed, mods_latched, mods_locked, 0, 0, group);
int caps_lock = xkb_state_mod_name_is_active(state->xkb.state,
XKB_MOD_NAME_CAPS, XKB_STATE_MODS_LOCKED);
if (caps_lock != state->xkb.caps_lock) {
state->xkb.caps_lock = caps_lock;
damage_state(state);
}
state->xkb.control = xkb_state_mod_name_is_active(state->xkb.state,
XKB_MOD_NAME_CTRL,
XKB_STATE_MODS_DEPRESSED | XKB_STATE_MODS_LATCHED);
}
static void keyboard_repeat_info(void *data, struct wl_keyboard *wl_keyboard,
int32_t rate, int32_t delay) {
struct swaylock_seat *seat = data;
if (rate <= 0) {
seat->repeat_period_ms = -1;
} else {
// Keys per second -> milliseconds between keys
seat->repeat_period_ms = 1000 / rate;
}
seat->repeat_delay_ms = delay;
}
static const struct wl_keyboard_listener keyboard_listener = {
.keymap = keyboard_keymap,
.enter = keyboard_enter,
.leave = keyboard_leave,
.key = keyboard_key,
.modifiers = keyboard_modifiers,
.repeat_info = keyboard_repeat_info,
};
static void wl_pointer_enter(void *data, struct wl_pointer *wl_pointer,
uint32_t serial, struct wl_surface *surface,
wl_fixed_t surface_x, wl_fixed_t surface_y) {
struct swaylock_seat *seat = data;
wl_pointer_set_cursor(wl_pointer, serial, NULL, 0, 0);
if (!seat->state->grace_timer) {
return;
}
struct timespec current_time;
clock_gettime(CLOCK_MONOTONIC, ¤t_time);
seat->last_interval = current_time.tv_sec;
seat->interval_start_x = surface_x;
seat->interval_start_y = surface_y;
seat->last_mouse_x = surface_x;
seat->last_mouse_y = surface_y;
}
static void wl_pointer_leave(void *data, struct wl_pointer *wl_pointer,
uint32_t serial, struct wl_surface *surface) {
// Who cares
}
static void wl_pointer_motion(void *data, struct wl_pointer *wl_pointer,
uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y) {
struct swaylock_seat *seat = data;
if (!seat->state->grace_timer) {
return;
}
struct timespec current_time;
clock_gettime(CLOCK_MONOTONIC, ¤t_time);
int64_t intv = current_time.tv_sec;
if (intv != seat->last_interval) {
seat->last_interval = intv;
seat->interval_start_x = seat->last_mouse_x;
seat->interval_start_y = seat->last_mouse_y;
}
float dx = wl_fixed_to_double(surface_x - seat->interval_start_x);
float dy = wl_fixed_to_double(surface_y - seat->interval_start_y);
float thresh = seat->state->args.grace_pointer_hysteresis;
if (dx * dx + dy * dy >= thresh * thresh) {
/* Mouse moved more than hysteresis value in a one-second time period;
* this is probably a deliberate action and not noise or a minor tremor */
swaylock_log(LOG_DEBUG, "Significant mouse motion (%f logical px) during grace period, unlocking",
sqrtf(dx * dx + dy * dy));
seat->state->run_display = false;
}
seat->last_mouse_x = surface_x;
seat->last_mouse_y = surface_y;
}
static void wl_pointer_button(void *data, struct wl_pointer *wl_pointer,
uint32_t serial, uint32_t time, uint32_t button, uint32_t state) {
struct swaylock_seat *seat = data;
if (seat->state->grace_timer) {
/* unlock during grace period on click */
swaylock_log(LOG_DEBUG, "Mouse button action during grace period, unlocking");
seat->state->run_display = false;
}
}
static void wl_pointer_axis(void *data, struct wl_pointer *wl_pointer,
uint32_t time, uint32_t axis, wl_fixed_t value) {
// Who cares
}
static void wl_pointer_frame(void *data, struct wl_pointer *wl_pointer) {
// Who cares
}
static void wl_pointer_axis_source(void *data, struct wl_pointer *wl_pointer,
uint32_t axis_source) {
// Who cares
}
static void wl_pointer_axis_stop(void *data, struct wl_pointer *wl_pointer,
uint32_t time, uint32_t axis) {
// Who cares
}
static void wl_pointer_axis_discrete(void *data, struct wl_pointer *wl_pointer,
uint32_t axis, int32_t discrete) {
// Who cares
}
static void wl_pointer_axis_value120(void *data, struct wl_pointer *wl_pointer,
uint32_t axis, int32_t value120) {
// Who cares
}
static void wl_pointer_axis_relative_direction(void *data, struct wl_pointer *wl_pointer,
uint32_t axis, uint32_t direction) {
// Who cares
}
static const struct wl_pointer_listener pointer_listener = {
.enter = wl_pointer_enter,
.leave = wl_pointer_leave,
.motion = wl_pointer_motion,
.button = wl_pointer_button,
.axis = wl_pointer_axis,
.frame = wl_pointer_frame,
.axis_source = wl_pointer_axis_source,
.axis_stop = wl_pointer_axis_stop,
.axis_discrete = wl_pointer_axis_discrete,
.axis_value120 = wl_pointer_axis_value120,
.axis_relative_direction = wl_pointer_axis_relative_direction,
};
static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat,
enum wl_seat_capability caps) {
struct swaylock_seat *seat = data;
if (seat->pointer) {
wl_pointer_release(seat->pointer);
seat->pointer = NULL;
}
if (seat->keyboard) {
wl_keyboard_release(seat->keyboard);
seat->keyboard = NULL;
}
if ((caps & WL_SEAT_CAPABILITY_POINTER)) {
seat->pointer = wl_seat_get_pointer(wl_seat);
wl_pointer_add_listener(seat->pointer, &pointer_listener, seat);
}
if ((caps & WL_SEAT_CAPABILITY_KEYBOARD)) {
seat->keyboard = wl_seat_get_keyboard(wl_seat);
wl_keyboard_add_listener(seat->keyboard, &keyboard_listener, seat);
}
}
static void seat_handle_name(void *data, struct wl_seat *wl_seat,
const char *name) {
// Who cares
}
const struct wl_seat_listener seat_listener = {
.capabilities = seat_handle_capabilities,
.name = seat_handle_name,
};