2 * QEMU keysym to keycode conversion using rdesktop keymaps
4 * Copyright (c) 2004 Johannes Schindelin
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "qemu-common.h"
27 #include "qemu/datadir.h"
30 #include "qemu/ctype.h"
31 #include "qemu/error-report.h"
32 #include "qapi/error.h"
44 static int get_keysym(const name2keysym_t
*table
,
47 const name2keysym_t
*p
;
48 for(p
= table
; p
->name
!= NULL
; p
++) {
49 if (!strcmp(p
->name
, name
)) {
53 if (name
[0] == 'U' && strlen(name
) == 5) { /* try unicode Uxxxx */
55 int ret
= (int)strtoul(name
+ 1, &end
, 16);
56 if (*end
== '\0' && ret
> 0) {
64 static void add_keysym(char *line
, int keysym
, int keycode
, kbd_layout_t
*k
)
66 struct keysym2code
*keysym2code
;
68 keysym2code
= g_hash_table_lookup(k
->hash
, GINT_TO_POINTER(keysym
));
70 if (keysym2code
->count
< ARRAY_SIZE(keysym2code
->keycodes
)) {
71 keysym2code
->keycodes
[keysym2code
->count
++] = keycode
;
73 warn_report("more than %zd keycodes for keysym %d",
74 ARRAY_SIZE(keysym2code
->keycodes
), keysym
);
79 keysym2code
= g_new0(struct keysym2code
, 1);
80 keysym2code
->keycodes
[0] = keycode
;
81 keysym2code
->count
= 1;
82 g_hash_table_replace(k
->hash
, GINT_TO_POINTER(keysym
), keysym2code
);
83 trace_keymap_add(keysym
, keycode
, line
);
86 static int parse_keyboard_layout(kbd_layout_t
*k
,
87 const name2keysym_t
*table
,
88 const char *language
, Error
**errp
)
97 filename
= qemu_find_file(QEMU_FILE_TYPE_KEYMAP
, language
);
98 trace_keymap_parse(filename
);
99 f
= filename
? fopen(filename
, "r") : NULL
;
102 error_setg(errp
, "could not read keymap file: '%s'", language
);
107 if (fgets(line
, 1024, f
) == NULL
) {
111 if (len
> 0 && line
[len
- 1] == '\n') {
112 line
[len
- 1] = '\0';
114 if (line
[0] == '#') {
117 if (!strncmp(line
, "map ", 4)) {
120 if (!strncmp(line
, "include ", 8)) {
121 error_setg(errp
, "keymap include files are not supported any more");
126 while (line
[offset
] != 0 &&
127 line
[offset
] != ' ' &&
128 offset
< sizeof(keyname
) - 1) {
129 keyname
[offset
] = line
[offset
];
133 if (strlen(keyname
)) {
135 keysym
= get_keysym(table
, keyname
);
137 /* warn_report("unknown keysym %s", line);*/
139 const char *rest
= line
+ offset
+ 1;
140 int keycode
= strtol(rest
, NULL
, 0);
142 if (strstr(rest
, "shift")) {
143 keycode
|= SCANCODE_SHIFT
;
145 if (strstr(rest
, "altgr")) {
146 keycode
|= SCANCODE_ALTGR
;
148 if (strstr(rest
, "ctrl")) {
149 keycode
|= SCANCODE_CTRL
;
152 add_keysym(line
, keysym
, keycode
, k
);
154 if (strstr(rest
, "addupper")) {
156 for (c
= keyname
; *c
; c
++) {
157 *c
= qemu_toupper(*c
);
159 keysym
= get_keysym(table
, keyname
);
161 add_keysym(line
, keysym
,
162 keycode
| SCANCODE_SHIFT
, k
);
177 kbd_layout_t
*init_keyboard_layout(const name2keysym_t
*table
,
178 const char *language
, Error
**errp
)
182 k
= g_new0(kbd_layout_t
, 1);
183 k
->hash
= g_hash_table_new(NULL
, NULL
);
184 if (parse_keyboard_layout(k
, table
, language
, errp
) < 0) {
185 g_hash_table_unref(k
->hash
);
193 int keysym2scancode(kbd_layout_t
*k
, int keysym
,
194 QKbdState
*kbd
, bool down
)
196 static const uint32_t mask
=
197 SCANCODE_SHIFT
| SCANCODE_ALTGR
| SCANCODE_CTRL
;
199 struct keysym2code
*keysym2code
;
201 #ifdef XK_ISO_Left_Tab
202 if (keysym
== XK_ISO_Left_Tab
) {
207 keysym2code
= g_hash_table_lookup(k
->hash
, GINT_TO_POINTER(keysym
));
209 trace_keymap_unmapped(keysym
);
210 warn_report("no scancode found for keysym %d", keysym
);
214 if (keysym2code
->count
== 1) {
215 return keysym2code
->keycodes
[0];
218 /* We have multiple keysym -> keycode mappings. */
221 * On keydown: Check whenever we find one mapping where the
222 * modifier state of the mapping matches the current user
223 * interface modifier state. If so, prefer that one.
226 if (kbd
&& qkbd_state_modifier_get(kbd
, QKBD_MOD_SHIFT
)) {
227 mods
|= SCANCODE_SHIFT
;
229 if (kbd
&& qkbd_state_modifier_get(kbd
, QKBD_MOD_ALTGR
)) {
230 mods
|= SCANCODE_ALTGR
;
232 if (kbd
&& qkbd_state_modifier_get(kbd
, QKBD_MOD_CTRL
)) {
233 mods
|= SCANCODE_CTRL
;
236 for (i
= 0; i
< keysym2code
->count
; i
++) {
237 if ((keysym2code
->keycodes
[i
] & mask
) == mods
) {
238 return keysym2code
->keycodes
[i
];
243 * On keyup: Try find a key which is actually down.
245 for (i
= 0; i
< keysym2code
->count
; i
++) {
246 QKeyCode qcode
= qemu_input_key_number_to_qcode
247 (keysym2code
->keycodes
[i
]);
248 if (kbd
&& qkbd_state_key_get(kbd
, qcode
)) {
249 return keysym2code
->keycodes
[i
];
253 return keysym2code
->keycodes
[0];
256 int keycode_is_keypad(kbd_layout_t
*k
, int keycode
)
258 if (keycode
>= 0x47 && keycode
<= 0x53) {
264 int keysym_is_numlock(kbd_layout_t
*k
, int keysym
)
267 case 0xffb0 ... 0xffb9: /* KP_0 .. KP_9 */
268 case 0xffac: /* KP_Separator */
269 case 0xffae: /* KP_Decimal */