]>
Commit | Line | Data |
---|---|---|
3d11d0eb FB |
1 | /* |
2 | * QEMU keysym to keycode conversion using rdesktop keymaps | |
5fafdf24 | 3 | * |
3d11d0eb | 4 | * Copyright (c) 2004 Johannes Schindelin |
5fafdf24 | 5 | * |
3d11d0eb FB |
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: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
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 | |
22 | * THE SOFTWARE. | |
23 | */ | |
24 | ||
e16f4c87 | 25 | #include "qemu/osdep.h" |
0483755a | 26 | #include "keymaps.h" |
9c17d615 | 27 | #include "sysemu/sysemu.h" |
d3b787fa | 28 | #include "trace.h" |
8297be80 | 29 | #include "qemu/error-report.h" |
ab4f931e | 30 | #include "qapi/error.h" |
0483755a | 31 | |
d713e3fd | 32 | struct keysym2code { |
23ad24e4 GH |
33 | uint32_t count; |
34 | uint16_t keycodes[4]; | |
d713e3fd GH |
35 | }; |
36 | ||
fe5fca9a | 37 | struct kbd_layout_t { |
d713e3fd | 38 | GHashTable *hash; |
fe5fca9a GH |
39 | }; |
40 | ||
c227f099 | 41 | static int get_keysym(const name2keysym_t *table, |
43948386 | 42 | const char *name) |
3d11d0eb | 43 | { |
c227f099 | 44 | const name2keysym_t *p; |
0483755a | 45 | for(p = table; p->name != NULL; p++) { |
43948386 | 46 | if (!strcmp(p->name, name)) { |
3d11d0eb | 47 | return p->keysym; |
43948386 | 48 | } |
3d11d0eb | 49 | } |
82807159 JK |
50 | if (name[0] == 'U' && strlen(name) == 5) { /* try unicode Uxxxx */ |
51 | char *end; | |
52 | int ret = (int)strtoul(name + 1, &end, 16); | |
43948386 GA |
53 | if (*end == '\0' && ret > 0) { |
54 | return ret; | |
55 | } | |
82807159 | 56 | } |
3d11d0eb FB |
57 | return 0; |
58 | } | |
59 | ||
3d11d0eb | 60 | |
d713e3fd GH |
61 | static void add_keysym(char *line, int keysym, int keycode, kbd_layout_t *k) |
62 | { | |
63 | struct keysym2code *keysym2code; | |
64 | ||
65 | keysym2code = g_hash_table_lookup(k->hash, GINT_TO_POINTER(keysym)); | |
66 | if (keysym2code) { | |
23ad24e4 GH |
67 | if (keysym2code->count < ARRAY_SIZE(keysym2code->keycodes)) { |
68 | keysym2code->keycodes[keysym2code->count++] = keycode; | |
69 | } else { | |
70 | warn_report("more than %zd keycodes for keysym %d", | |
71 | ARRAY_SIZE(keysym2code->keycodes), keysym); | |
72 | } | |
d713e3fd | 73 | return; |
44bb61c8 | 74 | } |
d713e3fd GH |
75 | |
76 | keysym2code = g_new0(struct keysym2code, 1); | |
23ad24e4 GH |
77 | keysym2code->keycodes[0] = keycode; |
78 | keysym2code->count = 1; | |
d713e3fd GH |
79 | g_hash_table_replace(k->hash, GINT_TO_POINTER(keysym), keysym2code); |
80 | trace_keymap_add(keysym, keycode, line); | |
44bb61c8 ST |
81 | } |
82 | ||
f7b9e299 MA |
83 | static int parse_keyboard_layout(kbd_layout_t *k, |
84 | const name2keysym_t *table, | |
ab4f931e | 85 | const char *language, Error **errp) |
3d11d0eb | 86 | { |
f7b9e299 | 87 | int ret; |
3d11d0eb | 88 | FILE *f; |
5cea8590 | 89 | char * filename; |
3d11d0eb | 90 | char line[1024]; |
d3b787fa | 91 | char keyname[64]; |
3d11d0eb FB |
92 | int len; |
93 | ||
5cea8590 | 94 | filename = qemu_find_file(QEMU_FILE_TYPE_KEYMAP, language); |
d3b787fa | 95 | trace_keymap_parse(filename); |
f2d3476e MA |
96 | f = filename ? fopen(filename, "r") : NULL; |
97 | g_free(filename); | |
98 | if (!f) { | |
ab4f931e | 99 | error_setg(errp, "could not read keymap file: '%s'", language); |
f7b9e299 | 100 | return -1; |
43948386 | 101 | } |
f2d3476e | 102 | |
3d11d0eb | 103 | for(;;) { |
43948386 | 104 | if (fgets(line, 1024, f) == NULL) { |
3d11d0eb | 105 | break; |
43948386 | 106 | } |
3d11d0eb | 107 | len = strlen(line); |
43948386 | 108 | if (len > 0 && line[len - 1] == '\n') { |
3d11d0eb | 109 | line[len - 1] = '\0'; |
43948386 GA |
110 | } |
111 | if (line[0] == '#') { | |
112 | continue; | |
113 | } | |
114 | if (!strncmp(line, "map ", 4)) { | |
115 | continue; | |
116 | } | |
117 | if (!strncmp(line, "include ", 8)) { | |
ab4f931e | 118 | if (parse_keyboard_layout(k, table, line + 8, errp) < 0) { |
f7b9e299 MA |
119 | ret = -1; |
120 | goto out; | |
121 | } | |
3d11d0eb | 122 | } else { |
d3b787fa GH |
123 | int offset = 0; |
124 | while (line[offset] != 0 && | |
125 | line[offset] != ' ' && | |
126 | offset < sizeof(keyname) - 1) { | |
127 | keyname[offset] = line[offset]; | |
128 | offset++; | |
43948386 | 129 | } |
d3b787fa GH |
130 | keyname[offset] = 0; |
131 | if (strlen(keyname)) { | |
43948386 | 132 | int keysym; |
d3b787fa | 133 | keysym = get_keysym(table, keyname); |
43948386 | 134 | if (keysym == 0) { |
2ab4b135 | 135 | /* warn_report("unknown keysym %s", line);*/ |
43948386 | 136 | } else { |
d3b787fa | 137 | const char *rest = line + offset + 1; |
955d7b26 | 138 | int keycode = strtol(rest, NULL, 0); |
a528b80c | 139 | |
955d7b26 | 140 | if (strstr(rest, "shift")) { |
43948386 | 141 | keycode |= SCANCODE_SHIFT; |
955d7b26 MA |
142 | } |
143 | if (strstr(rest, "altgr")) { | |
43948386 | 144 | keycode |= SCANCODE_ALTGR; |
955d7b26 MA |
145 | } |
146 | if (strstr(rest, "ctrl")) { | |
43948386 | 147 | keycode |= SCANCODE_CTRL; |
955d7b26 | 148 | } |
44bb61c8 | 149 | |
43948386 | 150 | add_keysym(line, keysym, keycode, k); |
44bb61c8 | 151 | |
955d7b26 | 152 | if (strstr(rest, "addupper")) { |
43948386 | 153 | char *c; |
d3b787fa | 154 | for (c = keyname; *c; c++) { |
43948386 GA |
155 | *c = qemu_toupper(*c); |
156 | } | |
d3b787fa | 157 | keysym = get_keysym(table, keyname); |
43948386 GA |
158 | if (keysym) { |
159 | add_keysym(line, keysym, | |
160 | keycode | SCANCODE_SHIFT, k); | |
161 | } | |
162 | } | |
163 | } | |
164 | } | |
165 | } | |
3d11d0eb | 166 | } |
f7b9e299 MA |
167 | |
168 | ret = 0; | |
169 | out: | |
3d11d0eb | 170 | fclose(f); |
f7b9e299 | 171 | return ret; |
3d11d0eb FB |
172 | } |
173 | ||
0483755a | 174 | |
fe5fca9a | 175 | kbd_layout_t *init_keyboard_layout(const name2keysym_t *table, |
ab4f931e | 176 | const char *language, Error **errp) |
3d11d0eb | 177 | { |
f7b9e299 MA |
178 | kbd_layout_t *k; |
179 | ||
180 | k = g_new0(kbd_layout_t, 1); | |
181 | k->hash = g_hash_table_new(NULL, NULL); | |
ab4f931e | 182 | if (parse_keyboard_layout(k, table, language, errp) < 0) { |
f7b9e299 MA |
183 | g_hash_table_unref(k->hash); |
184 | g_free(k); | |
185 | return NULL; | |
186 | } | |
187 | return k; | |
3d11d0eb FB |
188 | } |
189 | ||
0483755a | 190 | |
abb4f2c9 GH |
191 | int keysym2scancode(kbd_layout_t *k, int keysym, |
192 | bool shift, bool altgr, bool ctrl) | |
3d11d0eb | 193 | { |
abb4f2c9 GH |
194 | static const uint32_t mask = |
195 | SCANCODE_SHIFT | SCANCODE_ALTGR | SCANCODE_CTRL; | |
196 | uint32_t mods, i; | |
d713e3fd GH |
197 | struct keysym2code *keysym2code; |
198 | ||
3d11d0eb | 199 | #ifdef XK_ISO_Left_Tab |
d713e3fd GH |
200 | if (keysym == XK_ISO_Left_Tab) { |
201 | keysym = XK_Tab; | |
202 | } | |
3d11d0eb | 203 | #endif |
d713e3fd GH |
204 | |
205 | keysym2code = g_hash_table_lookup(k->hash, GINT_TO_POINTER(keysym)); | |
206 | if (!keysym2code) { | |
207 | trace_keymap_unmapped(keysym); | |
208 | warn_report("no scancode found for keysym %d", keysym); | |
209 | return 0; | |
3d11d0eb | 210 | } |
d713e3fd | 211 | |
abb4f2c9 GH |
212 | if (keysym2code->count == 1) { |
213 | return keysym2code->keycodes[0]; | |
214 | } | |
215 | ||
216 | /* | |
217 | * We have multiple keysym -> keycode mappings. | |
218 | * | |
219 | * Check whenever we find one mapping where the modifier state of | |
220 | * the mapping matches the current user interface modifier state. | |
221 | * If so, prefer that one. | |
222 | */ | |
223 | mods = 0; | |
224 | if (shift) { | |
225 | mods |= SCANCODE_SHIFT; | |
226 | } | |
227 | if (altgr) { | |
228 | mods |= SCANCODE_ALTGR; | |
229 | } | |
230 | if (ctrl) { | |
231 | mods |= SCANCODE_CTRL; | |
232 | } | |
233 | ||
234 | for (i = 0; i < keysym2code->count; i++) { | |
235 | if ((keysym2code->keycodes[i] & mask) == mods) { | |
236 | return keysym2code->keycodes[i]; | |
237 | } | |
238 | } | |
23ad24e4 | 239 | return keysym2code->keycodes[0]; |
3d11d0eb | 240 | } |
a528b80c | 241 | |
fe5fca9a | 242 | int keycode_is_keypad(kbd_layout_t *k, int keycode) |
a528b80c | 243 | { |
6b71ea11 GH |
244 | if (keycode >= 0x47 && keycode <= 0x53) { |
245 | return true; | |
43948386 | 246 | } |
6b71ea11 | 247 | return false; |
a528b80c AZ |
248 | } |
249 | ||
fe5fca9a | 250 | int keysym_is_numlock(kbd_layout_t *k, int keysym) |
a528b80c | 251 | { |
6b71ea11 GH |
252 | switch (keysym) { |
253 | case 0xffb0 ... 0xffb9: /* KP_0 .. KP_9 */ | |
254 | case 0xffac: /* KP_Separator */ | |
255 | case 0xffae: /* KP_Decimal */ | |
256 | return true; | |
43948386 | 257 | } |
6b71ea11 | 258 | return false; |
a528b80c | 259 | } |