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
29 * Copyright © 2012 Ran Benita <ran234@gmail.com>
31 * Permission is hereby granted, free of charge, to any person obtaining a
32 * copy of this software and associated documentation files (the "Software"),
33 * to deal in the Software without restriction, including without limitation
34 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
35 * and/or sell copies of the Software, and to permit persons to whom the
36 * Software is furnished to do so, subject to the following conditions:
38 * The above copyright notice and this permission notice (including the next
39 * paragraph) shall be included in all copies or substantial portions of the
42 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
45 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
47 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
48 * DEALINGS IN THE SOFTWARE.
50 * Author: Daniel Stone <daniel@fooishbar.org>
51 * Ran Benita <ran234@gmail.com>
54 #include "xkbcomp-priv.h"
59 static const ExprBoolean constTrue = {
61 .common = { .type = STMT_EXPR, .next = NULL },
63 .value_type = EXPR_TYPE_BOOLEAN,
68 static const ExprBoolean constFalse = {
70 .common = { .type = STMT_EXPR, .next = NULL },
72 .value_type = EXPR_TYPE_BOOLEAN,
78 ACTION_FIELD_CLEAR_LOCKS,
79 ACTION_FIELD_LATCH_TO_LOCK,
80 ACTION_FIELD_GEN_KEY_EVENT,
84 ACTION_FIELD_INCREMENT,
85 ACTION_FIELD_MODIFIERS,
92 ACTION_FIELD_CONTROLS,
100 ACTION_FIELD_MODS_TO_CLEAR,
109 info = calloc(1, sizeof(*info));
113 for (type = 0; type < _ACTION_TYPE_NUM_ENTRIES; type++)
114 info->actions[type].type = type;
116 /* Apply some "factory defaults". */
118 /* Increment default button. */
119 info->actions[ACTION_TYPE_PTR_DEFAULT].dflt.flags = 0;
120 info->actions[ACTION_TYPE_PTR_DEFAULT].dflt.value = 1;
126 FreeActionsInfo(ActionsInfo *info)
131 static const LookupEntry fieldStrings[] = {
132 { "clearLocks", ACTION_FIELD_CLEAR_LOCKS },
133 { "latchToLock", ACTION_FIELD_LATCH_TO_LOCK },
134 { "genKeyEvent", ACTION_FIELD_GEN_KEY_EVENT },
135 { "generateKeyEvent", ACTION_FIELD_GEN_KEY_EVENT },
136 { "report", ACTION_FIELD_REPORT },
137 { "default", ACTION_FIELD_DEFAULT },
138 { "affect", ACTION_FIELD_AFFECT },
139 { "increment", ACTION_FIELD_INCREMENT },
140 { "modifiers", ACTION_FIELD_MODIFIERS },
141 { "mods", ACTION_FIELD_MODIFIERS },
142 { "group", ACTION_FIELD_GROUP },
143 { "x", ACTION_FIELD_X },
144 { "y", ACTION_FIELD_Y },
145 { "accel", ACTION_FIELD_ACCEL },
146 { "accelerate", ACTION_FIELD_ACCEL },
147 { "repeat", ACTION_FIELD_ACCEL },
148 { "button", ACTION_FIELD_BUTTON },
149 { "value", ACTION_FIELD_VALUE },
150 { "controls", ACTION_FIELD_CONTROLS },
151 { "ctrls", ACTION_FIELD_CONTROLS },
152 { "type", ACTION_FIELD_TYPE },
153 { "count", ACTION_FIELD_COUNT },
154 { "screen", ACTION_FIELD_SCREEN },
155 { "same", ACTION_FIELD_SAME },
156 { "sameServer", ACTION_FIELD_SAME },
157 { "data", ACTION_FIELD_DATA },
158 { "device", ACTION_FIELD_DEVICE },
159 { "dev", ACTION_FIELD_DEVICE },
160 { "key", ACTION_FIELD_KEYCODE },
161 { "keycode", ACTION_FIELD_KEYCODE },
162 { "kc", ACTION_FIELD_KEYCODE },
163 { "clearmods", ACTION_FIELD_MODS_TO_CLEAR },
164 { "clearmodifiers", ACTION_FIELD_MODS_TO_CLEAR },
169 stringToAction(const char *str, unsigned *type_rtrn)
171 return LookupString(actionTypeNames, str, type_rtrn);
175 stringToField(const char *str, enum action_field *field_rtrn)
177 return LookupString(fieldStrings, str, field_rtrn);
181 fieldText(enum action_field field)
183 return LookupValue(fieldStrings, field);
186 /***====================================================================***/
189 ReportMismatch(struct xkb_keymap *keymap, enum xkb_action_type action,
190 enum action_field field, const char *type)
193 "Value of %s field must be of type %s; "
194 "Action %s definition ignored\n",
195 fieldText(field), type, ActionTypeText(action));
200 ReportIllegal(struct xkb_keymap *keymap, enum xkb_action_type action,
201 enum action_field field)
204 "Field %s is not defined for an action of type %s; "
205 "Action definition ignored\n",
206 fieldText(field), ActionTypeText(action));
211 ReportActionNotArray(struct xkb_keymap *keymap, enum xkb_action_type action,
212 enum action_field field)
215 "The %s field in the %s action is not an array; "
216 "Action definition ignored\n",
217 fieldText(field), ActionTypeText(action));
222 HandleNoAction(struct xkb_keymap *keymap, union xkb_action *action,
223 enum action_field field, const ExprDef *array_ndx,
224 const ExprDef *value)
231 CheckLatchLockFlags(struct xkb_keymap *keymap, enum xkb_action_type action,
232 enum action_field field, const ExprDef *value,
233 enum xkb_action_flags *flags_inout)
235 enum xkb_action_flags tmp;
238 if (field == ACTION_FIELD_CLEAR_LOCKS)
239 tmp = ACTION_LOCK_CLEAR;
240 else if (field == ACTION_FIELD_LATCH_TO_LOCK)
241 tmp = ACTION_LATCH_TO_LOCK;
243 return false; /* WSGO! */
245 if (!ExprResolveBoolean(keymap->ctx, value, &result))
246 return ReportMismatch(keymap, action, field, "boolean");
251 *flags_inout &= ~tmp;
257 CheckModifierField(struct xkb_keymap *keymap, enum xkb_action_type action,
258 const ExprDef *value, enum xkb_action_flags *flags_inout,
259 xkb_mod_mask_t *mods_rtrn)
261 if (value->expr.op == EXPR_IDENT) {
263 valStr = xkb_atom_text(keymap->ctx, value->ident.ident);
264 if (valStr && (istreq(valStr, "usemodmapmods") ||
265 istreq(valStr, "modmapmods"))) {
268 *flags_inout |= ACTION_MODS_LOOKUP_MODMAP;
273 if (!ExprResolveModMask(keymap, value, MOD_BOTH, mods_rtrn))
274 return ReportMismatch(keymap, action,
275 ACTION_FIELD_MODIFIERS, "modifier mask");
277 *flags_inout &= ~ACTION_MODS_LOOKUP_MODMAP;
282 HandleSetLatchMods(struct xkb_keymap *keymap, union xkb_action *action,
283 enum action_field field, const ExprDef *array_ndx,
284 const ExprDef *value)
286 struct xkb_mod_action *act = &action->mods;
287 enum xkb_action_flags rtrn, t1;
290 if (array_ndx != NULL) {
292 case ACTION_FIELD_CLEAR_LOCKS:
293 case ACTION_FIELD_LATCH_TO_LOCK:
294 case ACTION_FIELD_MODIFIERS:
295 return ReportActionNotArray(keymap, action->type, field);
302 case ACTION_FIELD_CLEAR_LOCKS:
303 case ACTION_FIELD_LATCH_TO_LOCK:
305 if (CheckLatchLockFlags(keymap, action->type, field, value, &rtrn)) {
311 case ACTION_FIELD_MODIFIERS:
313 if (CheckModifierField(keymap, action->type, value, &t1, &t2)) {
324 return ReportIllegal(keymap, action->type, field);
328 HandleLockMods(struct xkb_keymap *keymap, union xkb_action *action,
329 enum action_field field, const ExprDef *array_ndx,
330 const ExprDef *value)
332 struct xkb_mod_action *act = &action->mods;
333 enum xkb_action_flags t1;
336 if (array_ndx && field == ACTION_FIELD_MODIFIERS)
337 return ReportActionNotArray(keymap, action->type, field);
340 case ACTION_FIELD_MODIFIERS:
342 if (CheckModifierField(keymap, action->type, value, &t1, &t2)) {
353 return ReportIllegal(keymap, action->type, field);
357 CheckGroupField(struct xkb_keymap *keymap, unsigned action,
358 const ExprDef *value, enum xkb_action_flags *flags_inout,
359 xkb_layout_index_t *grp_rtrn)
363 if (value->expr.op == EXPR_NEGATE || value->expr.op == EXPR_UNARY_PLUS) {
364 *flags_inout &= ~ACTION_ABSOLUTE_SWITCH;
365 spec = value->unary.child;
368 *flags_inout |= ACTION_ABSOLUTE_SWITCH;
372 if (!ExprResolveGroup(keymap->ctx, spec, grp_rtrn))
373 return ReportMismatch(keymap, action, ACTION_FIELD_GROUP,
374 "integer (range 1..8)");
376 if (value->expr.op == EXPR_NEGATE)
377 *grp_rtrn = -*grp_rtrn;
378 else if (value->expr.op != EXPR_UNARY_PLUS)
385 HandleSetLatchGroup(struct xkb_keymap *keymap, union xkb_action *action,
386 enum action_field field, const ExprDef *array_ndx,
387 const ExprDef *value)
389 struct xkb_group_action *act = &action->group;
390 enum xkb_action_flags rtrn, t1;
391 xkb_layout_index_t t2;
393 if (array_ndx != NULL) {
395 case ACTION_FIELD_CLEAR_LOCKS:
396 case ACTION_FIELD_LATCH_TO_LOCK:
397 case ACTION_FIELD_GROUP:
398 return ReportActionNotArray(keymap, action->type, field);
406 case ACTION_FIELD_CLEAR_LOCKS:
407 case ACTION_FIELD_LATCH_TO_LOCK:
409 if (CheckLatchLockFlags(keymap, action->type, field, value, &rtrn)) {
415 case ACTION_FIELD_GROUP:
417 if (CheckGroupField(keymap, action->type, value, &t1, &t2)) {
428 return ReportIllegal(keymap, action->type, field);
432 HandleLockGroup(struct xkb_keymap *keymap, union xkb_action *action,
433 enum action_field field, const ExprDef *array_ndx,
434 const ExprDef *value)
436 struct xkb_group_action *act = &action->group;
437 enum xkb_action_flags t1;
438 xkb_layout_index_t t2;
440 if ((array_ndx != NULL) && (field == ACTION_FIELD_GROUP))
441 return ReportActionNotArray(keymap, action->type, field);
442 if (field == ACTION_FIELD_GROUP) {
444 if (CheckGroupField(keymap, action->type, value, &t1, &t2)) {
451 return ReportIllegal(keymap, action->type, field);
455 HandleMovePtr(struct xkb_keymap *keymap, union xkb_action *action,
456 enum action_field field, const ExprDef *array_ndx,
457 const ExprDef *value)
459 struct xkb_pointer_action *act = &action->ptr;
461 if (array_ndx && (field == ACTION_FIELD_X || field == ACTION_FIELD_Y))
462 return ReportActionNotArray(keymap, action->type, field);
464 if (field == ACTION_FIELD_X || field == ACTION_FIELD_Y) {
466 const bool absolute = (value->expr.op != EXPR_NEGATE &&
467 value->expr.op != EXPR_UNARY_PLUS);
469 if (!ExprResolveInteger(keymap->ctx, value, &val))
470 return ReportMismatch(keymap, action->type, field, "integer");
472 if (val < INT16_MIN || val > INT16_MAX) {
474 "The %s field in the %s action must be in range %d..%d; "
475 "Action definition ignored\n",
476 fieldText(field), ActionTypeText(action->type),
477 INT16_MIN, INT16_MAX);
481 if (field == ACTION_FIELD_X) {
483 act->flags |= ACTION_ABSOLUTE_X;
484 act->x = (int16_t) val;
488 act->flags |= ACTION_ABSOLUTE_Y;
489 act->y = (int16_t) val;
494 else if (field == ACTION_FIELD_ACCEL) {
497 if (!ExprResolveBoolean(keymap->ctx, value, &set))
498 return ReportMismatch(keymap, action->type, field, "boolean");
501 act->flags &= ~ACTION_NO_ACCEL;
503 act->flags |= ACTION_NO_ACCEL;
506 return ReportIllegal(keymap, action->type, field);
509 static const LookupEntry lockWhich[] = {
511 { "lock", ACTION_LOCK_NO_UNLOCK },
512 { "neither", (ACTION_LOCK_NO_LOCK | ACTION_LOCK_NO_UNLOCK) },
513 { "unlock", ACTION_LOCK_NO_LOCK },
518 HandlePtrBtn(struct xkb_keymap *keymap, union xkb_action *action,
519 enum action_field field, const ExprDef *array_ndx,
520 const ExprDef *value)
522 struct xkb_pointer_button_action *act = &action->btn;
524 if (field == ACTION_FIELD_BUTTON) {
528 return ReportActionNotArray(keymap, action->type, field);
530 if (!ExprResolveButton(keymap->ctx, value, &btn))
531 return ReportMismatch(keymap, action->type, field,
532 "integer (range 1..5)");
534 if (btn < 0 || btn > 5) {
536 "Button must specify default or be in the range 1..5; "
537 "Illegal button value %d ignored\n", btn);
544 else if (action->type == ACTION_TYPE_PTR_LOCK &&
545 field == ACTION_FIELD_AFFECT) {
546 enum xkb_action_flags val;
549 return ReportActionNotArray(keymap, action->type, field);
551 if (!ExprResolveEnum(keymap->ctx, value, &val, lockWhich))
552 return ReportMismatch(keymap, action->type, field,
555 act->flags &= ~(ACTION_LOCK_NO_LOCK | ACTION_LOCK_NO_UNLOCK);
559 else if (field == ACTION_FIELD_COUNT) {
563 return ReportActionNotArray(keymap, action->type, field);
565 if (!ExprResolveInteger(keymap->ctx, value, &val))
566 return ReportMismatch(keymap, action->type, field, "integer");
568 if (val < 0 || val > 255) {
570 "The count field must have a value in the range 0..255; "
571 "Illegal count %d ignored\n", val);
575 act->count = (uint8_t) val;
578 return ReportIllegal(keymap, action->type, field);
581 static const LookupEntry ptrDflts[] = {
583 { "defaultbutton", 1 },
589 HandleSetPtrDflt(struct xkb_keymap *keymap, union xkb_action *action,
590 enum action_field field, const ExprDef *array_ndx,
591 const ExprDef *value)
593 struct xkb_pointer_default_action *act = &action->dflt;
595 if (field == ACTION_FIELD_AFFECT) {
599 return ReportActionNotArray(keymap, action->type, field);
601 if (!ExprResolveEnum(keymap->ctx, value, &val, ptrDflts))
602 return ReportMismatch(keymap, action->type, field,
603 "pointer component");
606 else if (field == ACTION_FIELD_BUTTON || field == ACTION_FIELD_VALUE) {
607 const ExprDef *button;
611 return ReportActionNotArray(keymap, action->type, field);
613 if (value->expr.op == EXPR_NEGATE ||
614 value->expr.op == EXPR_UNARY_PLUS) {
615 act->flags &= ~ACTION_ABSOLUTE_SWITCH;
616 button = value->unary.child;
619 act->flags |= ACTION_ABSOLUTE_SWITCH;
623 if (!ExprResolveButton(keymap->ctx, button, &btn))
624 return ReportMismatch(keymap, action->type, field,
625 "integer (range 1..5)");
627 if (btn < 0 || btn > 5) {
629 "New default button value must be in the range 1..5; "
630 "Illegal default button value %d ignored\n", btn);
635 "Cannot set default pointer button to \"default\"; "
636 "Illegal default button setting ignored\n");
640 act->value = (value->expr.op == EXPR_NEGATE ? -btn: btn);
644 return ReportIllegal(keymap, action->type, field);
648 HandleSwitchScreen(struct xkb_keymap *keymap, union xkb_action *action,
649 enum action_field field, const ExprDef *array_ndx,
650 const ExprDef *value)
652 struct xkb_switch_screen_action *act = &action->screen;
654 if (field == ACTION_FIELD_SCREEN) {
659 return ReportActionNotArray(keymap, action->type, field);
661 if (value->expr.op == EXPR_NEGATE ||
662 value->expr.op == EXPR_UNARY_PLUS) {
663 act->flags &= ~ACTION_ABSOLUTE_SWITCH;
664 scrn = value->unary.child;
667 act->flags |= ACTION_ABSOLUTE_SWITCH;
671 if (!ExprResolveInteger(keymap->ctx, scrn, &val))
672 return ReportMismatch(keymap, action->type, field,
675 if (val < 0 || val > 255) {
677 "Screen index must be in the range 1..255; "
678 "Illegal screen value %d ignored\n", val);
682 act->screen = (value->expr.op == EXPR_NEGATE ? -val : val);
685 else if (field == ACTION_FIELD_SAME) {
689 return ReportActionNotArray(keymap, action->type, field);
691 if (!ExprResolveBoolean(keymap->ctx, value, &set))
692 return ReportMismatch(keymap, action->type, field, "boolean");
695 act->flags &= ~ACTION_SAME_SCREEN;
697 act->flags |= ACTION_SAME_SCREEN;
702 return ReportIllegal(keymap, action->type, field);
706 HandleSetLockControls(struct xkb_keymap *keymap, union xkb_action *action,
707 enum action_field field, const ExprDef *array_ndx,
708 const ExprDef *value)
710 struct xkb_controls_action *act = &action->ctrls;
712 if (field == ACTION_FIELD_CONTROLS) {
716 return ReportActionNotArray(keymap, action->type, field);
718 if (!ExprResolveMask(keymap->ctx, value, &mask, ctrlMaskNames))
719 return ReportMismatch(keymap, action->type, field,
726 return ReportIllegal(keymap, action->type, field);
730 HandlePrivate(struct xkb_keymap *keymap, union xkb_action *action,
731 enum action_field field, const ExprDef *array_ndx,
732 const ExprDef *value)
734 struct xkb_private_action *act = &action->priv;
736 if (field == ACTION_FIELD_TYPE) {
739 if (!ExprResolveInteger(keymap->ctx, value, &type))
740 return ReportMismatch(keymap, ACTION_TYPE_PRIVATE, field, "integer");
742 if (type < 0 || type > 255) {
744 "Private action type must be in the range 0..255; "
745 "Illegal type %d ignored\n", type);
750 * It's possible for someone to write something like this:
751 * actions = [ Private(type=3,data[0]=1,data[1]=3,data[2]=3) ]
752 * where the type refers to some existing action type, e.g. LockMods.
753 * This assumes that this action's struct is laid out in memory
754 * exactly as described in the XKB specification and libraries.
755 * We, however, have changed these structs in various ways, so this
756 * assumption is no longer true. Since this is a lousy "feature", we
757 * make actions like these no-ops for now.
759 if (type < ACTION_TYPE_PRIVATE) {
760 log_info(keymap->ctx,
761 "Private actions of type %s are not supported; Ignored\n",
762 ActionTypeText(type));
763 act->type = ACTION_TYPE_NONE;
766 act->type = (enum xkb_action_type) type;
771 else if (field == ACTION_FIELD_DATA) {
772 if (array_ndx == NULL) {
777 if (!ExprResolveString(keymap->ctx, value, &val))
778 return ReportMismatch(keymap, action->type, field, "string");
780 str = xkb_atom_text(keymap->ctx, val);
782 if (len < 1 || len > 7) {
783 log_warn(keymap->ctx,
784 "A private action has 7 data bytes; "
785 "Illegal data ignored\n");
789 strncpy((char *) act->data, str, sizeof(act->data));
795 if (!ExprResolveInteger(keymap->ctx, array_ndx, &ndx)) {
797 "Array subscript must be integer; "
798 "Illegal subscript ignored\n");
802 if (ndx < 0 || (size_t) ndx >= sizeof(act->data)) {
804 "The data for a private action is %lu bytes long; "
805 "Attempt to use data[%d] ignored\n",
806 (unsigned long) sizeof(act->data), ndx);
810 if (!ExprResolveInteger(keymap->ctx, value, &datum))
811 return ReportMismatch(keymap, act->type, field, "integer");
813 if (datum < 0 || datum > 255) {
815 "All data for a private action must be 0..255; "
816 "Illegal datum %d ignored\n", datum);
820 act->data[ndx] = (uint8_t) datum;
825 return ReportIllegal(keymap, ACTION_TYPE_NONE, field);
828 typedef bool (*actionHandler)(struct xkb_keymap *keymap,
829 union xkb_action *action,
830 enum action_field field,
831 const ExprDef *array_ndx,
832 const ExprDef *value);
834 static const actionHandler handleAction[_ACTION_TYPE_NUM_ENTRIES] = {
835 [ACTION_TYPE_NONE] = HandleNoAction,
836 [ACTION_TYPE_MOD_SET] = HandleSetLatchMods,
837 [ACTION_TYPE_MOD_LATCH] = HandleSetLatchMods,
838 [ACTION_TYPE_MOD_LOCK] = HandleLockMods,
839 [ACTION_TYPE_GROUP_SET] = HandleSetLatchGroup,
840 [ACTION_TYPE_GROUP_LATCH] = HandleSetLatchGroup,
841 [ACTION_TYPE_GROUP_LOCK] = HandleLockGroup,
842 [ACTION_TYPE_PTR_MOVE] = HandleMovePtr,
843 [ACTION_TYPE_PTR_BUTTON] = HandlePtrBtn,
844 [ACTION_TYPE_PTR_LOCK] = HandlePtrBtn,
845 [ACTION_TYPE_PTR_DEFAULT] = HandleSetPtrDflt,
846 [ACTION_TYPE_TERMINATE] = HandleNoAction,
847 [ACTION_TYPE_SWITCH_VT] = HandleSwitchScreen,
848 [ACTION_TYPE_CTRL_SET] = HandleSetLockControls,
849 [ACTION_TYPE_CTRL_LOCK] = HandleSetLockControls,
850 [ACTION_TYPE_PRIVATE] = HandlePrivate,
853 /***====================================================================***/
856 HandleActionDef(ExprDef *def, struct xkb_keymap *keymap,
857 union xkb_action *action, ActionsInfo *info)
861 unsigned handler_type;
863 if (def->expr.op != EXPR_ACTION_DECL) {
864 log_err(keymap->ctx, "Expected an action definition, found %s\n",
865 expr_op_type_to_string(def->expr.op));
869 str = xkb_atom_text(keymap->ctx, def->action.name);
870 if (!stringToAction(str, &handler_type)) {
871 log_err(keymap->ctx, "Unknown action %s\n", str);
876 * Get the default values for this action type, as modified by
877 * statements such as:
878 * latchMods.clearLocks = True;
880 *action = info->actions[handler_type];
883 * Now change the action properties as specified for this
884 * particular instance, e.g. "modifiers" and "clearLocks" in:
885 * SetMods(modifiers=Alt,clearLocks);
887 for (arg = def->action.args; arg != NULL;
888 arg = (ExprDef *) arg->common.next) {
889 const ExprDef *value;
890 ExprDef *field, *arrayRtrn;
891 const char *elemRtrn, *fieldRtrn;
892 enum action_field fieldNdx;
894 if (arg->expr.op == EXPR_ASSIGN) {
895 field = arg->binary.left;
896 value = arg->binary.right;
898 else if (arg->expr.op == EXPR_NOT || arg->expr.op == EXPR_INVERT) {
899 field = arg->unary.child;
900 value = (const ExprDef *) &constFalse;
904 value = (const ExprDef *) &constTrue;
907 if (!ExprResolveLhs(keymap->ctx, field, &elemRtrn, &fieldRtrn,
913 "Cannot change defaults in an action definition; "
914 "Ignoring attempt to change %s.%s\n",
915 elemRtrn, fieldRtrn);
919 if (!stringToField(fieldRtrn, &fieldNdx)) {
920 log_err(keymap->ctx, "Unknown field name %s\n", fieldRtrn);
924 if (!handleAction[handler_type](keymap, action, fieldNdx, arrayRtrn,
934 SetActionField(struct xkb_keymap *keymap, const char *elem, const char *field,
935 ExprDef *array_ndx, ExprDef *value, ActionsInfo *info)
938 enum action_field action_field;
940 if (!stringToAction(elem, &action))
943 if (!stringToField(field, &action_field)) {
944 log_err(keymap->ctx, "\"%s\" is not a legal field name\n", field);
948 return handleAction[action](keymap, &info->actions[action],
949 action_field, array_ndx, value);