33e967113f46e9b5df09732553fe4f6842c6849d
[platform/upstream/libxkbcommon.git] / src / xkbcomp / xkbcomp-priv.h
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 #ifndef XKBCOMP_PRIV_H
28 #define XKBCOMP_PRIV_H
29
30 #include "xkbcomp.h"
31 #include "text.h"
32
33 extern bool
34 ProcessIncludeFile(struct xkb_context *ctx, IncludeStmt *stmt,
35                    enum xkb_file_type file_type, XkbFile **file_rtrn,
36                    enum merge_mode *merge_rtrn);
37
38 struct xkb_key *
39 FindNamedKey(struct xkb_keymap *keymap, unsigned long name,
40              bool use_aliases, xkb_keycode_t start_from);
41
42 extern bool
43 FindKeyNameForAlias(struct xkb_keymap *keymap, unsigned long lname,
44                     unsigned long *real_name);
45
46 extern bool
47 UpdateModifiersFromCompat(struct xkb_keymap *keymap);
48
49 const char *
50 StmtTypeToString(enum stmt_type type);
51
52 static inline unsigned long
53 KeyNameToLong(const char name[XkbKeyNameLength])
54 {
55     return
56         (((unsigned long)name[0]) << 24) |
57         (((unsigned long)name[1]) << 16) |
58         (((unsigned long)name[2]) << 8)  |
59         (((unsigned long)name[3]) << 0);
60 }
61
62 static inline void
63 LongToKeyName(unsigned long val, char name[XkbKeyNameLength])
64 {
65     name[0] = ((val >> 24) & 0xff);
66     name[1] = ((val >> 16) & 0xff);
67     name[2] = ((val >> 8) & 0xff);
68     name[3] = ((val >> 0) & 0xff);
69 }
70
71 static inline const char *
72 LongKeyNameText(unsigned long val)
73 {
74     char buf[XkbKeyNameLength];
75     LongToKeyName(val, buf);
76     return KeyNameText(buf);
77 }
78
79 static inline bool
80 ReportNotArray(struct xkb_keymap *keymap, const char *type, const char *field,
81                const char *name)
82 {
83     log_err(keymap->ctx,
84             "The %s %s field is not an array; "
85             "Ignoring illegal assignment in %s\n",
86             type, field, name);
87     return false;
88 }
89
90 static inline bool
91 ReportShouldBeArray(struct xkb_keymap *keymap, const char *type,
92                     const char *field, const char *name)
93 {
94     log_err(keymap->ctx,
95             "Missing subscript for %s %s; "
96             "Ignoring illegal assignment in %s\n",
97             type, field, name);
98     return false;
99 }
100
101 static inline bool
102 ReportBadType(struct xkb_context *ctx, const char *type, const char *field,
103               const char *name, const char *wanted)
104 {
105     log_err(ctx, "The %s %s field must be a %s; "
106             "Ignoring illegal assignment in %s\n",
107             type, field, wanted, name);
108     return false;
109 }
110
111 static inline bool
112 ReportBadField(struct xkb_keymap *keymap, const char *type, const char *field,
113                const char *name)
114 {
115     log_err(keymap->ctx,
116             "Unknown %s field %s in %s; "
117             "Ignoring assignment to unknown field in %s\n",
118             type, field, name, name);
119     return false;
120 }
121
122 #endif /* XKBCOMP_PRIV_H */