Hash :
955eef14
Author :
Date :
2025-03-28T06:30:05
tools: Ensure to honor user locale This is just good practice, but it is also necessary if we want to facilitate the discovery of issues with locales in libxkbcommon.
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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
/*
* Copyright © 2013 Ran Benita <ran234@gmail.com>
* SPDX-License-Identifier: MIT
*/
#include "config.h"
#include <getopt.h>
#include <locale.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <xcb/xkb.h>
#include "xkbcommon/xkbcommon-x11.h"
#include "xkbcommon/xkbcommon-compose.h"
#include "tools-common.h"
/*
* Note: This program only handles the core keyboard device for now.
* It should be straigtforward to change struct keyboard to a list of
* keyboards with device IDs, as in tools/interactive-evdev.c. This would
* require:
*
* - Initially listing the keyboard devices.
* - Listening to device changes.
* - Matching events to their devices.
*
* XKB itself knows about xinput1 devices, and most requests and events are
* device-specific.
*
* In order to list the devices and react to changes, you need xinput1/2.
* You also need xinput for the key press/release event, since the core
* protocol key press event does not carry a device ID to match on.
*/
struct keyboard {
xcb_connection_t *conn;
uint8_t first_xkb_event;
struct xkb_context *ctx;
struct xkb_keymap *keymap;
struct xkb_state *state;
struct xkb_compose_state *compose_state;
int32_t device_id;
};
static bool terminate;
static int
select_xkb_events_for_device(xcb_connection_t *conn, int32_t device_id)
{
enum {
required_events =
(XCB_XKB_EVENT_TYPE_NEW_KEYBOARD_NOTIFY |
XCB_XKB_EVENT_TYPE_MAP_NOTIFY |
XCB_XKB_EVENT_TYPE_STATE_NOTIFY),
required_nkn_details =
(XCB_XKB_NKN_DETAIL_KEYCODES),
required_map_parts =
(XCB_XKB_MAP_PART_KEY_TYPES |
XCB_XKB_MAP_PART_KEY_SYMS |
XCB_XKB_MAP_PART_MODIFIER_MAP |
XCB_XKB_MAP_PART_EXPLICIT_COMPONENTS |
XCB_XKB_MAP_PART_KEY_ACTIONS |
XCB_XKB_MAP_PART_VIRTUAL_MODS |
XCB_XKB_MAP_PART_VIRTUAL_MOD_MAP),
required_state_details =
(XCB_XKB_STATE_PART_MODIFIER_BASE |
XCB_XKB_STATE_PART_MODIFIER_LATCH |
XCB_XKB_STATE_PART_MODIFIER_LOCK |
XCB_XKB_STATE_PART_GROUP_BASE |
XCB_XKB_STATE_PART_GROUP_LATCH |
XCB_XKB_STATE_PART_GROUP_LOCK),
};
static const xcb_xkb_select_events_details_t details = {
.affectNewKeyboard = required_nkn_details,
.newKeyboardDetails = required_nkn_details,
.affectState = required_state_details,
.stateDetails = required_state_details,
};
xcb_void_cookie_t cookie =
xcb_xkb_select_events_aux_checked(conn,
device_id,
required_events, /* affectWhich */
0, /* clear */
0, /* selectAll */
required_map_parts, /* affectMap */
required_map_parts, /* map */
&details); /* details */
xcb_generic_error_t *error = xcb_request_check(conn, cookie);
if (error) {
free(error);
return -1;
}
return 0;
}
static int
update_keymap(struct keyboard *kbd)
{
struct xkb_keymap *new_keymap;
struct xkb_state *new_state;
new_keymap = xkb_x11_keymap_new_from_device(kbd->ctx, kbd->conn,
kbd->device_id,
XKB_KEYMAP_COMPILE_NO_FLAGS);
if (!new_keymap)
goto err_out;
new_state = xkb_x11_state_new_from_device(new_keymap, kbd->conn,
kbd->device_id);
if (!new_state)
goto err_keymap;
if (kbd->keymap)
printf("Keymap updated!\n");
xkb_state_unref(kbd->state);
xkb_keymap_unref(kbd->keymap);
kbd->keymap = new_keymap;
kbd->state = new_state;
return 0;
err_keymap:
xkb_keymap_unref(new_keymap);
err_out:
return -1;
}
static int
init_kbd(struct keyboard *kbd, xcb_connection_t *conn, uint8_t first_xkb_event,
int32_t device_id, struct xkb_context *ctx,
struct xkb_compose_table *compose_table)
{
int ret;
kbd->conn = conn;
kbd->first_xkb_event = first_xkb_event;
kbd->ctx = ctx;
kbd->keymap = NULL;
kbd->state = NULL;
kbd->compose_state = NULL;
kbd->device_id = device_id;
ret = update_keymap(kbd);
if (ret)
goto err_out;
#ifdef KEYMAP_DUMP
/* Dump the keymap */
char *dump = xkb_keymap_get_as_string(kbd->keymap,
XKB_KEYMAP_FORMAT_TEXT_V1);
fprintf(stdout, "%s", dump);
free(dump);
terminate = true;
return 0;
#endif
if (compose_table)
kbd->compose_state = xkb_compose_state_new(compose_table,
XKB_COMPOSE_STATE_NO_FLAGS);
ret = select_xkb_events_for_device(conn, device_id);
if (ret)
goto err_state;
return 0;
err_state:
xkb_state_unref(kbd->state);
xkb_compose_state_unref(kbd->compose_state);
xkb_keymap_unref(kbd->keymap);
err_out:
return -1;
}
static void
deinit_kbd(struct keyboard *kbd)
{
xkb_state_unref(kbd->state);
xkb_compose_state_unref(kbd->compose_state);
xkb_keymap_unref(kbd->keymap);
}
#ifndef KEYMAP_DUMP
static void
process_xkb_event(xcb_generic_event_t *gevent, struct keyboard *kbd)
{
union xkb_event {
struct {
uint8_t response_type;
uint8_t xkbType;
uint16_t sequence;
xcb_timestamp_t time;
uint8_t deviceID;
} any;
xcb_xkb_new_keyboard_notify_event_t new_keyboard_notify;
xcb_xkb_map_notify_event_t map_notify;
xcb_xkb_state_notify_event_t state_notify;
} *event = (union xkb_event *) gevent;
if (event->any.deviceID != kbd->device_id)
return;
/*
* XkbNewKkdNotify and XkbMapNotify together capture all sorts of keymap
* updates (e.g. xmodmap, xkbcomp, setxkbmap), with minimal redundent
* recompilations.
*/
switch (event->any.xkbType) {
case XCB_XKB_NEW_KEYBOARD_NOTIFY:
if (event->new_keyboard_notify.changed & XCB_XKB_NKN_DETAIL_KEYCODES)
update_keymap(kbd);
break;
case XCB_XKB_MAP_NOTIFY:
update_keymap(kbd);
break;
case XCB_XKB_STATE_NOTIFY:
xkb_state_update_mask(kbd->state,
event->state_notify.baseMods,
event->state_notify.latchedMods,
event->state_notify.lockedMods,
event->state_notify.baseGroup,
event->state_notify.latchedGroup,
event->state_notify.lockedGroup);
break;
default:
/* Ignore */
break;
}
}
static void
process_event(xcb_generic_event_t *gevent, struct keyboard *kbd)
{
switch (gevent->response_type) {
case XCB_KEY_PRESS: {
xcb_key_press_event_t *event = (xcb_key_press_event_t *) gevent;
xkb_keycode_t keycode = event->detail;
if (kbd->compose_state) {
xkb_keysym_t keysym = xkb_state_key_get_one_sym(kbd->state, keycode);
xkb_compose_state_feed(kbd->compose_state, keysym);
}
tools_print_keycode_state(NULL, kbd->state, kbd->compose_state, keycode,
XKB_CONSUMED_MODE_XKB,
PRINT_ALL_FIELDS);
if (kbd->compose_state) {
enum xkb_compose_status status = xkb_compose_state_get_status(kbd->compose_state);
if (status == XKB_COMPOSE_CANCELLED ||
status == XKB_COMPOSE_COMPOSED)
xkb_compose_state_reset(kbd->compose_state);
}
/* Exit on ESC. */
if (xkb_state_key_get_one_sym(kbd->state, keycode) == XKB_KEY_Escape)
terminate = true;
break;
}
default:
if (gevent->response_type == kbd->first_xkb_event)
process_xkb_event(gevent, kbd);
break;
}
}
static int
loop(xcb_connection_t *conn, struct keyboard *kbd)
{
while (!terminate) {
xcb_generic_event_t *event;
switch (xcb_connection_has_error(conn)) {
case 0:
break;
case XCB_CONN_ERROR:
fprintf(stderr,
"Closed connection to X server: connection error\n");
return -1;
case XCB_CONN_CLOSED_EXT_NOTSUPPORTED:
fprintf(stderr,
"Closed connection to X server: extension not supported\n");
return -1;
default:
fprintf(stderr,
"Closed connection to X server: error code %d\n",
xcb_connection_has_error(conn));
return -1;
}
event = xcb_wait_for_event(conn);
if (!event) {
continue;
}
process_event(event, kbd);
free(event);
}
return 0;
}
static int
create_capture_window(xcb_connection_t *conn)
{
xcb_generic_error_t *error;
xcb_void_cookie_t cookie;
xcb_screen_t *screen =
xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
xcb_window_t window = xcb_generate_id(conn);
uint32_t values[2] = {
screen->white_pixel,
XCB_EVENT_MASK_KEY_PRESS,
};
cookie = xcb_create_window_checked(conn, XCB_COPY_FROM_PARENT,
window, screen->root,
10, 10, 100, 100, 1,
XCB_WINDOW_CLASS_INPUT_OUTPUT,
screen->root_visual,
XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK,
values);
if ((error = xcb_request_check(conn, cookie)) != NULL) {
free(error);
return -1;
}
cookie = xcb_map_window_checked(conn, window);
if ((error = xcb_request_check(conn, cookie)) != NULL) {
free(error);
return -1;
}
return 0;
}
#endif
static void
usage(FILE *fp, char *progname)
{
fprintf(fp,
"Usage: %s [--help]"
#ifndef KEYMAP_DUMP
" [--enable-compose]"
#endif
"\n",
progname);
fprintf(fp,
#ifndef KEYMAP_DUMP
" --enable-compose enable Compose\n"
#endif
" --help display this help and exit\n"
);
}
int
main(int argc, char *argv[])
{
int ret;
xcb_connection_t *conn;
uint8_t first_xkb_event;
int32_t core_kbd_device_id;
struct xkb_context *ctx;
struct keyboard core_kbd = {0};
const char *locale;
struct xkb_compose_table *compose_table = NULL;
bool with_compose = false;
enum options {
OPT_COMPOSE,
};
static struct option opts[] = {
{"help", no_argument, 0, 'h'},
#ifndef KEYMAP_DUMP
{"enable-compose", no_argument, 0, OPT_COMPOSE},
#endif
{0, 0, 0, 0},
};
setlocale(LC_ALL, "");
while (1) {
int opt;
int option_index = 0;
opt = getopt_long(argc, argv, "h", opts, &option_index);
if (opt == -1)
break;
switch (opt) {
#ifndef KEYMAP_DUMP
case OPT_COMPOSE:
with_compose = true;
break;
#endif
case 'h':
usage(stdout, argv[0]);
return EXIT_SUCCESS;
default:
usage(stderr, argv[0]);
return EXIT_INVALID_USAGE;
}
}
conn = xcb_connect(NULL, NULL);
if (!conn || xcb_connection_has_error(conn)) {
fprintf(stderr, "Couldn't connect to X server: error code %d\n",
conn ? xcb_connection_has_error(conn) : -1);
ret = -1;
goto err_out;
}
ret = xkb_x11_setup_xkb_extension(conn,
XKB_X11_MIN_MAJOR_XKB_VERSION,
XKB_X11_MIN_MINOR_XKB_VERSION,
XKB_X11_SETUP_XKB_EXTENSION_NO_FLAGS,
NULL, NULL, &first_xkb_event, NULL);
if (!ret) {
fprintf(stderr, "Couldn't setup XKB extension\n");
goto err_conn;
}
ctx = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
if (!ctx) {
ret = -1;
fprintf(stderr, "Couldn't create xkb context\n");
goto err_conn;
}
if (with_compose) {
locale = setlocale(LC_CTYPE, NULL);
compose_table =
xkb_compose_table_new_from_locale(ctx, locale,
XKB_COMPOSE_COMPILE_NO_FLAGS);
if (!compose_table) {
fprintf(stderr, "Couldn't create compose from locale\n");
goto err_core_kbd;
}
} else {
compose_table = NULL;
}
core_kbd_device_id = xkb_x11_get_core_keyboard_device_id(conn);
if (core_kbd_device_id == -1) {
ret = -1;
fprintf(stderr, "Couldn't find core keyboard device\n");
goto err_ctx;
}
ret = init_kbd(&core_kbd, conn, first_xkb_event, core_kbd_device_id,
ctx, compose_table);
if (ret) {
fprintf(stderr, "Couldn't initialize core keyboard device\n");
goto err_ctx;
}
#ifndef KEYMAP_DUMP
ret = create_capture_window(conn);
if (ret) {
fprintf(stderr, "Couldn't create a capture window\n");
goto err_compose;
}
tools_disable_stdin_echo();
ret = loop(conn, &core_kbd);
tools_enable_stdin_echo();
err_compose:
#endif
xkb_compose_table_unref(compose_table);
err_core_kbd:
deinit_kbd(&core_kbd);
err_ctx:
xkb_context_unref(ctx);
err_conn:
xcb_disconnect(conn);
err_out:
exit(ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
}