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>;
|
2017-11-04 09:00:34 +01:00
|
|
|
using CommandFunc = std::function<void (const ParametersParser& parser,
|
|
|
|
Context& context,
|
|
|
|
const ShellContext& shell_context)>;
|
2015-10-22 14:59:23 +02:00
|
|
|
|
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,
|
2019-04-07 01:43:40 +02:00
|
|
|
FileExpand,
|
2015-12-12 07:50:58 +01:00
|
|
|
CommandSeparator
|
|
|
|
};
|
|
|
|
|
2017-09-01 12:09:34 +02:00
|
|
|
Type type;
|
2018-02-15 11:23:12 +01:00
|
|
|
ByteCount pos;
|
2017-09-01 12:09:34 +02:00
|
|
|
String content;
|
2021-05-18 12:46:55 +02:00
|
|
|
bool terminated = false;
|
2015-12-12 07:50:58 +01:00
|
|
|
};
|
|
|
|
|
2021-07-09 09:03:22 +02:00
|
|
|
struct ParseState
|
2018-02-15 11:23:12 +01:00
|
|
|
{
|
|
|
|
StringView str;
|
|
|
|
const char* pos;
|
2021-07-09 09:03:22 +02:00
|
|
|
|
|
|
|
operator bool() const { return pos != str.end(); }
|
2018-02-15 11:23:12 +01:00
|
|
|
};
|
2015-12-12 07:50:58 +01:00
|
|
|
|
2018-02-15 11:23:12 +01:00
|
|
|
class CommandParser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CommandParser(StringView command_line);
|
|
|
|
Optional<Token> read_token(bool throw_on_unterminated);
|
|
|
|
|
2021-07-09 09:03:22 +02:00
|
|
|
const char* pos() const { return m_state.pos; }
|
|
|
|
bool done() const { return not m_state; }
|
2018-02-15 11:23:12 +01:00
|
|
|
|
|
|
|
private:
|
2021-07-09 09:03:22 +02:00
|
|
|
ParseState m_state;
|
2018-02-15 11:23:12 +01:00
|
|
|
};
|
2015-12-12 07:50:58 +01:00
|
|
|
|
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
|
|
|
|
2019-10-23 13:23:59 +02:00
|
|
|
void execute_single_command(CommandParameters params,
|
|
|
|
Context& context,
|
2021-06-24 08:42:45 +02:00
|
|
|
const ShellContext& shell_context);
|
2019-10-23 13:23:59 +02: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
|
|
|
|
2017-04-10 22:33:20 +02:00
|
|
|
bool command_defined(StringView command_name) const;
|
2012-06-02 17:49:35 +02:00
|
|
|
|
2017-11-04 09:00:34 +01:00
|
|
|
void register_command(String command_name, CommandFunc func,
|
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
|
|
|
|
2017-06-29 08:43:20 +02:00
|
|
|
Completions complete_command_name(const Context& context, StringView query) const;
|
2016-03-24 01:05:40 +01:00
|
|
|
|
2016-08-05 14:53:19 +02:00
|
|
|
void clear_last_complete_command() { m_last_complete_command = String{}; }
|
|
|
|
|
2019-03-12 18:34:30 +01:00
|
|
|
bool module_defined(StringView module_name) const;
|
|
|
|
|
|
|
|
void register_module(String module_name, String commands);
|
|
|
|
|
|
|
|
void load_module(StringView module_name, Context& context);
|
|
|
|
|
2019-05-13 09:34:04 +02:00
|
|
|
Completions complete_module_name(StringView query) const;
|
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
private:
|
2017-11-04 09:00:34 +01:00
|
|
|
struct Command
|
2011-09-16 11:18:51 +02:00
|
|
|
{
|
2017-11-04 09:00:34 +01:00
|
|
|
CommandFunc func;
|
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-11-04 09:00:34 +01:00
|
|
|
using CommandMap = HashMap<String, Command, 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
|
|
|
|
2019-03-12 18:34:30 +01:00
|
|
|
struct Module
|
|
|
|
{
|
2020-06-15 11:37:46 +02:00
|
|
|
enum class State
|
|
|
|
{
|
|
|
|
Registered,
|
|
|
|
Loading,
|
|
|
|
Loaded
|
|
|
|
};
|
|
|
|
State state = State::Registered;
|
2019-03-12 18:34:30 +01:00
|
|
|
String commands;
|
|
|
|
};
|
|
|
|
using ModuleMap = HashMap<String, Module, MemoryDomain::Commands>;
|
|
|
|
ModuleMap m_modules;
|
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,
|
2019-09-01 05:03:01 +02:00
|
|
|
const FunctionRef<String (String)>& postprocess);
|
2016-12-07 21:07:32 +01:00
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // command_manager_hh_INCLUDED
|