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
|
/*
* test_input - Test the input system - hotplug and keypresses
*
* Copyright (c) 2011 Ran Benita <ran234@gmail.com>
* Copyright (c) 2012 David Herrmann <dh.herrmann@googlemail.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 OR COPYRIGHT HOLDERS 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.
*/
static void print_help();
#include <errno.h>
#include <linux/input.h>
#include <locale.h>
#include <signal.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/signalfd.h>
#include <unistd.h>
#include <xkbcommon/xkbcommon.h>
#include "eloop.h"
#include "shl_log.h"
#include "uterm_input.h"
#include "uterm_monitor.h"
#include "test_include.h"
static struct ev_eloop *eloop;
static struct uterm_input *input;
struct {
char *xkb_model;
char *xkb_layout;
char *xkb_variant;
char *xkb_options;
char *locale;
char *xkb_keymap;
char *xkb_compose_file;
} input_conf;
/* Pressing Ctrl-\ should toggle the capturing. */
static void sig_quit(struct ev_eloop *p,
struct signalfd_siginfo *info,
void *data)
{
if (!input)
return;
if (uterm_input_is_awake(input)) {
uterm_input_sleep(input);
log_info("Went to sleep\n");
} else {
uterm_input_wake_up(input);
log_info("Woke Up\n");
}
}
static void print_modifiers(unsigned int mods)
{
if (mods & UTERM_SHIFT_MASK)
printf("SHIFT ");
if (mods & UTERM_LOCK_MASK)
printf("LOCK ");
if (mods & UTERM_CONTROL_MASK)
printf("CONTROL ");
if (mods & UTERM_ALT_MASK)
printf("ALT ");
if (mods & UTERM_LOGO_MASK)
printf("LOGO ");
printf("\n");
}
static void input_arrived(struct uterm_input *input,
struct uterm_input_key_event *ev,
void *data)
{
char s[32];
xkb_keysym_get_name(ev->keysyms[0], s, sizeof(s));
printf("sym %s ", s);
if (ev->codepoints[0] != UTERM_INPUT_INVALID) {
/*
* Just a proof-of-concept hack. This works because glibc uses
* UTF-32 (= UCS-4) as the internal wchar_t encoding.
*/
printf("unicode %lc ", ev->codepoints[0]);
}
print_modifiers(ev->mods);
}
static void monitor_event(struct uterm_monitor *mon,
struct uterm_monitor_event *ev,
void *data)
{
int ret;
char *keymap, *compose_file;
size_t compose_file_len;
if (ev->type == UTERM_MONITOR_NEW_SEAT) {
if (strcmp(ev->seat_name, "seat0"))
return;
keymap = NULL;
if (input_conf.xkb_keymap && *input_conf.xkb_keymap) {
ret = shl_read_file(input_conf.xkb_keymap, &keymap,
NULL);
if (ret)
log_error("cannot read keymap file %s: %d",
input_conf.xkb_keymap, ret);
}
compose_file = NULL;
compose_file_len = 0;
if (input_conf.xkb_compose_file &&
*input_conf.xkb_compose_file) {
ret = shl_read_file(input_conf.xkb_compose_file,
&compose_file, &compose_file_len);
if (ret)
log_error("cannot read compose file %s: %d",
input_conf.xkb_compose_file, ret);
}
ret = uterm_input_new(&input, eloop,
input_conf.xkb_model,
input_conf.xkb_layout,
input_conf.xkb_variant,
input_conf.xkb_options,
input_conf.locale,
keymap, compose_file, compose_file_len,
0, 0, log_llog, NULL);
if (ret)
return;
ret = uterm_input_register_key_cb(input, input_arrived, NULL);
if (ret)
return;
uterm_input_wake_up(input);
} else if (ev->type == UTERM_MONITOR_FREE_SEAT) {
uterm_input_unregister_key_cb(input, input_arrived, NULL);
uterm_input_unref(input);
} else if (ev->type == UTERM_MONITOR_NEW_DEV) {
if (ev->dev_type == UTERM_MONITOR_INPUT)
uterm_input_add_dev(input, ev->dev_node, true);
} else if (ev->type == UTERM_MONITOR_FREE_DEV) {
if (ev->dev_type == UTERM_MONITOR_INPUT)
uterm_input_remove_dev(input, ev->dev_node);
}
}
static void print_help()
{
/*
* Usage/Help information
* This should be scaled to a maximum of 80 characters per line:
*
* 80 char line:
* | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 |
* "12345678901234567890123456789012345678901234567890123456789012345678901234567890\n"
* 80 char line starting with tab:
* |10| 20 | 30 | 40 | 50 | 60 | 70 | 80 |
* "\t901234567890123456789012345678901234567890123456789012345678901234567890\n"
*/
fprintf(stderr,
"Usage:\n"
"\t%1$s [options]\n"
"\t%1$s -h [options]\n"
"\n"
"You can prefix boolean options with \"no-\" to negate it. If an argument is\n"
"given multiple times, only the last argument matters if not otherwise stated.\n"
"\n"
"General Options:\n"
TEST_HELP
"\n"
"Input Device Options:\n"
"\t --xkb-model <model> [-] Set XkbModel for input devices\n"
"\t --xkb-layout <layout> [-] Set XkbLayout for input devices\n"
"\t --xkb-variant <variant> [-] Set XkbVariant for input devices\n"
"\t --xkb-options <options> [-] Set XkbOptions for input devices\n"
"\t --locale <locale> [-] Set locale for input devices\n"
"\t --xkb-keymap <FILE> [-] Use a predefined keymap for\n"
"\t input devices\n",
"test_input");
/*
* 80 char line:
* | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 |
* "12345678901234567890123456789012345678901234567890123456789012345678901234567890\n"
* 80 char line starting with tab:
* |10| 20 | 30 | 40 | 50 | 60 | 70 | 80 |
* "\t901234567890123456789012345678901234567890123456789012345678901234567890\n"
*/
}
struct conf_option options[] = {
TEST_OPTIONS,
CONF_OPTION_STRING(0, "xkb-model", &input_conf.xkb_model, ""),
CONF_OPTION_STRING(0, "xkb-layout", &input_conf.xkb_layout, ""),
CONF_OPTION_STRING(0, "xkb-variant", &input_conf.xkb_variant, ""),
CONF_OPTION_STRING(0, "xkb-options", &input_conf.xkb_options, ""),
CONF_OPTION_STRING(0, "locale", &input_conf.locale, "C"),
CONF_OPTION_STRING(0, "xkb-keymap", &input_conf.xkb_keymap, ""),
CONF_OPTION_STRING(0, "xkb-compose-file", &input_conf.xkb_compose_file, ""),
};
int main(int argc, char **argv)
{
int ret;
struct uterm_monitor *mon;
size_t onum;
onum = sizeof(options) / sizeof(*options);
ret = test_prepare(options, onum, argc, argv, &eloop);
if (ret)
goto err_fail;
if (!setlocale(LC_ALL, "")) {
log_err("Cannot set locale: %m");
ret = -EFAULT;
goto err_exit;
}
ret = uterm_monitor_new(&mon, eloop, monitor_event, NULL);
if (ret)
goto err_exit;
ret = ev_eloop_register_signal_cb(eloop, SIGQUIT, sig_quit, NULL);
if (ret)
goto err_mon;
ret = system("stty -echo");
if (ret)
goto err_signal;
uterm_monitor_scan(mon);
ev_eloop_run(eloop, -1);
ret = system("stty echo");
if (ret)
goto err_signal;
err_signal:
ev_eloop_unregister_signal_cb(eloop, SIGQUIT, sig_quit, NULL);
err_mon:
uterm_monitor_unref(mon);
err_exit:
test_exit(options, onum, eloop);
err_fail:
if (ret != -ECANCELED)
test_fail(ret);
return abs(ret);
}
|