Add flags to keymap compilation entrypoints
[platform/upstream/libxkbcommon.git] / src / xkbcomp / parseutils.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 XKBPARSE_H
28 #define XKBPARSE_H 1
29
30 #include <stdio.h>
31
32 #include "xkbcomp-priv.h"
33 #include "parser.h"
34
35 struct parser_param {
36     void *scanner;
37     XkbFile *rtrn;
38 };
39
40 struct scanner_extra {
41     char *scanFile;
42     char scanBuf[1024];
43     char *s;
44 };
45
46 extern ParseCommon *
47 AppendStmt(ParseCommon *to, ParseCommon *append);
48
49 extern ExprDef *
50 ExprCreate(unsigned op, unsigned type);
51
52 extern ExprDef *
53 ExprCreateUnary(unsigned op, unsigned type, ExprDef *child);
54
55 extern ExprDef *
56 ExprCreateBinary(unsigned op, ExprDef *left, ExprDef *right);
57
58 extern KeycodeDef *
59 KeycodeCreate(const char *name, unsigned long value);
60
61 extern KeyAliasDef *
62 KeyAliasCreate(const char *alias, const char *real);
63
64 extern VModDef *
65 VModCreate(xkb_atom_t name, ExprDef *value);
66
67 extern VarDef *
68 VarCreate(ExprDef *name, ExprDef *value);
69
70 extern VarDef *
71 BoolVarCreate(xkb_atom_t nameToken, unsigned set);
72
73 extern InterpDef *
74 InterpCreate(char *sym, ExprDef *match);
75
76 extern KeyTypeDef *
77 KeyTypeCreate(xkb_atom_t name, VarDef *body);
78
79 extern SymbolsDef *
80 SymbolsCreate(const char *keyName, ExprDef *symbols);
81
82 extern GroupCompatDef *
83 GroupCompatCreate(int group, ExprDef *def);
84
85 extern ModMapDef *
86 ModMapCreate(uint32_t modifier, ExprDef *keys);
87
88 extern IndicatorMapDef *
89 IndicatorMapCreate(xkb_atom_t name, VarDef *body);
90
91 extern IndicatorNameDef *
92 IndicatorNameCreate(int ndx, ExprDef *name, bool virtual);
93
94 extern ExprDef *
95 ActionCreate(xkb_atom_t name, ExprDef *args);
96
97 extern ExprDef *
98 CreateMultiKeysymList(ExprDef *list);
99
100 extern ExprDef *
101 CreateKeysymList(char *sym);
102
103 extern ExprDef *
104 AppendMultiKeysymList(ExprDef *list, ExprDef *append);
105
106 extern ExprDef *
107 AppendKeysymList(ExprDef *list, char *sym);
108
109 extern int
110 LookupKeysym(const char *str, xkb_keysym_t *sym_rtrn);
111
112 extern IncludeStmt *
113 IncludeCreate(char *str, unsigned merge);
114
115 extern unsigned
116 StmtSetMerge(ParseCommon *stmt, unsigned merge, struct YYLTYPE *loc, void *scanner);
117
118 extern void
119 CheckDefaultMap(XkbFile *maps, const char *fileName);
120
121 extern int
122 XKBParseFile(FILE *file, const char *fileName, XkbFile **pRtrn);
123
124 extern int
125 XKBParseString(const char *string, const char *fileName, XkbFile **pRtrn);
126
127 extern XkbFile *
128 CreateXKBFile(int type, char *name, ParseCommon *defs, unsigned flags);
129
130 extern void
131 FreeXKBFile(XkbFile *file);
132
133 extern void
134 FreeStmt(ParseCommon *stmt);
135
136 extern void
137 yyerror(struct YYLTYPE *loc, void *scanner, const char *msg);
138
139 #endif /* XKBPARSE_H */