2011-09-07 20:16:56 +02:00
|
|
|
#ifndef command_manager_hh_INCLUDED
|
|
|
|
#define command_manager_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <functional>
|
2011-09-16 11:18:51 +02:00
|
|
|
#include <initializer_list>
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2011-09-23 16:29:42 +02:00
|
|
|
#include "utils.hh"
|
2011-09-14 17:41:56 +02:00
|
|
|
#include "completion.hh"
|
2011-09-07 20:16:56 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2011-11-26 19:32:57 +01:00
|
|
|
struct Context;
|
|
|
|
|
2011-09-09 20:40:59 +02:00
|
|
|
struct wrong_argument_count : runtime_error
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2011-09-09 20:40:59 +02:00
|
|
|
wrong_argument_count() : runtime_error("wrong argument count") {}
|
2011-09-07 20:16:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<std::string> CommandParameters;
|
2011-11-26 19:32:57 +01:00
|
|
|
typedef std::function<void (const CommandParameters&,
|
|
|
|
const Context& context)> Command;
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2011-09-16 11:18:51 +02:00
|
|
|
typedef std::function<CandidateList (const CommandParameters&,
|
|
|
|
size_t, size_t)> CommandCompleter;
|
|
|
|
|
|
|
|
class PerArgumentCommandCompleter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef std::function<CandidateList (const std::string&, size_t)> ArgumentCompleter;
|
|
|
|
typedef std::vector<ArgumentCompleter> ArgumentCompleterList;
|
|
|
|
|
|
|
|
PerArgumentCommandCompleter(const ArgumentCompleterList& completers)
|
|
|
|
: m_completers(completers) {}
|
|
|
|
|
|
|
|
PerArgumentCommandCompleter(ArgumentCompleterList&& completers)
|
|
|
|
: m_completers(completers) {}
|
|
|
|
|
|
|
|
PerArgumentCommandCompleter(std::initializer_list<ArgumentCompleter> completers)
|
|
|
|
: m_completers(completers) {}
|
|
|
|
|
|
|
|
CandidateList operator()(const CommandParameters& params,
|
|
|
|
size_t token_to_complete,
|
|
|
|
size_t pos_in_token) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
ArgumentCompleterList m_completers;
|
|
|
|
};
|
|
|
|
|
2011-09-23 16:29:42 +02:00
|
|
|
class CommandManager : public Singleton<CommandManager>
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-11-26 19:32:57 +01:00
|
|
|
void execute(const std::string& command_line, const Context& context);
|
|
|
|
void execute(const std::string& command, const CommandParameters& params,
|
|
|
|
const Context& context);
|
|
|
|
|
2011-09-13 23:16:48 +02:00
|
|
|
Completions complete(const std::string& command_line, size_t cursor_pos);
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2011-09-16 11:18:51 +02:00
|
|
|
void register_command(const std::string& command_name,
|
|
|
|
Command command,
|
|
|
|
const CommandCompleter& completer = CommandCompleter());
|
|
|
|
|
|
|
|
void register_command(const std::vector<std::string>& command_names,
|
|
|
|
Command command,
|
|
|
|
const CommandCompleter& completer = CommandCompleter());
|
2011-09-07 20:16:56 +02:00
|
|
|
|
|
|
|
private:
|
2011-09-16 11:18:51 +02:00
|
|
|
struct CommandAndCompleter
|
|
|
|
{
|
|
|
|
Command command;
|
|
|
|
CommandCompleter completer;
|
|
|
|
};
|
|
|
|
std::unordered_map<std::string, CommandAndCompleter> m_commands;
|
2011-09-07 20:16:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // command_manager_hh_INCLUDED
|