parser: introduce token_name()

Create a new function token_name() that returns a printable string
representing a given token id.  Use it to simplify token_expect(),
eliminating its switch statement.

Signed-off-by: Alex Elder <elder@linaro.org>
Message-Id: <20211001232338.769309-34-elder@linaro.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
Alex Elder 2021-10-01 18:23:37 -05:00 committed by Bjorn Andersson
parent 624dcc7cc6
commit 2bd95bd13b

View File

@ -129,6 +129,30 @@ static struct symbol *symbol_find(const char *name)
return NULL; return NULL;
} }
static const char *token_name(enum token_id token_id)
{
struct symbol *sym;
switch (token_id) {
case TOK_ID:
return "identifier";
case TOK_MESSAGE:
return "(message)";
case TOK_NUM:
return "(number)";
case TOK_EOF:
return "(EOF)";
default:
break;
}
list_for_each_entry(sym, &symbols, node)
if (token_id == sym->token_id)
return sym->name;
return NULL;
}
static bool symbol_valid(const char *name) static bool symbol_valid(const char *name)
{ {
const char *p = name; const char *p = name;
@ -355,30 +379,16 @@ static bool token_accept(enum token_id token_id, struct token *tok)
static void token_expect(enum token_id token_id, struct token *tok) static void token_expect(enum token_id token_id, struct token *tok)
{ {
if (!token_accept(token_id, tok)) { const char *want;
switch (token_id) {
case TOK_CONST: if (token_accept(token_id, tok))
yyerror("expected const"); return;
case TOK_ID:
yyerror("expected identifier"); want = token_name(token_id);
case TOK_MESSAGE: if (want)
yyerror("expected message"); yyerror("expected %s", want);
case TOK_NUM: else
yyerror("expected num"); yyerror("expected '%c'", token_id);
case TOK_PACKAGE:
yyerror("expected package");
case TOK_STRUCT:
yyerror("expected struct");
case TOK_TYPE:
yyerror("expected type");
case TOK_REQUIRED:
yyerror("expected required");
case TOK_OPTIONAL:
yyerror("expected optional");
default:
yyerror("expected '%c'", token_id);
}
}
} }
static void qmi_package_parse(void) static void qmi_package_parse(void)