2011-09-07 20:16:56 +02:00
|
|
|
#ifndef command_manager_hh_INCLUDED
|
|
|
|
#define command_manager_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <functional>
|
2011-09-16 11:18:51 +02:00
|
|
|
#include <initializer_list>
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
#include "string.hh"
|
2011-09-23 16:29:42 +02:00
|
|
|
#include "utils.hh"
|
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"
|
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
|
|
|
};
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
typedef memoryview<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:
|
2012-04-14 03:17:09 +02:00
|
|
|
typedef std::function<CandidateList (const String&, size_t)> ArgumentCompleter;
|
2012-02-03 20:14:35 +01:00
|
|
|
typedef memoryview<ArgumentCompleter> ArgumentCompleterList;
|
2011-09-16 11:18:51 +02:00
|
|
|
|
|
|
|
PerArgumentCommandCompleter(const ArgumentCompleterList& completers)
|
2012-02-03 20:14:35 +01:00
|
|
|
: m_completers(completers.begin(), completers.end()) {}
|
2011-09-16 11:18:51 +02:00
|
|
|
|
|
|
|
CandidateList operator()(const CommandParameters& params,
|
|
|
|
size_t token_to_complete,
|
|
|
|
size_t pos_in_token) const;
|
|
|
|
|
|
|
|
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-01-15 04:02:08 +01:00
|
|
|
enum Flags
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
IgnoreSemiColons = 1,
|
2012-02-13 22:38:07 +01:00
|
|
|
DeferredShellEval = 2,
|
2012-01-15 04:02:08 +01:00
|
|
|
};
|
|
|
|
|
2012-05-29 07:42:26 +02:00
|
|
|
void execute(const String& command_line, const Context& context,
|
|
|
|
const EnvVarMap& env_vars = EnvVarMap());
|
|
|
|
void execute(const CommandParameters& params, const Context& context,
|
|
|
|
const EnvVarMap& env_vars = EnvVarMap());
|
2011-11-26 19:32:57 +01:00
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
Completions complete(const String& command_line, size_t cursor_pos);
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
void register_command(const String& command_name,
|
2011-09-16 11:18:51 +02:00
|
|
|
Command command,
|
2012-01-15 04:02:08 +01:00
|
|
|
unsigned flags = None,
|
2011-09-16 11:18:51 +02:00
|
|
|
const CommandCompleter& completer = CommandCompleter());
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
void register_commands(const memoryview<String>& command_names,
|
2012-02-03 20:14:35 +01:00
|
|
|
Command command,
|
|
|
|
unsigned flags = None,
|
|
|
|
const CommandCompleter& completer = CommandCompleter());
|
2011-09-07 20:16:56 +02:00
|
|
|
|
|
|
|
private:
|
2012-01-15 04:02:08 +01:00
|
|
|
struct CommandDescriptor
|
2011-09-16 11:18:51 +02:00
|
|
|
{
|
|
|
|
Command command;
|
2012-01-15 04:02:08 +01:00
|
|
|
unsigned flags;
|
2011-09-16 11:18:51 +02:00
|
|
|
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
|