// Provides the "linkage" between a parse_node_tree_t and actual execution structures (job_t, etc.). #ifndef FISH_PARSE_EXECUTION_H #define FISH_PARSE_EXECUTION_H #include #include "common.h" #include "io.h" #include "parse_constants.h" #include "parse_tree.h" #include "proc.h" class block_t; class operation_context_t; class parser_t; /// An eval_result represents evaluation errors including wildcards which failed to match, syntax /// errors, or other expansion errors. It also tracks when evaluation was skipped due to signal /// cancellation. Note it does not track the exit status of commands. enum class eval_result_t { /// Evaluation was successfull. ok, /// Evaluation was skipped due to control flow (break or return). control_flow, /// Evaluation was cancelled, e.g. because of a signal or exit. cancelled, /// A parse error or failed expansion (but not an error exit status from a command). error, }; class parse_execution_context_t { private: parsed_source_ref_t pstree; parser_t *const parser; const operation_context_t &ctx; // The currently executing job node, used to indicate the line number. tnode_t executing_job_node{}; // Cached line number information. size_t cached_lineno_offset = 0; int cached_lineno_count = 0; // The lineage for any jobs created by this context. const job_lineage_t lineage; // No copying allowed. parse_execution_context_t(const parse_execution_context_t &) = delete; parse_execution_context_t &operator=(const parse_execution_context_t &) = delete; // Check to see if we should end execution. // \return the eval result to end with, or none() to continue on. // This will never return eval_result_t::ok. maybe_t check_end_execution() const; // Report an error. Always returns 'eval_result_t::error'. eval_result_t report_error(const parse_node_t &node, const wchar_t *fmt, ...) const; eval_result_t report_errors(const parse_error_list_t &error_list) const; // Wildcard error helper. eval_result_t report_unmatched_wildcard_error(const parse_node_t &unmatched_wildcard) const; /// Command not found support. eval_result_t handle_command_not_found(const wcstring &cmd, tnode_t statement, int err_code); // Utilities wcstring get_source(const parse_node_t &node) const; tnode_t infinite_recursive_statement_in_job_list( tnode_t job_list, wcstring *out_func_name) const; // Expand a command which may contain variables, producing an expand command and possibly // arguments. Prints an error message on error. eval_result_t expand_command(tnode_t statement, wcstring *out_cmd, wcstring_list_t *out_args) const; /// Return whether we should skip a job with the given bool statement type. bool should_skip(parse_job_decoration_t type) const; /// Indicates whether a job is a simple block (one block, no redirections). bool job_is_simple_block(tnode_t job) const; enum process_type_t process_type_for_command(tnode_t statement, const wcstring &cmd) const; eval_result_t apply_variable_assignments( process_t *proc, tnode_t variable_assignments, const block_t **block); // These create process_t structures from statements. eval_result_t populate_job_process(job_t *job, process_t *proc, tnode_t statement, tnode_t variable_assignments); eval_result_t populate_not_process(job_t *job, process_t *proc, tnode_t not_statement); eval_result_t populate_plain_process(job_t *job, process_t *proc, tnode_t statement); template eval_result_t populate_block_process(job_t *job, process_t *proc, tnode_t statement, tnode_t specific_statement); // These encapsulate the actual logic of various (block) statements. eval_result_t run_block_statement(tnode_t statement, const block_t *associated_block); eval_result_t run_for_statement(tnode_t header, tnode_t contents); eval_result_t run_if_statement(tnode_t statement, const block_t *associated_block); eval_result_t run_switch_statement(tnode_t statement); eval_result_t run_while_statement(tnode_t header, tnode_t contents, const block_t *associated_block); eval_result_t run_function_statement(tnode_t statement, tnode_t header); eval_result_t run_begin_statement(tnode_t contents); enum globspec_t { failglob, nullglob }; using argument_node_list_t = std::vector>; eval_result_t expand_arguments_from_nodes(const argument_node_list_t &argument_nodes, wcstring_list_t *out_arguments, globspec_t glob_behavior); // Determines the list of redirections for a node. Returns none() on failure, for example, an // invalid fd. bool determine_redirections(tnode_t node, redirection_spec_list_t *out_redirections); eval_result_t run_1_job(tnode_t job, const block_t *associated_block); eval_result_t run_job_conjunction(tnode_t job_expr, const block_t *associated_block); template eval_result_t run_job_list(tnode_t job_list_node, const block_t *associated_block); eval_result_t populate_job_from_job_node(job_t *j, tnode_t job_node, const block_t *associated_block); // Returns the line number of the node. Not const since it touches cached_lineno_offset. int line_offset_of_node(tnode_t node); int line_offset_of_character_at_offset(size_t offset); public: parse_execution_context_t(parsed_source_ref_t pstree, parser_t *p, const operation_context_t &ctx, job_lineage_t lineage); /// Returns the current line number, indexed from 1. Not const since it touches /// cached_lineno_offset. int get_current_line_number(); /// Returns the source offset, or -1. int get_current_source_offset() const; /// Returns the source string. const wcstring &get_source() const { return pstree->src; } /// Return the parse tree. const parse_node_tree_t &tree() const { return pstree->tree; } /// Start executing at the given node. Returns 0 if there was no error, 1 if there was an /// error. eval_result_t eval_node(tnode_t statement, const block_t *associated_block); eval_result_t eval_node(tnode_t job_list, const block_t *associated_block); }; #endif