2020-06-23 00:06:10 -06:00
|
|
|
/*
|
|
|
|
* Copyright © 2009 Dan Nicholson <dbn.lists@gmail.com>
|
|
|
|
* Copyright © 2012 Intel Corporation
|
|
|
|
* Copyright © 2012 Ran Benita <ran234@gmail.com>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Except as contained in this notice, the names of the authors or their
|
|
|
|
* institutions shall not be used in advertising or otherwise to promote the
|
|
|
|
* sale, use or other dealings in this Software without prior written
|
|
|
|
* authorization from the authors.
|
|
|
|
*
|
|
|
|
* Author: Dan Nicholson <dbn.lists@gmail.com>
|
|
|
|
* Daniel Stone <daniel@fooishbar.org>
|
|
|
|
* Ran Benita <ran234@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2023-09-18 03:59:30 -06:00
|
|
|
#include <ctype.h>
|
2020-07-25 06:49:17 -06:00
|
|
|
#include <errno.h>
|
2020-06-23 00:06:10 -06:00
|
|
|
#include <limits.h>
|
|
|
|
#include <fcntl.h>
|
2020-07-07 20:51:54 -06:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2020-06-23 00:06:10 -06:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2023-04-11 14:24:47 -06:00
|
|
|
#ifdef _WIN32
|
2020-06-23 00:06:10 -06:00
|
|
|
#include <io.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "tools-common.h"
|
2023-12-18 23:28:52 -07:00
|
|
|
#include "src/utils.h"
|
|
|
|
#include "src/keysym.h"
|
2020-06-23 00:06:10 -06:00
|
|
|
|
2023-09-18 04:06:45 -06:00
|
|
|
static void
|
|
|
|
print_keycode(struct xkb_keymap *keymap, const char* prefix,
|
|
|
|
xkb_keycode_t keycode, const char *suffix) {
|
|
|
|
const char *keyname = xkb_keymap_key_get_name(keymap, keycode);
|
|
|
|
if (keyname) {
|
|
|
|
printf("%s%-4s%s", prefix, keyname, suffix);
|
|
|
|
} else {
|
|
|
|
printf("%s%-4d%s", prefix, keycode, suffix);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-18 04:17:11 -06:00
|
|
|
#ifdef ENABLE_PRIVATE_APIS
|
|
|
|
#include "src/keymap.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
print_keymap_modmaps(struct xkb_keymap *keymap) {
|
|
|
|
printf("Modifiers mapping:\n");
|
|
|
|
for (xkb_mod_index_t vmod = 0; vmod < xkb_keymap_num_mods(keymap); vmod++) {
|
|
|
|
if (keymap->mods.mods[vmod].type & MOD_REAL)
|
|
|
|
continue;
|
|
|
|
printf("- %s: ", xkb_keymap_mod_get_name(keymap, vmod));
|
|
|
|
if (keymap->mods.mods[vmod].mapping) {
|
|
|
|
bool first = true;
|
|
|
|
for (xkb_mod_index_t mod = 0; mod < xkb_keymap_num_mods(keymap); mod++) {
|
|
|
|
if (keymap->mods.mods[vmod].mapping & (1u << mod)) {
|
|
|
|
if (first) {
|
|
|
|
first = false;
|
|
|
|
printf("%s", xkb_keymap_mod_get_name(keymap, mod));
|
|
|
|
} else {
|
|
|
|
printf("+ %s", xkb_keymap_mod_get_name(keymap, mod));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("(unmapped)");
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MODMAP_PADDING 7
|
|
|
|
#define VMODMAP_PADDING 9
|
|
|
|
static void
|
|
|
|
print_key_modmaps(struct xkb_keymap *keymap, xkb_keycode_t keycode) {
|
|
|
|
const struct xkb_key *key = XkbKey(keymap, keycode);
|
|
|
|
if (key != NULL) {
|
|
|
|
xkb_mod_index_t mod;
|
|
|
|
|
|
|
|
printf("modmap [ ");
|
|
|
|
if (key->modmap) {
|
|
|
|
for (mod = 0; mod < xkb_keymap_num_mods(keymap); mod++) {
|
|
|
|
if (key->modmap & (1u << mod)) {
|
|
|
|
printf("%-*s", (int) MODMAP_PADDING,
|
|
|
|
xkb_keymap_mod_get_name(keymap, mod));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("%*c", (int) MODMAP_PADDING, ' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
printf(" ] vmodmap [ ");
|
|
|
|
int length = 0;
|
|
|
|
const char *mod_name;
|
|
|
|
for (mod = 0; mod < xkb_keymap_num_mods(keymap); mod++) {
|
|
|
|
if (key->vmodmap & (1u << mod)) {
|
|
|
|
mod_name = xkb_keymap_mod_get_name(keymap, mod);
|
|
|
|
length += strlen(mod_name) + 1;
|
|
|
|
printf("%s ", mod_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (length < VMODMAP_PADDING) {
|
|
|
|
printf("%*c", (int) VMODMAP_PADDING - length, ' ');
|
|
|
|
}
|
|
|
|
printf("] ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_keys_modmaps(struct xkb_keymap *keymap) {
|
|
|
|
const struct xkb_key *key;
|
|
|
|
printf("Keys modmaps:\n");
|
|
|
|
xkb_keys_foreach(key, keymap) {
|
|
|
|
if (key->modmap || key->vmodmap) {
|
|
|
|
print_keycode(keymap, "- ", key->keycode, ": ");
|
|
|
|
print_key_modmaps(keymap, key->keycode);
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-06-22 22:01:48 -06:00
|
|
|
void
|
2023-11-01 06:06:38 -06:00
|
|
|
tools_print_keycode_state(char *prefix,
|
|
|
|
struct xkb_state *state,
|
2020-06-22 22:01:48 -06:00
|
|
|
struct xkb_compose_state *compose_state,
|
|
|
|
xkb_keycode_t keycode,
|
2023-09-18 04:15:06 -06:00
|
|
|
enum xkb_consumed_mode consumed_mode,
|
|
|
|
print_state_fields_mask_t fields)
|
2020-06-22 22:01:48 -06:00
|
|
|
{
|
|
|
|
struct xkb_keymap *keymap;
|
|
|
|
|
|
|
|
xkb_keysym_t sym;
|
|
|
|
const xkb_keysym_t *syms;
|
|
|
|
int nsyms;
|
2023-12-18 23:28:52 -07:00
|
|
|
// FIXME: this buffer is used for xkb_compose_state_get_utf8,
|
|
|
|
// which can have a length up to 256. Need to import this constant from compose.
|
|
|
|
char s[MAX(16, XKB_KEYSYM_NAME_MAX_SIZE)];
|
2020-06-22 22:01:48 -06:00
|
|
|
xkb_layout_index_t layout;
|
|
|
|
enum xkb_compose_status status;
|
|
|
|
|
|
|
|
keymap = xkb_state_get_keymap(state);
|
|
|
|
|
|
|
|
nsyms = xkb_state_key_get_syms(state, keycode, &syms);
|
|
|
|
|
|
|
|
if (nsyms <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
status = XKB_COMPOSE_NOTHING;
|
|
|
|
if (compose_state)
|
|
|
|
status = xkb_compose_state_get_status(compose_state);
|
|
|
|
|
|
|
|
if (status == XKB_COMPOSE_COMPOSING || status == XKB_COMPOSE_CANCELLED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (status == XKB_COMPOSE_COMPOSED) {
|
|
|
|
sym = xkb_compose_state_get_one_sym(compose_state);
|
|
|
|
syms = &sym;
|
|
|
|
nsyms = 1;
|
|
|
|
}
|
|
|
|
else if (nsyms == 1) {
|
|
|
|
sym = xkb_state_key_get_one_sym(state, keycode);
|
|
|
|
syms = &sym;
|
|
|
|
}
|
|
|
|
|
2023-11-01 06:06:38 -06:00
|
|
|
if (prefix)
|
|
|
|
printf("%s", prefix);
|
|
|
|
|
2023-09-18 04:06:45 -06:00
|
|
|
print_keycode(keymap, "keycode [ ", keycode, " ] ");
|
|
|
|
|
2023-09-18 04:17:11 -06:00
|
|
|
#ifdef ENABLE_PRIVATE_APIS
|
|
|
|
if (fields & PRINT_MODMAPS) {
|
|
|
|
print_key_modmaps(keymap, keycode);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-06-22 22:01:48 -06:00
|
|
|
printf("keysyms [ ");
|
|
|
|
for (int i = 0; i < nsyms; i++) {
|
|
|
|
xkb_keysym_get_name(syms[i], s, sizeof(s));
|
|
|
|
printf("%-*s ", (int) sizeof(s), s);
|
|
|
|
}
|
|
|
|
printf("] ");
|
|
|
|
|
2023-09-18 04:15:06 -06:00
|
|
|
if (fields & PRINT_UNICODE) {
|
|
|
|
if (status == XKB_COMPOSE_COMPOSED)
|
|
|
|
xkb_compose_state_get_utf8(compose_state, s, sizeof(s));
|
|
|
|
else
|
|
|
|
xkb_state_key_get_utf8(state, keycode, s, sizeof(s));
|
|
|
|
/* HACK: escape single control characters from C0 set using the
|
|
|
|
* Unicode codepoint convention. Ideally we would like to escape
|
|
|
|
* any non-printable character in the string.
|
|
|
|
*/
|
|
|
|
if (!*s) {
|
|
|
|
printf("unicode [ ] ");
|
|
|
|
} else if (strlen(s) == 1 && (*s <= 0x1F || *s == 0x7F)) {
|
|
|
|
printf("unicode [ U+%04hX ] ", *s);
|
|
|
|
} else {
|
|
|
|
printf("unicode [ %s ] ", s);
|
|
|
|
}
|
2023-09-18 03:59:30 -06:00
|
|
|
}
|
2020-06-22 22:01:48 -06:00
|
|
|
|
|
|
|
layout = xkb_state_key_get_layout(state, keycode);
|
2023-09-18 04:15:06 -06:00
|
|
|
if (fields & PRINT_LAYOUT) {
|
|
|
|
printf("layout [ %s (%d) ] ",
|
|
|
|
xkb_keymap_layout_get_name(keymap, layout), layout);
|
|
|
|
}
|
2020-06-22 22:01:48 -06:00
|
|
|
|
|
|
|
printf("level [ %d ] ",
|
|
|
|
xkb_state_key_get_level(state, keycode, layout));
|
|
|
|
|
|
|
|
printf("mods [ ");
|
|
|
|
for (xkb_mod_index_t mod = 0; mod < xkb_keymap_num_mods(keymap); mod++) {
|
|
|
|
if (xkb_state_mod_index_is_active(state, mod,
|
|
|
|
XKB_STATE_MODS_EFFECTIVE) <= 0)
|
|
|
|
continue;
|
|
|
|
if (xkb_state_mod_index_is_consumed2(state, keycode, mod,
|
|
|
|
consumed_mode))
|
|
|
|
printf("-%s ", xkb_keymap_mod_get_name(keymap, mod));
|
|
|
|
else
|
|
|
|
printf("%s ", xkb_keymap_mod_get_name(keymap, mod));
|
|
|
|
}
|
|
|
|
printf("] ");
|
|
|
|
|
|
|
|
printf("leds [ ");
|
|
|
|
for (xkb_led_index_t led = 0; led < xkb_keymap_num_leds(keymap); led++) {
|
|
|
|
if (xkb_state_led_index_is_active(state, led) <= 0)
|
|
|
|
continue;
|
|
|
|
printf("%s ", xkb_keymap_led_get_name(keymap, led));
|
|
|
|
}
|
|
|
|
printf("] ");
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tools_print_state_changes(enum xkb_state_component changed)
|
|
|
|
{
|
|
|
|
if (changed == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
printf("changed [ ");
|
|
|
|
if (changed & XKB_STATE_LAYOUT_EFFECTIVE)
|
|
|
|
printf("effective-layout ");
|
|
|
|
if (changed & XKB_STATE_LAYOUT_DEPRESSED)
|
|
|
|
printf("depressed-layout ");
|
|
|
|
if (changed & XKB_STATE_LAYOUT_LATCHED)
|
|
|
|
printf("latched-layout ");
|
|
|
|
if (changed & XKB_STATE_LAYOUT_LOCKED)
|
|
|
|
printf("locked-layout ");
|
|
|
|
if (changed & XKB_STATE_MODS_EFFECTIVE)
|
|
|
|
printf("effective-mods ");
|
|
|
|
if (changed & XKB_STATE_MODS_DEPRESSED)
|
|
|
|
printf("depressed-mods ");
|
|
|
|
if (changed & XKB_STATE_MODS_LATCHED)
|
|
|
|
printf("latched-mods ");
|
|
|
|
if (changed & XKB_STATE_MODS_LOCKED)
|
|
|
|
printf("locked-mods ");
|
|
|
|
if (changed & XKB_STATE_LEDS)
|
|
|
|
printf("leds ");
|
|
|
|
printf("]\n");
|
|
|
|
}
|
|
|
|
|
2023-04-11 14:24:47 -06:00
|
|
|
#ifdef _WIN32
|
2020-06-23 00:06:10 -06:00
|
|
|
void
|
2020-06-22 22:01:48 -06:00
|
|
|
tools_disable_stdin_echo(void)
|
2020-06-23 00:06:10 -06:00
|
|
|
{
|
|
|
|
HANDLE stdin_handle = GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
DWORD mode = 0;
|
|
|
|
GetConsoleMode(stdin_handle, &mode);
|
|
|
|
SetConsoleMode(stdin_handle, mode & ~ENABLE_ECHO_INPUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-06-22 22:01:48 -06:00
|
|
|
tools_enable_stdin_echo(void)
|
2020-06-23 00:06:10 -06:00
|
|
|
{
|
|
|
|
HANDLE stdin_handle = GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
DWORD mode = 0;
|
|
|
|
GetConsoleMode(stdin_handle, &mode);
|
|
|
|
SetConsoleMode(stdin_handle, mode | ENABLE_ECHO_INPUT);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
void
|
2020-06-22 22:01:48 -06:00
|
|
|
tools_disable_stdin_echo(void)
|
2020-06-23 00:06:10 -06:00
|
|
|
{
|
|
|
|
/* Same as `stty -echo`. */
|
|
|
|
struct termios termios;
|
|
|
|
if (tcgetattr(STDIN_FILENO, &termios) == 0) {
|
|
|
|
termios.c_lflag &= ~ECHO;
|
|
|
|
(void) tcsetattr(STDIN_FILENO, TCSADRAIN, &termios);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-06-22 22:01:48 -06:00
|
|
|
tools_enable_stdin_echo(void)
|
2020-06-23 00:06:10 -06:00
|
|
|
{
|
|
|
|
/* Same as `stty echo`. */
|
|
|
|
struct termios termios;
|
|
|
|
if (tcgetattr(STDIN_FILENO, &termios) == 0) {
|
|
|
|
termios.c_lflag |= ECHO;
|
|
|
|
(void) tcsetattr(STDIN_FILENO, TCSADRAIN, &termios);
|
|
|
|
}
|
|
|
|
}
|
2020-07-07 20:51:54 -06:00
|
|
|
|
2020-06-23 00:06:10 -06:00
|
|
|
#endif
|
2020-07-07 20:51:54 -06:00
|
|
|
|
|
|
|
int
|
|
|
|
tools_exec_command(const char *prefix, int real_argc, char **real_argv)
|
|
|
|
{
|
|
|
|
char *argv[64] = {NULL};
|
2020-07-21 19:52:13 -06:00
|
|
|
char executable[PATH_MAX];
|
2020-07-07 20:51:54 -06:00
|
|
|
const char *command;
|
2020-07-25 06:49:17 -06:00
|
|
|
int rc;
|
2020-07-07 20:51:54 -06:00
|
|
|
|
2020-07-21 19:15:27 -06:00
|
|
|
if (((size_t)real_argc >= ARRAY_SIZE(argv))) {
|
|
|
|
fprintf(stderr, "Too many arguments\n");
|
|
|
|
return EXIT_INVALID_USAGE;
|
|
|
|
}
|
2020-07-07 20:51:54 -06:00
|
|
|
|
|
|
|
command = real_argv[0];
|
|
|
|
|
2020-07-25 06:49:17 -06:00
|
|
|
rc = snprintf(executable, sizeof(executable),
|
|
|
|
"%s/%s-%s", LIBXKBCOMMON_TOOL_PATH, prefix, command);
|
|
|
|
if (rc < 0 || (size_t) rc >= sizeof(executable)) {
|
2020-07-07 20:51:54 -06:00
|
|
|
fprintf(stderr, "Failed to assemble command\n");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
argv[0] = executable;
|
|
|
|
for (int i = 1; i < real_argc; i++)
|
|
|
|
argv[i] = real_argv[i];
|
|
|
|
|
2020-07-21 19:52:13 -06:00
|
|
|
execv(executable, argv);
|
2020-07-07 20:51:54 -06:00
|
|
|
if (errno == ENOENT) {
|
|
|
|
fprintf(stderr, "Command '%s' is not available\n", command);
|
|
|
|
return EXIT_INVALID_USAGE;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Failed to execute '%s' (%s)\n",
|
|
|
|
command, strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|