#ifndef command_manager_hh_INCLUDED #define command_manager_hh_INCLUDED #include "coord.hh" #include "completion.hh" #include "memoryview.hh" #include "shell_manager.hh" #include "parameters_parser.hh" #include "string.hh" #include "utils.hh" #include #include #include namespace Kakoune { class Context; using CommandParameters = memoryview; using Command = std::function; using CommandCompleter = std::function; enum class CommandFlags { None = 0, Hidden = 1, }; constexpr CommandFlags operator|(CommandFlags lhs, CommandFlags rhs) { return (CommandFlags)((int)lhs | (int)rhs); } constexpr bool operator&(CommandFlags lhs, CommandFlags rhs) { return (bool)((int)lhs & (int)rhs); } class PerArgumentCommandCompleter { public: using ArgumentCompleter = std::function; using ArgumentCompleterList = memoryview; PerArgumentCommandCompleter(ArgumentCompleterList completers) : m_completers(completers.begin(), completers.end()) {} Completions operator()(const Context& context, CompletionFlags flags, CommandParameters params, size_t token_to_complete, ByteCount pos_in_token) const; private: std::vector m_completers; }; using CommandInfo = std::pair; class CommandManager : public Singleton { public: void execute(StringView command_line, Context& context, memoryview shell_params = {}, const EnvVarMap& env_vars = EnvVarMap{}); Completions complete(const Context& context, CompletionFlags flags, StringView command_line, ByteCount cursor_pos); CommandInfo command_info(StringView command_line) const; bool command_defined(const String& command_name) const; void register_command(String command_name, Command command, String docstring, ParameterDesc param_desc, CommandFlags flags = CommandFlags::None, CommandCompleter completer = CommandCompleter()); void register_alias(String alias, String command); private: void execute_single_command(CommandParameters params, Context& context, CharCoord pos) const; struct CommandDescriptor { Command command; String docstring; ParameterDesc param_desc; CommandFlags flags; CommandCompleter completer; }; using CommandMap = std::unordered_map; CommandMap m_commands; std::unordered_map m_aliases; CommandMap::const_iterator find_command(const String& name) const; }; } #endif // command_manager_hh_INCLUDED