Fix bison 2.6 and clang warnings
[platform/upstream/libxkbcommon.git] / src / xkbcomp / symbols.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 <limits.h>
28
29 #include "xkbcomp-priv.h"
30 #include "parseutils.h"
31 #include "action.h"
32 #include "vmod.h"
33
34 /***====================================================================***/
35
36 /* Needed to work with the typechecker. */
37 typedef darray(xkb_keysym_t) darray_xkb_keysym_t;
38 typedef darray(union xkb_action) darray_xkb_action;
39
40 #define RepeatYes       1
41 #define RepeatNo        0
42 #define RepeatUndefined ~((unsigned) 0)
43
44 #define _Key_Syms       (1 << 0)
45 #define _Key_Acts       (1 << 1)
46 #define _Key_Repeat     (1 << 2)
47 #define _Key_Behavior   (1 << 3)
48 #define _Key_Type_Dflt  (1 << 4)
49 #define _Key_Types      (1 << 5)
50 #define _Key_GroupInfo  (1 << 6)
51 #define _Key_VModMap    (1 << 7)
52
53 static inline const char *
54 longText(unsigned long val)
55 {
56     char buf[4];
57
58     LongToKeyName(val, buf);
59     return XkbcKeyNameText(buf);
60 }
61
62 typedef struct _KeyInfo {
63     unsigned short defined;
64     unsigned file_id;
65     enum merge_mode merge;
66
67     unsigned long name; /* the 4 chars of the key name, as long */
68     unsigned char typesDefined;
69     unsigned char symsDefined;
70     unsigned char actsDefined;
71     unsigned int numLevels[XkbNumKbdGroups];
72
73     /* syms[group] -> Single array for all the keysyms in the group. */
74     darray_xkb_keysym_t syms[XkbNumKbdGroups];
75     /*
76      * symsMapIndex[group][level] -> The index from which the syms for
77      * the level begin in the syms[group] array. Remember each keycode
78      * can have multiple keysyms in each level (that is, each key press
79      * can result in multiple keysyms).
80      */
81     darray(int) symsMapIndex[XkbNumKbdGroups];
82     /*
83      * symsMapNumEntries[group][level] -> How many syms are in
84      * syms[group][symsMapIndex[group][level]].
85      */
86     darray(size_t) symsMapNumEntries[XkbNumKbdGroups];
87
88     darray_xkb_action acts[XkbNumKbdGroups];
89
90     xkb_atom_t types[XkbNumKbdGroups];
91     unsigned repeat;
92     struct xkb_behavior behavior;
93     unsigned short vmodmap;
94     xkb_atom_t dfltType;
95
96     uint8_t out_of_range_group_action;
97     xkb_group_index_t out_of_range_group_number;
98 } KeyInfo;
99
100 /**
101  * Init the given key info to sane values.
102  */
103 static void
104 InitKeyInfo(KeyInfo *keyi, unsigned file_id)
105 {
106     xkb_group_index_t i;
107     static const char dflt[4] = "*";
108
109     keyi->defined = 0;
110     keyi->file_id = file_id;
111     keyi->merge = MERGE_OVERRIDE;
112     keyi->name = KeyNameToLong(dflt);
113     keyi->typesDefined = keyi->symsDefined = keyi->actsDefined = 0;
114
115     for (i = 0; i < XkbNumKbdGroups; i++) {
116         keyi->numLevels[i] = 0;
117         keyi->types[i] = XKB_ATOM_NONE;
118         darray_init(keyi->syms[i]);
119         darray_init(keyi->symsMapIndex[i]);
120         darray_init(keyi->symsMapNumEntries[i]);
121         darray_init(keyi->acts[i]);
122     }
123
124     keyi->dfltType = XKB_ATOM_NONE;
125     keyi->behavior.type = XkbKB_Default;
126     keyi->behavior.data = 0;
127     keyi->vmodmap = 0;
128     keyi->repeat = RepeatUndefined;
129     keyi->out_of_range_group_action = 0;
130     keyi->out_of_range_group_number = 0;
131 }
132
133 static void
134 FreeKeyInfo(KeyInfo *keyi)
135 {
136     xkb_group_index_t i;
137
138     for (i = 0; i < XkbNumKbdGroups; i++) {
139         darray_free(keyi->syms[i]);
140         darray_free(keyi->symsMapIndex[i]);
141         darray_free(keyi->symsMapNumEntries[i]);
142         darray_free(keyi->acts[i]);
143     }
144 }
145
146 /**
147  * Copy old into new, optionally reset old to 0.
148  * If old is reset, new simply re-uses old's memory. Otherwise, the memory is
149  * newly allocated and new points to the new memory areas.
150  */
151 static bool
152 CopyKeyInfo(KeyInfo * old, KeyInfo * new, bool clearOld)
153 {
154     xkb_group_index_t i;
155
156     *new = *old;
157
158     if (clearOld) {
159         for (i = 0; i < XkbNumKbdGroups; i++) {
160             old->numLevels[i] = 0;
161             darray_init(old->symsMapIndex[i]);
162             darray_init(old->symsMapNumEntries[i]);
163             darray_init(old->syms[i]);
164             darray_init(old->acts[i]);
165         }
166     }
167     else {
168         for (i = 0; i < XkbNumKbdGroups; i++) {
169             darray_copy(new->syms[i], old->syms[i]);
170             darray_copy(new->symsMapIndex[i], old->symsMapIndex[i]);
171             darray_copy(new->symsMapNumEntries[i], old->symsMapNumEntries[i]);
172             darray_copy(new->acts[i], old->acts[i]);
173         }
174     }
175
176     return true;
177 }
178
179 /***====================================================================***/
180
181 typedef struct _ModMapEntry {
182     struct list entry;
183     enum merge_mode merge;
184     bool haveSymbol;
185     int modifier;
186     union {
187         unsigned long keyName;
188         xkb_keysym_t keySym;
189     } u;
190 } ModMapEntry;
191
192 typedef struct _SymbolsInfo {
193     char *name;         /* e.g. pc+us+inet(evdev) */
194     int errorCount;
195     unsigned file_id;
196     enum merge_mode merge;
197     xkb_group_index_t explicit_group;
198     darray(KeyInfo) keys;
199     KeyInfo dflt;
200     VModInfo vmods;
201     ActionInfo *action;
202     xkb_atom_t groupNames[XkbNumKbdGroups];
203
204     struct list modMaps;
205 } SymbolsInfo;
206
207 static void
208 InitSymbolsInfo(SymbolsInfo * info, struct xkb_keymap *keymap,
209                 unsigned file_id)
210 {
211     xkb_group_index_t i;
212
213     info->name = NULL;
214     info->explicit_group = 0;
215     info->errorCount = 0;
216     info->file_id = file_id;
217     info->merge = MERGE_OVERRIDE;
218     darray_init(info->keys);
219     darray_growalloc(info->keys, 110);
220     list_init(&info->modMaps);
221     for (i = 0; i < XkbNumKbdGroups; i++)
222         info->groupNames[i] = XKB_ATOM_NONE;
223     InitKeyInfo(&info->dflt, file_id);
224     InitVModInfo(&info->vmods, keymap);
225     info->action = NULL;
226 }
227
228 static void
229 FreeSymbolsInfo(SymbolsInfo * info)
230 {
231     KeyInfo *keyi;
232     ModMapEntry *mm, *next;
233
234     free(info->name);
235     darray_foreach(keyi, info->keys) {
236         FreeKeyInfo(keyi);
237     }
238     darray_free(info->keys);
239     list_foreach_safe(mm, next, &info->modMaps, entry)
240         free(mm);
241     memset(info, 0, sizeof(SymbolsInfo));
242 }
243
244 static bool
245 ResizeKeyGroup(KeyInfo *keyi, xkb_group_index_t group, unsigned int numLevels,
246                unsigned sizeSyms, bool forceActions)
247 {
248     int i;
249
250     if (darray_size(keyi->syms[group]) < sizeSyms)
251         darray_resize0(keyi->syms[group], sizeSyms);
252
253     if (darray_empty(keyi->symsMapIndex[group]) ||
254         keyi->numLevels[group] < numLevels) {
255         darray_resize(keyi->symsMapIndex[group], numLevels);
256         for (i = keyi->numLevels[group]; i < numLevels; i++)
257             darray_item(keyi->symsMapIndex[group], i) = -1;
258     }
259
260     if (darray_empty(keyi->symsMapNumEntries[group]) ||
261         keyi->numLevels[group] < numLevels)
262         darray_resize0(keyi->symsMapNumEntries[group], numLevels);
263
264     if ((forceActions && (keyi->numLevels[group] < numLevels ||
265                           darray_empty(keyi->acts[group]))) ||
266         (keyi->numLevels[group] < numLevels && !darray_empty(keyi->acts[group])))
267         darray_resize0(keyi->acts[group], numLevels);
268
269     if (keyi->numLevels[group] < numLevels)
270         keyi->numLevels[group] = numLevels;
271
272     return true;
273 }
274
275 enum key_group_selector {
276     NONE = 0,
277     FROM = (1 << 0),
278     TO = (1 << 1),
279 };
280
281 static bool
282 MergeKeyGroups(SymbolsInfo * info,
283                KeyInfo * into, KeyInfo * from, xkb_group_index_t group)
284 {
285     darray_xkb_keysym_t resultSyms;
286     enum key_group_selector using = NONE;
287     darray_xkb_action resultActs;
288     unsigned int resultWidth;
289     unsigned int resultSize = 0;
290     int cur_idx = 0;
291     int i;
292     bool report, clobber;
293
294     clobber = (from->merge != MERGE_AUGMENT);
295
296     report = (warningLevel > 9) ||
297              (into->file_id == from->file_id && warningLevel > 0);
298
299     darray_init(resultSyms);
300
301     if (into->numLevels[group] >= from->numLevels[group]) {
302         resultActs = into->acts[group];
303         resultWidth = into->numLevels[group];
304     }
305     else {
306         resultActs = from->acts[group];
307         resultWidth = from->numLevels[group];
308         darray_resize(into->symsMapIndex[group],
309                       from->numLevels[group]);
310         darray_resize0(into->symsMapNumEntries[group],
311                        from->numLevels[group]);
312
313         for (i = into->numLevels[group]; i < from->numLevels[group]; i++)
314             darray_item(into->symsMapIndex[group], i) = -1;
315     }
316
317     if (darray_empty(resultActs) && (!darray_empty(into->acts[group]) ||
318                                      !darray_empty(from->acts[group]))) {
319         darray_resize0(resultActs, resultWidth);
320         for (i = 0; i < resultWidth; i++) {
321             union xkb_action *fromAct = NULL, *toAct = NULL;
322
323             if (!darray_empty(from->acts[group]))
324                 fromAct = &darray_item(from->acts[group], i);
325
326             if (!darray_empty(into->acts[group]))
327                 toAct = &darray_item(into->acts[group], i);
328
329             if (((fromAct == NULL) || (fromAct->type == XkbSA_NoAction))
330                 && (toAct != NULL)) {
331                 darray_item(resultActs, i) = *toAct;
332             }
333             else if (((toAct == NULL) || (toAct->type == XkbSA_NoAction))
334                      && (fromAct != NULL)) {
335                 darray_item(resultActs, i) = *fromAct;
336             }
337             else {
338                 union xkb_action *use, *ignore;
339                 if (clobber) {
340                     use = fromAct;
341                     ignore = toAct;
342                 }
343                 else {
344                     use = toAct;
345                     ignore = fromAct;
346                 }
347                 if (report) {
348                     WARN
349                         ("Multiple actions for level %d/group %u on key %s\n",
350                         i + 1, group + 1, longText(into->name));
351                     ACTION("Using %s, ignoring %s\n",
352                            XkbcActionTypeText(use->type),
353                            XkbcActionTypeText(ignore->type));
354                 }
355                 if (use)
356                     darray_item(resultActs, i) = *use;
357             }
358         }
359     }
360
361     for (i = 0; i < resultWidth; i++) {
362         unsigned int fromSize = 0;
363         unsigned toSize = 0;
364
365         if (!darray_empty(from->symsMapNumEntries[group]) &&
366             i < from->numLevels[group])
367             fromSize = darray_item(from->symsMapNumEntries[group], i);
368
369         if (!darray_empty(into->symsMapNumEntries[group]) &&
370             i < into->numLevels[group])
371             toSize = darray_item(into->symsMapNumEntries[group], i);
372
373         if (fromSize == 0) {
374             resultSize += toSize;
375             using |= TO;
376         }
377         else if (toSize == 0 || clobber) {
378             resultSize += fromSize;
379             using |= FROM;
380         }
381         else {
382             resultSize += toSize;
383             using |= TO;
384         }
385     }
386
387     if (resultSize == 0)
388         goto out;
389
390     if (using == FROM) {
391         resultSyms = from->syms[group];
392         darray_free(into->symsMapNumEntries[group]);
393         darray_free(into->symsMapIndex[group]);
394         into->symsMapNumEntries[group] = from->symsMapNumEntries[group];
395         into->symsMapIndex[group] = from->symsMapIndex[group];
396         darray_init(from->symsMapNumEntries[group]);
397         darray_init(from->symsMapIndex[group]);
398         goto out;
399     }
400     else if (using == TO) {
401         resultSyms = into->syms[group];
402         goto out;
403     }
404
405     darray_resize0(resultSyms, resultSize);
406
407     for (i = 0; i < resultWidth; i++) {
408         enum key_group_selector use = NONE;
409         unsigned int fromSize = 0;
410         unsigned int toSize = 0;
411
412         if (i < from->numLevels[group])
413             fromSize = darray_item(from->symsMapNumEntries[group], i);
414
415         if (i < into->numLevels[group])
416             toSize = darray_item(into->symsMapNumEntries[group], i);
417
418         if (fromSize == 0 && toSize == 0) {
419             darray_item(into->symsMapIndex[group], i) = -1;
420             darray_item(into->symsMapNumEntries[group], i) = 0;
421             continue;
422         }
423
424         if (fromSize == 0)
425             use = TO;
426         else if (toSize == 0 || clobber)
427             use = FROM;
428         else
429             use = TO;
430
431         if (toSize && fromSize && report) {
432             INFO("Multiple symbols for group %u, level %d on key %s\n",
433                  group + 1, i + 1, longText(into->name));
434             ACTION("Using %s, ignoring %s\n",
435                    (use == FROM ? "from" : "to"),
436                    (use == FROM ? "to" : "from"));
437         }
438
439         if (use == FROM) {
440             memcpy(darray_mem(resultSyms, cur_idx),
441                    darray_mem(from->syms[group],
442                               darray_item(from->symsMapIndex[group], i)),
443                    darray_item(from->symsMapNumEntries[group],
444                                i) * sizeof(xkb_keysym_t));
445             darray_item(into->symsMapIndex[group], i) = cur_idx;
446             darray_item(into->symsMapNumEntries[group], i) =
447                 darray_item(from->symsMapNumEntries[group], i);
448         }
449         else {
450             memcpy(darray_mem(resultSyms, cur_idx),
451                    darray_mem(into->syms[group],
452                               darray_item(into->symsMapIndex[group], i)),
453                    darray_item(into->symsMapNumEntries[group],
454                                i) * sizeof(xkb_keysym_t));
455             darray_item(into->symsMapIndex[group], i) = cur_idx;
456         }
457         cur_idx += darray_item(into->symsMapNumEntries[group], i);
458     }
459
460 out:
461     if (!darray_same(resultActs, into->acts[group]))
462         darray_free(into->acts[group]);
463     if (!darray_same(resultActs, from->acts[group]))
464         darray_free(from->acts[group]);
465     into->numLevels[group] = resultWidth;
466     if (!darray_same(resultSyms, into->syms[group]))
467         darray_free(into->syms[group]);
468     into->syms[group] = resultSyms;
469     if (!darray_same(resultSyms, from->syms[group]))
470         darray_free(from->syms[group]);
471     darray_init(from->syms[group]);
472     darray_free(from->symsMapIndex[group]);
473     darray_free(from->symsMapNumEntries[group]);
474     into->acts[group] = resultActs;
475     darray_init(from->acts[group]);
476     if (!darray_empty(into->syms[group]))
477         into->symsDefined |= (1 << group);
478     from->symsDefined &= ~(1 << group);
479     into->actsDefined |= (1 << group);
480     from->actsDefined &= ~(1 << group);
481
482     return true;
483 }
484
485 static bool
486 MergeKeys(SymbolsInfo *info, struct xkb_keymap *keymap,
487           KeyInfo *into, KeyInfo *from)
488 {
489     xkb_group_index_t i;
490     unsigned collide = 0;
491     bool report;
492
493     if (from->merge == MERGE_REPLACE) {
494         for (i = 0; i < XkbNumKbdGroups; i++) {
495             if (into->numLevels[i] != 0) {
496                 darray_free(into->syms[i]);
497                 darray_free(into->acts[i]);
498             }
499         }
500         *into = *from;
501         memset(from, 0, sizeof(KeyInfo));
502         return true;
503     }
504     report = ((warningLevel > 9) ||
505               ((into->file_id == from->file_id)
506                && (warningLevel > 0)));
507     for (i = 0; i < XkbNumKbdGroups; i++) {
508         if (from->numLevels[i] > 0) {
509             if (into->numLevels[i] == 0) {
510                 into->numLevels[i] = from->numLevels[i];
511                 into->syms[i] = from->syms[i];
512                 into->symsMapIndex[i] = from->symsMapIndex[i];
513                 into->symsMapNumEntries[i] = from->symsMapNumEntries[i];
514                 into->acts[i] = from->acts[i];
515                 into->symsDefined |= (1 << i);
516                 darray_init(from->syms[i]);
517                 darray_init(from->symsMapIndex[i]);
518                 darray_init(from->symsMapNumEntries[i]);
519                 darray_init(from->acts[i]);
520                 from->numLevels[i] = 0;
521                 from->symsDefined &= ~(1 << i);
522                 if (!darray_empty(into->syms[i]))
523                     into->defined |= _Key_Syms;
524                 if (!darray_empty(into->acts[i]))
525                     into->defined |= _Key_Acts;
526             }
527             else {
528                 if (report) {
529                     if (!darray_empty(into->syms[i]))
530                         collide |= _Key_Syms;
531                     if (!darray_empty(into->acts[i]))
532                         collide |= _Key_Acts;
533                 }
534                 MergeKeyGroups(info, into, from, (unsigned) i);
535             }
536         }
537         if (from->types[i] != XKB_ATOM_NONE) {
538             if ((into->types[i] != XKB_ATOM_NONE) && report &&
539                 (into->types[i] != from->types[i])) {
540                 xkb_atom_t use, ignore;
541                 collide |= _Key_Types;
542                 if (from->merge != MERGE_AUGMENT) {
543                     use = from->types[i];
544                     ignore = into->types[i];
545                 }
546                 else {
547                     use = into->types[i];
548                     ignore = from->types[i];
549                 }
550                 WARN
551                     ("Multiple definitions for group %d type of key %s\n",
552                     i, longText(into->name));
553                 ACTION("Using %s, ignoring %s\n",
554                        xkb_atom_text(keymap->ctx, use),
555                        xkb_atom_text(keymap->ctx, ignore));
556             }
557             if (from->merge != MERGE_AUGMENT ||
558                 into->types[i] == XKB_ATOM_NONE) {
559                 into->types[i] = from->types[i];
560             }
561         }
562     }
563     if (UseNewField(_Key_Behavior, into->defined, into->file_id,
564                     from->defined, from->file_id, from->merge, &collide)) {
565         into->behavior = from->behavior;
566         into->defined |= _Key_Behavior;
567     }
568     if (UseNewField(_Key_VModMap, into->defined, into->file_id,
569                     from->defined, from->file_id, from->merge, &collide)) {
570         into->vmodmap = from->vmodmap;
571         into->defined |= _Key_VModMap;
572     }
573     if (UseNewField(_Key_Repeat, into->defined, into->file_id,
574                     from->defined, from->file_id, from->merge, &collide)) {
575         into->repeat = from->repeat;
576         into->defined |= _Key_Repeat;
577     }
578     if (UseNewField(_Key_Type_Dflt, into->defined, into->file_id,
579                     from->defined, from->file_id, from->merge, &collide)) {
580         into->dfltType = from->dfltType;
581         into->defined |= _Key_Type_Dflt;
582     }
583     if (UseNewField(_Key_GroupInfo, into->defined, into->file_id,
584                     from->defined, from->file_id, from->merge, &collide)) {
585         into->out_of_range_group_action = from->out_of_range_group_action;
586         into->out_of_range_group_number = from->out_of_range_group_number;
587         into->defined |= _Key_GroupInfo;
588     }
589     if (collide) {
590         WARN("Symbol map for key %s redefined\n",
591              longText(into->name));
592         ACTION("Using %s definition for conflicting fields\n",
593                (from->merge == MERGE_AUGMENT ? "first" : "last"));
594     }
595     return true;
596 }
597
598 static bool
599 AddKeySymbols(SymbolsInfo *info, KeyInfo *keyi, struct xkb_keymap *keymap)
600 {
601     unsigned long real_name;
602     KeyInfo *iter, *new;
603
604     darray_foreach(iter, info->keys)
605         if (iter->name == keyi->name)
606             return MergeKeys(info, keymap, iter, keyi);
607
608     if (FindKeyNameForAlias(keymap, keyi->name, &real_name))
609         darray_foreach(iter, info->keys)
610             if (iter->name == real_name)
611                 return MergeKeys(info, keymap, iter, keyi);
612
613     darray_resize0(info->keys, darray_size(info->keys) + 1);
614     new = &darray_item(info->keys, darray_size(info->keys) - 1);
615     return CopyKeyInfo(keyi, new, true);
616 }
617
618 static bool
619 AddModMapEntry(SymbolsInfo * info, ModMapEntry * new)
620 {
621     ModMapEntry *mm;
622     bool clobber;
623
624     clobber = (new->merge != MERGE_AUGMENT);
625     list_foreach(mm, &info->modMaps, entry) {
626         if (new->haveSymbol && mm->haveSymbol
627             && (new->u.keySym == mm->u.keySym)) {
628             unsigned use, ignore;
629             if (mm->modifier != new->modifier) {
630                 if (clobber) {
631                     use = new->modifier;
632                     ignore = mm->modifier;
633                 }
634                 else {
635                     use = mm->modifier;
636                     ignore = new->modifier;
637                 }
638                 ERROR
639                     ("%s added to symbol map for multiple modifiers\n",
640                     XkbcKeysymText(new->u.keySym));
641                 ACTION("Using %s, ignoring %s.\n",
642                        XkbcModIndexText(use),
643                        XkbcModIndexText(ignore));
644                 mm->modifier = use;
645             }
646             return true;
647         }
648         if ((!new->haveSymbol) && (!mm->haveSymbol) &&
649             (new->u.keyName == mm->u.keyName)) {
650             unsigned use, ignore;
651             if (mm->modifier != new->modifier) {
652                 if (clobber) {
653                     use = new->modifier;
654                     ignore = mm->modifier;
655                 }
656                 else {
657                     use = mm->modifier;
658                     ignore = new->modifier;
659                 }
660                 ERROR("Key %s added to map for multiple modifiers\n",
661                       longText(new->u.keyName));
662                 ACTION("Using %s, ignoring %s.\n",
663                        XkbcModIndexText(use),
664                        XkbcModIndexText(ignore));
665                 mm->modifier = use;
666             }
667             return true;
668         }
669     }
670
671     mm = malloc(sizeof(*mm));
672     if (!mm) {
673         WSGO("Could not allocate modifier map entry\n");
674         ACTION("Modifier map for %s will be incomplete\n",
675                XkbcModIndexText(new->modifier));
676         return false;
677     }
678
679     *mm = *new;
680     list_add(&mm->entry, &info->modMaps);
681     return true;
682 }
683
684 /***====================================================================***/
685
686 static void
687 MergeIncludedSymbols(SymbolsInfo *into, SymbolsInfo *from,
688                      enum merge_mode merge, struct xkb_keymap *keymap)
689 {
690     unsigned int i;
691     KeyInfo *keyi;
692     ModMapEntry *mm, *next;
693
694     if (from->errorCount > 0) {
695         into->errorCount += from->errorCount;
696         return;
697     }
698     if (into->name == NULL) {
699         into->name = from->name;
700         from->name = NULL;
701     }
702     for (i = 0; i < XkbNumKbdGroups; i++) {
703         if (from->groupNames[i] != XKB_ATOM_NONE) {
704             if ((merge != MERGE_AUGMENT) ||
705                 (into->groupNames[i] == XKB_ATOM_NONE))
706                 into->groupNames[i] = from->groupNames[i];
707         }
708     }
709
710     darray_foreach(keyi, from->keys) {
711         if (merge != MERGE_DEFAULT)
712             keyi->merge = merge;
713
714         if (!AddKeySymbols(into, keyi, keymap))
715             into->errorCount++;
716     }
717
718     list_foreach_safe(mm, next, &from->modMaps, entry) {
719         if (merge != MERGE_DEFAULT)
720             mm->merge = merge;
721         if (!AddModMapEntry(into, mm))
722             into->errorCount++;
723         free(mm);
724     }
725     list_init(&from->modMaps);
726 }
727
728 static void
729 HandleSymbolsFile(XkbFile *file, struct xkb_keymap *keymap,
730                   enum merge_mode merge,
731                   SymbolsInfo *info);
732
733 static bool
734 HandleIncludeSymbols(IncludeStmt *stmt, struct xkb_keymap *keymap,
735                      SymbolsInfo *info)
736 {
737     enum merge_mode merge = MERGE_DEFAULT;
738     XkbFile *rtrn;
739     SymbolsInfo included, next_incl;
740
741     InitSymbolsInfo(&included, keymap, info->file_id);
742     if (stmt->stmt) {
743         free(included.name);
744         included.name = stmt->stmt;
745         stmt->stmt = NULL;
746     }
747
748     for (; stmt; stmt = stmt->next) {
749         if (!ProcessIncludeFile(keymap->ctx, stmt, FILE_TYPE_SYMBOLS,
750                                 &rtrn, &merge)) {
751             info->errorCount += 10;
752             FreeSymbolsInfo(&included);
753             return false;
754         }
755
756         InitSymbolsInfo(&next_incl, keymap, rtrn->id);
757         next_incl.merge = next_incl.dflt.merge = MERGE_OVERRIDE;
758         if (stmt->modifier)
759             next_incl.explicit_group = atoi(stmt->modifier) - 1;
760         else
761             next_incl.explicit_group = info->explicit_group;
762
763         HandleSymbolsFile(rtrn, keymap, MERGE_OVERRIDE, &next_incl);
764
765         MergeIncludedSymbols(&included, &next_incl, merge, keymap);
766
767         FreeSymbolsInfo(&next_incl);
768         FreeXKBFile(rtrn);
769     }
770
771     MergeIncludedSymbols(info, &included, merge, keymap);
772     FreeSymbolsInfo(&included);
773
774     return (info->errorCount == 0);
775 }
776
777 #define SYMBOLS 1
778 #define ACTIONS 2
779
780 static bool
781 GetGroupIndex(KeyInfo *keyi, struct xkb_keymap *keymap,
782               ExprDef *arrayNdx, unsigned what, xkb_group_index_t *ndx_rtrn)
783 {
784     const char *name;
785     ExprResult tmp;
786
787     if (what == SYMBOLS)
788         name = "symbols";
789     else
790         name = "actions";
791
792     if (arrayNdx == NULL) {
793         xkb_group_index_t i;
794         unsigned defined;
795         if (what == SYMBOLS)
796             defined = keyi->symsDefined;
797         else
798             defined = keyi->actsDefined;
799
800         for (i = 0; i < XkbNumKbdGroups; i++) {
801             if ((defined & (1 << i)) == 0) {
802                 *ndx_rtrn = i;
803                 return true;
804             }
805         }
806         ERROR("Too many groups of %s for key %s (max %u)\n", name,
807               longText(keyi->name), XkbNumKbdGroups + 1);
808         ACTION("Ignoring %s defined for extra groups\n", name);
809         return false;
810     }
811     if (!ExprResolveGroup(keymap->ctx, arrayNdx, &tmp)) {
812         ERROR("Illegal group index for %s of key %s\n", name,
813               longText(keyi->name));
814         ACTION("Definition with non-integer array index ignored\n");
815         return false;
816     }
817     *ndx_rtrn = tmp.uval - 1;
818     return true;
819 }
820
821 static bool
822 AddSymbolsToKey(KeyInfo *keyi, struct xkb_keymap *keymap,
823                 ExprDef *arrayNdx, ExprDef *value, SymbolsInfo *info)
824 {
825     xkb_group_index_t ndx;
826     size_t nSyms, nLevels;
827     size_t i;
828     int j;
829
830     if (!GetGroupIndex(keyi, keymap, arrayNdx, SYMBOLS, &ndx))
831         return false;
832     if (value == NULL) {
833         keyi->symsDefined |= (1 << ndx);
834         return true;
835     }
836     if (value->op != ExprKeysymList) {
837         ERROR("Expected a list of symbols, found %s\n", exprOpText(value->op));
838         ACTION("Ignoring symbols for group %u of %s\n", ndx + 1,
839                longText(keyi->name));
840         return false;
841     }
842     if (!darray_empty(keyi->syms[ndx])) {
843         ERROR("Symbols for key %s, group %u already defined\n",
844               longText(keyi->name), ndx + 1);
845         ACTION("Ignoring duplicate definition\n");
846         return false;
847     }
848     nSyms = darray_size(value->value.list.syms);
849     nLevels = darray_size(value->value.list.symsMapIndex);
850     if ((keyi->numLevels[ndx] < nSyms || darray_empty(keyi->syms[ndx])) &&
851         (!ResizeKeyGroup(keyi, ndx, nLevels, nSyms, false))) {
852         WSGO("Could not resize group %u of key %s to contain %zu levels\n",
853              ndx + 1, longText(keyi->name), nSyms);
854         ACTION("Symbols lost\n");
855         return false;
856     }
857     keyi->symsDefined |= (1 << ndx);
858     for (i = 0; i < nLevels; i++) {
859         darray_item(keyi->symsMapIndex[ndx], i) =
860             darray_item(value->value.list.symsMapIndex, i);
861         darray_item(keyi->symsMapNumEntries[ndx], i) =
862             darray_item(value->value.list.symsNumEntries, i);
863
864         for (j = 0; j < darray_item(keyi->symsMapNumEntries[ndx], i); j++) {
865             /* FIXME: What's abort() doing here? */
866             if (darray_item(keyi->symsMapIndex[ndx], i) + j >= nSyms)
867                 abort();
868             if (!LookupKeysym(darray_item(value->value.list.syms,
869                                           darray_item(value->value.list.symsMapIndex,
870                                                       i) + j),
871                               &darray_item(keyi->syms[ndx],
872                                            darray_item(keyi->symsMapIndex[ndx],
873                                                        i) + j))) {
874                 WARN(
875                     "Could not resolve keysym %s for key %s, group %u (%s), level %zu\n",
876                     darray_item(value->value.list.syms, i),
877                     longText(keyi->name),
878                     ndx + 1,
879                     xkb_atom_text(keymap->ctx, info->groupNames[ndx]), nSyms);
880                 while (--j >= 0)
881                     darray_item(keyi->syms[ndx],
882                                 darray_item(keyi->symsMapIndex[ndx],
883                                             i) + j) = XKB_KEY_NoSymbol;
884                 darray_item(keyi->symsMapIndex[ndx], i) = -1;
885                 darray_item(keyi->symsMapNumEntries[ndx], i) = 0;
886                 break;
887             }
888             if (darray_item(keyi->symsMapNumEntries[ndx], i) == 1 &&
889                 darray_item(keyi->syms[ndx],
890                             darray_item(keyi->symsMapIndex[ndx],
891                                         i) + j) == XKB_KEY_NoSymbol) {
892                 darray_item(keyi->symsMapIndex[ndx], i) = -1;
893                 darray_item(keyi->symsMapNumEntries[ndx], i) = 0;
894             }
895         }
896     }
897     for (j = keyi->numLevels[ndx] - 1;
898          j >= 0 && darray_item(keyi->symsMapNumEntries[ndx], j) == 0; j--)
899         keyi->numLevels[ndx]--;
900     return true;
901 }
902
903 static bool
904 AddActionsToKey(KeyInfo *keyi, struct xkb_keymap *keymap, ExprDef *arrayNdx,
905                 ExprDef *value, SymbolsInfo *info)
906 {
907     size_t i;
908     xkb_group_index_t ndx;
909     size_t nActs;
910     ExprDef *act;
911     struct xkb_any_action *toAct;
912
913     if (!GetGroupIndex(keyi, keymap, arrayNdx, ACTIONS, &ndx))
914         return false;
915
916     if (value == NULL) {
917         keyi->actsDefined |= (1 << ndx);
918         return true;
919     }
920     if (value->op != ExprActionList) {
921         WSGO("Bad expression type (%d) for action list value\n", value->op);
922         ACTION("Ignoring actions for group %u of %s\n", ndx,
923                longText(keyi->name));
924         return false;
925     }
926     if (!darray_empty(keyi->acts[ndx])) {
927         WSGO("Actions for key %s, group %u already defined\n",
928               longText(keyi->name), ndx);
929         return false;
930     }
931     for (nActs = 0, act = value->value.child; act != NULL; nActs++) {
932         act = (ExprDef *) act->common.next;
933     }
934     if (nActs < 1) {
935         WSGO("Action list but not actions in AddActionsToKey\n");
936         return false;
937     }
938     if ((keyi->numLevels[ndx] < nActs || darray_empty(keyi->acts[ndx])) &&
939         !ResizeKeyGroup(keyi, ndx, nActs, nActs, true)) {
940         WSGO("Could not resize group %u of key %s\n", ndx,
941               longText(keyi->name));
942         ACTION("Actions lost\n");
943         return false;
944     }
945     keyi->actsDefined |= (1 << ndx);
946
947     toAct = (struct xkb_any_action *) darray_mem(keyi->acts[ndx], 0);
948     act = value->value.child;
949     for (i = 0; i < nActs; i++, toAct++) {
950         if (!HandleActionDef(act, keymap, toAct, info->action)) {
951             ERROR("Illegal action definition for %s\n",
952                   longText(keyi->name));
953             ACTION("Action for group %u/level %zu ignored\n", ndx + 1, i + 1);
954         }
955         act = (ExprDef *) act->common.next;
956     }
957     return true;
958 }
959
960 static const LookupEntry lockingEntries[] = {
961     { "true", XkbKB_Lock },
962     { "yes", XkbKB_Lock },
963     { "on", XkbKB_Lock },
964     { "false", XkbKB_Default },
965     { "no", XkbKB_Default },
966     { "off", XkbKB_Default },
967     { "permanent", XkbKB_Lock | XkbKB_Permanent },
968     { NULL, 0 }
969 };
970
971 static const LookupEntry repeatEntries[] = {
972     { "true", RepeatYes },
973     { "yes", RepeatYes },
974     { "on", RepeatYes },
975     { "false", RepeatNo },
976     { "no", RepeatNo },
977     { "off", RepeatNo },
978     { "default", RepeatUndefined },
979     { NULL, 0 }
980 };
981
982 static bool
983 SetSymbolsField(KeyInfo *keyi, struct xkb_keymap *keymap, char *field,
984                 ExprDef *arrayNdx, ExprDef *value, SymbolsInfo *info)
985 {
986     bool ok = true;
987     ExprResult tmp;
988
989     if (strcasecmp(field, "type") == 0) {
990         ExprResult ndx;
991         if ((!ExprResolveString(keymap->ctx, value, &tmp))
992             && (warningLevel > 0)) {
993             WARN("The type field of a key symbol map must be a string\n");
994             ACTION("Ignoring illegal type definition\n");
995         }
996         if (arrayNdx == NULL) {
997             keyi->dfltType = xkb_atom_intern(keymap->ctx, tmp.str);
998             keyi->defined |= _Key_Type_Dflt;
999         }
1000         else if (!ExprResolveGroup(keymap->ctx, arrayNdx, &ndx)) {
1001             ERROR("Illegal group index for type of key %s\n",
1002                   longText(keyi->name));
1003             ACTION("Definition with non-integer array index ignored\n");
1004             free(tmp.str);
1005             return false;
1006         }
1007         else {
1008             keyi->types[ndx.uval - 1] = xkb_atom_intern(keymap->ctx, tmp.str);
1009             keyi->typesDefined |= (1 << (ndx.uval - 1));
1010         }
1011         free(tmp.str);
1012     }
1013     else if (strcasecmp(field, "symbols") == 0)
1014         return AddSymbolsToKey(keyi, keymap, arrayNdx, value, info);
1015     else if (strcasecmp(field, "actions") == 0)
1016         return AddActionsToKey(keyi, keymap, arrayNdx, value, info);
1017     else if ((strcasecmp(field, "vmods") == 0) ||
1018              (strcasecmp(field, "virtualmods") == 0) ||
1019              (strcasecmp(field, "virtualmodifiers") == 0)) {
1020         ok = ExprResolveVModMask(value, &tmp, keymap);
1021         if (ok) {
1022             keyi->vmodmap = (tmp.uval >> 8);
1023             keyi->defined |= _Key_VModMap;
1024         }
1025         else {
1026             ERROR("Expected a virtual modifier mask, found %s\n",
1027                   exprOpText(value->op));
1028             ACTION("Ignoring virtual modifiers definition for key %s\n",
1029                    longText(keyi->name));
1030         }
1031     }
1032     else if ((strcasecmp(field, "locking") == 0) ||
1033              (strcasecmp(field, "lock") == 0) ||
1034              (strcasecmp(field, "locks") == 0)) {
1035         ok = ExprResolveEnum(keymap->ctx, value, &tmp, lockingEntries);
1036         if (ok)
1037             keyi->behavior.type = tmp.uval;
1038         keyi->defined |= _Key_Behavior;
1039     }
1040     else if ((strcasecmp(field, "radiogroup") == 0) ||
1041              (strcasecmp(field, "permanentradiogroup") == 0) ||
1042              (strcasecmp(field, "allownone") == 0)) {
1043         ERROR("Radio groups not supported\n");
1044         ACTION("Ignoring radio group specification for key %s\n",
1045                longText(keyi->name));
1046         return false;
1047     }
1048     else if (uStrCasePrefix("overlay", field) ||
1049              uStrCasePrefix("permanentoverlay", field)) {
1050         ERROR("Overlays not supported\n");
1051         ACTION("Ignoring overlay specification for key %s\n",
1052                longText(keyi->name));
1053     }
1054     else if ((strcasecmp(field, "repeating") == 0) ||
1055              (strcasecmp(field, "repeats") == 0) ||
1056              (strcasecmp(field, "repeat") == 0)) {
1057         ok = ExprResolveEnum(keymap->ctx, value, &tmp, repeatEntries);
1058         if (!ok) {
1059             ERROR("Illegal repeat setting for %s\n",
1060                   longText(keyi->name));
1061             ACTION("Non-boolean repeat setting ignored\n");
1062             return false;
1063         }
1064         keyi->repeat = tmp.uval;
1065         keyi->defined |= _Key_Repeat;
1066     }
1067     else if ((strcasecmp(field, "groupswrap") == 0) ||
1068              (strcasecmp(field, "wrapgroups") == 0)) {
1069         ok = ExprResolveBoolean(keymap->ctx, value, &tmp);
1070         if (!ok) {
1071             ERROR("Illegal groupsWrap setting for %s\n",
1072                   longText(keyi->name));
1073             ACTION("Non-boolean value ignored\n");
1074             return false;
1075         }
1076         if (tmp.uval)
1077             keyi->out_of_range_group_action = XkbWrapIntoRange;
1078         else
1079             keyi->out_of_range_group_action = XkbClampIntoRange;
1080         keyi->defined |= _Key_GroupInfo;
1081     }
1082     else if ((strcasecmp(field, "groupsclamp") == 0) ||
1083              (strcasecmp(field, "clampgroups") == 0)) {
1084         ok = ExprResolveBoolean(keymap->ctx, value, &tmp);
1085         if (!ok) {
1086             ERROR("Illegal groupsClamp setting for %s\n",
1087                   longText(keyi->name));
1088             ACTION("Non-boolean value ignored\n");
1089             return false;
1090         }
1091         if (tmp.uval)
1092             keyi->out_of_range_group_action = XkbClampIntoRange;
1093         else
1094             keyi->out_of_range_group_action = XkbWrapIntoRange;
1095         keyi->defined |= _Key_GroupInfo;
1096     }
1097     else if ((strcasecmp(field, "groupsredirect") == 0) ||
1098              (strcasecmp(field, "redirectgroups") == 0)) {
1099         if (!ExprResolveGroup(keymap->ctx, value, &tmp)) {
1100             ERROR("Illegal group index for redirect of key %s\n",
1101                   longText(keyi->name));
1102             ACTION("Definition with non-integer group ignored\n");
1103             return false;
1104         }
1105         keyi->out_of_range_group_action = XkbRedirectIntoRange;
1106         keyi->out_of_range_group_number = tmp.uval - 1;
1107         keyi->defined |= _Key_GroupInfo;
1108     }
1109     else {
1110         ERROR("Unknown field %s in a symbol interpretation\n", field);
1111         ACTION("Definition ignored\n");
1112         ok = false;
1113     }
1114     return ok;
1115 }
1116
1117 static int
1118 SetGroupName(SymbolsInfo *info, struct xkb_keymap *keymap, ExprDef *arrayNdx,
1119              ExprDef *value)
1120 {
1121     ExprResult tmp, name;
1122
1123     if ((arrayNdx == NULL) && (warningLevel > 0)) {
1124         WARN("You must specify an index when specifying a group name\n");
1125         ACTION("Group name definition without array subscript ignored\n");
1126         return false;
1127     }
1128     if (!ExprResolveGroup(keymap->ctx, arrayNdx, &tmp)) {
1129         ERROR("Illegal index in group name definition\n");
1130         ACTION("Definition with non-integer array index ignored\n");
1131         return false;
1132     }
1133     if (!ExprResolveString(keymap->ctx, value, &name)) {
1134         ERROR("Group name must be a string\n");
1135         ACTION("Illegal name for group %d ignored\n", tmp.uval);
1136         return false;
1137     }
1138     info->groupNames[tmp.uval - 1 + info->explicit_group] =
1139         xkb_atom_intern(keymap->ctx, name.str);
1140     free(name.str);
1141
1142     return true;
1143 }
1144
1145 static int
1146 HandleSymbolsVar(VarDef *stmt, struct xkb_keymap *keymap, SymbolsInfo *info)
1147 {
1148     ExprResult elem, field;
1149     ExprDef *arrayNdx;
1150     bool ret;
1151
1152     if (ExprResolveLhs(keymap, stmt->name, &elem, &field, &arrayNdx) == 0)
1153         return 0;               /* internal error, already reported */
1154     if (elem.str && (strcasecmp(elem.str, "key") == 0)) {
1155         ret = SetSymbolsField(&info->dflt, keymap, field.str, arrayNdx,
1156                               stmt->value, info);
1157     }
1158     else if ((elem.str == NULL) && ((strcasecmp(field.str, "name") == 0) ||
1159                                     (strcasecmp(field.str, "groupname") ==
1160                                      0))) {
1161         ret = SetGroupName(info, keymap, arrayNdx, stmt->value);
1162     }
1163     else if ((elem.str == NULL)
1164              && ((strcasecmp(field.str, "groupswrap") == 0) ||
1165                  (strcasecmp(field.str, "wrapgroups") == 0))) {
1166         ERROR("Global \"groupswrap\" not supported\n");
1167         ACTION("Ignored\n");
1168         ret = true;
1169     }
1170     else if ((elem.str == NULL)
1171              && ((strcasecmp(field.str, "groupsclamp") == 0) ||
1172                  (strcasecmp(field.str, "clampgroups") == 0))) {
1173         ERROR("Global \"groupsclamp\" not supported\n");
1174         ACTION("Ignored\n");
1175         ret = true;
1176     }
1177     else if ((elem.str == NULL)
1178              && ((strcasecmp(field.str, "groupsredirect") == 0) ||
1179                  (strcasecmp(field.str, "redirectgroups") == 0))) {
1180         ERROR("Global \"groupsredirect\" not supported\n");
1181         ACTION("Ignored\n");
1182         ret = true;
1183     }
1184     else if ((elem.str == NULL) &&
1185              (strcasecmp(field.str, "allownone") == 0)) {
1186         ERROR("Radio groups not supported\n");
1187         ACTION("Ignoring \"allownone\" specification\n");
1188         ret = true;
1189     }
1190     else {
1191         ret = SetActionField(keymap, elem.str, field.str, arrayNdx,
1192                              stmt->value, &info->action);
1193     }
1194
1195     free(elem.str);
1196     free(field.str);
1197     return ret;
1198 }
1199
1200 static bool
1201 HandleSymbolsBody(VarDef *def, struct xkb_keymap *keymap, KeyInfo *keyi,
1202                   SymbolsInfo *info)
1203 {
1204     bool ok = true;
1205     ExprResult tmp, field;
1206     ExprDef *arrayNdx;
1207
1208     for (; def != NULL; def = (VarDef *) def->common.next) {
1209         if ((def->name) && (def->name->type == ExprFieldRef)) {
1210             ok = HandleSymbolsVar(def, keymap, info);
1211             continue;
1212         }
1213         else {
1214             if (def->name == NULL) {
1215                 if ((def->value == NULL)
1216                     || (def->value->op == ExprKeysymList))
1217                     field.str = strdup("symbols");
1218                 else
1219                     field.str = strdup("actions");
1220                 arrayNdx = NULL;
1221             }
1222             else {
1223                 ok = ExprResolveLhs(keymap, def->name, &tmp, &field,
1224                                     &arrayNdx);
1225             }
1226             if (ok)
1227                 ok = SetSymbolsField(keyi, keymap, field.str, arrayNdx,
1228                                      def->value, info);
1229             free(field.str);
1230         }
1231     }
1232     return ok;
1233 }
1234
1235 static bool
1236 SetExplicitGroup(SymbolsInfo *info, KeyInfo *keyi)
1237 {
1238     xkb_group_index_t group = info->explicit_group;
1239
1240     if (group == 0)
1241         return true;
1242
1243     if ((keyi->typesDefined | keyi->symsDefined | keyi->actsDefined) & ~1) {
1244         xkb_group_index_t i;
1245         WARN("For the map %s an explicit group specified\n", info->name);
1246         WARN("but key %s has more than one group defined\n",
1247              longText(keyi->name));
1248         ACTION("All groups except first one will be ignored\n");
1249         for (i = 1; i < XkbNumKbdGroups; i++) {
1250             keyi->numLevels[i] = 0;
1251             darray_free(keyi->syms[i]);
1252             darray_free(keyi->acts[i]);
1253             keyi->types[i] = 0;
1254         }
1255     }
1256     keyi->typesDefined = keyi->symsDefined = keyi->actsDefined = 1 << group;
1257
1258     keyi->numLevels[group] = keyi->numLevels[0];
1259     keyi->numLevels[0] = 0;
1260     keyi->syms[group] = keyi->syms[0];
1261     darray_init(keyi->syms[0]);
1262     keyi->symsMapIndex[group] = keyi->symsMapIndex[0];
1263     darray_init(keyi->symsMapIndex[0]);
1264     keyi->symsMapNumEntries[group] = keyi->symsMapNumEntries[0];
1265     darray_init(keyi->symsMapNumEntries[0]);
1266     keyi->acts[group] = keyi->acts[0];
1267     darray_init(keyi->acts[0]);
1268     keyi->types[group] = keyi->types[0];
1269     keyi->types[0] = 0;
1270     return true;
1271 }
1272
1273 static int
1274 HandleSymbolsDef(SymbolsDef *stmt, struct xkb_keymap *keymap,
1275                  SymbolsInfo *info)
1276 {
1277     KeyInfo keyi;
1278
1279     InitKeyInfo(&keyi, info->file_id);
1280     CopyKeyInfo(&info->dflt, &keyi, false);
1281     keyi.merge = stmt->merge;
1282     keyi.name = KeyNameToLong(stmt->keyName);
1283     if (!HandleSymbolsBody((VarDef *) stmt->symbols, keymap, &keyi, info)) {
1284         info->errorCount++;
1285         return false;
1286     }
1287
1288     if (!SetExplicitGroup(info, &keyi)) {
1289         info->errorCount++;
1290         return false;
1291     }
1292
1293     if (!AddKeySymbols(info, &keyi, keymap)) {
1294         info->errorCount++;
1295         return false;
1296     }
1297     return true;
1298 }
1299
1300 static bool
1301 HandleModMapDef(ModMapDef *def, struct xkb_keymap *keymap, SymbolsInfo *info)
1302 {
1303     ExprDef *key;
1304     ModMapEntry tmp;
1305     ExprResult rtrn;
1306     bool ok;
1307
1308     if (!LookupModIndex(keymap->ctx, NULL, def->modifier, TypeInt, &rtrn)) {
1309         ERROR("Illegal modifier map definition\n");
1310         ACTION("Ignoring map for non-modifier \"%s\"\n",
1311                xkb_atom_text(keymap->ctx, def->modifier));
1312         return false;
1313     }
1314     ok = true;
1315     tmp.modifier = rtrn.uval;
1316     for (key = def->keys; key != NULL; key = (ExprDef *) key->common.next) {
1317         if ((key->op == ExprValue) && (key->type == TypeKeyName)) {
1318             tmp.haveSymbol = false;
1319             tmp.u.keyName = KeyNameToLong(key->value.keyName);
1320         }
1321         else if (ExprResolveKeySym(keymap->ctx, key, &rtrn)) {
1322             tmp.haveSymbol = true;
1323             tmp.u.keySym = rtrn.uval;
1324         }
1325         else {
1326             ERROR("Modmap entries may contain only key names or keysyms\n");
1327             ACTION("Illegal definition for %s modifier ignored\n",
1328                    XkbcModIndexText(tmp.modifier));
1329             continue;
1330         }
1331
1332         ok = AddModMapEntry(info, &tmp) && ok;
1333     }
1334     return ok;
1335 }
1336
1337 static void
1338 HandleSymbolsFile(XkbFile *file, struct xkb_keymap *keymap,
1339                   enum merge_mode merge, SymbolsInfo *info)
1340 {
1341     ParseCommon *stmt;
1342
1343     free(info->name);
1344     info->name = uDupString(file->name);
1345     stmt = file->defs;
1346     while (stmt)
1347     {
1348         switch (stmt->stmtType) {
1349         case StmtInclude:
1350             if (!HandleIncludeSymbols((IncludeStmt *) stmt, keymap, info))
1351                 info->errorCount++;
1352             break;
1353         case StmtSymbolsDef:
1354             if (!HandleSymbolsDef((SymbolsDef *) stmt, keymap, info))
1355                 info->errorCount++;
1356             break;
1357         case StmtVarDef:
1358             if (!HandleSymbolsVar((VarDef *) stmt, keymap, info))
1359                 info->errorCount++;
1360             break;
1361         case StmtVModDef:
1362             if (!HandleVModDef((VModDef *) stmt, keymap, merge, &info->vmods))
1363                 info->errorCount++;
1364             break;
1365         case StmtInterpDef:
1366             ERROR("Interpretation files may not include other types\n");
1367             ACTION("Ignoring definition of symbol interpretation\n");
1368             info->errorCount++;
1369             break;
1370         case StmtKeycodeDef:
1371             ERROR("Interpretation files may not include other types\n");
1372             ACTION("Ignoring definition of key name\n");
1373             info->errorCount++;
1374             break;
1375         case StmtModMapDef:
1376             if (!HandleModMapDef((ModMapDef *) stmt, keymap, info))
1377                 info->errorCount++;
1378             break;
1379         default:
1380             WSGO("Unexpected statement type %d in HandleSymbolsFile\n",
1381                  stmt->stmtType);
1382             break;
1383         }
1384         stmt = stmt->next;
1385         if (info->errorCount > 10) {
1386 #ifdef NOISY
1387             ERROR("Too many errors\n");
1388 #endif
1389             ACTION("Abandoning symbols file \"%s\"\n", file->topName);
1390             break;
1391         }
1392     }
1393 }
1394
1395 /**
1396  * Given a keysym @sym, return a key which generates it, or NULL.
1397  * This is used for example in a modifier map definition, such as:
1398  *      modifier_map Lock           { Caps_Lock };
1399  * where we want to add the Lock modifier to the modmap of the key
1400  * which matches the keysym Caps_Lock.
1401  * Since there can be many keys which generates the keysym, the key
1402  * is chosen first by lowest group in which the keysym appears, than
1403  * by lowest level and than by lowest key code.
1404  */
1405 static struct xkb_key *
1406 FindKeyForSymbol(struct xkb_keymap *keymap, xkb_keysym_t sym)
1407 {
1408     struct xkb_key *key, *ret = NULL;
1409     xkb_group_index_t group, min_group = UINT_MAX;
1410     unsigned int level, min_level = UINT_MAX;
1411
1412     xkb_foreach_key(key, keymap) {
1413         for (group = 0; group < key->num_groups; group++) {
1414             for (level = 0; level < XkbKeyGroupWidth(keymap, key, group);
1415                  level++) {
1416                 if (XkbKeyNumSyms(key, group, level) != 1 ||
1417                     (XkbKeySymEntry(key, group, level))[0] != sym)
1418                     continue;
1419
1420                 /*
1421                  * If the keysym was found in a group or level > 0, we must
1422                  * keep looking since we might find a key in which the keysym
1423                  * is in a lower group or level.
1424                  */
1425                 if (group < min_group ||
1426                     (group == min_group && level < min_level)) {
1427                     ret = key;
1428                     if (group == 0 && level == 0) {
1429                         return ret;
1430                     }
1431                     else {
1432                         min_group = group;
1433                         min_level = level;
1434                     }
1435                 }
1436             }
1437         }
1438     }
1439
1440     return ret;
1441 }
1442
1443 /**
1444  * Find the given name in the keymap->map->types and return its index.
1445  *
1446  * @param atom The atom to search for.
1447  * @param type_rtrn Set to the index of the name if found.
1448  *
1449  * @return true if found, false otherwise.
1450  */
1451 static bool
1452 FindNamedType(struct xkb_keymap *keymap, xkb_atom_t atom, unsigned *type_rtrn)
1453 {
1454     unsigned n = 0;
1455     const char *name = xkb_atom_text(keymap->ctx, atom);
1456     struct xkb_key_type *type;
1457
1458     if (keymap) {
1459         darray_foreach(type, keymap->types) {
1460             if (strcmp(type->name, name) == 0) {
1461                 *type_rtrn = n;
1462                 return true;
1463             }
1464             n++;
1465         }
1466     }
1467     return false;
1468 }
1469
1470 /**
1471  * Assign a type to the given sym and return the Atom for the type assigned.
1472  *
1473  * Simple recipe:
1474  * - ONE_LEVEL for width 0/1
1475  * - ALPHABETIC for 2 shift levels, with lower/upercase
1476  * - KEYPAD for keypad keys.
1477  * - TWO_LEVEL for other 2 shift level keys.
1478  * and the same for four level keys.
1479  *
1480  * @param width Number of sysms in syms.
1481  * @param syms The keysyms for the given key (must be size width).
1482  * @param typeNameRtrn Set to the Atom of the type name.
1483  *
1484  * @returns true if a type could be found, false otherwise.
1485  *
1486  * FIXME: I need to take the KeyInfo so I can look at symsMapIndex and
1487  *        all that fun stuff rather than just assuming there's always one
1488  *        symbol per level.
1489  */
1490 static bool
1491 FindAutomaticType(struct xkb_keymap *keymap, int width,
1492                   const xkb_keysym_t *syms, xkb_atom_t *typeNameRtrn,
1493                   bool *autoType)
1494 {
1495     *autoType = false;
1496     if ((width == 1) || (width == 0)) {
1497         *typeNameRtrn = xkb_atom_intern(keymap->ctx, "ONE_LEVEL");
1498         *autoType = true;
1499     }
1500     else if (width == 2) {
1501         if (syms && xkb_keysym_is_lower(syms[0]) &&
1502             xkb_keysym_is_upper(syms[1])) {
1503             *typeNameRtrn = xkb_atom_intern(keymap->ctx, "ALPHABETIC");
1504         }
1505         else if (syms && (xkb_keysym_is_keypad(syms[0]) ||
1506                           xkb_keysym_is_keypad(syms[1]))) {
1507             *typeNameRtrn = xkb_atom_intern(keymap->ctx, "KEYPAD");
1508             *autoType = true;
1509         }
1510         else {
1511             *typeNameRtrn = xkb_atom_intern(keymap->ctx, "TWO_LEVEL");
1512             *autoType = true;
1513         }
1514     }
1515     else if (width <= 4) {
1516         if (syms && xkb_keysym_is_lower(syms[0]) &&
1517             xkb_keysym_is_upper(syms[1]))
1518             if (xkb_keysym_is_lower(syms[2]) && xkb_keysym_is_upper(syms[3]))
1519                 *typeNameRtrn =
1520                     xkb_atom_intern(keymap->ctx, "FOUR_LEVEL_ALPHABETIC");
1521             else
1522                 *typeNameRtrn = xkb_atom_intern(keymap->ctx,
1523                                                 "FOUR_LEVEL_SEMIALPHABETIC");
1524
1525         else if (syms && (xkb_keysym_is_keypad(syms[0]) ||
1526                           xkb_keysym_is_keypad(syms[1])))
1527             *typeNameRtrn = xkb_atom_intern(keymap->ctx, "FOUR_LEVEL_KEYPAD");
1528         else
1529             *typeNameRtrn = xkb_atom_intern(keymap->ctx, "FOUR_LEVEL");
1530         /* XXX: why not set autoType here? */
1531     }
1532     return ((width >= 0) && (width <= 4));
1533 }
1534
1535 /**
1536  * Ensure the given KeyInfo is in a coherent state, i.e. no gaps between the
1537  * groups, and reduce to one group if all groups are identical anyway.
1538  */
1539 static void
1540 PrepareKeyDef(KeyInfo *keyi)
1541 {
1542     xkb_group_index_t i, lastGroup;
1543     int j, width, defined;
1544     bool identical;
1545
1546     defined = keyi->symsDefined | keyi->actsDefined | keyi->typesDefined;
1547     /* get highest group number */
1548     for (i = XkbNumKbdGroups - 1; i > 0; i--) {
1549         if (defined & (1 << i))
1550             break;
1551     }
1552     lastGroup = i;
1553
1554     if (lastGroup == 0)
1555         return;
1556
1557     /* If there are empty groups between non-empty ones fill them with data */
1558     /* from the first group. */
1559     /* We can make a wrong assumption here. But leaving gaps is worse. */
1560     for (i = lastGroup; i > 0; i--) {
1561         if (defined & (1 << i))
1562             continue;
1563         width = keyi->numLevels[0];
1564         if (keyi->typesDefined & 1) {
1565             for (j = 0; j < width; j++) {
1566                 keyi->types[i] = keyi->types[0];
1567             }
1568             keyi->typesDefined |= 1 << i;
1569         }
1570         if ((keyi->actsDefined & 1) && !darray_empty(keyi->acts[0])) {
1571             darray_copy(keyi->acts[i], keyi->acts[0]);
1572             keyi->actsDefined |= 1 << i;
1573         }
1574         if ((keyi->symsDefined & 1) && !darray_empty(keyi->syms[0])) {
1575             darray_copy(keyi->syms[i], keyi->syms[0]);
1576             darray_copy(keyi->symsMapIndex[i], keyi->symsMapIndex[0]);
1577             darray_copy(keyi->symsMapNumEntries[i],
1578                         keyi->symsMapNumEntries[0]);
1579             keyi->symsDefined |= 1 << i;
1580         }
1581         if (defined & 1) {
1582             keyi->numLevels[i] = keyi->numLevels[0];
1583         }
1584     }
1585     /* If all groups are completely identical remove them all */
1586     /* exept the first one. */
1587     identical = true;
1588     for (i = lastGroup; i > 0; i--) {
1589         if ((keyi->numLevels[i] != keyi->numLevels[0]) ||
1590             (keyi->types[i] != keyi->types[0])) {
1591             identical = false;
1592             break;
1593         }
1594         if (!darray_same(keyi->syms[i], keyi->syms[0]) &&
1595             (darray_empty(keyi->syms[i]) || darray_empty(keyi->syms[0]) ||
1596              darray_size(keyi->syms[i]) != darray_size(keyi->syms[0]) ||
1597              memcmp(darray_mem(keyi->syms[i], 0),
1598                     darray_mem(keyi->syms[0], 0),
1599                    sizeof(xkb_keysym_t) * darray_size(keyi->syms[0])))) {
1600             identical = false;
1601             break;
1602         }
1603         if (!darray_same(keyi->symsMapIndex[i], keyi->symsMapIndex[0]) &&
1604             (darray_empty(keyi->symsMapIndex[i]) ||
1605              darray_empty(keyi->symsMapIndex[0]) ||
1606              memcmp(darray_mem(keyi->symsMapIndex[i], 0),
1607                     darray_mem(keyi->symsMapIndex[0], 0),
1608                     keyi->numLevels[0] * sizeof(int)))) {
1609             identical = false;
1610             continue;
1611         }
1612         if (!darray_same(keyi->symsMapNumEntries[i],
1613                          keyi->symsMapNumEntries[0]) &&
1614             (darray_empty(keyi->symsMapNumEntries[i]) ||
1615              darray_empty(keyi->symsMapNumEntries[0]) ||
1616              memcmp(darray_mem(keyi->symsMapNumEntries[i], 0),
1617                     darray_mem(keyi->symsMapNumEntries[0], 0),
1618                     keyi->numLevels[0] * sizeof(size_t)))) {
1619             identical = false;
1620             continue;
1621         }
1622         if (!darray_same(keyi->acts[i], keyi->acts[0]) &&
1623             (darray_empty(keyi->acts[i]) || darray_empty(keyi->acts[0]) ||
1624              memcmp(darray_mem(keyi->acts[i], 0),
1625                     darray_mem(keyi->acts[0], 0),
1626                     keyi->numLevels[0] * sizeof(union xkb_action)))) {
1627             identical = false;
1628             break;
1629         }
1630     }
1631     if (identical) {
1632         for (i = lastGroup; i > 0; i--) {
1633             keyi->numLevels[i] = 0;
1634             darray_free(keyi->syms[i]);
1635             darray_free(keyi->symsMapIndex[i]);
1636             darray_free(keyi->symsMapNumEntries[i]);
1637             darray_free(keyi->acts[i]);
1638             keyi->types[i] = 0;
1639         }
1640         keyi->symsDefined &= 1;
1641         keyi->actsDefined &= 1;
1642         keyi->typesDefined &= 1;
1643     }
1644 }
1645
1646 /**
1647  * Copy the KeyInfo into the keyboard description.
1648  *
1649  * This function recurses.
1650  */
1651 static bool
1652 CopySymbolsDef(struct xkb_keymap *keymap, KeyInfo *keyi,
1653                xkb_keycode_t start_from)
1654 {
1655     xkb_keycode_t kc;
1656     struct xkb_key *key;
1657     size_t sizeSyms = 0;
1658     xkb_group_index_t i, nGroups;
1659     unsigned width, tmp;
1660     struct xkb_key_type * type;
1661     bool haveActions, autoType, useAlias;
1662     unsigned types[XkbNumKbdGroups];
1663     union xkb_action *outActs;
1664     unsigned int symIndex = 0;
1665
1666     useAlias = (start_from == 0);
1667
1668     key = FindNamedKey(keymap, keyi->name, useAlias,
1669                        CreateKeyNames(keymap), start_from);
1670     if (!key) {
1671         if (start_from == 0 && warningLevel >= 5) {
1672             WARN("Key %s not found in keycodes\n", longText(keyi->name));
1673             ACTION("Symbols ignored\n");
1674         }
1675         return false;
1676     }
1677     kc = XkbKeyGetKeycode(keymap, key);
1678
1679     haveActions = false;
1680     width = 0;
1681     for (i = nGroups = 0; i < XkbNumKbdGroups; i++) {
1682         if (((i + 1) > nGroups)
1683             && (((keyi->symsDefined | keyi->actsDefined) & (1 << i))
1684                 || (keyi->typesDefined) & (1 << i)))
1685             nGroups = i + 1;
1686         if (!darray_empty(keyi->acts[i]))
1687             haveActions = true;
1688         autoType = false;
1689         /* Assign the type to the key, if it is missing. */
1690         if (keyi->types[i] == XKB_ATOM_NONE) {
1691             if (keyi->dfltType != XKB_ATOM_NONE)
1692                 keyi->types[i] = keyi->dfltType;
1693             else if (FindAutomaticType(keymap, keyi->numLevels[i],
1694                                        darray_mem(keyi->syms[i], 0),
1695                                        &keyi->types[i], &autoType)) { }
1696             else {
1697                 if (warningLevel >= 5) {
1698                     WARN("No automatic type for %d symbols\n",
1699                           keyi->numLevels[i]);
1700                     ACTION("Using %s for the %s key (keycode %d)\n",
1701                             xkb_atom_text(keymap->ctx, keyi->types[i]),
1702                             longText(keyi->name), kc);
1703                 }
1704             }
1705         }
1706         if (FindNamedType(keymap, keyi->types[i], &types[i])) {
1707             if (!autoType || keyi->numLevels[i] > 2)
1708                 key->explicit |= (1 << i);
1709         }
1710         else {
1711             if (warningLevel >= 3) {
1712                 WARN("Type \"%s\" is not defined\n",
1713                      xkb_atom_text(keymap->ctx, keyi->types[i]));
1714                 ACTION("Using TWO_LEVEL for the %s key (keycode %d)\n",
1715                        longText(keyi->name), kc);
1716             }
1717             types[i] = XkbTwoLevelIndex;
1718         }
1719         /* if the type specifies fewer levels than the key has, shrink the key */
1720         type = &darray_item(keymap->types, types[i]);
1721         if (type->num_levels < keyi->numLevels[i]) {
1722             if (warningLevel > 0) {
1723                 WARN("Type \"%s\" has %d levels, but %s has %d symbols\n",
1724                      type->name, type->num_levels,
1725                      xkb_atom_text(keymap->ctx, keyi->name), keyi->numLevels[i]);
1726                 ACTION("Ignoring extra symbols\n");
1727             }
1728             keyi->numLevels[i] = type->num_levels;
1729         }
1730         if (keyi->numLevels[i] > width)
1731             width = keyi->numLevels[i];
1732         if (type->num_levels > width)
1733             width = type->num_levels;
1734         sizeSyms += darray_size(keyi->syms[i]);
1735     }
1736
1737     darray_resize0(key->syms, sizeSyms);
1738
1739     if (haveActions) {
1740         outActs = XkbcResizeKeyActions(keymap, key, width * nGroups);
1741         if (outActs == NULL) {
1742             WSGO("Could not enlarge actions for %s (key %d)\n",
1743                  longText(keyi->name), kc);
1744             return false;
1745         }
1746         key->explicit |= XkbExplicitInterpretMask;
1747     }
1748     else
1749         outActs = NULL;
1750
1751     key->num_groups = nGroups;
1752     if (keyi->defined & _Key_GroupInfo) {
1753         key->out_of_range_group_number = keyi->out_of_range_group_number;
1754         key->out_of_range_group_action = keyi->out_of_range_group_action;
1755     }
1756     key->width = width;
1757     key->sym_index = calloc(nGroups * width, sizeof(*key->sym_index));
1758     key->num_syms = calloc(nGroups * width, sizeof(*key->num_syms));
1759
1760     for (i = 0; i < nGroups; i++) {
1761         /* assign kt_index[i] to the index of the type in map->types.
1762          * kt_index[i] may have been set by a previous run (if we have two
1763          * layouts specified). Let's not overwrite it with the ONE_LEVEL
1764          * default group if we dont even have keys for this group anyway.
1765          *
1766          * FIXME: There should be a better fix for this.
1767          */
1768         if (keyi->numLevels[i])
1769             key->kt_index[i] = types[i];
1770         if (!darray_empty(keyi->syms[i])) {
1771             /* fill key to "width" symbols*/
1772             for (tmp = 0; tmp < width; tmp++) {
1773                 if (tmp < keyi->numLevels[i] &&
1774                     darray_item(keyi->symsMapNumEntries[i], tmp) != 0) {
1775                     memcpy(darray_mem(key->syms, symIndex),
1776                            darray_mem(keyi->syms[i],
1777                                       darray_item(keyi->symsMapIndex[i], tmp)),
1778                            darray_item(keyi->symsMapNumEntries[i],
1779                                        tmp) * sizeof(xkb_keysym_t));
1780                     key->sym_index[(i * width) + tmp] = symIndex;
1781                     key->num_syms[(i * width) + tmp] =
1782                         darray_item(keyi->symsMapNumEntries[i], tmp);
1783                     symIndex += key->num_syms[(i * width) + tmp];
1784                 }
1785                 else {
1786                     key->sym_index[(i * width) + tmp] = -1;
1787                     key->num_syms[(i * width) + tmp] = 0;
1788                 }
1789                 if (outActs != NULL && !darray_empty(keyi->acts[i])) {
1790                     if (tmp < keyi->numLevels[i])
1791                         outActs[tmp] = darray_item(keyi->acts[i], tmp);
1792                     else
1793                         outActs[tmp].type = XkbSA_NoAction;
1794                 }
1795             }
1796         }
1797     }
1798     switch (keyi->behavior.type & XkbKB_OpMask) {
1799     case XkbKB_Default:
1800         break;
1801
1802     default:
1803         key->behavior = keyi->behavior;
1804         key->explicit |= XkbExplicitBehaviorMask;
1805         break;
1806     }
1807     if (keyi->defined & _Key_VModMap) {
1808         key->vmodmap = keyi->vmodmap;
1809         key->explicit |= XkbExplicitVModMapMask;
1810     }
1811     if (keyi->repeat != RepeatUndefined) {
1812         key->repeats = keyi->repeat == RepeatYes;
1813         key->explicit |= XkbExplicitAutoRepeatMask;
1814     }
1815
1816     /* do the same thing for the next key */
1817     CopySymbolsDef(keymap, keyi, kc + 1);
1818     return true;
1819 }
1820
1821 static bool
1822 CopyModMapDef(struct xkb_keymap *keymap, ModMapEntry *entry)
1823 {
1824     struct xkb_key *key;
1825
1826     if (!entry->haveSymbol) {
1827         key = FindNamedKey(keymap, entry->u.keyName, true,
1828                            CreateKeyNames(keymap), 0);
1829         if (!key) {
1830             if (warningLevel >= 5) {
1831                 WARN("Key %s not found in keycodes\n",
1832                      longText(entry->u.keyName));
1833                 ACTION("Modifier map entry for %s not updated\n",
1834                        XkbcModIndexText(entry->modifier));
1835             }
1836             return false;
1837         }
1838     }
1839     else {
1840         key = FindKeyForSymbol(keymap, entry->u.keySym);
1841         if (!key) {
1842             if (warningLevel > 5) {
1843                 WARN("Key \"%s\" not found in symbol map\n",
1844                      XkbcKeysymText(entry->u.keySym));
1845                 ACTION("Modifier map entry for %s not updated\n",
1846                        XkbcModIndexText(entry->modifier));
1847             }
1848             return false;
1849         }
1850     }
1851
1852     key->modmap |= (1 << entry->modifier);
1853     return true;
1854 }
1855
1856 /**
1857  * Handle the xkb_symbols section of an xkb file.
1858  *
1859  * @param file The parsed xkb_symbols section of the xkb file.
1860  * @param keymap Handle to the keyboard description to store the symbols in.
1861  * @param merge Merge strategy (e.g. MERGE_OVERRIDE).
1862  */
1863 bool
1864 CompileSymbols(XkbFile *file, struct xkb_keymap *keymap,
1865                enum merge_mode merge)
1866 {
1867     xkb_group_index_t i;
1868     struct xkb_key *key;
1869     SymbolsInfo info;
1870     KeyInfo *keyi;
1871     ModMapEntry *mm;
1872
1873     InitSymbolsInfo(&info, keymap, file->id);
1874     info.dflt.merge = merge;
1875
1876     HandleSymbolsFile(file, keymap, merge, &info);
1877
1878     if (darray_empty(info.keys))
1879         goto err_info;
1880
1881     if (info.errorCount != 0)
1882         goto err_info;
1883
1884     darray_resize0(keymap->acts, darray_size(keymap->acts) + 32 + 1);
1885
1886     if (info.name)
1887         keymap->symbols_section_name = strdup(info.name);
1888
1889     for (i = 0; i < XkbNumKbdGroups; i++) {
1890         if (info.groupNames[i] != XKB_ATOM_NONE) {
1891             free(keymap->group_names[i]);
1892             keymap->group_names[i] = xkb_atom_strdup(keymap->ctx,
1893                                                      info.groupNames[i]);
1894         }
1895     }
1896
1897     /* sanitize keys */
1898     darray_foreach(keyi, info.keys)
1899         PrepareKeyDef(keyi);
1900
1901     /* copy! */
1902     darray_foreach(keyi, info.keys)
1903         if (!CopySymbolsDef(keymap, keyi, 0))
1904             info.errorCount++;
1905
1906     if (warningLevel > 3) {
1907         xkb_foreach_key(key, keymap) {
1908             if (key->name[0] == '\0')
1909                 continue;
1910
1911             if (key->num_groups < 1)
1912                 WARN("No symbols defined for <%.4s> (keycode %d)\n",
1913                      key->name, XkbKeyGetKeycode(keymap, key));
1914         }
1915     }
1916
1917     list_foreach(mm, &info.modMaps, entry)
1918         if (!CopyModMapDef(keymap, mm))
1919             info.errorCount++;
1920
1921     FreeSymbolsInfo(&info);
1922     return true;
1923
1924 err_info:
1925     FreeSymbolsInfo(&info);
1926     return false;
1927 }