rules: put the scanner on the stack This allows nesting the scanner for the future !include directive. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
diff --git a/src/xkbcomp/rules.c b/src/xkbcomp/rules.c
index ba40d91..1d021fa 100644
--- a/src/xkbcomp/rules.c
+++ b/src/xkbcomp/rules.c
@@ -243,7 +243,6 @@ struct matcher {
/* Input.*/
struct rule_names rmlvo;
union lvalue val;
- struct scanner scanner;
darray(struct group) groups;
/* Current mapping. */
struct mapping mapping;
@@ -332,7 +331,8 @@ matcher_group_start_new(struct matcher *m, struct sval name)
}
static void
-matcher_group_add_element(struct matcher *m, struct sval element)
+matcher_group_add_element(struct matcher *m, struct scanner *s,
+ struct sval element)
{
darray_append(darray_item(m->groups, darray_size(m->groups) - 1).elements,
element);
@@ -369,7 +369,8 @@ extract_layout_index(const char *s, size_t max_len, xkb_layout_index_t *out)
}
static void
-matcher_mapping_set_mlvo(struct matcher *m, struct sval ident)
+matcher_mapping_set_mlvo(struct matcher *m, struct scanner *s,
+ struct sval ident)
{
enum rules_mlvo mlvo;
struct sval mlvo_sval;
@@ -383,14 +384,14 @@ matcher_mapping_set_mlvo(struct matcher *m, struct sval ident)
/* Not found. */
if (mlvo >= _MLVO_NUM_ENTRIES) {
- scanner_err(&m->scanner, "invalid mapping: %.*s is not a valid value here; ignoring rule set",
+ scanner_err(s, "invalid mapping: %.*s is not a valid value here; ignoring rule set",
ident.len, ident.start);
m->mapping.skip = true;
return;
}
if (m->mapping.defined_mlvo_mask & (1u << mlvo)) {
- scanner_err(&m->scanner, "invalid mapping: %.*s appears twice on the same line; ignoring rule set",
+ scanner_err(s, "invalid mapping: %.*s appears twice on the same line; ignoring rule set",
mlvo_sval.len, mlvo_sval.start);
m->mapping.skip = true;
return;
@@ -402,7 +403,7 @@ matcher_mapping_set_mlvo(struct matcher *m, struct sval ident)
int consumed = extract_layout_index(ident.start + mlvo_sval.len,
ident.len - mlvo_sval.len, &idx);
if ((int) (ident.len - mlvo_sval.len) != consumed) {
- scanner_err(&m->scanner, "invalid mapping: \"%.*s\" may only be followed by a valid group index; ignoring rule set",
+ scanner_err(s, "invalid mapping: \"%.*s\" may only be followed by a valid group index; ignoring rule set",
mlvo_sval.len, mlvo_sval.start);
m->mapping.skip = true;
return;
@@ -415,7 +416,7 @@ matcher_mapping_set_mlvo(struct matcher *m, struct sval ident)
m->mapping.variant_idx = idx;
}
else {
- scanner_err(&m->scanner, "invalid mapping: \"%.*s\" cannot be followed by a group index; ignoring rule set",
+ scanner_err(s, "invalid mapping: \"%.*s\" cannot be followed by a group index; ignoring rule set",
mlvo_sval.len, mlvo_sval.start);
m->mapping.skip = true;
return;
@@ -428,7 +429,7 @@ matcher_mapping_set_mlvo(struct matcher *m, struct sval ident)
}
static void
-matcher_mapping_set_kccgst(struct matcher *m, struct sval ident)
+matcher_mapping_set_kccgst(struct matcher *m, struct scanner *s, struct sval ident)
{
enum rules_kccgst kccgst;
struct sval kccgst_sval;
@@ -442,14 +443,14 @@ matcher_mapping_set_kccgst(struct matcher *m, struct sval ident)
/* Not found. */
if (kccgst >= _KCCGST_NUM_ENTRIES) {
- scanner_err(&m->scanner, "invalid mapping: %.*s is not a valid value here; ignoring rule set",
+ scanner_err(s, "invalid mapping: %.*s is not a valid value here; ignoring rule set",
ident.len, ident.start);
m->mapping.skip = true;
return;
}
if (m->mapping.defined_kccgst_mask & (1u << kccgst)) {
- scanner_err(&m->scanner, "invalid mapping: %.*s appears twice on the same line; ignoring rule set",
+ scanner_err(s, "invalid mapping: %.*s appears twice on the same line; ignoring rule set",
kccgst_sval.len, kccgst_sval.start);
m->mapping.skip = true;
return;
@@ -461,15 +462,15 @@ matcher_mapping_set_kccgst(struct matcher *m, struct sval ident)
}
static void
-matcher_mapping_verify(struct matcher *m)
+matcher_mapping_verify(struct matcher *m, struct scanner *s)
{
if (m->mapping.num_mlvo == 0) {
- scanner_err(&m->scanner, "invalid mapping: must have at least one value on the left hand side; ignoring rule set");
+ scanner_err(s, "invalid mapping: must have at least one value on the left hand side; ignoring rule set");
goto skip;
}
if (m->mapping.num_kccgst == 0) {
- scanner_err(&m->scanner, "invalid mapping: must have at least one value on the right hand side; ignoring rule set");
+ scanner_err(s, "invalid mapping: must have at least one value on the right hand side; ignoring rule set");
goto skip;
}
@@ -516,11 +517,12 @@ matcher_rule_start_new(struct matcher *m)
}
static void
-matcher_rule_set_mlvo_common(struct matcher *m, struct sval ident,
+matcher_rule_set_mlvo_common(struct matcher *m, struct scanner *s,
+ struct sval ident,
enum mlvo_match_type match_type)
{
if (m->rule.num_mlvo_values + 1 > m->mapping.num_mlvo) {
- scanner_err(&m->scanner, "invalid rule: has more values than the mapping line; ignoring rule");
+ scanner_err(s, "invalid rule: has more values than the mapping line; ignoring rule");
m->rule.skip = true;
return;
}
@@ -530,29 +532,32 @@ matcher_rule_set_mlvo_common(struct matcher *m, struct sval ident,
}
static void
-matcher_rule_set_mlvo_wildcard(struct matcher *m)
+matcher_rule_set_mlvo_wildcard(struct matcher *m, struct scanner *s)
{
struct sval dummy = { NULL, 0 };
- matcher_rule_set_mlvo_common(m, dummy, MLVO_MATCH_WILDCARD);
+ matcher_rule_set_mlvo_common(m, s, dummy, MLVO_MATCH_WILDCARD);
}
static void
-matcher_rule_set_mlvo_group(struct matcher *m, struct sval ident)
+matcher_rule_set_mlvo_group(struct matcher *m, struct scanner *s,
+ struct sval ident)
{
- matcher_rule_set_mlvo_common(m, ident, MLVO_MATCH_GROUP);
+ matcher_rule_set_mlvo_common(m, s, ident, MLVO_MATCH_GROUP);
}
static void
-matcher_rule_set_mlvo(struct matcher *m, struct sval ident)
+matcher_rule_set_mlvo(struct matcher *m, struct scanner *s,
+ struct sval ident)
{
- matcher_rule_set_mlvo_common(m, ident, MLVO_MATCH_NORMAL);
+ matcher_rule_set_mlvo_common(m, s, ident, MLVO_MATCH_NORMAL);
}
static void
-matcher_rule_set_kccgst(struct matcher *m, struct sval ident)
+matcher_rule_set_kccgst(struct matcher *m, struct scanner *s,
+ struct sval ident)
{
if (m->rule.num_kccgst_values + 1 > m->mapping.num_kccgst) {
- scanner_err(&m->scanner, "invalid rule: has more values than the mapping line; ignoring rule");
+ scanner_err(s, "invalid rule: has more values than the mapping line; ignoring rule");
m->rule.skip = true;
return;
}
@@ -616,8 +621,8 @@ match_value_and_mark(struct matcher *m, struct sval val,
* and appends the result to @to.
*/
static bool
-append_expanded_kccgst_value(struct matcher *m, darray_char *to,
- struct sval value)
+append_expanded_kccgst_value(struct matcher *m, struct scanner *s,
+ darray_char *to, struct sval value)
{
const char *str = value.start;
darray_char expanded = darray_new();
@@ -666,7 +671,7 @@ append_expanded_kccgst_value(struct matcher *m, darray_char *to,
int consumed;
if (mlv != MLVO_LAYOUT && mlv != MLVO_VARIANT) {
- scanner_err(&m->scanner, "invalid index in %%-expansion; may only index layout or variant");
+ scanner_err(s, "invalid index in %%-expansion; may only index layout or variant");
goto error;
}
@@ -742,22 +747,22 @@ append_expanded_kccgst_value(struct matcher *m, darray_char *to,
error:
darray_free(expanded);
- scanner_err(&m->scanner, "invalid %%-expansion in value; not used");
+ scanner_err(s, "invalid %%-expansion in value; not used");
return false;
}
static void
-matcher_rule_verify(struct matcher *m)
+matcher_rule_verify(struct matcher *m, struct scanner *s)
{
if (m->rule.num_mlvo_values != m->mapping.num_mlvo ||
m->rule.num_kccgst_values != m->mapping.num_kccgst) {
- scanner_err(&m->scanner, "invalid rule: must have same number of values as mapping line; ignoring rule");
+ scanner_err(s, "invalid rule: must have same number of values as mapping line; ignoring rule");
m->rule.skip = true;
}
}
static void
-matcher_rule_apply_if_matches(struct matcher *m)
+matcher_rule_apply_if_matches(struct matcher *m, struct scanner *s)
{
for (unsigned i = 0; i < m->mapping.num_mlvo; i++) {
enum rules_mlvo mlvo = m->mapping.mlvo_at_pos[i];
@@ -797,7 +802,7 @@ matcher_rule_apply_if_matches(struct matcher *m)
for (unsigned i = 0; i < m->mapping.num_kccgst; i++) {
enum rules_kccgst kccgst = m->mapping.kccgst_at_pos[i];
struct sval value = m->rule.kccgst_value_at_pos[i];
- append_expanded_kccgst_value(m, &m->kccgst[kccgst], value);
+ append_expanded_kccgst_value(m, s, &m->kccgst[kccgst], value);
}
/*
@@ -810,13 +815,14 @@ matcher_rule_apply_if_matches(struct matcher *m)
}
static enum rules_token
-gettok(struct matcher *m)
+gettok(struct matcher *m, struct scanner *s)
{
- return lex(&m->scanner, &m->val);
+ return lex(s, &m->val);
}
static bool
-matcher_match(struct matcher *m, const char *string, size_t len,
+matcher_match(struct matcher *m, struct scanner *s,
+ const char *string, size_t len,
const char *file_name, struct xkb_component_names *out)
{
enum rules_token tok;
@@ -825,10 +831,8 @@ matcher_match(struct matcher *m, const char *string, size_t len,
if (!m)
return false;
- scanner_init(&m->scanner, m->ctx, string, len, file_name, NULL);
-
initial:
- switch (tok = gettok(m)) {
+ switch (tok = gettok(m, s)) {
case TOK_BANG:
goto bang;
case TOK_END_OF_LINE:
@@ -840,20 +844,20 @@ initial:
}
bang:
- switch (tok = gettok(m)) {
+ switch (tok = gettok(m, s)) {
case TOK_GROUP_NAME:
matcher_group_start_new(m, m->val.string);
goto group_name;
case TOK_IDENTIFIER:
matcher_mapping_start_new(m);
- matcher_mapping_set_mlvo(m, m->val.string);
+ matcher_mapping_set_mlvo(m, s, m->val.string);
goto mapping_mlvo;
default:
goto unexpected;
}
group_name:
- switch (tok = gettok(m)) {
+ switch (tok = gettok(m, s)) {
case TOK_EQUALS:
goto group_element;
default:
@@ -861,9 +865,9 @@ group_name:
}
group_element:
- switch (tok = gettok(m)) {
+ switch (tok = gettok(m, s)) {
case TOK_IDENTIFIER:
- matcher_group_add_element(m, m->val.string);
+ matcher_group_add_element(m, s, m->val.string);
goto group_element;
case TOK_END_OF_LINE:
goto initial;
@@ -872,10 +876,10 @@ group_element:
}
mapping_mlvo:
- switch (tok = gettok(m)) {
+ switch (tok = gettok(m, s)) {
case TOK_IDENTIFIER:
if (!m->mapping.skip)
- matcher_mapping_set_mlvo(m, m->val.string);
+ matcher_mapping_set_mlvo(m, s, m->val.string);
goto mapping_mlvo;
case TOK_EQUALS:
goto mapping_kccgst;
@@ -884,21 +888,21 @@ mapping_mlvo:
}
mapping_kccgst:
- switch (tok = gettok(m)) {
+ switch (tok = gettok(m, s)) {
case TOK_IDENTIFIER:
if (!m->mapping.skip)
- matcher_mapping_set_kccgst(m, m->val.string);
+ matcher_mapping_set_kccgst(m, s, m->val.string);
goto mapping_kccgst;
case TOK_END_OF_LINE:
if (!m->mapping.skip)
- matcher_mapping_verify(m);
+ matcher_mapping_verify(m, s);
goto rule_mlvo_first;
default:
goto unexpected;
}
rule_mlvo_first:
- switch (tok = gettok(m)) {
+ switch (tok = gettok(m, s)) {
case TOK_BANG:
goto bang;
case TOK_END_OF_LINE:
@@ -911,20 +915,20 @@ rule_mlvo_first:
}
rule_mlvo:
- tok = gettok(m);
+ tok = gettok(m, s);
rule_mlvo_no_tok:
switch (tok) {
case TOK_IDENTIFIER:
if (!m->rule.skip)
- matcher_rule_set_mlvo(m, m->val.string);
+ matcher_rule_set_mlvo(m, s, m->val.string);
goto rule_mlvo;
case TOK_STAR:
if (!m->rule.skip)
- matcher_rule_set_mlvo_wildcard(m);
+ matcher_rule_set_mlvo_wildcard(m, s);
goto rule_mlvo;
case TOK_GROUP_NAME:
if (!m->rule.skip)
- matcher_rule_set_mlvo_group(m, m->val.string);
+ matcher_rule_set_mlvo_group(m, s, m->val.string);
goto rule_mlvo;
case TOK_EQUALS:
goto rule_kccgst;
@@ -933,16 +937,16 @@ rule_mlvo_no_tok:
}
rule_kccgst:
- switch (tok = gettok(m)) {
+ switch (tok = gettok(m, s)) {
case TOK_IDENTIFIER:
if (!m->rule.skip)
- matcher_rule_set_kccgst(m, m->val.string);
+ matcher_rule_set_kccgst(m, s, m->val.string);
goto rule_kccgst;
case TOK_END_OF_LINE:
if (!m->rule.skip)
- matcher_rule_verify(m);
+ matcher_rule_verify(m, s);
if (!m->rule.skip)
- matcher_rule_apply_if_matches(m);
+ matcher_rule_apply_if_matches(m, s);
goto rule_mlvo_first;
default:
goto unexpected;
@@ -991,7 +995,7 @@ finish:
return true;
state_error:
- scanner_err(&m->scanner, "unexpected token");
+ scanner_err(s, "unexpected token");
error:
return false;
}
@@ -1006,6 +1010,7 @@ read_rules_file(struct xkb_context *ctx,
FILE *file;
char *string;
size_t size;
+ struct scanner scanner;
file = fopen(path, "r");
if (!file)
@@ -1018,7 +1023,9 @@ read_rules_file(struct xkb_context *ctx,
goto out;
}
- ret = matcher_match(matcher, string, size, path, out);
+ scanner_init(&scanner, matcher->ctx, string, size, path, NULL);
+
+ ret = matcher_match(matcher, &scanner, string, size, path, out);
unmap_file(string, size);
out: