#ifndef command_manager_hh_INCLUDED #define command_manager_hh_INCLUDED #include #include #include #include "string.hh" #include "utils.hh" #include "completion.hh" #include "memoryview.hh" #include "shell_manager.hh" namespace Kakoune { struct parse_error : runtime_error { parse_error(const String& error); }; struct Context; using CommandParameters = memoryview; using Command = std::function; using CommandCompleter = std::function; class PerArgumentCommandCompleter { public: using ArgumentCompleter = std::function; using ArgumentCompleterList = memoryview; PerArgumentCommandCompleter(const ArgumentCompleterList& completers) : m_completers(completers.begin(), completers.end()) {} CandidateList operator()(const Context& context, const CommandParameters& params, size_t token_to_complete, ByteCount pos_in_token) const; private: std::vector m_completers; }; class CommandManager : public Singleton { public: void execute(const String& command_line, Context& context, const memoryview& shell_params = {}, const EnvVarMap& env_vars = {}); Completions complete(const Context& context, const String& command_line, ByteCount cursor_pos); bool command_defined(const String& command_name) const; void register_command(String command_name, Command command, CommandCompleter completer = CommandCompleter()); void register_commands(const memoryview& command_names, Command command, CommandCompleter completer = CommandCompleter()); private: void execute_single_command(const CommandParameters& params, Context& context) const; struct CommandDescriptor { Command command; CommandCompleter completer; }; std::unordered_map m_commands; }; } #endif // command_manager_hh_INCLUDED