1 /************************************************************
2 * Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
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.
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.
25 ********************************************************/
28 * Copyright © 2012 Intel Corporation
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:
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
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.
49 * Author: Daniel Stone <daniel@fooishbar.org>
60 #define VMOD_HIDE_VALUE 0
61 #define VMOD_SHOW_VALUE 1
62 #define VMOD_COMMENT_VALUE 2
64 #define BUF_CHUNK_SIZE 4096
73 do_realloc(struct buf *buf, size_t at_least)
77 buf->alloc += BUF_CHUNK_SIZE;
78 if (at_least >= BUF_CHUNK_SIZE)
79 buf->alloc += at_least;
81 new = realloc(buf->buf, buf->alloc);
89 ATTR_PRINTF(2, 3) static bool
90 check_write_buf(struct buf *buf, const char *fmt, ...)
96 available = buf->alloc - buf->size;
98 printed = vsnprintf(buf->buf + buf->size, available, fmt, args);
104 if (printed >= available)
105 if (!do_realloc(buf, printed))
108 /* The buffer has enough space now. */
110 available = buf->alloc - buf->size;
112 printed = vsnprintf(buf->buf + buf->size, available, fmt, args);
115 if (printed >= available || printed < 0)
118 buf->size += printed;
127 #define write_buf(buf, ...) do { \
128 if (!check_write_buf(buf, __VA_ARGS__)) \
133 write_vmods(struct xkb_keymap *keymap, struct buf *buf)
138 for (i = 0; i < XkbNumVirtualMods; i++) {
139 if (!keymap->vmod_names[i])
142 write_buf(buf, "\t\tvirtual_modifiers ");
145 write_buf(buf, "%s", keymap->vmod_names[i]);
150 write_buf(buf, ";\n\n");
155 #define GET_TEXT_BUF_SIZE 512
157 #define append_get_text(...) do { \
158 int _size = snprintf(ret, GET_TEXT_BUF_SIZE, __VA_ARGS__); \
159 if (_size >= GET_TEXT_BUF_SIZE) \
164 get_mod_mask_text(struct xkb_keymap *keymap, uint8_t real_mods,
167 static char ret[GET_TEXT_BUF_SIZE], ret2[GET_TEXT_BUF_SIZE];
170 memset(ret, 0, GET_TEXT_BUF_SIZE);
172 if (real_mods == 0 && vmods == 0) {
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
180 if (real_mods == 0xff) {
183 else if (real_mods) {
184 for (i = 0; i < XkbNumModifiers; i++) {
185 if (!(real_mods & (1 << i)))
187 if (ret[0] != '\0') {
189 append_get_text("%s+%s", ret2, ModIndexToName(i));
192 append_get_text("%s", ModIndexToName(i));
200 for (i = 0; i < XkbNumVirtualMods; i++) {
201 if (!(vmods & (1 << i)))
203 if (ret[0] != '\0') {
205 append_get_text("%s+%s", ret2, keymap->vmod_names[i]);
208 append_get_text("%s", keymap->vmod_names[i]);
216 get_indicator_state_text(uint8_t which)
219 static char ret[GET_TEXT_BUF_SIZE];
220 /* FIXME: Merge with ... something ... in xkbcomp? */
221 static const char *state_names[] = {
229 memset(ret, 0, GET_TEXT_BUF_SIZE);
231 which &= XkbIM_UseAnyMods;
238 for (i = 0; which != 0; i++) {
239 if (!(which & (1 << i)))
244 append_get_text("%s+%s", ret, state_names[i]);
246 append_get_text("%s", state_names[i]);
253 get_control_mask_text(uint32_t control_mask)
256 static char ret[GET_TEXT_BUF_SIZE];
257 /* FIXME: Merge with ... something ... in xkbcomp. */
258 static const char *ctrl_names[] = {
274 memset(ret, 0, GET_TEXT_BUF_SIZE);
276 control_mask &= XkbAllBooleanCtrlsMask;
278 if (control_mask == 0) {
282 else if (control_mask == XkbAllBooleanCtrlsMask) {
287 for (i = 0; control_mask; i++) {
288 if (!(control_mask & (1 << i)))
290 control_mask &= ~(1 << i);
293 append_get_text("%s+%s", ret, ctrl_names[i]);
295 append_get_text("%s", ctrl_names[i]);
302 write_keycodes(struct xkb_keymap *keymap, struct buf *buf)
305 struct xkb_key_alias *alias;
308 if (keymap->keycodes_section_name)
309 write_buf(buf, "\txkb_keycodes \"%s\" {\n",
310 keymap->keycodes_section_name);
312 write_buf(buf, "\txkb_keycodes {\n");
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);
319 xkb_foreach_key(key, keymap) {
320 if (key->name[0] == '\0')
323 write_buf(buf, "\t\t%6s = %d;\n",
324 KeyNameText(key->name), XkbKeyGetKeycode(keymap, key));
327 for (i = 0; i < XkbNumIndicators; i++) {
328 if (!keymap->indicator_names[i])
330 write_buf(buf, "\t\tindicator %d = \"%s\";\n",
331 i + 1, keymap->indicator_names[i]);
335 darray_foreach(alias, keymap->key_aliases)
336 write_buf(buf, "\t\talias %6s = %6s;\n",
337 KeyNameText(alias->alias),
338 KeyNameText(alias->real));
340 write_buf(buf, "\t};\n\n");
345 write_types(struct xkb_keymap *keymap, struct buf *buf)
349 struct xkb_key_type *type;
350 struct xkb_kt_map_entry *entry;
352 if (keymap->types_section_name)
353 write_buf(buf, "\txkb_types \"%s\" {\n\n",
354 keymap->types_section_name);
356 write_buf(buf, "\txkb_types {\n\n");
358 write_vmods(keymap, buf);
360 for (i = 0; i < keymap->num_types; i++) {
361 type = &keymap->types[i];
363 write_buf(buf, "\t\ttype \"%s\" {\n",
364 xkb_atom_text(keymap->ctx, type->name));
365 write_buf(buf, "\t\t\tmodifiers= %s;\n",
366 get_mod_mask_text(keymap, type->mods.real_mods,
369 for (j = 0; j < type->num_entries; j++) {
371 entry = &type->map[j];
374 * Printing level 1 entries is redundant, it's the default,
375 * unless there's preserve info.
377 if (entry->level == 0 && entry->preserve.mask == 0)
380 str = get_mod_mask_text(keymap, entry->mods.real_mods,
382 write_buf(buf, "\t\t\tmap[%s]= Level%d;\n",
383 str, entry->level + 1);
385 if (!entry->preserve.real_mods && !entry->preserve.vmods)
388 write_buf(buf, "\t\t\tpreserve[%s]= ", str);
389 write_buf(buf, "%s;\n",
390 get_mod_mask_text(keymap, entry->preserve.real_mods,
391 entry->preserve.vmods));
394 if (type->level_names) {
395 for (n = 0; n < type->num_levels; n++) {
396 if (!type->level_names[n])
398 write_buf(buf, "\t\t\tlevel_name[Level%d]= \"%s\";\n", n + 1,
399 xkb_atom_text(keymap->ctx, type->level_names[n]));
402 write_buf(buf, "\t\t};\n");
405 write_buf(buf, "\t};\n\n");
410 write_indicator_map(struct xkb_keymap *keymap, struct buf *buf, int num)
412 struct xkb_indicator_map *led = &keymap->indicators[num];
414 write_buf(buf, "\t\tindicator \"%s\" {\n",
415 keymap->indicator_names[num]);
417 if (led->which_groups) {
418 if (led->which_groups != XkbIM_UseEffective) {
419 write_buf(buf, "\t\t\twhichGroupState= %s;\n",
420 get_indicator_state_text(led->which_groups));
422 write_buf(buf, "\t\t\tgroups= 0x%02x;\n",
426 if (led->which_mods) {
427 if (led->which_mods != XkbIM_UseEffective) {
428 write_buf(buf, "\t\t\twhichModState= %s;\n",
429 get_indicator_state_text(led->which_mods));
431 write_buf(buf, "\t\t\tmodifiers= %s;\n",
432 get_mod_mask_text(keymap, led->mods.real_mods,
437 write_buf(buf, "\t\t\tcontrols= %s;\n",
438 get_control_mask_text(led->ctrls));
441 write_buf(buf, "\t\t};\n");
446 write_action(struct xkb_keymap *keymap, struct buf *buf,
447 union xkb_action *action, const char *prefix, const char *suffix)
450 const char *args = NULL;
457 type = ActionTypeText(action->any.type);
459 switch (action->any.type) {
461 case XkbSA_LatchMods:
463 if (action->mods.flags & XkbSA_UseModMapMods)
466 args = get_mod_mask_text(keymap, action->mods.real_mods,
468 write_buf(buf, "%s%s(modifiers=%s%s%s)%s", prefix, type, args,
469 (action->any.type != XkbSA_LockGroup &&
470 (action->mods.flags & XkbSA_ClearLocks)) ?
472 (action->any.type != XkbSA_LockGroup &&
473 (action->mods.flags & XkbSA_LatchToLock)) ?
479 case XkbSA_LatchGroup:
480 case XkbSA_LockGroup:
481 write_buf(buf, "%s%s(group=%s%d%s%s)%s", prefix, type,
482 (!(action->group.flags & XkbSA_GroupAbsolute) &&
483 action->group.group > 0) ? "+" : "",
484 (action->group.flags & XkbSA_GroupAbsolute) ?
485 action->group.group + 1 : action->group.group,
486 (action->any.type != XkbSA_LockGroup &&
487 (action->group.flags & XkbSA_ClearLocks)) ?
489 (action->any.type != XkbSA_LockGroup &&
490 (action->group.flags & XkbSA_LatchToLock)) ?
495 case XkbSA_Terminate:
496 write_buf(buf, "%s%s()%s", prefix, type, suffix);
500 write_buf(buf, "%s%s(x=%s%d,y=%s%d%s)%s", prefix, type,
501 (!(action->ptr.flags & XkbSA_MoveAbsoluteX) &&
502 action->ptr.x >= 0) ? "+" : "",
504 (!(action->ptr.flags & XkbSA_MoveAbsoluteY) &&
505 action->ptr.y >= 0) ? "+" : "",
507 (action->ptr.flags & XkbSA_NoAcceleration) ? ",!accel" : "",
511 case XkbSA_LockPtrBtn:
512 switch (action->btn.flags & (XkbSA_LockNoUnlock | XkbSA_LockNoLock)) {
513 case XkbSA_LockNoUnlock:
514 args = ",affect=lock";
517 case XkbSA_LockNoLock:
518 args = ",affect=unlock";
521 case XkbSA_LockNoLock | XkbSA_LockNoUnlock:
522 args = ",affect=neither";
526 args = ",affect=both";
530 write_buf(buf, "%s%s(button=", prefix, type);
531 if (action->btn.button > 0 && action->btn.button <= 5)
532 write_buf(buf, "%d", action->btn.button);
534 write_buf(buf, "default");
535 if (action->btn.count)
536 write_buf(buf, ",count=%d", action->btn.count);
538 write_buf(buf, "%s", args);
539 write_buf(buf, ")%s", suffix);
542 case XkbSA_SetPtrDflt:
543 write_buf(buf, "%s%s(", prefix, type);
544 if (action->dflt.affect == XkbSA_AffectDfltBtn)
545 write_buf(buf, "affect=button,button=%s%d",
546 (!(action->dflt.flags & XkbSA_DfltBtnAbsolute) &&
547 action->dflt.value >= 0) ? "+" : "",
549 write_buf(buf, ")%s", suffix);
552 case XkbSA_SwitchScreen:
553 write_buf(buf, "%s%s(screen=%s%d,%ssame)%s", prefix, type,
554 (!(action->screen.flags & XkbSA_SwitchAbsolute) &&
555 action->screen.screen >= 0) ? "+" : "",
556 action->screen.screen,
557 (action->screen.flags & XkbSA_SwitchApplication) ? "!" : "",
561 /* Deprecated actions below here */
562 case XkbSA_SetControls:
563 case XkbSA_LockControls:
564 write_buf(buf, "%s%s(controls=%s)%s", prefix, type,
565 get_control_mask_text(action->ctrls.ctrls), suffix);
569 case XkbSA_ActionMessage:
570 case XkbSA_RedirectKey:
571 case XkbSA_DeviceBtn:
572 case XkbSA_LockDeviceBtn:
575 write_buf(buf, "%sNoAction()%s", prefix, suffix);
578 case XkbSA_XFree86Private:
581 "%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",
582 prefix, type, action->any.type, action->any.data[0],
583 action->any.data[1], action->any.data[2],
584 action->any.data[3], action->any.data[4],
585 action->any.data[5], action->any.data[6],
594 write_compat(struct xkb_keymap *keymap, struct buf *buf)
597 struct xkb_sym_interpret *interp;
599 if (keymap->compat_section_name)
600 write_buf(buf, "\txkb_compatibility \"%s\" {\n\n",
601 keymap->compat_section_name);
603 write_buf(buf, "\txkb_compatibility {\n\n");
605 write_vmods(keymap, buf);
607 write_buf(buf, "\t\tinterpret.useModMapMods= AnyLevel;\n");
608 write_buf(buf, "\t\tinterpret.repeat= False;\n");
609 write_buf(buf, "\t\tinterpret.locking= False;\n");
611 darray_foreach(interp, keymap->sym_interpret) {
612 char keysym_name[64];
614 if (interp->sym == XKB_KEY_NoSymbol)
615 sprintf(keysym_name, "Any");
617 xkb_keysym_get_name(interp->sym, keysym_name, sizeof(keysym_name));
619 write_buf(buf, "\t\tinterpret %s+%s(%s) {\n",
621 SIMatchText(interp->match),
622 get_mod_mask_text(keymap, interp->mods, 0));
624 if (interp->virtual_mod != XkbNoModifier) {
625 write_buf(buf, "\t\t\tvirtualModifier= %s;\n",
626 keymap->vmod_names[interp->virtual_mod]);
629 if (interp->match & XkbSI_LevelOneOnly)
631 "\t\t\tuseModMapMods=level1;\n");
632 if (interp->flags & XkbSI_LockingKey)
633 write_buf(buf, "\t\t\tlocking= True;\n");
634 if (interp->flags & XkbSI_AutoRepeat)
635 write_buf(buf, "\t\t\trepeat= True;\n");
637 write_action(keymap, buf, &interp->act, "\t\t\taction= ", ";\n");
638 write_buf(buf, "\t\t};\n");
641 for (i = 0; i < XkbNumKbdGroups; i++) {
644 gc = &keymap->groups[i];
645 if (gc->real_mods == 0 && gc->vmods == 0)
647 write_buf(buf, "\t\tgroup %d = %s;\n", i + 1,
648 get_mod_mask_text(keymap, gc->real_mods, gc->vmods));
651 for (i = 0; i < XkbNumIndicators; i++) {
652 struct xkb_indicator_map *map = &keymap->indicators[i];
653 if (map->flags == 0 && map->which_groups == 0 &&
654 map->groups == 0 && map->which_mods == 0 &&
655 map->mods.real_mods == 0 && map->mods.vmods == 0 &&
658 write_indicator_map(keymap, buf, i);
661 write_buf(buf, "\t};\n\n");
667 write_keysyms(struct xkb_keymap *keymap, struct buf *buf,
668 struct xkb_key *key, xkb_group_index_t group)
670 const xkb_keysym_t *syms;
672 xkb_level_index_t level;
673 #define OUT_BUF_LEN 128
674 char out_buf[OUT_BUF_LEN];
676 for (level = 0; level < XkbKeyGroupWidth(keymap, key, group); level++) {
678 write_buf(buf, ", ");
679 num_syms = xkb_key_get_syms_by_level(keymap, key, group, level,
682 write_buf(buf, "%15s", "NoSymbol");
684 else if (num_syms == 1) {
685 xkb_keysym_get_name(syms[0], out_buf, OUT_BUF_LEN);
686 write_buf(buf, "%15s", out_buf);
690 write_buf(buf, "{ ");
691 for (s = 0; s < num_syms; s++) {
693 write_buf(buf, ", ");
694 xkb_keysym_get_name(syms[s], out_buf, OUT_BUF_LEN);
695 write_buf(buf, "%15s", out_buf);
697 write_buf(buf, " }");
706 write_symbols(struct xkb_keymap *keymap, struct buf *buf)
709 xkb_group_index_t group, tmp;
712 if (keymap->symbols_section_name)
713 write_buf(buf, "\txkb_symbols \"%s\" {\n\n",
714 keymap->symbols_section_name);
716 write_buf(buf, "\txkb_symbols {\n\n");
718 for (tmp = group = 0; group < XkbNumKbdGroups; group++) {
719 if (!keymap->group_names[group])
722 "\t\tname[group%d]=\"%s\";\n", group + 1,
723 keymap->group_names[group]);
727 write_buf(buf, "\n");
729 xkb_foreach_key(key, keymap) {
732 if (key->num_groups == 0)
735 write_buf(buf, "\t\tkey %6s {", KeyNameText(key->name));
737 if (key->explicit & XkbExplicitKeyTypesMask) {
738 bool multi_type = false;
739 int type = XkbKeyTypeIndex(key, 0);
743 for (group = 0; group < key->num_groups; group++) {
744 if (XkbKeyTypeIndex(key, group) != type) {
751 for (group = 0; group < key->num_groups; group++) {
752 if (!(key->explicit & (1 << group)))
754 type = XkbKeyTypeIndex(key, group);
755 write_buf(buf, "\n\t\t\ttype[group%u]= \"%s\",",
757 xkb_atom_text(keymap->ctx,
758 keymap->types[type].name));
762 write_buf(buf, "\n\t\t\ttype= \"%s\",",
763 xkb_atom_text(keymap->ctx,
764 keymap->types[type].name));
768 if (key->explicit & XkbExplicitAutoRepeatMask) {
770 write_buf(buf, "\n\t\t\trepeat= Yes,");
772 write_buf(buf, "\n\t\t\trepeat= No,");
776 if (key->vmodmap && (key->explicit & XkbExplicitVModMapMask)) {
777 write_buf(buf, "\n\t\t\tvirtualMods= %s,",
778 get_mod_mask_text(keymap, 0, key->vmodmap));
781 switch (key->out_of_range_group_action) {
782 case XkbClampIntoRange:
783 write_buf(buf, "\n\t\t\tgroupsClamp,");
786 case XkbRedirectIntoRange:
787 write_buf(buf, "\n\t\t\tgroupsRedirect= Group%u,",
788 key->out_of_range_group_number + 1);
792 if (key->explicit & XkbExplicitInterpretMask)
793 showActions = XkbKeyHasActions(key);
797 if (key->num_groups > 1 || showActions)
801 write_buf(buf, "\t[ ");
802 if (!write_keysyms(keymap, buf, key, 0))
804 write_buf(buf, " ] };\n");
807 union xkb_action *acts;
810 acts = XkbKeyActionsPtr(keymap, key);
811 for (group = 0; group < key->num_groups; group++) {
814 write_buf(buf, "\n\t\t\tsymbols[Group%u]= [ ", group + 1);
815 if (!write_keysyms(keymap, buf, key, group))
817 write_buf(buf, " ]");
819 write_buf(buf, ",\n\t\t\tactions[Group%u]= [ ",
822 level < XkbKeyGroupWidth(keymap, key, group);
825 write_buf(buf, ", ");
826 write_action(keymap, buf, &acts[level], NULL, NULL);
828 write_buf(buf, " ]");
832 write_buf(buf, "\n\t\t};\n");
836 xkb_foreach_key(key, keymap) {
839 if (key->modmap == 0)
842 for (mod = 0; mod < XkbNumModifiers; mod++) {
843 if (!(key->modmap & (1 << mod)))
846 write_buf(buf, "\t\tmodifier_map %s { %s };\n",
847 ModIndexToName(mod), KeyNameText(key->name));
851 write_buf(buf, "\t};\n\n");
856 xkb_map_get_as_string(struct xkb_keymap *keymap)
859 struct buf buf = { NULL, 0, 0 };
861 ok = (check_write_buf(&buf, "xkb_keymap {\n") &&
862 write_keycodes(keymap, &buf) &&
863 write_types(keymap, &buf) &&
864 write_compat(keymap, &buf) &&
865 write_symbols(keymap, &buf) &&
866 check_write_buf(&buf, "};\n"));
868 return (ok ? buf.buf : NULL);