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