#ifndef command_manager_hh_INCLUDED #define command_manager_hh_INCLUDED #include "coord.hh" #include "completion.hh" #include "array_view.hh" #include "shell_manager.hh" #include "parameters_parser.hh" #include "string.hh" #include "optional.hh" #include "utils.hh" #include "hash_map.hh" #include #include namespace Kakoune { class Context; using CommandParameters = ConstArrayView; using CommandFunc = std::function; using CommandCompleter = std::function; using CommandHelper = std::function; enum class CommandFlags { None = 0, Hidden = 1, }; constexpr bool with_bit_ops(Meta::Type) { return true; } struct CommandInfo { String name, info; }; struct Token { enum class Type { Raw, RawQuoted, Expand, ShellExpand, RegisterExpand, OptionExpand, ValExpand, ArgExpand, FileExpand, CommandSeparator }; Type type; ByteCount pos; String content; bool terminated = false; }; struct ParseState { StringView str; const char* pos; operator bool() const { return pos != str.end(); } }; class CommandParser { public: CommandParser(StringView command_line); Optional read_token(bool throw_on_unterminated); const char* pos() const { return m_state.pos; } bool done() const { return not m_state; } private: ParseState m_state; }; class CommandManager : public Singleton { public: void execute(StringView command_line, Context& context, const ShellContext& shell_context = ShellContext{}); void execute_single_command(CommandParameters params, Context& context, const ShellContext& shell_context); Optional command_info(const Context& context, StringView command_line) const; bool command_defined(StringView command_name) const; void register_command(String command_name, CommandFunc func, String docstring, ParameterDesc param_desc, CommandFlags flags = CommandFlags::None, CommandHelper helper = CommandHelper(), CommandCompleter completer = CommandCompleter()); void set_command_completer(StringView command_name, CommandCompleter completer); Completions complete_command_name(const Context& context, StringView query) const; bool module_defined(StringView module_name) const; void register_module(String module_name, String commands); void load_module(StringView module_name, Context& context); HashSet loaded_modules() const; Completions complete_module_name(StringView query) const; struct Completer { Completions operator()(const Context& context, CompletionFlags flags, StringView command_line, ByteCount cursor_pos); private: String m_last_complete_command; CommandCompleter m_command_completer; }; struct NestedCompleter { Completions operator()(const Context& context, CompletionFlags flags, CommandParameters params, size_t token_to_complete, ByteCount pos_in_token); private: String m_last_complete_command; CommandCompleter m_command_completer; }; private: struct Command { CommandFunc func; String docstring; ParameterDesc param_desc; CommandFlags flags; CommandHelper helper; CommandCompleter completer; }; using CommandMap = HashMap; CommandMap m_commands; int m_command_depth = 0; struct Module { enum class State { Registered, Loading, Loaded }; State state = State::Registered; String commands; }; using ModuleMap = HashMap; ModuleMap m_modules; }; String expand(StringView str, const Context& context, const ShellContext& shell_context = ShellContext{}); String expand(StringView str, const Context& context, const ShellContext& shell_context, const FunctionRef& postprocess); } #endif // command_manager_hh_INCLUDED