2011-09-07 20:16:56 +02:00
|
|
|
#ifndef command_manager_hh_INCLUDED
|
|
|
|
#define command_manager_hh_INCLUDED
|
|
|
|
|
2014-05-07 21:39:59 +02:00
|
|
|
#include "coord.hh"
|
2011-09-14 17:41:56 +02:00
|
|
|
#include "completion.hh"
|
2014-10-23 19:55:45 +02:00
|
|
|
#include "flags.hh"
|
2015-01-06 14:40:56 +01:00
|
|
|
#include "array_view.hh"
|
2012-05-29 07:42:26 +02:00
|
|
|
#include "shell_manager.hh"
|
2014-02-08 02:02:58 +01:00
|
|
|
#include "parameters_parser.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "string.hh"
|
|
|
|
#include "utils.hh"
|
2014-12-16 19:57:19 +01:00
|
|
|
#include "unordered_map.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <initializer_list>
|
2011-09-07 20:16:56 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2014-01-27 21:28:38 +01:00
|
|
|
class Context;
|
2015-03-09 14:48:41 +01:00
|
|
|
using CommandParameters = ConstArrayView<String>;
|
2015-10-22 14:59:23 +02:00
|
|
|
using Command = std::function<void (const ParametersParser& parser,
|
|
|
|
Context& context,
|
|
|
|
const ShellContext& shell_context)>;
|
|
|
|
|
2014-01-26 17:14:02 +01:00
|
|
|
using CommandCompleter = std::function<Completions (const Context& context,
|
|
|
|
CompletionFlags,
|
|
|
|
CommandParameters,
|
|
|
|
size_t, ByteCount)>;
|
2015-10-22 14:59:23 +02:00
|
|
|
|
2015-02-08 20:04:20 +01:00
|
|
|
using CommandHelper = std::function<String (const Context& context, CommandParameters)>;
|
|
|
|
|
2013-11-12 20:38:19 +01:00
|
|
|
enum class CommandFlags
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
Hidden = 1,
|
|
|
|
};
|
2014-10-23 19:55:45 +02:00
|
|
|
|
|
|
|
template<> struct WithBitOps<CommandFlags> : std::true_type {};
|
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)>;
|
2015-03-09 14:48:41 +01:00
|
|
|
using ArgumentCompleterList = ConstArrayView<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:
|
2015-01-12 14:45:44 +01:00
|
|
|
Vector<ArgumentCompleter, MemoryDomain::Commands> m_completers;
|
2011-09-16 11:18:51 +02:00
|
|
|
};
|
|
|
|
|
2014-04-08 20:54:32 +02:00
|
|
|
using CommandInfo = std::pair<String, String>;
|
|
|
|
|
2015-12-12 07:50:58 +01:00
|
|
|
struct Token
|
|
|
|
{
|
|
|
|
enum class Type
|
|
|
|
{
|
|
|
|
Raw,
|
|
|
|
RawQuoted,
|
|
|
|
RawEval,
|
|
|
|
ShellExpand,
|
|
|
|
RegisterExpand,
|
|
|
|
OptionExpand,
|
|
|
|
ValExpand,
|
|
|
|
ArgExpand,
|
|
|
|
CommandSeparator
|
|
|
|
};
|
|
|
|
Token() : m_type(Type::Raw) {}
|
|
|
|
|
|
|
|
Token(Type type, ByteCount b, ByteCount e, CharCoord coord, String str = "")
|
|
|
|
: m_type(type), m_begin(b), m_end(e), m_coord(coord), m_content(std::move(str)) {}
|
|
|
|
|
|
|
|
Type type() const { return m_type; }
|
|
|
|
ByteCount begin() const { return m_begin; }
|
|
|
|
ByteCount end() const { return m_end; }
|
|
|
|
CharCoord coord() const { return m_coord; }
|
|
|
|
const String& content() const { return m_content; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type m_type;
|
|
|
|
ByteCount m_begin;
|
|
|
|
ByteCount m_end;
|
|
|
|
CharCoord m_coord;
|
|
|
|
String m_content;
|
|
|
|
};
|
|
|
|
|
|
|
|
using TokenList = Vector<Token>;
|
|
|
|
|
|
|
|
template<bool throw_on_unterminated>
|
|
|
|
TokenList parse(StringView line);
|
|
|
|
|
2011-09-23 16:29:42 +02:00
|
|
|
class CommandManager : public Singleton<CommandManager>
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-04-21 22:49:25 +02:00
|
|
|
void execute(StringView command_line, Context& context,
|
2015-10-23 10:49:06 +02:00
|
|
|
const ShellContext& shell_context = ShellContext{});
|
2011-11-26 19:32:57 +01:00
|
|
|
|
2013-11-04 22:53:10 +01:00
|
|
|
Completions complete(const Context& context, CompletionFlags flags,
|
2014-04-21 22:49:25 +02:00
|
|
|
StringView command_line, ByteCount cursor_pos);
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2015-06-26 14:52:01 +02:00
|
|
|
Completions complete(const Context& context, CompletionFlags flags,
|
|
|
|
CommandParameters params,
|
|
|
|
size_t token_to_complete, ByteCount pos_in_token);
|
|
|
|
|
2014-10-30 00:22:54 +01:00
|
|
|
CommandInfo command_info(const Context& context,
|
|
|
|
StringView command_line) const;
|
2014-02-11 23:16:17 +01: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,
|
2014-02-12 10:02:09 +01:00
|
|
|
String docstring,
|
2014-02-08 02:02:58 +01:00
|
|
|
ParameterDesc param_desc,
|
2013-11-12 20:38:19 +01:00
|
|
|
CommandFlags flags = CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper helper = CommandHelper(),
|
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,
|
2015-10-22 14:59:23 +02:00
|
|
|
Context& context,
|
|
|
|
const ShellContext& shell_context,
|
|
|
|
CharCoord pos) 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;
|
2014-02-12 10:02:09 +01:00
|
|
|
String docstring;
|
2014-02-08 02:02:58 +01:00
|
|
|
ParameterDesc param_desc;
|
2013-11-12 20:38:19 +01:00
|
|
|
CommandFlags flags;
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper helper;
|
2011-09-16 11:18:51 +02:00
|
|
|
CommandCompleter completer;
|
|
|
|
};
|
2015-01-12 14:45:44 +01:00
|
|
|
using CommandMap = UnorderedMap<String, CommandDescriptor, MemoryDomain::Commands>;
|
2013-12-24 03:06:22 +01:00
|
|
|
CommandMap m_commands;
|
|
|
|
|
2014-10-30 00:22:54 +01:00
|
|
|
CommandMap::const_iterator find_command(const Context& context,
|
|
|
|
const String& name) const;
|
2011-09-07 20:16:56 +02:00
|
|
|
};
|
|
|
|
|
2015-05-04 18:08:57 +02:00
|
|
|
String expand(StringView str, const Context& context,
|
2015-10-23 10:49:06 +02:00
|
|
|
const ShellContext& shell_context = ShellContext{});
|
2015-05-04 18:08:57 +02:00
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // command_manager_hh_INCLUDED
|