2011-09-07 20:16:56 +02:00
|
|
|
#ifndef command_manager_hh_INCLUDED
|
|
|
|
#define command_manager_hh_INCLUDED
|
|
|
|
|
2011-09-14 17:41:56 +02:00
|
|
|
#include "completion.hh"
|
2012-02-03 20:14:35 +01:00
|
|
|
#include "memoryview.hh"
|
2012-05-29 07:42:26 +02:00
|
|
|
#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>
|
2011-09-07 20:16:56 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-11-21 13:56:52 +01:00
|
|
|
struct parse_error : runtime_error
|
|
|
|
{
|
|
|
|
parse_error(const String& error);
|
|
|
|
};
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-11-22 14:28:14 +01:00
|
|
|
struct Context;
|
2012-08-01 14:27:34 +02:00
|
|
|
using CommandParameters = memoryview<String>;
|
2013-07-26 01:17:12 +02:00
|
|
|
using Command = std::function<void (CommandParameters,
|
2012-11-22 14:28:14 +01:00
|
|
|
Context& context)>;
|
|
|
|
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)>;
|
2011-09-16 11:18:51 +02:00
|
|
|
|
|
|
|
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>;
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
PerArgumentCommandCompleter(ArgumentCompleterList completers)
|
2012-02-03 20:14:35 +01:00
|
|
|
: m_completers(completers.begin(), completers.end()) {}
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2012-08-06 21:37:43 +02:00
|
|
|
CandidateList operator()(const Context& context,
|
2013-07-26 01:17:12 +02:00
|
|
|
CommandParameters params,
|
2011-09-16 11:18:51 +02:00
|
|
|
size_t token_to_complete,
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount pos_in_token) const;
|
2011-09-16 11:18:51 +02:00
|
|
|
|
|
|
|
private:
|
2012-02-03 20:14:35 +01:00
|
|
|
std::vector<ArgumentCompleter> m_completers;
|
2011-09-16 11:18:51 +02:00
|
|
|
};
|
|
|
|
|
2011-09-23 16:29:42 +02:00
|
|
|
class CommandManager : public Singleton<CommandManager>
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-08-06 22:02:11 +02:00
|
|
|
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
|
|
|
|
2012-08-06 21:37:43 +02:00
|
|
|
Completions complete(const Context& context,
|
2012-10-11 00:41:48 +02:00
|
|
|
const String& command_line, ByteCount cursor_pos);
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-06-02 17:49:35 +02:00
|
|
|
bool command_defined(const String& command_name) const;
|
|
|
|
|
2012-11-22 14:28:14 +01:00
|
|
|
void register_command(String command_name,
|
2011-09-16 11:18:51 +02:00
|
|
|
Command command,
|
2012-11-22 14:28:14 +01:00
|
|
|
CommandCompleter completer = CommandCompleter());
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void register_commands(memoryview<String> command_names,
|
2012-02-03 20:14:35 +01:00
|
|
|
Command command,
|
2012-11-22 14:28:14 +01:00
|
|
|
CommandCompleter completer = CommandCompleter());
|
2011-09-07 20:16:56 +02:00
|
|
|
|
|
|
|
private:
|
2013-07-26 01:17:12 +02:00
|
|
|
void execute_single_command(CommandParameters params,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context) const;
|
2012-01-15 04:02:08 +01:00
|
|
|
struct CommandDescriptor
|
2011-09-16 11:18:51 +02:00
|
|
|
{
|
|
|
|
Command command;
|
|
|
|
CommandCompleter completer;
|
|
|
|
};
|
2012-04-14 03:17:09 +02:00
|
|
|
std::unordered_map<String, CommandDescriptor> m_commands;
|
2011-09-07 20:16:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // command_manager_hh_INCLUDED
|