Add environment overrides for default RMLVO
[platform/upstream/libxkbcommon.git] / src / keymap.c
1 /**
2  * Copyright © 2012 Intel Corporation
3  * Copyright © 2012 Ran Benita <ran234@gmail.com>
4  *
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:
11  *
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
14  * 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
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Author: Daniel Stone <daniel@fooishbar.org>
25  */
26
27 /************************************************************
28  * Copyright (c) 1993 by Silicon Graphics Computer Systems, Inc.
29  *
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.
41  *
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.
50  *
51  * ********************************************************/
52
53 #include "keymap.h"
54 #include "text.h"
55
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)
60 {
61     struct xkb_keymap *keymap;
62
63     keymap = calloc(1, sizeof(*keymap));
64     if (!keymap)
65         return NULL;
66
67     keymap->refcnt = 1;
68     keymap->ctx = xkb_context_ref(ctx);
69
70     keymap->format = format;
71     keymap->flags = flags;
72
73     return keymap;
74 }
75
76 XKB_EXPORT struct xkb_keymap *
77 xkb_keymap_ref(struct xkb_keymap *keymap)
78 {
79     keymap->refcnt++;
80     return keymap;
81 }
82
83 XKB_EXPORT void
84 xkb_keymap_unref(struct xkb_keymap *keymap)
85 {
86     unsigned int i, j;
87     struct xkb_key *key;
88
89     if (!keymap || --keymap->refcnt > 0)
90         return;
91
92     if (keymap->keys) {
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);
99             }
100             free(key->groups);
101         }
102         free(keymap->keys);
103     }
104     for (i = 0; i < keymap->num_types; i++) {
105         free(keymap->types[i].entries);
106         free(keymap->types[i].level_names);
107     }
108     free(keymap->types);
109     darray_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);
119     free(keymap);
120 }
121
122 static const struct xkb_keymap_format_ops *
123 get_keymap_format_ops(enum xkb_keymap_format format)
124 {
125     static const struct xkb_keymap_format_ops *keymap_format_ops[] = {
126         [XKB_KEYMAP_FORMAT_TEXT_V1] = &text_v1_keymap_format_ops,
127     };
128
129     if ((int) format < 0 || (int) format >= ARRAY_SIZE(keymap_format_ops))
130         return NULL;
131
132     return keymap_format_ops[format];
133 }
134
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)
139 {
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;
144
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);
148         return NULL;
149     }
150
151     if (flags & ~(XKB_MAP_COMPILE_PLACEHOLDER)) {
152         log_err_func(ctx, "unrecognized flags: %#x\n", flags);
153         return NULL;
154     }
155
156     if (rmlvo_in)
157         rmlvo = *rmlvo_in;
158     else
159         memset(&rmlvo, 0, sizeof(rmlvo));
160
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);
170     }
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);
174
175     keymap = xkb_keymap_new(ctx, format, flags);
176     if (!keymap)
177         return NULL;
178
179     if (!ops->keymap_new_from_names(keymap, &rmlvo)) {
180         xkb_keymap_unref(keymap);
181         return NULL;
182     }
183
184     return keymap;
185 }
186
187 XKB_EXPORT struct xkb_keymap *
188 xkb_keymap_new_from_string(struct xkb_context *ctx,
189                            const char *string,
190                            enum xkb_keymap_format format,
191                            enum xkb_keymap_compile_flags flags)
192 {
193     struct xkb_keymap *keymap;
194     const struct xkb_keymap_format_ops *ops;
195
196     ops = get_keymap_format_ops(format);
197     if (!ops || !ops->keymap_new_from_string) {
198         log_err_func(ctx, "unsupported keymap format: %d\n", format);
199         return NULL;
200     }
201
202     if (flags & ~(XKB_MAP_COMPILE_PLACEHOLDER)) {
203         log_err_func(ctx, "unrecognized flags: %#x\n", flags);
204         return NULL;
205     }
206
207     if (!string) {
208         log_err_func1(ctx, "no string specified\n");
209         return NULL;
210     }
211
212     keymap = xkb_keymap_new(ctx, format, flags);
213     if (!keymap)
214         return NULL;
215
216     if (!ops->keymap_new_from_string(keymap, string)) {
217         xkb_keymap_unref(keymap);
218         return NULL;
219     }
220
221     return keymap;
222 }
223
224 XKB_EXPORT struct xkb_keymap *
225 xkb_keymap_new_from_file(struct xkb_context *ctx,
226                          FILE *file,
227                          enum xkb_keymap_format format,
228                          enum xkb_keymap_compile_flags flags)
229 {
230     struct xkb_keymap *keymap;
231     const struct xkb_keymap_format_ops *ops;
232
233     ops = get_keymap_format_ops(format);
234     if (!ops || !ops->keymap_new_from_file) {
235         log_err_func(ctx, "unsupported keymap format: %d\n", format);
236         return NULL;
237     }
238
239     if (flags & ~(XKB_MAP_COMPILE_PLACEHOLDER)) {
240         log_err_func(ctx, "unrecognized flags: %#x\n", flags);
241         return NULL;
242     }
243
244     if (!file) {
245         log_err_func1(ctx, "no file specified\n");
246         return NULL;
247     }
248
249     keymap = xkb_keymap_new(ctx, format, flags);
250     if (!keymap)
251         return NULL;
252
253     if (!ops->keymap_new_from_file(keymap, file)) {
254         xkb_keymap_unref(keymap);
255         return NULL;
256     }
257
258     return keymap;
259 }
260
261 XKB_EXPORT char *
262 xkb_keymap_get_as_string(struct xkb_keymap *keymap,
263                          enum xkb_keymap_format format)
264 {
265     const struct xkb_keymap_format_ops *ops;
266
267     if (format == XKB_KEYMAP_USE_ORIGINAL_FORMAT)
268         format = keymap->format;
269
270     ops = get_keymap_format_ops(format);
271     if (!ops || !ops->keymap_get_as_string) {
272         log_err_func(keymap->ctx, "unsupported keymap format: %d\n", format);
273         return NULL;
274     }
275
276     return ops->keymap_get_as_string(keymap);
277 }
278
279 /**
280  * Returns the total number of modifiers active in the keymap.
281  */
282 XKB_EXPORT xkb_mod_index_t
283 xkb_keymap_num_mods(struct xkb_keymap *keymap)
284 {
285     return darray_size(keymap->mods);
286 }
287
288 /**
289  * Return the name for a given modifier.
290  */
291 XKB_EXPORT const char *
292 xkb_keymap_mod_get_name(struct xkb_keymap *keymap, xkb_mod_index_t idx)
293 {
294     if (idx >= darray_size(keymap->mods))
295         return NULL;
296
297     return xkb_atom_text(keymap->ctx, darray_item(keymap->mods, idx).name);
298 }
299
300 /**
301  * Returns the index for a named modifier.
302  */
303 XKB_EXPORT xkb_mod_index_t
304 xkb_keymap_mod_get_index(struct xkb_keymap *keymap, const char *name)
305 {
306     xkb_mod_index_t i;
307     xkb_atom_t atom;
308     const struct xkb_mod *mod;
309
310     atom = xkb_atom_lookup(keymap->ctx, name);
311     if (atom == XKB_ATOM_NONE)
312         return XKB_MOD_INVALID;
313
314     darray_enumerate(i, mod, keymap->mods)
315         if (mod->name == atom)
316             return i;
317
318     return XKB_MOD_INVALID;
319 }
320
321 /**
322  * Return the total number of active groups in the keymap.
323  */
324 XKB_EXPORT xkb_layout_index_t
325 xkb_keymap_num_layouts(struct xkb_keymap *keymap)
326 {
327     return keymap->num_groups;
328 }
329
330 /**
331  * Returns the name for a given group.
332  */
333 XKB_EXPORT const char *
334 xkb_keymap_layout_get_name(struct xkb_keymap *keymap, xkb_layout_index_t idx)
335 {
336     if (idx >= keymap->num_group_names)
337         return NULL;
338
339     return xkb_atom_text(keymap->ctx, keymap->group_names[idx]);
340 }
341
342 /**
343  * Returns the index for a named layout.
344  */
345 XKB_EXPORT xkb_layout_index_t
346 xkb_keymap_layout_get_index(struct xkb_keymap *keymap, const char *name)
347 {
348     xkb_atom_t atom = xkb_atom_lookup(keymap->ctx, name);
349     xkb_layout_index_t i;
350
351     if (atom == XKB_ATOM_NONE)
352         return XKB_LAYOUT_INVALID;
353
354     for (i = 0; i < keymap->num_group_names; i++)
355         if (keymap->group_names[i] == atom)
356             return i;
357
358     return XKB_LAYOUT_INVALID;
359 }
360
361 /**
362  * Returns the number of layouts active for a particular key.
363  */
364 XKB_EXPORT xkb_layout_index_t
365 xkb_keymap_num_layouts_for_key(struct xkb_keymap *keymap, xkb_keycode_t kc)
366 {
367     const struct xkb_key *key = XkbKey(keymap, kc);
368
369     if (!key)
370         return 0;
371
372     return key->num_groups;
373 }
374
375 /**
376  * Returns the number of levels active for a particular key and layout.
377  */
378 XKB_EXPORT xkb_level_index_t
379 xkb_keymap_num_levels_for_key(struct xkb_keymap *keymap, xkb_keycode_t kc,
380                               xkb_layout_index_t layout)
381 {
382     const struct xkb_key *key = XkbKey(keymap, kc);
383
384     if (!key)
385         return 0;
386
387     layout = wrap_group_into_range(layout, key->num_groups,
388                                    key->out_of_range_group_action,
389                                    key->out_of_range_group_number);
390     if (layout == XKB_LAYOUT_INVALID)
391         return 0;
392
393     return XkbKeyGroupWidth(key, layout);
394 }
395
396 /**
397  * Return the total number of LEDs in the keymap.
398  */
399 XKB_EXPORT xkb_led_index_t
400 xkb_keymap_num_leds(struct xkb_keymap *keymap)
401 {
402     return darray_size(keymap->leds);
403 }
404
405 /**
406  * Returns the name for a given LED.
407  */
408 XKB_EXPORT const char *
409 xkb_keymap_led_get_name(struct xkb_keymap *keymap, xkb_led_index_t idx)
410 {
411     if (idx >= darray_size(keymap->leds))
412         return NULL;
413
414     return xkb_atom_text(keymap->ctx, darray_item(keymap->leds, idx).name);
415 }
416
417 /**
418  * Returns the index for a named LED.
419  */
420 XKB_EXPORT xkb_led_index_t
421 xkb_keymap_led_get_index(struct xkb_keymap *keymap, const char *name)
422 {
423     xkb_atom_t atom = xkb_atom_lookup(keymap->ctx, name);
424     xkb_led_index_t i;
425     const struct xkb_led *led;
426
427     if (atom == XKB_ATOM_NONE)
428         return XKB_LED_INVALID;
429
430     darray_enumerate(i, led, keymap->leds)
431         if (led->name == atom)
432             return i;
433
434     return XKB_LED_INVALID;
435 }
436
437 /**
438  * As below, but takes an explicit layout/level rather than state.
439  */
440 XKB_EXPORT int
441 xkb_keymap_key_get_syms_by_level(struct xkb_keymap *keymap,
442                                  xkb_keycode_t kc,
443                                  xkb_layout_index_t layout,
444                                  xkb_level_index_t level,
445                                  const xkb_keysym_t **syms_out)
446 {
447     const struct xkb_key *key = XkbKey(keymap, kc);
448     int num_syms;
449
450     if (!key)
451         goto err;
452
453     layout = wrap_group_into_range(layout, key->num_groups,
454                                    key->out_of_range_group_action,
455                                    key->out_of_range_group_number);
456     if (layout == XKB_LAYOUT_INVALID)
457         goto err;
458
459     if (level >= XkbKeyGroupWidth(key, layout))
460         goto err;
461
462     num_syms = key->groups[layout].levels[level].num_syms;
463     if (num_syms == 0)
464         goto err;
465
466     if (num_syms == 1)
467         *syms_out = &key->groups[layout].levels[level].u.sym;
468     else
469         *syms_out = key->groups[layout].levels[level].u.syms;
470
471     return num_syms;
472
473 err:
474     *syms_out = NULL;
475     return 0;
476 }
477
478 /**
479  * Simple boolean specifying whether or not the key should repeat.
480  */
481 XKB_EXPORT int
482 xkb_keymap_key_repeats(struct xkb_keymap *keymap, xkb_keycode_t kc)
483 {
484     const struct xkb_key *key = XkbKey(keymap, kc);
485
486     if (!key)
487         return 0;
488
489     return key->repeats;
490 }
491
492 struct xkb_key *
493 XkbKeyByName(struct xkb_keymap *keymap, xkb_atom_t name, bool use_aliases)
494 {
495     struct xkb_key *key;
496
497     xkb_foreach_key(key, keymap)
498         if (key->name == name)
499             return key;
500
501     if (use_aliases) {
502         xkb_atom_t new_name = XkbResolveKeyAlias(keymap, name);
503         if (new_name != XKB_ATOM_NONE)
504             return XkbKeyByName(keymap, new_name, false);
505     }
506
507     return NULL;
508 }
509
510 xkb_atom_t
511 XkbResolveKeyAlias(struct xkb_keymap *keymap, xkb_atom_t name)
512 {
513     for (unsigned i = 0; i < keymap->num_key_aliases; i++)
514         if (keymap->key_aliases[i].alias == name)
515             return keymap->key_aliases[i].real;
516
517     return XKB_ATOM_NONE;
518 }