2016-05-19 06:30:21 +08:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2015-07-25 23:14:25 +08:00
|
|
|
#include <stdio.h>
|
2016-04-21 14:00:54 +08:00
|
|
|
|
|
|
|
#include "common.h"
|
2016-05-03 06:48:57 +08:00
|
|
|
#include "parse_constants.h"
|
2018-01-08 05:34:04 +08:00
|
|
|
#include "parse_grammar.h"
|
2016-05-03 06:48:57 +08:00
|
|
|
#include "parse_productions.h"
|
|
|
|
#include "parse_tree.h"
|
2013-07-26 06:24:22 +08:00
|
|
|
|
|
|
|
using namespace parse_productions;
|
2018-01-08 07:53:36 +08:00
|
|
|
using namespace grammar;
|
2013-07-26 06:24:22 +08:00
|
|
|
|
2015-12-16 06:59:03 +08:00
|
|
|
#define NO_PRODUCTION NULL
|
2013-07-29 06:19:38 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
// Herein are encoded the productions for our LL2 fish grammar.
|
|
|
|
//
|
|
|
|
// Each symbol (e.g. symbol_job_list) has a corresponding function (e.g. resolve_job_lits). The
|
|
|
|
// function accepts two tokens, representing the first and second lookahead, and returns returns a
|
|
|
|
// production representing the rule, or NULL on error. There is also a tag value which is returned
|
|
|
|
// by reference; the tag is a sort of node annotation.
|
|
|
|
//
|
|
|
|
// Productions are generally a static const array, and we return a pointer to the array (yes,
|
|
|
|
// really).
|
|
|
|
|
2018-01-08 07:53:36 +08:00
|
|
|
#define RESOLVE(SYM) \
|
|
|
|
const production_element_t *SYM::resolve( \
|
2016-05-03 06:48:57 +08:00
|
|
|
const parse_token_t &token1, const parse_token_t &token2, parse_node_tag_t *out_tag)
|
|
|
|
|
|
|
|
/// A job_list is a list of jobs, separated by semicolons or newlines.
|
|
|
|
RESOLVE(job_list) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
2016-11-10 13:37:49 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.type) {
|
|
|
|
case parse_token_type_string: {
|
|
|
|
// Some keywords are special.
|
|
|
|
switch (token1.keyword) {
|
2013-07-27 14:59:12 +08:00
|
|
|
case parse_keyword_end:
|
|
|
|
case parse_keyword_else:
|
2016-05-03 06:48:57 +08:00
|
|
|
case parse_keyword_case: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<empty>(); // end this job list
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
default: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<normal>(); // normal string
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-07-27 14:59:12 +08:00
|
|
|
case parse_token_type_pipe:
|
|
|
|
case parse_token_type_redirection:
|
2016-05-03 06:48:57 +08:00
|
|
|
case parse_token_type_background: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<normal>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_token_type_end: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<empty_line>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_token_type_terminate: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<empty>(); // no more commands, just transition to empty
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
default: { return NO_PRODUCTION; }
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-03 10:09:16 +08:00
|
|
|
// A job decorator is AND or OR
|
|
|
|
RESOLVE(job_decorator) {
|
|
|
|
UNUSED(token2);
|
|
|
|
|
|
|
|
switch (token1.keyword) {
|
|
|
|
case parse_keyword_and: {
|
|
|
|
*out_tag = parse_bool_and;
|
|
|
|
return production_for<ands>();
|
|
|
|
}
|
|
|
|
case parse_keyword_or: {
|
|
|
|
*out_tag = parse_bool_or;
|
|
|
|
return production_for<ors>();
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
*out_tag = parse_bool_none;
|
|
|
|
return production_for<empty>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-02 10:30:48 +08:00
|
|
|
RESOLVE(job_conjunction_continuation) {
|
2018-03-02 05:39:39 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
|
|
|
switch (token1.type) {
|
|
|
|
case parse_token_type_andand:
|
2018-03-02 10:30:48 +08:00
|
|
|
*out_tag = parse_bool_and;
|
2018-03-02 05:39:39 +08:00
|
|
|
return production_for<andands>();
|
|
|
|
case parse_token_type_oror:
|
2018-03-02 10:30:48 +08:00
|
|
|
*out_tag = parse_bool_or;
|
2018-03-02 05:39:39 +08:00
|
|
|
return production_for<orors>();
|
|
|
|
default:
|
|
|
|
return production_for<empty>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(job_continuation) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
2016-10-10 05:38:26 +08:00
|
|
|
UNUSED(out_tag);
|
2016-11-10 13:37:49 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.type) {
|
|
|
|
case parse_token_type_pipe: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<piped>(); // pipe, continuation
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
default: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<empty>(); // not a pipe, no job continuation
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
// A statement is a normal command, or an if / while / and etc.
|
|
|
|
RESOLVE(statement) {
|
2016-10-10 05:38:26 +08:00
|
|
|
UNUSED(out_tag);
|
2016-11-10 13:37:49 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
// The only block-like builtin that takes any parameters is 'function' So go to decorated
|
|
|
|
// statements if the subsequent token looks like '--'. The logic here is subtle:
|
|
|
|
//
|
|
|
|
// If we are 'begin', then we expect to be invoked with no arguments.
|
|
|
|
// If we are 'function', then we are a non-block if we are invoked with -h or --help
|
|
|
|
// If we are anything else, we require an argument, so do the same thing if the subsequent token
|
|
|
|
// is a statement terminator.
|
|
|
|
if (token1.type == parse_token_type_string) {
|
|
|
|
// If we are a function, then look for help arguments. Otherwise, if the next token looks
|
|
|
|
// like an option (starts with a dash), then parse it as a decorated statement.
|
|
|
|
if (token1.keyword == parse_keyword_function && token2.is_help_argument) {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<decorated>();
|
2016-05-03 06:48:57 +08:00
|
|
|
} else if (token1.keyword != parse_keyword_function && token2.has_dash_prefix) {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<decorated>();
|
2013-10-10 06:57:10 +08:00
|
|
|
}
|
2014-01-15 17:40:40 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
// Likewise if the next token doesn't look like an argument at all. This corresponds to e.g.
|
|
|
|
// a "naked if".
|
|
|
|
bool naked_invocation_invokes_help =
|
|
|
|
(token1.keyword != parse_keyword_begin && token1.keyword != parse_keyword_end);
|
|
|
|
if (naked_invocation_invokes_help &&
|
|
|
|
(token2.type == parse_token_type_end || token2.type == parse_token_type_terminate)) {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<decorated>();
|
2013-10-12 17:46:49 +08:00
|
|
|
}
|
2013-10-10 06:57:10 +08:00
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.type) {
|
|
|
|
case parse_token_type_string: {
|
|
|
|
switch (token1.keyword) {
|
2018-03-05 08:06:32 +08:00
|
|
|
case parse_keyword_not:
|
|
|
|
case parse_keyword_exclam: {
|
2018-03-03 10:09:16 +08:00
|
|
|
return production_for<nots>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-07-27 14:59:12 +08:00
|
|
|
case parse_keyword_for:
|
|
|
|
case parse_keyword_while:
|
|
|
|
case parse_keyword_function:
|
2016-05-03 06:48:57 +08:00
|
|
|
case parse_keyword_begin: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<block>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_if: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<ifs>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_else: {
|
2013-07-27 14:59:12 +08:00
|
|
|
return NO_PRODUCTION;
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_switch: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<switchs>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_end: {
|
2013-07-27 14:59:12 +08:00
|
|
|
return NO_PRODUCTION;
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
// All other keywords fall through to decorated statement.
|
2018-01-08 07:53:36 +08:00
|
|
|
default: { return production_for<decorated>(); }
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
break;
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-07-27 14:59:12 +08:00
|
|
|
case parse_token_type_pipe:
|
|
|
|
case parse_token_type_redirection:
|
|
|
|
case parse_token_type_background:
|
2016-05-03 06:48:57 +08:00
|
|
|
case parse_token_type_terminate: {
|
2013-07-27 14:59:12 +08:00
|
|
|
return NO_PRODUCTION;
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
default: { return NO_PRODUCTION; }
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(else_clause) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
2016-11-10 13:37:49 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.keyword) {
|
|
|
|
case parse_keyword_else: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<else_cont>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2018-01-08 07:53:36 +08:00
|
|
|
default: { return production_for<empty>(); }
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(else_continuation) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
2015-12-16 06:59:03 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.keyword) {
|
|
|
|
case parse_keyword_if: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<else_if>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2018-01-08 07:53:36 +08:00
|
|
|
default: { return production_for<else_only>(); }
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(case_item_list) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
2016-11-10 13:37:49 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
if (token1.keyword == parse_keyword_case)
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<case_items>();
|
2016-05-03 06:48:57 +08:00
|
|
|
else if (token1.type == parse_token_type_end)
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<blank_line>();
|
2016-05-03 06:48:57 +08:00
|
|
|
else
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<empty>();
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
|
2018-03-05 08:06:32 +08:00
|
|
|
RESOLVE(not_statement) {
|
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
|
|
|
switch (token1.keyword) {
|
|
|
|
case parse_keyword_not:
|
|
|
|
return production_for<nots>();
|
|
|
|
case parse_keyword_exclam:
|
|
|
|
return production_for<exclams>();
|
|
|
|
default:
|
|
|
|
return NO_PRODUCTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(andor_job_list) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(out_tag);
|
2016-05-03 06:48:57 +08:00
|
|
|
|
|
|
|
if (token1.type == parse_token_type_end) {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<empty_line>();
|
2016-05-03 06:48:57 +08:00
|
|
|
} else if (token1.keyword == parse_keyword_and || token1.keyword == parse_keyword_or) {
|
|
|
|
// Check that the argument to and/or is a string that's not help. Otherwise it's either 'and
|
|
|
|
// --help' or a naked 'and', and not part of this list.
|
|
|
|
if (token2.type == parse_token_type_string && !token2.is_help_argument) {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<andor_job>();
|
2015-12-20 06:45:45 +08:00
|
|
|
}
|
|
|
|
}
|
2016-05-03 06:48:57 +08:00
|
|
|
// All other cases end the list.
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<empty>();
|
2015-12-20 06:45:45 +08:00
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(argument_list) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.type) {
|
|
|
|
case parse_token_type_string: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<arg>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2018-01-08 07:53:36 +08:00
|
|
|
default: { return production_for<empty>(); }
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(freestanding_argument_list) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
2015-12-16 06:59:03 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.type) {
|
|
|
|
case parse_token_type_string: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<arg>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_token_type_end: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<semicolon>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2018-01-08 07:53:36 +08:00
|
|
|
default: { return production_for<empty>(); }
|
2014-03-28 02:17:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(block_header) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
2015-12-16 06:59:03 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.keyword) {
|
|
|
|
case parse_keyword_for: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<forh>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_while: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<whileh>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_function: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<funch>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_begin: {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<beginh>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
default: { return NO_PRODUCTION; }
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(decorated_statement) {
|
2015-12-16 06:59:03 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
// If this is e.g. 'command --help' then the command is 'command' and not a decoration. If the
|
|
|
|
// second token is not a string, then this is a naked 'command' and we should execute it as
|
|
|
|
// undecorated.
|
|
|
|
if (token2.type != parse_token_type_string || token2.has_dash_prefix) {
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<plains>();
|
2013-10-12 17:46:49 +08:00
|
|
|
}
|
2014-01-15 17:40:40 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.keyword) {
|
|
|
|
case parse_keyword_command: {
|
2015-12-16 06:59:03 +08:00
|
|
|
*out_tag = parse_statement_decoration_command;
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<cmds>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_builtin: {
|
2015-12-16 06:59:03 +08:00
|
|
|
*out_tag = parse_statement_decoration_builtin;
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<builtins>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case parse_keyword_exec: {
|
2015-12-16 06:59:03 +08:00
|
|
|
*out_tag = parse_statement_decoration_exec;
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<execs>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
default: {
|
|
|
|
*out_tag = parse_statement_decoration_none;
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<plains>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-07-27 14:59:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(arguments_or_redirections_list) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
|
|
|
UNUSED(out_tag);
|
2016-11-10 13:37:49 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.type) {
|
2013-07-27 14:59:12 +08:00
|
|
|
case parse_token_type_string:
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<arg>();
|
2018-01-23 05:18:34 +08:00
|
|
|
case parse_token_type_redirection:
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<redir>();
|
2018-01-23 05:18:34 +08:00
|
|
|
default:
|
|
|
|
return production_for<empty>();
|
2013-07-29 06:19:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-19 06:37:44 +08:00
|
|
|
RESOLVE(optional_newlines) {
|
|
|
|
UNUSED(token2);
|
2018-04-01 08:06:13 +08:00
|
|
|
UNUSED(out_tag);
|
2018-02-19 06:37:44 +08:00
|
|
|
if (token1.is_newline) return production_for<newlines>();
|
|
|
|
return production_for<empty>();
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
RESOLVE(optional_background) {
|
2016-10-10 05:41:56 +08:00
|
|
|
UNUSED(token2);
|
2016-11-10 13:37:49 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (token1.type) {
|
|
|
|
case parse_token_type_background: {
|
2015-12-16 06:59:03 +08:00
|
|
|
*out_tag = parse_background;
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<background>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
default: {
|
2015-12-16 06:59:03 +08:00
|
|
|
*out_tag = parse_no_background;
|
2018-01-08 07:53:36 +08:00
|
|
|
return production_for<empty>();
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-07-29 06:19:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 10:12:14 +08:00
|
|
|
|
2016-11-10 13:37:49 +08:00
|
|
|
const production_element_t *parse_productions::production_for_token(parse_token_type_t node_type,
|
|
|
|
const parse_token_t &input1,
|
|
|
|
const parse_token_t &input2,
|
|
|
|
parse_node_tag_t *out_tag) {
|
2017-06-19 13:07:48 +08:00
|
|
|
debug(5, "Resolving production for %ls with input token <%ls>",
|
2016-10-30 10:01:19 +08:00
|
|
|
token_type_description(node_type), input1.describe().c_str());
|
2013-08-11 15:35:00 +08:00
|
|
|
|
2016-05-03 06:48:57 +08:00
|
|
|
// Fetch the function to resolve the list of productions.
|
2016-11-10 13:37:49 +08:00
|
|
|
const production_element_t *(*resolver)(const parse_token_t &input1, //!OCLINT(unused param)
|
|
|
|
const parse_token_t &input2, //!OCLINT(unused param)
|
|
|
|
parse_node_tag_t *out_tag) = //!OCLINT(unused param)
|
|
|
|
NULL;
|
2016-05-03 06:48:57 +08:00
|
|
|
switch (node_type) {
|
2018-02-19 06:37:44 +08:00
|
|
|
// Handle all of our grammar elements
|
|
|
|
#define ELEM(SYM) \
|
|
|
|
case (symbol_##SYM): \
|
|
|
|
resolver = SYM::resolve; \
|
|
|
|
break;
|
|
|
|
#include "parse_grammar_elements.inc"
|
2013-08-11 15:35:00 +08:00
|
|
|
|
2018-02-19 06:37:44 +08:00
|
|
|
// Everything else is an error.
|
2013-07-29 06:19:38 +08:00
|
|
|
case parse_token_type_string:
|
|
|
|
case parse_token_type_pipe:
|
|
|
|
case parse_token_type_redirection:
|
|
|
|
case parse_token_type_background:
|
2018-03-02 05:39:39 +08:00
|
|
|
case parse_token_type_andand:
|
|
|
|
case parse_token_type_oror:
|
2013-07-29 06:19:38 +08:00
|
|
|
case parse_token_type_end:
|
2016-05-03 06:48:57 +08:00
|
|
|
case parse_token_type_terminate: {
|
2017-01-03 13:11:53 +08:00
|
|
|
debug(0, "Terminal token type %ls passed to %s", token_type_description(node_type),
|
|
|
|
__FUNCTION__);
|
2013-07-29 06:19:38 +08:00
|
|
|
PARSER_DIE();
|
|
|
|
break;
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-08-09 06:06:46 +08:00
|
|
|
case parse_special_type_parse_error:
|
|
|
|
case parse_special_type_tokenizer_error:
|
2016-05-03 06:48:57 +08:00
|
|
|
case parse_special_type_comment: {
|
2017-01-03 13:11:53 +08:00
|
|
|
debug(0, "Special type %ls passed to %s\n", token_type_description(node_type),
|
|
|
|
__FUNCTION__);
|
2013-08-09 06:06:46 +08:00
|
|
|
PARSER_DIE();
|
|
|
|
break;
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
|
|
|
case token_type_invalid: {
|
2017-01-03 13:11:53 +08:00
|
|
|
debug(0, "token_type_invalid passed to %s", __FUNCTION__);
|
2013-07-29 06:19:38 +08:00
|
|
|
PARSER_DIE();
|
|
|
|
break;
|
2016-05-03 06:48:57 +08:00
|
|
|
}
|
2013-07-29 06:19:38 +08:00
|
|
|
}
|
|
|
|
PARSE_ASSERT(resolver != NULL);
|
2013-08-11 15:35:00 +08:00
|
|
|
|
2016-11-10 13:37:49 +08:00
|
|
|
const production_element_t *result = resolver(input1, input2, out_tag);
|
2016-10-30 10:01:19 +08:00
|
|
|
if (result == NULL) {
|
2017-06-19 13:07:48 +08:00
|
|
|
debug(5, "Node type '%ls' has no production for input '%ls' (in %s)",
|
2016-10-30 10:01:19 +08:00
|
|
|
token_type_description(node_type), input1.describe().c_str(), __FUNCTION__);
|
2013-07-29 06:19:38 +08:00
|
|
|
}
|
2015-12-16 06:59:03 +08:00
|
|
|
|
2013-07-29 06:19:38 +08:00
|
|
|
return result;
|
|
|
|
}
|