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-22 14:28:14 +01:00
|
|
|
struct Context;
|
2012-08-01 14:27:34 +02:00
|
|
|
using CommandParameters = memoryview<String>;
|
2013-07-28 16:40:02 +02:00
|
|
|
using Command = std::function<void (CommandParameters, Context& context)>;
|
2014-01-26 17:14:02 +01:00
|
|
|
using CommandCompleter = std::function<Completions (const Context& context,
|
|
|
|
CompletionFlags,
|
|
|
|
CommandParameters,
|
|
|
|
size_t, ByteCount)>;
|
2013-11-12 20:38:19 +01:00
|
|
|
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);
|
|
|
|
}
|
2011-09-16 11:18:51 +02:00
|
|
|
|
|
|
|
class PerArgumentCommandCompleter
|
|
|
|
{
|
|
|
|
public:
|
2014-01-26 17:14:02 +01:00
|
|
|
using ArgumentCompleter = std::function<Completions (const Context&,
|
2013-11-04 22:53:10 +01:00
|
|
|
CompletionFlags flags,
|
2012-11-22 14:28:14 +01:00
|
|
|
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
|
|
|
|
2014-01-26 17:14:02 +01:00
|
|
|
Completions operator()(const Context& context,
|
|
|
|
CompletionFlags flags,
|
|
|
|
CommandParameters params,
|
|
|
|
size_t token_to_complete,
|
|
|
|
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
|
|
|
|
2013-11-04 22:53:10 +01:00
|
|
|
Completions complete(const Context& context, CompletionFlags flags,
|
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;
|
|
|
|
|
2013-11-12 20:38:19 +01:00
|
|
|
void register_command(String command_name, Command command,
|
|
|
|
CommandFlags flags = CommandFlags::None,
|
2012-11-22 14:28:14 +01:00
|
|
|
CommandCompleter completer = CommandCompleter());
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2013-11-12 20:38:19 +01:00
|
|
|
void register_commands(memoryview<String> command_names, Command command,
|
|
|
|
CommandFlags flags = CommandFlags::None,
|
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;
|
2013-12-24 03:06:22 +01:00
|
|
|
|
2012-01-15 04:02:08 +01:00
|
|
|
struct CommandDescriptor
|
2011-09-16 11:18:51 +02:00
|
|
|
{
|
|
|
|
Command command;
|
2013-11-12 20:38:19 +01:00
|
|
|
CommandFlags flags;
|
2011-09-16 11:18:51 +02:00
|
|
|
CommandCompleter completer;
|
|
|
|
};
|
2013-12-24 03:06:22 +01:00
|
|
|
using CommandMap = std::unordered_map<String, CommandDescriptor>;
|
|
|
|
CommandMap m_commands;
|
|
|
|
std::unordered_map<String, String> m_aliases;
|
|
|
|
|
|
|
|
CommandMap::const_iterator find_command(const String& name) const;
|
2011-09-07 20:16:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // command_manager_hh_INCLUDED
|