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"
|
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"
|
2016-12-23 17:23:31 +01:00
|
|
|
#include "optional.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "utils.hh"
|
2017-03-07 01:30:54 +01:00
|
|
|
#include "hash_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,
|
|
|
|
};
|
2017-03-15 18:55:34 +01:00
|
|
|
constexpr bool with_bit_ops(Meta::Type<CommandFlags>) { return true; }
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2016-12-23 17:23:31 +01:00
|
|
|
struct CommandInfo { String name, info; };
|
2014-04-08 20:54:32 +02:00
|
|
|
|
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) {}
|
|
|
|
|
2016-09-22 21:36:26 +02:00
|
|
|
Token(Type type, ByteCount b, ByteCount e, DisplayCoord coord, String str = "")
|
2015-12-12 07:50:58 +01:00
|
|
|
: 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; }
|
2016-09-22 21:36:26 +02:00
|
|
|
DisplayCoord coord() const { return m_coord; }
|
2015-12-12 07:50:58 +01:00
|
|
|
const String& content() const { return m_content; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type m_type;
|
|
|
|
ByteCount m_begin;
|
|
|
|
ByteCount m_end;
|
2016-09-22 21:36:26 +02:00
|
|
|
DisplayCoord m_coord;
|
2015-12-12 07:50:58 +01:00
|
|
|
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);
|
|
|
|
|
2016-12-23 17:23:31 +01:00
|
|
|
Optional<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
|
|
|
|
2016-03-24 01:05:40 +01:00
|
|
|
Completions complete_command_name(const Context& context, StringView query, bool with_aliases) const;
|
|
|
|
|
2016-08-05 14:53:19 +02:00
|
|
|
void clear_last_complete_command() { m_last_complete_command = String{}; }
|
|
|
|
|
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,
|
2017-01-29 14:56:05 +01:00
|
|
|
DisplayCoord pos);
|
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;
|
|
|
|
};
|
2017-03-07 01:30:54 +01:00
|
|
|
using CommandMap = HashMap<String, CommandDescriptor, MemoryDomain::Commands>;
|
2013-12-24 03:06:22 +01:00
|
|
|
CommandMap m_commands;
|
2016-08-05 14:53:19 +02:00
|
|
|
String m_last_complete_command;
|
2017-01-29 14:56:05 +01:00
|
|
|
int m_command_depth = 0;
|
2013-12-24 03:06:22 +01:00
|
|
|
|
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
|
|
|
|
2016-12-07 21:07:32 +01:00
|
|
|
String expand(StringView str, const Context& context,
|
|
|
|
const ShellContext& shell_context,
|
|
|
|
std::function<String (String)> postprocess);
|
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // command_manager_hh_INCLUDED
|