kakoune/src/command_manager.hh

117 lines
3.9 KiB
C++
Raw Normal View History

#ifndef command_manager_hh_INCLUDED
#define command_manager_hh_INCLUDED
#include "coord.hh"
#include "completion.hh"
#include "flags.hh"
2015-01-06 14:40:56 +01:00
#include "array_view.hh"
#include "shell_manager.hh"
#include "parameters_parser.hh"
2013-04-09 20:05:40 +02:00
#include "string.hh"
#include "utils.hh"
#include "unordered_map.hh"
2013-04-09 20:05:40 +02:00
#include <functional>
#include <initializer_list>
namespace Kakoune
{
2014-01-27 21:28:38 +01:00
class Context;
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)>;
using CommandCompleter = std::function<Completions (const Context& context,
CompletionFlags,
CommandParameters,
size_t, ByteCount)>;
2015-10-22 14:59:23 +02:00
using CommandHelper = std::function<String (const Context& context, CommandParameters)>;
enum class CommandFlags
{
None = 0,
Hidden = 1,
};
template<> struct WithBitOps<CommandFlags> : std::true_type {};
class PerArgumentCommandCompleter
{
public:
using ArgumentCompleter = std::function<Completions (const Context&,
CompletionFlags flags,
2012-11-22 14:28:14 +01:00
const String&, ByteCount)>;
using ArgumentCompleterList = ConstArrayView<ArgumentCompleter>;
2013-07-26 01:17:12 +02:00
PerArgumentCommandCompleter(ArgumentCompleterList completers)
: m_completers(completers.begin(), completers.end()) {}
Completions operator()(const Context& context,
CompletionFlags flags,
CommandParameters params,
size_t token_to_complete,
ByteCount pos_in_token) const;
private:
2015-01-12 14:45:44 +01:00
Vector<ArgumentCompleter, MemoryDomain::Commands> m_completers;
};
using CommandInfo = std::pair<String, String>;
2011-09-23 16:29:42 +02:00
class CommandManager : public Singleton<CommandManager>
{
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
Completions complete(const Context& context, CompletionFlags flags,
2014-04-21 22:49:25 +02:00
StringView command_line, ByteCount cursor_pos);
Completions complete(const Context& context, CompletionFlags flags,
CommandParameters params,
size_t token_to_complete, ByteCount pos_in_token);
CommandInfo command_info(const Context& context,
StringView command_line) const;
bool command_defined(const String& command_name) const;
void register_command(String command_name, Command command,
2014-02-12 10:02:09 +01:00
String docstring,
ParameterDesc param_desc,
CommandFlags flags = CommandFlags::None,
CommandHelper helper = CommandHelper(),
2012-11-22 14:28:14 +01:00
CommandCompleter completer = CommandCompleter());
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;
struct CommandDescriptor
{
Command command;
2014-02-12 10:02:09 +01:00
String docstring;
ParameterDesc param_desc;
CommandFlags flags;
CommandHelper helper;
CommandCompleter completer;
};
2015-01-12 14:45:44 +01:00
using CommandMap = UnorderedMap<String, CommandDescriptor, MemoryDomain::Commands>;
CommandMap m_commands;
CommandMap::const_iterator find_command(const Context& context,
const String& name) const;
};
String expand(StringView str, const Context& context,
2015-10-23 10:49:06 +02:00
const ShellContext& shell_context = ShellContext{});
}
#endif // command_manager_hh_INCLUDED