2 * Copyright © 2012 Intel Corporation
3 * Copyright © 2012 Ran Benita <ran234@gmail.com>
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
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
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
24 * Author: Daniel Stone <daniel@fooishbar.org>
27 /************************************************************
28 * Copyright (c) 1993 by Silicon Graphics Computer Systems, Inc.
30 * Permission to use, copy, modify, and distribute this
31 * software and its documentation for any purpose and without
32 * fee is hereby granted, provided that the above copyright
33 * notice appear in all copies and that both that copyright
34 * notice and this permission notice appear in supporting
35 * documentation, and that the name of Silicon Graphics not be
36 * used in advertising or publicity pertaining to distribution
37 * of the software without specific prior written permission.
38 * Silicon Graphics makes no representation about the suitability
39 * of this software for any purpose. It is provided "as is"
40 * without any express or implied warranty.
42 * SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
43 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
44 * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
45 * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
46 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
47 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
48 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
49 * THE USE OR PERFORMANCE OF THIS SOFTWARE.
51 * ********************************************************/
56 static struct xkb_keymap *
57 xkb_keymap_new(struct xkb_context *ctx,
58 enum xkb_keymap_format format,
59 enum xkb_keymap_compile_flags flags)
61 struct xkb_keymap *keymap;
63 keymap = calloc(1, sizeof(*keymap));
68 keymap->ctx = xkb_context_ref(ctx);
70 keymap->format = format;
71 keymap->flags = flags;
76 XKB_EXPORT struct xkb_keymap *
77 xkb_keymap_ref(struct xkb_keymap *keymap)
84 xkb_keymap_unref(struct xkb_keymap *keymap)
89 if (!keymap || --keymap->refcnt > 0)
93 xkb_foreach_key(key, keymap) {
94 for (i = 0; i < key->num_groups; i++) {
95 for (j = 0; j < XkbKeyGroupWidth(key, i); j++)
96 if (key->groups[i].levels[j].num_syms > 1)
97 free(key->groups[i].levels[j].u.syms);
98 free(key->groups[i].levels);
104 for (i = 0; i < keymap->num_types; i++) {
105 free(keymap->types[i].entries);
106 free(keymap->types[i].level_names);
109 free(keymap->sym_interprets);
110 free(keymap->key_aliases);
111 free(keymap->group_names);
112 darray_free(keymap->mods);
113 darray_free(keymap->leds);
114 free(keymap->keycodes_section_name);
115 free(keymap->symbols_section_name);
116 free(keymap->types_section_name);
117 free(keymap->compat_section_name);
118 xkb_context_unref(keymap->ctx);
122 static const struct xkb_keymap_format_ops *
123 get_keymap_format_ops(enum xkb_keymap_format format)
125 static const struct xkb_keymap_format_ops *keymap_format_ops[] = {
126 [XKB_KEYMAP_FORMAT_TEXT_V1] = &text_v1_keymap_format_ops,
129 if ((int) format < 0 || (int) format >= ARRAY_SIZE(keymap_format_ops))
132 return keymap_format_ops[format];
135 XKB_EXPORT struct xkb_keymap *
136 xkb_keymap_new_from_names(struct xkb_context *ctx,
137 const struct xkb_rule_names *rmlvo_in,
138 enum xkb_keymap_compile_flags flags)
140 struct xkb_keymap *keymap;
141 struct xkb_rule_names rmlvo;
142 const enum xkb_keymap_format format = XKB_KEYMAP_FORMAT_TEXT_V1;
143 const struct xkb_keymap_format_ops *ops;
145 ops = get_keymap_format_ops(format);
146 if (!ops || !ops->keymap_new_from_names) {
147 log_err_func(ctx, "unsupported keymap format: %d\n", format);
151 if (flags & ~(XKB_MAP_COMPILE_PLACEHOLDER)) {
152 log_err_func(ctx, "unrecognized flags: %#x\n", flags);
159 memset(&rmlvo, 0, sizeof(rmlvo));
161 if (isempty(rmlvo.rules))
162 rmlvo.rules = xkb_context_get_default_rules(ctx);
163 if (isempty(rmlvo.model))
164 rmlvo.model = xkb_context_get_default_model(ctx);
165 /* Layout and variant are tied together, so don't try to use one from
166 * the caller and one from the environment. */
167 if (isempty(rmlvo.layout)) {
168 rmlvo.layout = xkb_context_get_default_layout(ctx);
169 rmlvo.variant = xkb_context_get_default_variant(ctx);
171 /* Options can be empty, so respect that if passed in. */
172 if (rmlvo.options == NULL)
173 rmlvo.options = xkb_context_get_default_options(ctx);
175 keymap = xkb_keymap_new(ctx, format, flags);
179 if (!ops->keymap_new_from_names(keymap, &rmlvo)) {
180 xkb_keymap_unref(keymap);
187 XKB_EXPORT struct xkb_keymap *
188 xkb_keymap_new_from_string(struct xkb_context *ctx,
190 enum xkb_keymap_format format,
191 enum xkb_keymap_compile_flags flags)
193 return xkb_keymap_new_from_buffer(ctx, string, SIZE_MAX, format, flags);
196 XKB_EXPORT struct xkb_keymap *
197 xkb_keymap_new_from_buffer(struct xkb_context *ctx,
198 const char *buffer, size_t length,
199 enum xkb_keymap_format format,
200 enum xkb_keymap_compile_flags flags)
202 struct xkb_keymap *keymap;
203 const struct xkb_keymap_format_ops *ops;
205 ops = get_keymap_format_ops(format);
206 if (!ops || !ops->keymap_new_from_string) {
207 log_err_func(ctx, "unsupported keymap format: %d\n", format);
211 if (flags & ~(XKB_MAP_COMPILE_PLACEHOLDER)) {
212 log_err_func(ctx, "unrecognized flags: %#x\n", flags);
217 log_err_func1(ctx, "no buffer specified\n");
221 keymap = xkb_keymap_new(ctx, format, flags);
225 if (!ops->keymap_new_from_string(keymap, buffer, length)) {
226 xkb_keymap_unref(keymap);
233 XKB_EXPORT struct xkb_keymap *
234 xkb_keymap_new_from_file(struct xkb_context *ctx,
236 enum xkb_keymap_format format,
237 enum xkb_keymap_compile_flags flags)
239 struct xkb_keymap *keymap;
240 const struct xkb_keymap_format_ops *ops;
242 ops = get_keymap_format_ops(format);
243 if (!ops || !ops->keymap_new_from_file) {
244 log_err_func(ctx, "unsupported keymap format: %d\n", format);
248 if (flags & ~(XKB_MAP_COMPILE_PLACEHOLDER)) {
249 log_err_func(ctx, "unrecognized flags: %#x\n", flags);
254 log_err_func1(ctx, "no file specified\n");
258 keymap = xkb_keymap_new(ctx, format, flags);
262 if (!ops->keymap_new_from_file(keymap, file)) {
263 xkb_keymap_unref(keymap);
271 xkb_keymap_get_as_string(struct xkb_keymap *keymap,
272 enum xkb_keymap_format format)
274 const struct xkb_keymap_format_ops *ops;
276 if (format == XKB_KEYMAP_USE_ORIGINAL_FORMAT)
277 format = keymap->format;
279 ops = get_keymap_format_ops(format);
280 if (!ops || !ops->keymap_get_as_string) {
281 log_err_func(keymap->ctx, "unsupported keymap format: %d\n", format);
285 return ops->keymap_get_as_string(keymap);
289 * Returns the total number of modifiers active in the keymap.
291 XKB_EXPORT xkb_mod_index_t
292 xkb_keymap_num_mods(struct xkb_keymap *keymap)
294 return darray_size(keymap->mods);
298 * Return the name for a given modifier.
300 XKB_EXPORT const char *
301 xkb_keymap_mod_get_name(struct xkb_keymap *keymap, xkb_mod_index_t idx)
303 if (idx >= darray_size(keymap->mods))
306 return xkb_atom_text(keymap->ctx, darray_item(keymap->mods, idx).name);
310 * Returns the index for a named modifier.
312 XKB_EXPORT xkb_mod_index_t
313 xkb_keymap_mod_get_index(struct xkb_keymap *keymap, const char *name)
317 const struct xkb_mod *mod;
319 atom = xkb_atom_lookup(keymap->ctx, name);
320 if (atom == XKB_ATOM_NONE)
321 return XKB_MOD_INVALID;
323 darray_enumerate(i, mod, keymap->mods)
324 if (mod->name == atom)
327 return XKB_MOD_INVALID;
331 * Return the total number of active groups in the keymap.
333 XKB_EXPORT xkb_layout_index_t
334 xkb_keymap_num_layouts(struct xkb_keymap *keymap)
336 return keymap->num_groups;
340 * Returns the name for a given group.
342 XKB_EXPORT const char *
343 xkb_keymap_layout_get_name(struct xkb_keymap *keymap, xkb_layout_index_t idx)
345 if (idx >= keymap->num_group_names)
348 return xkb_atom_text(keymap->ctx, keymap->group_names[idx]);
352 * Returns the index for a named layout.
354 XKB_EXPORT xkb_layout_index_t
355 xkb_keymap_layout_get_index(struct xkb_keymap *keymap, const char *name)
357 xkb_atom_t atom = xkb_atom_lookup(keymap->ctx, name);
358 xkb_layout_index_t i;
360 if (atom == XKB_ATOM_NONE)
361 return XKB_LAYOUT_INVALID;
363 for (i = 0; i < keymap->num_group_names; i++)
364 if (keymap->group_names[i] == atom)
367 return XKB_LAYOUT_INVALID;
371 * Returns the number of layouts active for a particular key.
373 XKB_EXPORT xkb_layout_index_t
374 xkb_keymap_num_layouts_for_key(struct xkb_keymap *keymap, xkb_keycode_t kc)
376 const struct xkb_key *key = XkbKey(keymap, kc);
381 return key->num_groups;
385 * Returns the number of levels active for a particular key and layout.
387 XKB_EXPORT xkb_level_index_t
388 xkb_keymap_num_levels_for_key(struct xkb_keymap *keymap, xkb_keycode_t kc,
389 xkb_layout_index_t layout)
391 const struct xkb_key *key = XkbKey(keymap, kc);
396 layout = wrap_group_into_range(layout, key->num_groups,
397 key->out_of_range_group_action,
398 key->out_of_range_group_number);
399 if (layout == XKB_LAYOUT_INVALID)
402 return XkbKeyGroupWidth(key, layout);
406 * Return the total number of LEDs in the keymap.
408 XKB_EXPORT xkb_led_index_t
409 xkb_keymap_num_leds(struct xkb_keymap *keymap)
411 return darray_size(keymap->leds);
415 * Returns the name for a given LED.
417 XKB_EXPORT const char *
418 xkb_keymap_led_get_name(struct xkb_keymap *keymap, xkb_led_index_t idx)
420 if (idx >= darray_size(keymap->leds))
423 return xkb_atom_text(keymap->ctx, darray_item(keymap->leds, idx).name);
427 * Returns the index for a named LED.
429 XKB_EXPORT xkb_led_index_t
430 xkb_keymap_led_get_index(struct xkb_keymap *keymap, const char *name)
432 xkb_atom_t atom = xkb_atom_lookup(keymap->ctx, name);
434 const struct xkb_led *led;
436 if (atom == XKB_ATOM_NONE)
437 return XKB_LED_INVALID;
439 darray_enumerate(i, led, keymap->leds)
440 if (led->name == atom)
443 return XKB_LED_INVALID;
447 * As below, but takes an explicit layout/level rather than state.
450 xkb_keymap_key_get_syms_by_level(struct xkb_keymap *keymap,
452 xkb_layout_index_t layout,
453 xkb_level_index_t level,
454 const xkb_keysym_t **syms_out)
456 const struct xkb_key *key = XkbKey(keymap, kc);
462 layout = wrap_group_into_range(layout, key->num_groups,
463 key->out_of_range_group_action,
464 key->out_of_range_group_number);
465 if (layout == XKB_LAYOUT_INVALID)
468 if (level >= XkbKeyGroupWidth(key, layout))
471 num_syms = key->groups[layout].levels[level].num_syms;
476 *syms_out = &key->groups[layout].levels[level].u.sym;
478 *syms_out = key->groups[layout].levels[level].u.syms;
487 XKB_EXPORT xkb_keycode_t
488 xkb_keymap_min_keycode(struct xkb_keymap *keymap)
490 return keymap->min_key_code;
493 XKB_EXPORT xkb_keycode_t
494 xkb_keymap_max_keycode(struct xkb_keymap *keymap)
496 return keymap->max_key_code;
500 xkb_keymap_key_for_each(struct xkb_keymap *keymap, xkb_keymap_key_iter_t iter,
505 xkb_foreach_key(key, keymap)
506 iter(keymap, key->keycode, data);
510 * Simple boolean specifying whether or not the key should repeat.
513 xkb_keymap_key_repeats(struct xkb_keymap *keymap, xkb_keycode_t kc)
515 const struct xkb_key *key = XkbKey(keymap, kc);
524 XkbKeyByName(struct xkb_keymap *keymap, xkb_atom_t name, bool use_aliases)
528 xkb_foreach_key(key, keymap)
529 if (key->name == name)
533 xkb_atom_t new_name = XkbResolveKeyAlias(keymap, name);
534 if (new_name != XKB_ATOM_NONE)
535 return XkbKeyByName(keymap, new_name, false);
542 XkbResolveKeyAlias(struct xkb_keymap *keymap, xkb_atom_t name)
544 for (unsigned i = 0; i < keymap->num_key_aliases; i++)
545 if (keymap->key_aliases[i].alias == name)
546 return keymap->key_aliases[i].real;
548 return XKB_ATOM_NONE;