types: use regular array for types
[platform/upstream/libxkbcommon.git] / src / keymap-dump.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 /*
28  * Copyright © 2012 Intel Corporation
29  *
30  * Permission is hereby granted, free of charge, to any person obtaining a
31  * copy of this software and associated documentation files (the "Software"),
32  * to deal in the Software without restriction, including without limitation
33  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
34  * and/or sell copies of the Software, and to permit persons to whom the
35  * Software is furnished to do so, subject to the following conditions:
36  *
37  * The above copyright notice and this permission notice (including the next
38  * paragraph) shall be included in all copies or substantial portions of the
39  * Software.
40  *
41  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
42  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
43  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
44  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
45  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
46  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
47  * DEALINGS IN THE SOFTWARE.
48  *
49  * Author: Daniel Stone <daniel@fooishbar.org>
50  */
51
52 #include <stdarg.h>
53 #include <stdio.h>
54 #include <ctype.h>
55 #include <stdlib.h>
56
57 #include "xkb-priv.h"
58 #include "text.h"
59
60 #define VMOD_HIDE_VALUE    0
61 #define VMOD_SHOW_VALUE    1
62 #define VMOD_COMMENT_VALUE 2
63
64 #define BUF_CHUNK_SIZE     4096
65
66 struct buf {
67     char *buf;
68     size_t size;
69     size_t alloc;
70 };
71
72 static bool
73 do_realloc(struct buf *buf, size_t at_least)
74 {
75     char *new;
76
77     buf->alloc += BUF_CHUNK_SIZE;
78     if (at_least >= BUF_CHUNK_SIZE)
79         buf->alloc += at_least;
80
81     new = realloc(buf->buf, buf->alloc);
82     if (!new)
83         return false;
84
85     buf->buf = new;
86     return true;
87 }
88
89 ATTR_PRINTF(2, 3) static bool
90 check_write_buf(struct buf *buf, const char *fmt, ...)
91 {
92     va_list args;
93     int printed;
94     size_t available;
95
96     available = buf->alloc - buf->size;
97     va_start(args, fmt);
98     printed = vsnprintf(buf->buf + buf->size, available, fmt, args);
99     va_end(args);
100
101     if (printed < 0)
102         goto err;
103
104     if (printed >= available)
105         if (!do_realloc(buf, printed))
106             goto err;
107
108     /* The buffer has enough space now. */
109
110     available = buf->alloc - buf->size;
111     va_start(args, fmt);
112     printed = vsnprintf(buf->buf + buf->size, available, fmt, args);
113     va_end(args);
114
115     if (printed >= available || printed < 0)
116         goto err;
117
118     buf->size += printed;
119     return true;
120
121 err:
122     free(buf->buf);
123     buf->buf = NULL;
124     return false;
125 }
126
127 #define write_buf(buf, ...) do { \
128     if (!check_write_buf(buf, __VA_ARGS__)) \
129         return false; \
130 } while (0)
131
132 static bool
133 write_vmods(struct xkb_keymap *keymap, struct buf *buf)
134 {
135     int num_vmods = 0;
136     int i;
137
138     for (i = 0; i < XkbNumVirtualMods; i++) {
139         if (!keymap->vmod_names[i])
140             continue;
141         if (num_vmods == 0)
142             write_buf(buf, "\t\tvirtual_modifiers ");
143         else
144             write_buf(buf, ",");
145         write_buf(buf, "%s", keymap->vmod_names[i]);
146         num_vmods++;
147     }
148
149     if (num_vmods > 0)
150         write_buf(buf, ";\n\n");
151
152     return true;
153 }
154
155 #define GET_TEXT_BUF_SIZE 512
156
157 #define append_get_text(...) do { \
158         int _size = snprintf(ret, GET_TEXT_BUF_SIZE, __VA_ARGS__); \
159         if (_size >= GET_TEXT_BUF_SIZE) \
160             return NULL; \
161 } while (0)
162
163 static char *
164 get_mod_mask_text(struct xkb_keymap *keymap, uint8_t real_mods,
165                   uint32_t vmods)
166 {
167     static char ret[GET_TEXT_BUF_SIZE], ret2[GET_TEXT_BUF_SIZE];
168     int i;
169
170     memset(ret, 0, GET_TEXT_BUF_SIZE);
171
172     if (real_mods == 0 && vmods == 0) {
173         strcpy(ret, "none");
174         return ret;
175     }
176
177     /* This is so broken.  If we have a real modmask of 0xff and a
178      * vmodmask, we'll get, e.g., all+RightControl.  But, it's what xkbfile
179      * does, so ... */
180     if (real_mods == 0xff) {
181         strcpy(ret, "all");
182     }
183     else if (real_mods) {
184         for (i = 0; i < XkbNumModifiers; i++) {
185             if (!(real_mods & (1 << i)))
186                 continue;
187             if (ret[0] != '\0') {
188                 strcpy(ret2, ret);
189                 append_get_text("%s+%s", ret2, ModIndexToName(i));
190             }
191             else {
192                 append_get_text("%s", ModIndexToName(i));
193             }
194         }
195     }
196
197     if (vmods == 0)
198         return ret;
199
200     for (i = 0; i < XkbNumVirtualMods; i++) {
201         if (!(vmods & (1 << i)))
202             continue;
203         if (ret[0] != '\0') {
204             strcpy(ret2, ret);
205             append_get_text("%s+%s", ret2, keymap->vmod_names[i]);
206         }
207         else {
208             append_get_text("%s", keymap->vmod_names[i]);
209         }
210     }
211
212     return ret;
213 }
214
215 static char *
216 get_indicator_state_text(uint8_t which)
217 {
218     int i;
219     static char ret[GET_TEXT_BUF_SIZE];
220     /* FIXME: Merge with ... something ... in xkbcomp? */
221     static const char *state_names[] = {
222         "base",
223         "latched",
224         "locked",
225         "effective",
226         "compat"
227     };
228
229     memset(ret, 0, GET_TEXT_BUF_SIZE);
230
231     which &= XkbIM_UseAnyMods;
232
233     if (which == 0) {
234         strcpy(ret, "0");
235         return NULL;
236     }
237
238     for (i = 0; which != 0; i++) {
239         if (!(which & (1 << i)))
240             continue;
241         which &= ~(1 << i);
242
243         if (ret[0] != '\0')
244             append_get_text("%s+%s", ret, state_names[i]);
245         else
246             append_get_text("%s", state_names[i]);
247     }
248
249     return ret;
250 }
251
252 static char *
253 get_control_mask_text(uint32_t control_mask)
254 {
255     int i;
256     static char ret[GET_TEXT_BUF_SIZE];
257     /* FIXME: Merge with ... something ... in xkbcomp. */
258     static const char *ctrl_names[] = {
259         "RepeatKeys",
260         "SlowKeys",
261         "BounceKeys",
262         "StickyKeys",
263         "MouseKeys",
264         "MouseKeysAccel",
265         "AccessXKeys",
266         "AccessXTimeout",
267         "AccessXFeedback",
268         "AudibleBell",
269         "Overlay1",
270         "Overlay2",
271         "IgnoreGroupLock"
272     };
273
274     memset(ret, 0, GET_TEXT_BUF_SIZE);
275
276     control_mask &= XkbAllBooleanCtrlsMask;
277
278     if (control_mask == 0) {
279         strcpy(ret, "none");
280         return ret;
281     }
282     else if (control_mask == XkbAllBooleanCtrlsMask) {
283         strcpy(ret, "all");
284         return ret;
285     }
286
287     for (i = 0; control_mask; i++) {
288         if (!(control_mask & (1 << i)))
289             continue;
290         control_mask &= ~(1 << i);
291
292         if (ret[0] != '\0')
293             append_get_text("%s+%s", ret, ctrl_names[i]);
294         else
295             append_get_text("%s", ctrl_names[i]);
296     }
297
298     return ret;
299 }
300
301 static bool
302 write_keycodes(struct xkb_keymap *keymap, struct buf *buf)
303 {
304     struct xkb_key *key;
305     struct xkb_key_alias *alias;
306     int i;
307
308     if (keymap->keycodes_section_name)
309         write_buf(buf, "\txkb_keycodes \"%s\" {\n",
310                   keymap->keycodes_section_name);
311     else
312         write_buf(buf, "\txkb_keycodes {\n");
313
314     write_buf(buf, "\t\tminimum = %d;\n",
315               keymap->min_key_code);
316     write_buf(buf, "\t\tmaximum = %d;\n",
317               keymap->max_key_code);
318
319     xkb_foreach_key(key, keymap) {
320         if (key->name[0] == '\0')
321             continue;
322
323         write_buf(buf, "\t\t%6s = %d;\n",
324                   KeyNameText(key->name), XkbKeyGetKeycode(keymap, key));
325     }
326
327     for (i = 0; i < XkbNumIndicators; i++) {
328         if (!keymap->indicator_names[i])
329             continue;
330         write_buf(buf, "\t\tindicator %d = \"%s\";\n",
331                   i + 1, keymap->indicator_names[i]);
332     }
333
334
335     darray_foreach(alias, keymap->key_aliases)
336         write_buf(buf, "\t\talias %6s = %6s;\n",
337                   KeyNameText(alias->alias),
338                   KeyNameText(alias->real));
339
340     write_buf(buf, "\t};\n\n");
341     return true;
342 }
343
344 static bool
345 write_types(struct xkb_keymap *keymap, struct buf *buf)
346 {
347     unsigned int i;
348     xkb_level_index_t n;
349     struct xkb_key_type *type;
350     struct xkb_kt_map_entry *entry;
351
352     if (keymap->types_section_name)
353         write_buf(buf, "\txkb_types \"%s\" {\n\n",
354                   keymap->types_section_name);
355     else
356         write_buf(buf, "\txkb_types {\n\n");
357
358     write_vmods(keymap, buf);
359
360     for (i = 0; i < keymap->num_types; i++) {
361         type = &keymap->types[i];
362
363         write_buf(buf, "\t\ttype \"%s\" {\n",
364                   type->name);
365         write_buf(buf, "\t\t\tmodifiers= %s;\n",
366                   get_mod_mask_text(keymap, type->mods.real_mods,
367                                     type->mods.vmods));
368
369         darray_foreach(entry, type->map) {
370             char *str;
371
372             /*
373              * Printing level 1 entries is redundant, it's the default,
374              * unless there's preserve info.
375              */
376             if (entry->level == 0 && entry->preserve.mask == 0)
377                 continue;
378
379             str = get_mod_mask_text(keymap, entry->mods.real_mods,
380                                     entry->mods.vmods);
381             write_buf(buf, "\t\t\tmap[%s]= Level%d;\n",
382                       str, entry->level + 1);
383
384             if (!entry->preserve.real_mods && !entry->preserve.vmods)
385                 continue;
386
387             write_buf(buf, "\t\t\tpreserve[%s]= ", str);
388             write_buf(buf, "%s;\n",
389                       get_mod_mask_text(keymap, entry->preserve.real_mods,
390                                         entry->preserve.vmods));
391         }
392
393         if (type->level_names) {
394             for (n = 0; n < type->num_levels; n++) {
395                 if (!type->level_names[n])
396                     continue;
397                 write_buf(buf, "\t\t\tlevel_name[Level%d]= \"%s\";\n", n + 1,
398                           type->level_names[n]);
399             }
400         }
401         write_buf(buf, "\t\t};\n");
402     }
403
404     write_buf(buf, "\t};\n\n");
405     return true;
406 }
407
408 static bool
409 write_indicator_map(struct xkb_keymap *keymap, struct buf *buf, int num)
410 {
411     struct xkb_indicator_map *led = &keymap->indicators[num];
412
413     write_buf(buf, "\t\tindicator \"%s\" {\n",
414               keymap->indicator_names[num]);
415
416     if (led->which_groups) {
417         if (led->which_groups != XkbIM_UseEffective) {
418             write_buf(buf, "\t\t\twhichGroupState= %s;\n",
419                       get_indicator_state_text(led->which_groups));
420         }
421         write_buf(buf, "\t\t\tgroups= 0x%02x;\n",
422                   led->groups);
423     }
424
425     if (led->which_mods) {
426         if (led->which_mods != XkbIM_UseEffective) {
427             write_buf(buf, "\t\t\twhichModState= %s;\n",
428                       get_indicator_state_text(led->which_mods));
429         }
430         write_buf(buf, "\t\t\tmodifiers= %s;\n",
431                   get_mod_mask_text(keymap, led->mods.real_mods,
432                                     led->mods.vmods));
433     }
434
435     if (led->ctrls) {
436         write_buf(buf, "\t\t\tcontrols= %s;\n",
437                   get_control_mask_text(led->ctrls));
438     }
439
440     write_buf(buf, "\t\t};\n");
441     return true;
442 }
443
444 static bool
445 write_action(struct xkb_keymap *keymap, struct buf *buf,
446              union xkb_action *action, const char *prefix, const char *suffix)
447 {
448     const char *type;
449     const char *args = NULL;
450
451     if (!prefix)
452         prefix = "";
453     if (!suffix)
454         suffix = "";
455
456     type = ActionTypeText(action->any.type);
457
458     switch (action->any.type) {
459     case XkbSA_SetMods:
460     case XkbSA_LatchMods:
461     case XkbSA_LockMods:
462         if (action->mods.flags & XkbSA_UseModMapMods)
463             args = "modMapMods";
464         else
465             args = get_mod_mask_text(keymap, action->mods.real_mods,
466                                      action->mods.vmods);
467         write_buf(buf, "%s%s(modifiers=%s%s%s)%s", prefix, type, args,
468                   (action->any.type != XkbSA_LockGroup &&
469                    (action->mods.flags & XkbSA_ClearLocks)) ?
470                    ",clearLocks" : "",
471                   (action->any.type != XkbSA_LockGroup &&
472                    (action->mods.flags & XkbSA_LatchToLock)) ?
473                    ",latchToLock" : "",
474                   suffix);
475         break;
476
477     case XkbSA_SetGroup:
478     case XkbSA_LatchGroup:
479     case XkbSA_LockGroup:
480         write_buf(buf, "%s%s(group=%s%d%s%s)%s", prefix, type,
481                   (!(action->group.flags & XkbSA_GroupAbsolute) &&
482                    action->group.group > 0) ? "+" : "",
483                   (action->group.flags & XkbSA_GroupAbsolute) ?
484                   action->group.group + 1 : action->group.group,
485                   (action->any.type != XkbSA_LockGroup &&
486                    (action->group.flags & XkbSA_ClearLocks)) ?
487                   ",clearLocks" : "",
488                   (action->any.type != XkbSA_LockGroup &&
489                    (action->group.flags & XkbSA_LatchToLock)) ?
490                   ",latchToLock" : "",
491                   suffix);
492         break;
493
494     case XkbSA_Terminate:
495         write_buf(buf, "%s%s()%s", prefix, type, suffix);
496         break;
497
498     case XkbSA_MovePtr:
499         write_buf(buf, "%s%s(x=%s%d,y=%s%d%s)%s", prefix, type,
500                   (!(action->ptr.flags & XkbSA_MoveAbsoluteX) &&
501                    action->ptr.x >= 0) ? "+" : "",
502                   action->ptr.x,
503                   (!(action->ptr.flags & XkbSA_MoveAbsoluteY) &&
504                    action->ptr.y >= 0) ? "+" : "",
505                   action->ptr.y,
506                   (action->ptr.flags & XkbSA_NoAcceleration) ? ",!accel" : "",
507                   suffix);
508         break;
509
510     case XkbSA_LockPtrBtn:
511         switch (action->btn.flags & (XkbSA_LockNoUnlock | XkbSA_LockNoLock)) {
512         case XkbSA_LockNoUnlock:
513             args = ",affect=lock";
514             break;
515
516         case XkbSA_LockNoLock:
517             args = ",affect=unlock";
518             break;
519
520         case XkbSA_LockNoLock | XkbSA_LockNoUnlock:
521             args = ",affect=neither";
522             break;
523
524         default:
525             args = ",affect=both";
526             break;
527         }
528     case XkbSA_PtrBtn:
529         write_buf(buf, "%s%s(button=", prefix, type);
530         if (action->btn.button > 0 && action->btn.button <= 5)
531             write_buf(buf, "%d", action->btn.button);
532         else
533             write_buf(buf, "default");
534         if (action->btn.count)
535             write_buf(buf, ",count=%d", action->btn.count);
536         if (args)
537             write_buf(buf, "%s", args);
538         write_buf(buf, ")%s", suffix);
539         break;
540
541     case XkbSA_SetPtrDflt:
542         write_buf(buf, "%s%s(", prefix, type);
543         if (action->dflt.affect == XkbSA_AffectDfltBtn)
544             write_buf(buf, "affect=button,button=%s%d",
545                       (!(action->dflt.flags & XkbSA_DfltBtnAbsolute) &&
546                        action->dflt.value >= 0) ? "+" : "",
547                       action->dflt.value);
548         write_buf(buf, ")%s", suffix);
549         break;
550
551     case XkbSA_SwitchScreen:
552         write_buf(buf, "%s%s(screen=%s%d,%ssame)%s", prefix, type,
553                   (!(action->screen.flags & XkbSA_SwitchAbsolute) &&
554                    action->screen.screen >= 0) ? "+" : "",
555                   action->screen.screen,
556                   (action->screen.flags & XkbSA_SwitchApplication) ? "!" : "",
557                   suffix);
558         break;
559
560     /* Deprecated actions below here */
561     case XkbSA_SetControls:
562     case XkbSA_LockControls:
563         write_buf(buf, "%s%s(controls=%s)%s", prefix, type,
564                   get_control_mask_text(action->ctrls.ctrls), suffix);
565         break;
566
567     case XkbSA_ISOLock:
568     case XkbSA_ActionMessage:
569     case XkbSA_RedirectKey:
570     case XkbSA_DeviceBtn:
571     case XkbSA_LockDeviceBtn:
572     case XkbSA_NoAction:
573         /* XXX TODO */
574         write_buf(buf, "%sNoAction()%s", prefix, suffix);
575         break;
576
577     case XkbSA_XFree86Private:
578     default:
579         write_buf(buf,
580                   "%s%s(type=0x%02x,data[0]=0x%02x,data[1]=0x%02x,data[2]=0x%02x,data[3]=0x%02x,data[4]=0x%02x,data[5]=0x%02x,data[6]=0x%02x)%s",
581                   prefix, type, action->any.type, action->any.data[0],
582                   action->any.data[1], action->any.data[2],
583                   action->any.data[3], action->any.data[4],
584                   action->any.data[5], action->any.data[6],
585                   suffix);
586         break;
587     }
588
589     return true;
590 }
591
592 static bool
593 write_compat(struct xkb_keymap *keymap, struct buf *buf)
594 {
595     int i;
596     struct xkb_sym_interpret *interp;
597
598     if (keymap->compat_section_name)
599         write_buf(buf, "\txkb_compatibility \"%s\" {\n\n",
600                   keymap->compat_section_name);
601     else
602         write_buf(buf, "\txkb_compatibility {\n\n");
603
604     write_vmods(keymap, buf);
605
606     write_buf(buf, "\t\tinterpret.useModMapMods= AnyLevel;\n");
607     write_buf(buf, "\t\tinterpret.repeat= False;\n");
608     write_buf(buf, "\t\tinterpret.locking= False;\n");
609
610     darray_foreach(interp, keymap->sym_interpret) {
611         char keysym_name[64];
612
613         if (interp->sym == XKB_KEY_NoSymbol)
614             sprintf(keysym_name, "Any");
615         else
616             xkb_keysym_get_name(interp->sym, keysym_name, sizeof(keysym_name));
617
618         write_buf(buf, "\t\tinterpret %s+%s(%s) {\n",
619                   keysym_name,
620                   SIMatchText(interp->match),
621                   get_mod_mask_text(keymap, interp->mods, 0));
622
623         if (interp->virtual_mod != XkbNoModifier) {
624             write_buf(buf, "\t\t\tvirtualModifier= %s;\n",
625                       keymap->vmod_names[interp->virtual_mod]);
626         }
627
628         if (interp->match & XkbSI_LevelOneOnly)
629             write_buf(buf,
630                       "\t\t\tuseModMapMods=level1;\n");
631         if (interp->flags & XkbSI_LockingKey)
632             write_buf(buf, "\t\t\tlocking= True;\n");
633         if (interp->flags & XkbSI_AutoRepeat)
634             write_buf(buf, "\t\t\trepeat= True;\n");
635
636         write_action(keymap, buf, &interp->act, "\t\t\taction= ", ";\n");
637         write_buf(buf, "\t\t};\n");
638     }
639
640     for (i = 0; i < XkbNumKbdGroups; i++) {
641         struct xkb_mods *gc;
642
643         gc = &keymap->groups[i];
644         if (gc->real_mods == 0 && gc->vmods == 0)
645             continue;
646         write_buf(buf, "\t\tgroup %d = %s;\n", i + 1,
647                   get_mod_mask_text(keymap, gc->real_mods, gc->vmods));
648     }
649
650     for (i = 0; i < XkbNumIndicators; i++) {
651         struct xkb_indicator_map *map = &keymap->indicators[i];
652         if (map->flags == 0 && map->which_groups == 0 &&
653             map->groups == 0 && map->which_mods == 0 &&
654             map->mods.real_mods == 0 && map->mods.vmods == 0 &&
655             map->ctrls == 0)
656             continue;
657         write_indicator_map(keymap, buf, i);
658     }
659
660     write_buf(buf, "\t};\n\n");
661
662     return true;
663 }
664
665 static bool
666 write_keysyms(struct xkb_keymap *keymap, struct buf *buf,
667               struct xkb_key *key, xkb_group_index_t group)
668 {
669     const xkb_keysym_t *syms;
670     int num_syms;
671     xkb_level_index_t level;
672 #define OUT_BUF_LEN 128
673     char out_buf[OUT_BUF_LEN];
674
675     for (level = 0; level < XkbKeyGroupWidth(keymap, key, group); level++) {
676         if (level != 0)
677             write_buf(buf, ", ");
678         num_syms = xkb_key_get_syms_by_level(keymap, key, group, level,
679                                              &syms);
680         if (num_syms == 0) {
681             write_buf(buf, "%15s", "NoSymbol");
682         }
683         else if (num_syms == 1) {
684             xkb_keysym_get_name(syms[0], out_buf, OUT_BUF_LEN);
685             write_buf(buf, "%15s", out_buf);
686         }
687         else {
688             int s;
689             write_buf(buf, "{ ");
690             for (s = 0; s < num_syms; s++) {
691                 if (s != 0)
692                     write_buf(buf, ", ");
693                 xkb_keysym_get_name(syms[s], out_buf, OUT_BUF_LEN);
694                 write_buf(buf, "%15s", out_buf);
695             }
696             write_buf(buf, " }");
697         }
698     }
699 #undef OUT_BUF_LEN
700
701     return true;
702 }
703
704 static bool
705 write_symbols(struct xkb_keymap *keymap, struct buf *buf)
706 {
707     struct xkb_key *key;
708     xkb_group_index_t group, tmp;
709     bool showActions;
710
711     if (keymap->symbols_section_name)
712         write_buf(buf, "\txkb_symbols \"%s\" {\n\n",
713                   keymap->symbols_section_name);
714     else
715         write_buf(buf, "\txkb_symbols {\n\n");
716
717     for (tmp = group = 0; group < XkbNumKbdGroups; group++) {
718         if (!keymap->group_names[group])
719             continue;
720         write_buf(buf,
721                   "\t\tname[group%d]=\"%s\";\n", group + 1,
722                   keymap->group_names[group]);
723         tmp++;
724     }
725     if (tmp > 0)
726         write_buf(buf, "\n");
727
728     xkb_foreach_key(key, keymap) {
729         bool simple = true;
730
731         if (key->num_groups == 0)
732             continue;
733
734         write_buf(buf, "\t\tkey %6s {", KeyNameText(key->name));
735
736         if (key->explicit & XkbExplicitKeyTypesMask) {
737             bool multi_type = false;
738             int type = XkbKeyTypeIndex(key, 0);
739
740             simple = false;
741
742             for (group = 0; group < key->num_groups; group++) {
743                 if (XkbKeyTypeIndex(key, group) != type) {
744                     multi_type = true;
745                     break;
746                 }
747             }
748
749             if (multi_type) {
750                 for (group = 0; group < key->num_groups; group++) {
751                     if (!(key->explicit & (1 << group)))
752                         continue;
753                     type = XkbKeyTypeIndex(key, group);
754                     write_buf(buf, "\n\t\t\ttype[group%u]= \"%s\",",
755                               group + 1, keymap->types[type].name);
756                 }
757             }
758             else {
759                 write_buf(buf, "\n\t\t\ttype= \"%s\",",
760                           keymap->types[type].name);
761             }
762         }
763
764         if (key->explicit & XkbExplicitAutoRepeatMask) {
765             if (key->repeats)
766                 write_buf(buf, "\n\t\t\trepeat= Yes,");
767             else
768                 write_buf(buf, "\n\t\t\trepeat= No,");
769             simple = false;
770         }
771
772         if (key->vmodmap && (key->explicit & XkbExplicitVModMapMask)) {
773             write_buf(buf, "\n\t\t\tvirtualMods= %s,",
774                       get_mod_mask_text(keymap, 0, key->vmodmap));
775         }
776
777         switch (key->out_of_range_group_action) {
778         case XkbClampIntoRange:
779             write_buf(buf, "\n\t\t\tgroupsClamp,");
780             break;
781
782         case XkbRedirectIntoRange:
783             write_buf(buf, "\n\t\t\tgroupsRedirect= Group%u,",
784                       key->out_of_range_group_number + 1);
785             break;
786         }
787
788         if (key->explicit & XkbExplicitInterpretMask)
789             showActions = XkbKeyHasActions(key);
790         else
791             showActions = false;
792
793         if (key->num_groups > 1 || showActions)
794             simple = false;
795
796         if (simple) {
797             write_buf(buf, "\t[ ");
798             if (!write_keysyms(keymap, buf, key, 0))
799                 return false;
800             write_buf(buf, " ] };\n");
801         }
802         else {
803             union xkb_action *acts;
804             int level;
805
806             acts = XkbKeyActionsPtr(keymap, key);
807             for (group = 0; group < key->num_groups; group++) {
808                 if (group != 0)
809                     write_buf(buf, ",");
810                 write_buf(buf, "\n\t\t\tsymbols[Group%u]= [ ", group + 1);
811                 if (!write_keysyms(keymap, buf, key, group))
812                     return false;
813                 write_buf(buf, " ]");
814                 if (showActions) {
815                     write_buf(buf, ",\n\t\t\tactions[Group%u]= [ ",
816                               group + 1);
817                     for (level = 0;
818                          level < XkbKeyGroupWidth(keymap, key, group);
819                          level++) {
820                         if (level != 0)
821                             write_buf(buf, ", ");
822                         write_action(keymap, buf, &acts[level], NULL, NULL);
823                     }
824                     write_buf(buf, " ]");
825                     acts += key->width;
826                 }
827             }
828             write_buf(buf, "\n\t\t};\n");
829         }
830     }
831
832     xkb_foreach_key(key, keymap) {
833         int mod;
834
835         if (key->modmap == 0)
836             continue;
837
838         for (mod = 0; mod < XkbNumModifiers; mod++) {
839             if (!(key->modmap & (1 << mod)))
840                 continue;
841
842             write_buf(buf, "\t\tmodifier_map %s { %s };\n",
843                       ModIndexToName(mod), KeyNameText(key->name));
844         }
845     }
846
847     write_buf(buf, "\t};\n\n");
848     return true;
849 }
850
851 XKB_EXPORT char *
852 xkb_map_get_as_string(struct xkb_keymap *keymap)
853 {
854     bool ok;
855     struct buf buf = { NULL, 0, 0 };
856
857     ok = (check_write_buf(&buf, "xkb_keymap {\n") &&
858           write_keycodes(keymap, &buf) &&
859           write_types(keymap, &buf) &&
860           write_compat(keymap, &buf) &&
861           write_symbols(keymap, &buf) &&
862           check_write_buf(&buf, "};\n"));
863
864     return (ok ? buf.buf : NULL);
865 }