vmod: take xkb_mod_set instead of the entire keymap
[platform/upstream/libxkbcommon.git] / src / xkbcomp / vmod.c
1 /************************************************************
2  * Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
3  *
4  * Permission to use, copy, modify, and distribute this
5  * software and its documentation for any purpose and without
6  * fee is hereby granted, provided that the above copyright
7  * notice appear in all copies and that both that copyright
8  * notice and this permission notice appear in supporting
9  * documentation, and that the name of Silicon Graphics not be
10  * used in advertising or publicity pertaining to distribution
11  * of the software without specific prior written permission.
12  * Silicon Graphics makes no representation about the suitability
13  * of this software for any purpose. It is provided "as is"
14  * without any express or implied warranty.
15  *
16  * SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
17  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
18  * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
19  * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
20  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
22  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
23  * THE USE OR PERFORMANCE OF THIS SOFTWARE.
24  *
25  ********************************************************/
26
27 #include "xkbcomp-priv.h"
28 #include "text.h"
29 #include "expr.h"
30 #include "vmod.h"
31
32 bool
33 HandleVModDef(struct xkb_context *ctx, struct xkb_mod_set *mods,
34               VModDef *stmt, enum merge_mode merge)
35 {
36     xkb_mod_index_t i;
37     struct xkb_mod *mod;
38     xkb_mod_mask_t mapping;
39     struct xkb_mod new;
40
41     merge = (merge == MERGE_DEFAULT ? stmt->merge : merge);
42
43     if (stmt->value) {
44         /*
45          * This is a statement such as 'virtualModifiers NumLock = Mod1';
46          * it sets the vmod-to-real-mod[s] mapping directly instead of going
47          * through modifier_map or some such.
48          */
49         if (!ExprResolveModMask(ctx, stmt->value, MOD_REAL, mods, &mapping)) {
50             log_err(ctx,
51                     "Declaration of %s ignored\n",
52                     xkb_atom_text(ctx, stmt->name));
53             return false;
54         }
55     }
56     else {
57         mapping = 0;
58     }
59
60     darray_enumerate(i, mod, mods->mods) {
61         if (mod->name == stmt->name) {
62             if (mod->type != MOD_VIRT) {
63                 log_err(ctx,
64                         "Can't add a virtual modifier named \"%s\"; "
65                         "there is already a non-virtual modifier with this name! Ignored\n",
66                         xkb_atom_text(ctx, mod->name));
67                 return false;
68             }
69
70             if (mod->mapping == mapping)
71                 return true;
72
73             if (mod->mapping != 0) {
74                 xkb_mod_mask_t use, ignore;
75
76                 use = (merge == MERGE_OVERRIDE ? mapping : mod->mapping);
77                 ignore = (merge == MERGE_OVERRIDE ? mod->mapping : mapping);
78
79                 log_warn(ctx,
80                          "Virtual modifier %s defined multiple times; "
81                          "Using %s, ignoring %s\n",
82                          xkb_atom_text(ctx, stmt->name),
83                          ModMaskText(ctx, mods, use),
84                          ModMaskText(ctx, mods, ignore));
85
86                 mapping = use;
87             }
88
89             mod->mapping = mapping;
90             return true;
91         }
92     }
93
94     if (darray_size(mods->mods) >= XKB_MAX_MODS) {
95         log_err(ctx,
96                 "Too many modifiers defined (maximum %d)\n",
97                 XKB_MAX_MODS);
98         return false;
99     }
100
101     new.name = stmt->name;
102     new.mapping = mapping;
103     new.type = MOD_VIRT;
104     darray_append(mods->mods, new);
105     return true;
106 }