kakoune/src/command_manager.hh

77 lines
2.4 KiB
C++
Raw Normal View History

#ifndef command_manager_hh_INCLUDED
#define command_manager_hh_INCLUDED
#include "completion.hh"
#include "memoryview.hh"
#include "shell_manager.hh"
2013-04-09 20:05:40 +02:00
#include "string.hh"
#include "utils.hh"
#include <unordered_map>
#include <functional>
#include <initializer_list>
namespace Kakoune
{
2012-11-22 14:28:14 +01:00
struct Context;
using CommandParameters = memoryview<String>;
2013-07-28 16:40:02 +02:00
using Command = std::function<void (CommandParameters, Context& context)>;
2012-11-22 14:28:14 +01:00
using CommandCompleter = std::function<CandidateList (const Context& context,
2013-07-26 01:17:12 +02:00
CommandParameters,
2012-11-22 14:28:14 +01:00
size_t, ByteCount)>;
class PerArgumentCommandCompleter
{
public:
2012-11-22 14:28:14 +01:00
using ArgumentCompleter = std::function<CandidateList (const Context&,
const String&, ByteCount)>;
using ArgumentCompleterList = memoryview<ArgumentCompleter>;
2013-07-26 01:17:12 +02:00
PerArgumentCommandCompleter(ArgumentCompleterList completers)
: m_completers(completers.begin(), completers.end()) {}
CandidateList operator()(const Context& context,
2013-07-26 01:17:12 +02:00
CommandParameters params,
size_t token_to_complete,
ByteCount pos_in_token) const;
private:
std::vector<ArgumentCompleter> m_completers;
};
2011-09-23 16:29:42 +02:00
class CommandManager : public Singleton<CommandManager>
{
public:
void execute(const String& command_line, Context& context,
2013-07-26 01:17:12 +02:00
memoryview<String> shell_params = {},
2013-04-03 18:51:40 +02:00
const EnvVarMap& env_vars = EnvVarMap{});
2011-11-26 19:32:57 +01:00
Completions complete(const Context& context,
const String& command_line, ByteCount cursor_pos);
bool command_defined(const String& command_name) const;
2012-11-22 14:28:14 +01:00
void register_command(String command_name,
Command command,
2012-11-22 14:28:14 +01:00
CommandCompleter completer = CommandCompleter());
2013-07-26 01:17:12 +02:00
void register_commands(memoryview<String> command_names,
Command command,
2012-11-22 14:28:14 +01:00
CommandCompleter completer = CommandCompleter());
private:
2013-07-26 01:17:12 +02:00
void execute_single_command(CommandParameters params,
Context& context) const;
struct CommandDescriptor
{
Command command;
CommandCompleter completer;
};
std::unordered_map<String, CommandDescriptor> m_commands;
};
}
#endif // command_manager_hh_INCLUDED