Convert rest of names in xkb_keymap back to atoms
[platform/upstream/libxkbcommon.git] / src / xkbcomp / keycodes.c
1 /************************************************************
2  * Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
3  *
4  * Permission to use, copy, modify, and distribute this
5  * software and its documentation for any purpose and without
6  * fee is hereby granted, provided that the above copyright
7  * notice appear in all copies and that both that copyright
8  * notice and this permission notice appear in supporting
9  * documentation, and that the name of Silicon Graphics not be
10  * used in advertising or publicity pertaining to distribution
11  * of the software without specific prior written permission.
12  * Silicon Graphics makes no representation about the suitability
13  * of this software for any purpose. It is provided "as is"
14  * without any express or implied warranty.
15  *
16  * SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
17  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
18  * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
19  * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
20  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
22  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
23  * THE USE OR PERFORMANCE OF THIS SOFTWARE.
24  *
25  ********************************************************/
26
27 #include "xkbcomp-priv.h"
28 #include "text.h"
29 #include "expr.h"
30 #include "keycodes.h"
31 #include "include.h"
32
33 /*
34  * The xkb_keycodes section
35  * ========================
36  *
37  * This is the simplest section type, and is the first one to be
38  * compiled. The purpose of this is mostly to map between the
39  * hardware/evdev scancodes and xkb keycodes. Each key is given a name
40  * of up to 4 letters, by which it can be referred to later, e.g. in the
41  * symbols section.
42  *
43  * Minimum/Maximum keycode
44  * -----------------------
45  * Statements of the form:
46  *      minimum = 8;
47  *      maximum = 255;
48  *
49  * The file may explicitly declare the minimum and/or maximum keycode
50  * contained therein (traditionally 8-255, inherited from old xfree86
51  * keycodes). If these are stated explicitly, they are enforced. If
52  * they are not stated, they are computed automatically.
53  *
54  * Keycode statements
55  * ------------------
56  * Statements of the form:
57  *      <TLDE> = 49;
58  *      <AE01> = 10;
59  *
60  * The above would let 49 and 10 be valid keycodes in the keymap, and
61  * assign them the names TLDE and AE01 respectively. The format <WXYZ> is
62  * always used to refer to a key by name.
63  *
64  * [ The naming convention <AE01> just denoted the position of the key
65  * in the main alphanumric section of the keyboard, with the top left key
66  * (usually "~") acting as origin. <AE01> is the key in the first row
67  * second column (which is usually "1"). ]
68  *
69  * In the common case this just maps to the evdev scancodes from
70  * /usr/include/linux/input.h, e.g. the following definitions:
71  *      #define KEY_GRAVE            41
72  *      #define KEY_1                2
73  * Similar definitions appear in the xf86-input-keyboard driver. Note
74  * that in all current keymaps there's a constant offset of 8 (for
75  * historical reasons).
76  *
77  * If there's a conflict, like the same name given to different keycodes,
78  * or same keycode given different names, it is resolved according to the
79  * merge mode which applies to the definitions.
80  *
81  * The reason for the 4 characters limit is that the name is sometimes
82  * converted to an unsigned long (in a direct mapping), instead of a char
83  * array (see KeyNameToLong, LongToKeyName).
84  *
85  * Alias statements
86  * ----------------
87  * Statements of the form:
88  *      alias <MENU> = <COMP>;
89  *
90  * Allows to refer to a previously defined key (here <COMP>) by another
91  * name (here <MENU>). Conflicts are handled similarly.
92  *
93  * Indicator name statements
94  * -------------------------
95  * Statements of the form:
96  *      indicator 1 = "Caps Lock";
97  *      indicator 2 = "Num Lock";
98  *      indicator 3 = "Scroll Lock";
99  *
100  * Assigns a name the indicator (i.e. keyboard LED) with the given index.
101  * The amount of possible indicators is predetermined (XkbNumIndicators).
102  * The indicator may be referred by this name later in the compat section
103  * and by the user.
104  *
105  * Effect on the keymap
106  * --------------------
107  * After all of the xkb_keycodes sections have been compiled, the
108  * following members of struct xkb_keymap are finalized:
109  *      xkb_keycode_t min_key_code;
110  *      xkb_keycode_t max_key_code;
111  *      darray(struct xkb_key_alias) key_aliases;
112  *      const char *indicator_names[XkbNumIndicators];
113  *      char *keycodes_section_name;
114  * Further, the array of keys:
115  *      darray(struct xkb_key) keys;
116  * had been resized to its final size (i.e. all of the xkb_key objects are
117  * referable by their keycode). However the objects themselves do not
118  * contain any useful information besides the key name at this point.
119  */
120
121 typedef struct _AliasInfo {
122     enum merge_mode merge;
123     unsigned file_id;
124
125     unsigned long alias;
126     unsigned long real;
127 } AliasInfo;
128
129 typedef struct _IndicatorNameInfo {
130     enum merge_mode merge;
131     unsigned file_id;
132
133     xkb_atom_t name;
134 } IndicatorNameInfo;
135
136 typedef struct _KeyNamesInfo {
137     char *name;     /* e.g. evdev+aliases(qwerty) */
138     int errorCount;
139     unsigned file_id;
140     enum merge_mode merge;
141
142     xkb_keycode_t computedMin; /* lowest keycode stored */
143     xkb_keycode_t computedMax; /* highest keycode stored */
144     xkb_keycode_t explicitMin;
145     xkb_keycode_t explicitMax;
146     darray(unsigned long) names;
147     darray(unsigned int) files;
148     IndicatorNameInfo indicator_names[XkbNumIndicators];
149     darray(AliasInfo) aliases;
150
151     struct xkb_context *ctx;
152 } KeyNamesInfo;
153
154 static void
155 ResizeKeyNameArrays(KeyNamesInfo *info, int newMax)
156 {
157     if (newMax < darray_size(info->names))
158         return;
159
160     darray_resize0(info->names, newMax + 1);
161     darray_resize0(info->files, newMax + 1);
162 }
163
164 static void
165 InitAliasInfo(AliasInfo *info, enum merge_mode merge, unsigned file_id,
166               char alias[XkbKeyNameLength], char real[XkbKeyNameLength])
167 {
168     memset(info, 0, sizeof(*info));
169     info->merge = merge;
170     info->file_id = file_id;
171     info->alias = KeyNameToLong(alias);
172     info->real = KeyNameToLong(real);
173 }
174
175 static IndicatorNameInfo *
176 FindIndicatorByName(KeyNamesInfo *info, xkb_atom_t name,
177                     xkb_led_index_t *idx_out)
178 {
179     xkb_led_index_t idx;
180
181     for (idx = 0; idx < XkbNumIndicators; idx++) {
182         if (info->indicator_names[idx].name == name) {
183             *idx_out = idx;
184             return &info->indicator_names[idx];
185         }
186     }
187
188     return NULL;
189 }
190
191 static bool
192 AddIndicatorName(KeyNamesInfo *info, enum merge_mode merge,
193                  IndicatorNameInfo *new, xkb_led_index_t new_idx)
194 {
195     xkb_led_index_t old_idx;
196     IndicatorNameInfo *old;
197     bool replace, report;
198     int verbosity = xkb_get_log_verbosity(info->ctx);
199
200     replace = (merge == MERGE_REPLACE) || (merge == MERGE_OVERRIDE);
201
202     old = FindIndicatorByName(info, new->name, &old_idx);
203     if (old) {
204         report = ((old->file_id == new->file_id && verbosity > 0) ||
205                   verbosity > 9);
206
207         if (old_idx == new_idx) {
208             if (report)
209                 log_warn(info->ctx, "Multiple indicators named %s; "
210                          "Identical definitions ignored\n",
211                          xkb_atom_text(info->ctx, new->name));
212             return true;
213         }
214
215         if (report)
216             log_warn(info->ctx, "Multiple indicators named %s; "
217                      "Using %d, ignoring %d\n",
218                      xkb_atom_text(info->ctx, new->name),
219                      (replace ? old_idx + 1 : new_idx + 1),
220                      (replace ? new_idx + 1 : old_idx + 1));
221
222         /*
223          * XXX: If in the next check we ignore new, than we will have
224          * deleted this old for nothing!
225          */
226         if (replace)
227             memset(old, 0, sizeof(*old));
228     }
229
230     old = &info->indicator_names[new_idx];
231     if (old->name != XKB_ATOM_NONE) {
232         report = ((old->file_id == new->file_id && verbosity > 0) ||
233                   verbosity > 9);
234
235         if (old->name == new->name) {
236             if (report)
237                 log_warn(info->ctx, "Multiple names for indicator %d; "
238                          "Identical definitions ignored\n", new_idx + 1);
239         }
240         else if (replace) {
241             if (report)
242                 log_warn(info->ctx, "Multiple names for indicator %d; "
243                          "Using %s, ignoring %s\n", new_idx + 1,
244                          xkb_atom_text(info->ctx, new->name),
245                          xkb_atom_text(info->ctx, old->name));
246             old->name = new->name;
247         }
248         else {
249             if (report)
250                 log_warn(info->ctx, "Multiple names for indicator %d; "
251                          "Using %s, ignoring %s\n", new_idx + 1,
252                          xkb_atom_text(info->ctx, old->name),
253                          xkb_atom_text(info->ctx, new->name));
254         }
255
256         return true;
257     }
258
259     info->indicator_names[new_idx] = *new;
260     return true;
261 }
262
263 static void
264 ClearKeyNamesInfo(KeyNamesInfo * info)
265 {
266     free(info->name);
267     info->name = NULL;
268     info->merge = MERGE_DEFAULT;
269     info->computedMax = info->explicitMax = info->explicitMin = 0;
270     info->computedMin = XKB_KEYCODE_MAX;
271     darray_free(info->names);
272     darray_free(info->files);
273     memset(info->indicator_names, 0, sizeof(info->indicator_names));
274     darray_free(info->aliases);
275 }
276
277 static void
278 InitKeyNamesInfo(KeyNamesInfo *info, struct xkb_context *ctx,
279                  unsigned file_id)
280 {
281     info->name = NULL;
282     info->merge = MERGE_DEFAULT;
283     darray_init(info->aliases);
284     info->file_id = file_id;
285     darray_init(info->names);
286     darray_init(info->files);
287     ClearKeyNamesInfo(info);
288     info->errorCount = 0;
289     info->ctx = ctx;
290 }
291
292 static int
293 FindKeyByLong(KeyNamesInfo * info, unsigned long name)
294 {
295     xkb_keycode_t i;
296
297     for (i = info->computedMin; i <= info->computedMax; i++)
298         if (darray_item(info->names, i) == name)
299             return i;
300
301     return 0;
302 }
303
304 /**
305  * Store the name of the key as a long in the info struct under the given
306  * keycode. If the same keys is referred to twice, print a warning.
307  * Note that the key's name is stored as a long, the keycode is the index.
308  */
309 static bool
310 AddKeyName(KeyNamesInfo *info, xkb_keycode_t kc, unsigned long name,
311            enum merge_mode merge, unsigned file_id, bool reportCollisions)
312 {
313     xkb_keycode_t old;
314     int verbosity = xkb_get_log_verbosity(info->ctx);
315
316     ResizeKeyNameArrays(info, kc);
317
318     if (kc < info->computedMin)
319         info->computedMin = kc;
320     if (kc > info->computedMax)
321         info->computedMax = kc;
322
323     if (reportCollisions)
324         reportCollisions = (verbosity > 7 ||
325                             (verbosity > 0 &&
326                              file_id == darray_item(info->files, kc)));
327
328     if (darray_item(info->names, kc) != 0) {
329         const char *lname = LongKeyNameText(darray_item(info->names, kc));
330         const char *kname = LongKeyNameText(name);
331
332         if (darray_item(info->names, kc) == name && reportCollisions) {
333             log_warn(info->ctx, "Multiple identical key name definitions; "
334                      "Later occurences of \"%s = %d\" ignored\n", lname, kc);
335             return true;
336         }
337
338         if (merge == MERGE_AUGMENT) {
339             if (reportCollisions)
340                 log_warn(info->ctx, "Multiple names for keycode %d; "
341                          "Using %s, ignoring %s\n", kc, lname, kname);
342             return true;
343         }
344         else {
345             if (reportCollisions)
346                 log_warn(info->ctx, "Multiple names for keycode %d; "
347                          "Using %s, ignoring %s\n", kc, kname, lname);
348             darray_item(info->names, kc) = 0;
349             darray_item(info->files, kc) = 0;
350         }
351     }
352
353     old = FindKeyByLong(info, name);
354     if (old != 0 && old != kc) {
355         const char *kname = LongKeyNameText(name);
356
357         if (merge == MERGE_OVERRIDE) {
358             darray_item(info->names, old) = 0;
359             darray_item(info->files, old) = 0;
360             if (reportCollisions)
361                 log_warn(info->ctx, "Key name %s assigned to multiple keys; "
362                          "Using %d, ignoring %d\n", kname, kc, old);
363         }
364         else {
365             if (reportCollisions && verbosity > 3)
366                 log_warn(info->ctx, "Key name %s assigned to multiple keys; "
367                          "Using %d, ignoring %d\n", kname, old, kc);
368             return true;
369         }
370     }
371
372     darray_item(info->names, kc) = name;
373     darray_item(info->files, kc) = file_id;
374     return true;
375 }
376
377 /***====================================================================***/
378
379 static int
380 HandleAliasDef(KeyNamesInfo *info, KeyAliasDef *def, enum merge_mode merge,
381                unsigned file_id);
382
383 static bool
384 MergeAliases(KeyNamesInfo *into, KeyNamesInfo *from, enum merge_mode merge)
385 {
386     AliasInfo *alias;
387     KeyAliasDef def;
388
389     if (darray_empty(from->aliases))
390         return true;
391
392     if (darray_empty(into->aliases)) {
393         into->aliases = from->aliases;
394         darray_init(from->aliases);
395         return true;
396     }
397
398     memset(&def, 0, sizeof(def));
399
400     darray_foreach(alias, from->aliases) {
401         def.merge = (merge == MERGE_DEFAULT) ? alias->merge : merge;
402         LongToKeyName(alias->alias, def.alias);
403         LongToKeyName(alias->real, def.real);
404
405         if (!HandleAliasDef(into, &def, def.merge, alias->file_id))
406             return false;
407     }
408
409     return true;
410 }
411
412 static void
413 MergeIncludedKeycodes(KeyNamesInfo *into, KeyNamesInfo *from,
414                       enum merge_mode merge)
415 {
416     xkb_keycode_t i;
417     xkb_led_index_t idx;
418
419     if (from->errorCount > 0) {
420         into->errorCount += from->errorCount;
421         return;
422     }
423
424     if (into->name == NULL) {
425         into->name = from->name;
426         from->name = NULL;
427     }
428
429     ResizeKeyNameArrays(into, from->computedMax);
430
431     for (i = from->computedMin; i <= from->computedMax; i++) {
432         unsigned long name = darray_item(from->names, i);
433         if (name == 0)
434             continue;
435
436         if (!AddKeyName(into, i, name, merge, from->file_id, false))
437             into->errorCount++;
438     }
439
440     for (idx = 0; idx < XkbNumIndicators; idx++) {
441         IndicatorNameInfo *led = &from->indicator_names[idx];
442         if (led->name == XKB_ATOM_NONE)
443             continue;
444
445         led->merge = (merge == MERGE_DEFAULT ? led->merge : merge);
446         if (!AddIndicatorName(into, led->merge, led, idx))
447             into->errorCount++;
448     }
449
450     if (!MergeAliases(into, from, merge))
451         into->errorCount++;
452
453     if (from->explicitMin != 0)
454         if (into->explicitMin == 0 || into->explicitMin > from->explicitMin)
455             into->explicitMin = from->explicitMin;
456
457     if (from->explicitMax > 0)
458         if (into->explicitMax == 0 || into->explicitMax < from->explicitMax)
459             into->explicitMax = from->explicitMax;
460 }
461
462 static void
463 HandleKeycodesFile(KeyNamesInfo *info, XkbFile *file, enum merge_mode merge);
464
465 static bool
466 HandleIncludeKeycodes(KeyNamesInfo *info, IncludeStmt *stmt)
467 {
468     enum merge_mode merge = MERGE_DEFAULT;
469     XkbFile *rtrn;
470     KeyNamesInfo included, next_incl;
471
472     InitKeyNamesInfo(&included, info->ctx, info->file_id);
473     if (stmt->stmt) {
474         free(included.name);
475         included.name = stmt->stmt;
476         stmt->stmt = NULL;
477     }
478
479     for (; stmt; stmt = stmt->next_incl) {
480         if (!ProcessIncludeFile(info->ctx, stmt, FILE_TYPE_KEYCODES,
481                                 &rtrn, &merge)) {
482             info->errorCount += 10;
483             ClearKeyNamesInfo(&included);
484             return false;
485         }
486
487         InitKeyNamesInfo(&next_incl, info->ctx, rtrn->id);
488
489         HandleKeycodesFile(&next_incl, rtrn, MERGE_OVERRIDE);
490
491         MergeIncludedKeycodes(&included, &next_incl, merge);
492
493         ClearKeyNamesInfo(&next_incl);
494         FreeXkbFile(rtrn);
495     }
496
497     MergeIncludedKeycodes(info, &included, merge);
498     ClearKeyNamesInfo(&included);
499
500     return (info->errorCount == 0);
501 }
502
503 static int
504 HandleKeycodeDef(KeyNamesInfo *info, KeycodeDef *stmt, enum merge_mode merge)
505 {
506     if ((info->explicitMin != 0 && stmt->value < info->explicitMin) ||
507         (info->explicitMax != 0 && stmt->value > info->explicitMax)) {
508         log_err(info->ctx, "Illegal keycode %lu for name %s; "
509                 "Must be in the range %d-%d inclusive\n",
510                 stmt->value, KeyNameText(stmt->name), info->explicitMin,
511                 info->explicitMax ? info->explicitMax : XKB_KEYCODE_MAX);
512         return 0;
513     }
514
515     if (stmt->merge != MERGE_DEFAULT) {
516         if (stmt->merge == MERGE_REPLACE)
517             merge = MERGE_OVERRIDE;
518         else
519             merge = stmt->merge;
520     }
521
522     return AddKeyName(info, stmt->value, KeyNameToLong(stmt->name), merge,
523                       info->file_id, true);
524 }
525
526 static void
527 HandleAliasCollision(KeyNamesInfo *info, AliasInfo *old, AliasInfo *new)
528 {
529     int verbosity = xkb_get_log_verbosity(info->ctx);
530     bool report = ((new->file_id == old->file_id && verbosity > 0) ||
531                    verbosity > 9);
532
533     if (new->real == old->real) {
534         if (report)
535             log_warn(info->ctx, "Alias of %s for %s declared more than once; "
536                      "First definition ignored\n",
537                      LongKeyNameText(new->alias), LongKeyNameText(new->real));
538     }
539     else {
540         unsigned long use, ignore;
541
542         use = (new->merge == MERGE_AUGMENT ? old->real : new->real);
543         ignore = (new->merge == MERGE_AUGMENT ? new->real : old->real);
544
545         if (report)
546             log_warn(info->ctx, "Multiple definitions for alias %s; "
547                      "Using %s, ignoring %s\n",
548                      LongKeyNameText(old->alias), LongKeyNameText(use),
549                      LongKeyNameText(ignore));
550
551         old->real = use;
552     }
553
554     old->file_id = new->file_id;
555     old->merge = new->merge;
556 }
557
558 static int
559 HandleAliasDef(KeyNamesInfo *info, KeyAliasDef *def, enum merge_mode merge,
560                unsigned file_id)
561 {
562     AliasInfo *alias, new;
563
564     darray_foreach(alias, info->aliases) {
565         if (alias->alias == KeyNameToLong(def->alias)) {
566             InitAliasInfo(&new, merge, file_id, def->alias, def->real);
567             HandleAliasCollision(info, alias, &new);
568             return true;
569         }
570     }
571
572     InitAliasInfo(&new, merge, file_id, def->alias, def->real);
573     darray_append(info->aliases, new);
574     return true;
575 }
576
577 #define MIN_KEYCODE_DEF 0
578 #define MAX_KEYCODE_DEF 1
579
580 static int
581 HandleKeyNameVar(KeyNamesInfo *info, VarDef *stmt)
582 {
583     const char *elem, *field;
584     xkb_keycode_t kc;
585     ExprDef *arrayNdx;
586     int which;
587
588     if (!ExprResolveLhs(info->ctx, stmt->name, &elem, &field, &arrayNdx))
589         return false;
590
591     if (elem) {
592         log_err(info->ctx, "Unknown element %s encountered; "
593                 "Default for field %s ignored\n", elem, field);
594         return false;
595     }
596
597     if (istreq(field, "minimum")) {
598         which = MIN_KEYCODE_DEF;
599     }
600     else if (istreq(field, "maximum")) {
601         which = MAX_KEYCODE_DEF;
602     }
603     else {
604         log_err(info->ctx, "Unknown field encountered; "
605                 "Assigment to field %s ignored\n", field);
606         return false;
607     }
608
609     if (arrayNdx != NULL) {
610         log_err(info->ctx, "The %s setting is not an array; "
611                 "Illegal array reference ignored\n", field);
612         return false;
613     }
614
615     if (!ExprResolveKeyCode(info->ctx, stmt->value, &kc)) {
616         log_err(info->ctx, "Illegal keycode encountered; "
617                 "Assignment to field %s ignored\n", field);
618         return false;
619     }
620
621     if (kc > XKB_KEYCODE_MAX) {
622         log_err(info->ctx,
623                 "Illegal keycode %d (must be in the range %d-%d inclusive); "
624                 "Value of \"%s\" not changed\n",
625                 kc, 0, XKB_KEYCODE_MAX, field);
626         return false;
627     }
628
629     if (which == MIN_KEYCODE_DEF) {
630         if (info->explicitMax > 0 && info->explicitMax < kc) {
631             log_err(info->ctx,
632                     "Minimum key code (%d) must be <= maximum key code (%d); "
633                     "Minimum key code value not changed\n",
634                     kc, info->explicitMax);
635             return false;
636         }
637
638         if (info->computedMax > 0 && info->computedMin < kc) {
639             log_err(info->ctx,
640                     "Minimum key code (%d) must be <= lowest defined key (%d); "
641                     "Minimum key code value not changed\n",
642                     kc, info->computedMin);
643             return false;
644         }
645
646         info->explicitMin = kc;
647     }
648     else if (which == MAX_KEYCODE_DEF) {
649         if (info->explicitMin > 0 && info->explicitMin > kc) {
650             log_err(info->ctx,
651                     "Maximum code (%d) must be >= minimum key code (%d); "
652                     "Maximum code value not changed\n",
653                     kc, info->explicitMin);
654             return false;
655         }
656
657         if (info->computedMax > 0 && info->computedMax > kc) {
658             log_err(info->ctx,
659                     "Maximum code (%d) must be >= highest defined key (%d); "
660                     "Maximum code value not changed\n",
661                     kc, info->computedMax);
662             return false;
663         }
664
665         info->explicitMax = kc;
666     }
667
668     return true;
669 }
670
671 static int
672 HandleIndicatorNameDef(KeyNamesInfo *info, IndicatorNameDef *def,
673                        enum merge_mode merge)
674 {
675     IndicatorNameInfo ii;
676     xkb_atom_t name;
677
678     if (def->ndx < 1 || def->ndx > XkbNumIndicators) {
679         info->errorCount++;
680         log_err(info->ctx,
681                 "Name specified for illegal indicator index %d\n; Ignored\n",
682                 def->ndx);
683         return false;
684     }
685
686     if (!ExprResolveString(info->ctx, def->name, &name)) {
687         char buf[20];
688         snprintf(buf, sizeof(buf), "%d", def->ndx);
689         info->errorCount++;
690         return ReportBadType(info->ctx, "indicator", "name", buf,
691                              "string");
692     }
693
694     ii.merge = info->merge;
695     ii.file_id = info->file_id;
696     ii.name = name;
697     return AddIndicatorName(info, merge, &ii, def->ndx - 1);
698 }
699
700 static void
701 HandleKeycodesFile(KeyNamesInfo *info, XkbFile *file, enum merge_mode merge)
702 {
703     ParseCommon *stmt;
704     bool ok;
705
706     free(info->name);
707     info->name = strdup_safe(file->name);
708
709     for (stmt = file->defs; stmt; stmt = stmt->next) {
710         switch (stmt->type) {
711         case STMT_INCLUDE:
712             ok = HandleIncludeKeycodes(info, (IncludeStmt *) stmt);
713             break;
714         case STMT_KEYCODE:
715             ok = HandleKeycodeDef(info, (KeycodeDef *) stmt, merge);
716             break;
717         case STMT_ALIAS:
718             ok = HandleAliasDef(info, (KeyAliasDef *) stmt, merge,
719                                 info->file_id);
720             break;
721         case STMT_VAR:
722             ok = HandleKeyNameVar(info, (VarDef *) stmt);
723             break;
724         case STMT_INDICATOR_NAME:
725             ok = HandleIndicatorNameDef(info, (IndicatorNameDef *) stmt,
726                                         merge);
727             break;
728         default:
729             log_err(info->ctx,
730                     "Keycode files may define key and indicator names only; "
731                     "Ignoring %s\n", stmt_type_to_string(stmt->type));
732             ok = false;
733             break;
734         }
735
736         if (!ok)
737             info->errorCount++;
738
739         if (info->errorCount > 10) {
740             log_err(info->ctx, "Abandoning keycodes file \"%s\"\n",
741                     file->topName);
742             break;
743         }
744     }
745 }
746
747 static void
748 ApplyAliases(KeyNamesInfo *info, struct xkb_keymap *keymap)
749 {
750     struct xkb_key *key;
751     struct xkb_key_alias *a, new;
752     AliasInfo *alias;
753
754     darray_foreach(alias, info->aliases) {
755         /* Check that ->real is a key. */
756         key = FindNamedKey(keymap, alias->real, false, 0);
757         if (!key) {
758             log_vrb(info->ctx, 5,
759                     "Attempt to alias %s to non-existent key %s; Ignored\n",
760                     LongKeyNameText(alias->alias),
761                     LongKeyNameText(alias->real));
762             continue;
763         }
764
765         /* Check that ->alias is not a key. */
766         key = FindNamedKey(keymap, alias->alias, false, 0);
767         if (key) {
768             log_vrb(info->ctx, 5,
769                     "Attempt to create alias with the name of a real key; "
770                     "Alias \"%s = %s\" ignored\n",
771                     LongKeyNameText(alias->alias),
772                     LongKeyNameText(alias->real));
773             continue;
774         }
775
776         /* Check that ->alias in not already an alias, and if so handle it. */
777         darray_foreach(a, keymap->key_aliases) {
778             AliasInfo old_alias;
779
780             if (KeyNameToLong(a->alias) != alias->alias)
781                 continue;
782
783             InitAliasInfo(&old_alias, MERGE_AUGMENT, 0, a->alias, a->real);
784             HandleAliasCollision(info, &old_alias, alias);
785             LongToKeyName(old_alias.alias, a->alias);
786             LongToKeyName(old_alias.real, a->real);
787             alias->alias = 0;
788         }
789         if (alias->alias == 0)
790             continue;
791
792         /* Add the alias. */
793         LongToKeyName(alias->alias, new.alias);
794         LongToKeyName(alias->real, new.real);
795         darray_append(keymap->key_aliases, new);
796     }
797
798     darray_free(info->aliases);
799 }
800
801 static bool
802 CopyKeyNamesToKeymap(struct xkb_keymap *keymap, KeyNamesInfo *info)
803 {
804     xkb_keycode_t kc;
805     xkb_led_index_t idx;
806
807     if (info->explicitMin > 0)
808         keymap->min_key_code = info->explicitMin;
809     else
810         keymap->min_key_code = info->computedMin;
811
812     if (info->explicitMax > 0)
813         keymap->max_key_code = info->explicitMax;
814     else
815         keymap->max_key_code = info->computedMax;
816
817     darray_resize0(keymap->keys, keymap->max_key_code + 1);
818     for (kc = info->computedMin; kc <= info->computedMax; kc++)
819         LongToKeyName(darray_item(info->names, kc),
820                       XkbKey(keymap, kc)->name);
821
822     keymap->keycodes_section_name = strdup_safe(info->name);
823
824     for (idx = 0; idx < XkbNumIndicators; idx++) {
825         IndicatorNameInfo *led = &info->indicator_names[idx];
826         if (led->name == XKB_ATOM_NONE)
827             continue;
828
829         keymap->indicator_names[idx] = led->name;
830     }
831
832     ApplyAliases(info, keymap);
833
834     return true;
835 }
836
837 bool
838 CompileKeycodes(XkbFile *file, struct xkb_keymap *keymap,
839                 enum merge_mode merge)
840 {
841     KeyNamesInfo info;
842
843     InitKeyNamesInfo(&info, keymap->ctx, file->id);
844
845     HandleKeycodesFile(&info, file, merge);
846     if (info.errorCount != 0)
847         goto err_info;
848
849     if (!CopyKeyNamesToKeymap(keymap, &info))
850         goto err_info;
851
852     ClearKeyNamesInfo(&info);
853     return true;
854
855 err_info:
856     ClearKeyNamesInfo(&info);
857     return false;
858 }
859
860 struct xkb_key *
861 FindNamedKey(struct xkb_keymap *keymap, unsigned long name,
862              bool use_aliases, xkb_keycode_t start_from)
863 {
864     struct xkb_key *key;
865
866     if (start_from < keymap->min_key_code)
867         start_from = keymap->min_key_code;
868     else if (start_from > keymap->max_key_code)
869         return NULL;
870
871     xkb_foreach_key_from(key, keymap, start_from)
872         if (KeyNameToLong(key->name) == name)
873             return key;
874
875     if (use_aliases) {
876         unsigned long new_name;
877         if (FindKeyNameForAlias(keymap, name, &new_name))
878             return FindNamedKey(keymap, new_name, false, 0);
879     }
880
881     return NULL;
882 }
883
884 bool
885 FindKeyNameForAlias(struct xkb_keymap *keymap, unsigned long lname,
886                     unsigned long *real_name)
887 {
888     char name[XkbKeyNameLength];
889     struct xkb_key_alias *a;
890
891     LongToKeyName(lname, name);
892     darray_foreach(a, keymap->key_aliases) {
893         if (strncmp(name, a->alias, XkbKeyNameLength) == 0) {
894             *real_name = KeyNameToLong(a->real);
895             return true;
896         }
897     }
898
899     return false;
900 }