2016-05-01 11:31:02 +08:00
|
|
|
// Prototypes for functions for storing and retrieving function information. These functions also
|
|
|
|
// take care of autoloading functions in the $fish_function_path. Actual function evaluation is
|
|
|
|
// taken care of by the parser and to some degree the builtin handling library.
|
2005-10-04 23:11:39 +08:00
|
|
|
#ifndef FISH_FUNCTION_H
|
|
|
|
#define FISH_FUNCTION_H
|
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2005-10-04 23:11:39 +08:00
|
|
|
|
2012-01-14 15:44:18 +08:00
|
|
|
#include "common.h"
|
2014-10-03 06:59:24 +08:00
|
|
|
#include "env.h"
|
2016-05-01 11:31:02 +08:00
|
|
|
#include "event.h"
|
2018-02-10 13:53:06 +08:00
|
|
|
#include "parse_tree.h"
|
2005-10-04 23:11:39 +08:00
|
|
|
|
2012-01-17 04:10:08 +08:00
|
|
|
class parser_t;
|
|
|
|
|
2020-07-04 02:16:51 +08:00
|
|
|
namespace ast {
|
|
|
|
struct block_statement_t;
|
|
|
|
}
|
|
|
|
|
2018-02-12 08:37:38 +08:00
|
|
|
/// A function's constant properties. These do not change once initialized.
|
|
|
|
struct function_properties_t {
|
|
|
|
/// Parsed source containing the function.
|
|
|
|
parsed_source_ref_t parsed_source;
|
|
|
|
|
2020-01-04 06:40:28 +08:00
|
|
|
/// Node containing the function statement, pointing into parsed_source.
|
|
|
|
/// We store block_statement, not job_list, so that comments attached to the header are
|
|
|
|
/// preserved.
|
2020-07-04 02:16:51 +08:00
|
|
|
const ast::block_statement_t *func_node;
|
2018-02-12 08:37:38 +08:00
|
|
|
|
|
|
|
/// List of all named arguments for this function.
|
|
|
|
wcstring_list_t named_arguments;
|
|
|
|
|
2019-11-13 01:53:10 +08:00
|
|
|
/// Mapping of all variables that were inherited from the function definition scope to their
|
|
|
|
/// values.
|
|
|
|
std::map<wcstring, wcstring_list_t> inherit_vars;
|
|
|
|
|
2018-02-12 08:37:38 +08:00
|
|
|
/// Set to true if invoking this function shadows the variables of the underlying function.
|
2019-05-05 07:47:27 +08:00
|
|
|
bool shadow_scope{true};
|
2018-02-12 08:37:38 +08:00
|
|
|
};
|
|
|
|
|
2019-11-13 01:53:10 +08:00
|
|
|
using function_properties_ref_t = std::shared_ptr<const function_properties_t>;
|
|
|
|
|
2018-02-10 13:53:06 +08:00
|
|
|
/// Add a function.
|
2019-11-13 03:25:41 +08:00
|
|
|
void function_add(wcstring name, wcstring description, function_properties_ref_t props,
|
|
|
|
const wchar_t *filename);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Remove the function with the specified name.
|
2012-11-19 08:30:30 +08:00
|
|
|
void function_remove(const wcstring &name);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2018-02-12 09:21:24 +08:00
|
|
|
/// Returns the properties for a function, or nullptr if none. This does not trigger autoloading.
|
2019-11-13 01:53:10 +08:00
|
|
|
function_properties_ref_t function_get_properties(const wcstring &name);
|
2018-02-12 09:21:24 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Returns by reference the definition of the function with the name \c name. Returns true if
|
|
|
|
/// successful, false if no function with the given name exists.
|
2018-02-12 09:21:24 +08:00
|
|
|
/// This does not trigger autoloading.
|
2018-09-27 09:35:30 +08:00
|
|
|
bool function_get_definition(const wcstring &name, wcstring &out_definition);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Returns by reference the description of the function with the name \c name. Returns true if the
|
|
|
|
/// function exists and has a nonempty description, false if it does not.
|
2018-02-12 09:21:24 +08:00
|
|
|
/// This does not trigger autoloading.
|
2018-09-27 09:35:30 +08:00
|
|
|
bool function_get_desc(const wcstring &name, wcstring &out_desc);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Sets the description of the function with the name \c name.
|
2019-05-05 11:20:52 +08:00
|
|
|
void function_set_desc(const wcstring &name, const wcstring &desc, parser_t &parser);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Returns true if the function with the name name exists.
|
2018-02-12 09:21:24 +08:00
|
|
|
/// This may autoload.
|
2019-11-19 08:54:36 +08:00
|
|
|
int function_exists(const wcstring &cmd, parser_t &parser);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Attempts to load a function if not yet loaded. This is used by the completion machinery.
|
2019-11-19 08:54:36 +08:00
|
|
|
void function_load(const wcstring &cmd, parser_t &parser);
|
2015-10-08 09:59:41 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Returns true if the function with the name name exists, without triggering autoload.
|
2021-06-23 03:37:45 +08:00
|
|
|
bool function_exists_no_autoload(const wcstring &cmd);
|
2011-12-27 11:18:46 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Returns all function names.
|
|
|
|
///
|
|
|
|
/// \param get_hidden whether to include hidden functions, i.e. ones starting with an underscore.
|
2012-11-19 08:30:30 +08:00
|
|
|
wcstring_list_t function_get_names(int get_hidden);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2017-01-10 14:49:33 +08:00
|
|
|
/// Returns true if the function was autoloaded.
|
|
|
|
bool function_is_autoloaded(const wcstring &name);
|
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Returns tha absolute path of the file where the specified function was defined. Returns 0 if the
|
|
|
|
/// file was defined on the commandline.
|
|
|
|
///
|
|
|
|
/// This function does not autoload functions, it will only work on functions that have already been
|
|
|
|
/// defined.
|
|
|
|
///
|
|
|
|
/// This returns an intern'd string.
|
2012-11-19 08:30:30 +08:00
|
|
|
const wchar_t *function_get_definition_file(const wcstring &name);
|
2006-01-26 22:48:10 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Returns the linenumber where the definition of the specified function started.
|
2018-02-12 09:21:24 +08:00
|
|
|
/// This does not trigger autoloading.
|
2018-02-10 13:53:06 +08:00
|
|
|
int function_get_definition_lineno(const wcstring &name);
|
2006-01-26 22:48:10 +08:00
|
|
|
|
2016-05-01 11:31:02 +08:00
|
|
|
/// Creates a new function using the same definition as the specified function. Returns true if copy
|
|
|
|
/// is successful.
|
2012-11-19 08:30:30 +08:00
|
|
|
bool function_copy(const wcstring &name, const wcstring &new_name);
|
2010-09-08 01:31:05 +08:00
|
|
|
|
2018-02-16 13:58:02 +08:00
|
|
|
/// Observes that fish_function_path has changed.
|
|
|
|
void function_invalidate_path();
|
|
|
|
|
2020-09-21 23:44:58 +08:00
|
|
|
wcstring functions_def(const wcstring &name);
|
2005-10-04 23:11:39 +08:00
|
|
|
#endif
|