2011-09-07 20:16:56 +02:00
|
|
|
#include "command_manager.hh"
|
|
|
|
|
2011-09-16 11:18:51 +02:00
|
|
|
#include "assert.hh"
|
2012-02-13 22:38:07 +01:00
|
|
|
#include "context.hh"
|
2012-08-11 12:13:48 +02:00
|
|
|
#include "register_manager.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "shell_manager.hh"
|
|
|
|
#include "utils.hh"
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-06-02 17:49:35 +02:00
|
|
|
bool CommandManager::command_defined(const String& command_name) const
|
|
|
|
{
|
2013-12-24 03:06:22 +01:00
|
|
|
return find_command(command_name) != m_commands.end();
|
2012-06-02 17:49:35 +02:00
|
|
|
}
|
|
|
|
|
2012-11-22 14:28:14 +01:00
|
|
|
void CommandManager::register_command(String command_name,
|
2012-06-02 17:49:35 +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,
|
2012-11-22 14:28:14 +01:00
|
|
|
CommandCompleter completer)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2014-04-08 20:54:32 +02:00
|
|
|
m_commands[command_name] = { std::move(command),
|
|
|
|
std::move(docstring),
|
|
|
|
std::move(param_desc),
|
|
|
|
flags,
|
|
|
|
std::move(completer) };
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void CommandManager::register_commands(memoryview<String> command_names,
|
2012-06-02 17:49:35 +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,
|
2012-11-22 14:28:14 +01:00
|
|
|
CommandCompleter completer)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2013-12-24 03:06:22 +01:00
|
|
|
kak_assert(not command_names.empty());
|
2014-04-08 20:54:32 +02:00
|
|
|
m_commands[command_names[0]] = { std::move(command),
|
|
|
|
std::move(docstring),
|
|
|
|
std::move(param_desc),
|
|
|
|
flags,
|
|
|
|
completer };
|
2013-12-24 03:06:22 +01:00
|
|
|
for (size_t i = 1; i < command_names.size(); ++i)
|
|
|
|
m_aliases[command_names[i]] = command_names[0];
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2013-07-28 16:40:02 +02:00
|
|
|
struct parse_error : runtime_error
|
|
|
|
{
|
|
|
|
parse_error(const String& error)
|
|
|
|
: runtime_error{"parse error: " + error} {}
|
|
|
|
};
|
2012-11-21 13:56:52 +01:00
|
|
|
|
2012-08-02 06:41:55 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
struct Token
|
2012-02-13 22:38:07 +01:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
enum class Type
|
|
|
|
{
|
|
|
|
Raw,
|
2014-04-04 00:57:14 +02:00
|
|
|
RawEval,
|
2012-08-01 14:27:34 +02:00
|
|
|
ShellExpand,
|
2012-08-11 12:13:48 +02:00
|
|
|
RegisterExpand,
|
|
|
|
OptionExpand,
|
2012-08-01 14:27:34 +02:00
|
|
|
CommandSeparator
|
|
|
|
};
|
|
|
|
Token() : m_type(Type::Raw) {}
|
|
|
|
|
2013-12-29 19:37:48 +01:00
|
|
|
Token(Type type, ByteCount b, ByteCount e, String str = "")
|
|
|
|
: m_type(type), m_begin(b), m_end(e), m_content(str) {}
|
2012-08-01 14:27:34 +02:00
|
|
|
|
|
|
|
Type type() const { return m_type; }
|
2013-12-29 19:37:48 +01:00
|
|
|
ByteCount begin() const { return m_begin; }
|
|
|
|
ByteCount end() const { return m_end; }
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& content() const { return m_content; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type m_type;
|
2013-12-29 19:37:48 +01:00
|
|
|
ByteCount m_begin;
|
|
|
|
ByteCount m_end;
|
2012-08-01 14:27:34 +02:00
|
|
|
String m_content;
|
|
|
|
};
|
|
|
|
|
2012-02-13 22:38:07 +01:00
|
|
|
|
2012-07-31 00:06:50 +02:00
|
|
|
using TokenList = std::vector<Token>;
|
2012-10-11 00:41:48 +02:00
|
|
|
using TokenPosList = std::vector<std::pair<ByteCount, ByteCount>>;
|
2012-07-31 00:06:50 +02:00
|
|
|
|
2012-10-08 19:33:53 +02:00
|
|
|
bool is_command_separator(char c)
|
2012-07-31 14:22:57 +02:00
|
|
|
{
|
|
|
|
return c == ';' or c == '\n';
|
|
|
|
}
|
|
|
|
|
2012-11-21 13:56:52 +01:00
|
|
|
struct unterminated_string : parse_error
|
|
|
|
{
|
2013-06-18 22:11:44 +02:00
|
|
|
unterminated_string(const String& open, const String& close, int nest = 0)
|
2013-01-04 18:39:13 +01:00
|
|
|
: parse_error{"unterminated string '" + open + "..." + close + "'" +
|
2013-05-13 14:23:07 +02:00
|
|
|
(nest > 0 ? "(nesting: " + to_string(nest) + ")" : "")}
|
2012-11-21 13:56:52 +01:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2013-03-19 18:58:21 +01:00
|
|
|
struct unknown_expand : parse_error
|
|
|
|
{
|
|
|
|
unknown_expand(const String& name)
|
|
|
|
: parse_error{"unknown expand '" + name + "'"} {}
|
|
|
|
};
|
|
|
|
|
2014-04-21 22:49:25 +02:00
|
|
|
String get_until_delimiter(StringView base, ByteCount& pos, char delimiter)
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
|
|
|
const ByteCount length = base.length();
|
|
|
|
String str;
|
2014-03-05 21:57:12 +01:00
|
|
|
while (pos < length)
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
|
|
|
char c = base[pos];
|
|
|
|
if (c == delimiter)
|
|
|
|
{
|
|
|
|
if (base[pos-1] != '\\')
|
2014-03-05 21:57:12 +01:00
|
|
|
break;
|
2013-06-27 20:07:26 +02:00
|
|
|
str.back() = delimiter;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
str += c;
|
2014-03-05 21:57:12 +01:00
|
|
|
++pos;
|
2013-06-27 20:07:26 +02:00
|
|
|
}
|
2014-03-05 21:57:12 +01:00
|
|
|
return str;
|
2013-06-27 20:07:26 +02:00
|
|
|
}
|
|
|
|
|
2014-04-21 22:49:25 +02:00
|
|
|
String get_until_delimiter(StringView base, ByteCount& pos,
|
2013-12-29 19:37:48 +01:00
|
|
|
char opening_delimiter, char closing_delimiter)
|
|
|
|
{
|
|
|
|
kak_assert(base[pos-1] == opening_delimiter);
|
|
|
|
const ByteCount length = base.length();
|
|
|
|
int level = 0;
|
|
|
|
ByteCount start = pos;
|
|
|
|
while (pos != length)
|
|
|
|
{
|
|
|
|
if (base[pos] == opening_delimiter)
|
|
|
|
++level;
|
|
|
|
else if (base[pos] == closing_delimiter)
|
|
|
|
{
|
|
|
|
if (level > 0)
|
|
|
|
--level;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
return base.substr(start, pos - start);
|
|
|
|
}
|
|
|
|
|
2014-02-27 07:41:58 +01:00
|
|
|
template<bool throw_on_invalid>
|
2014-04-21 22:49:25 +02:00
|
|
|
Token::Type token_type(StringView type_name)
|
2013-12-29 19:37:48 +01:00
|
|
|
{
|
|
|
|
if (type_name == "")
|
|
|
|
return Token::Type::Raw;
|
|
|
|
else if (type_name == "sh")
|
|
|
|
return Token::Type::ShellExpand;
|
|
|
|
else if (type_name == "reg")
|
|
|
|
return Token::Type::RegisterExpand;
|
|
|
|
else if (type_name == "opt")
|
|
|
|
return Token::Type::OptionExpand;
|
2014-04-04 00:57:14 +02:00
|
|
|
else if (type_name == "rec")
|
|
|
|
return Token::Type::RawEval;
|
2014-02-27 07:41:58 +01:00
|
|
|
else if (throw_on_invalid)
|
2013-12-29 19:37:48 +01:00
|
|
|
throw unknown_expand{type_name};
|
2014-02-27 07:41:58 +01:00
|
|
|
else
|
|
|
|
return Token::Type::Raw;
|
2013-12-29 19:37:48 +01:00
|
|
|
}
|
|
|
|
|
2014-04-21 22:49:25 +02:00
|
|
|
void skip_blanks_and_comments(StringView base, ByteCount& pos)
|
2013-12-29 19:37:48 +01:00
|
|
|
{
|
|
|
|
const ByteCount length = base.length();
|
|
|
|
while (pos != length)
|
|
|
|
{
|
|
|
|
if (is_horizontal_blank(base[pos]))
|
|
|
|
++pos;
|
|
|
|
else if (base[pos] == '\\' and pos+1 < length and base[pos+1] == '\n')
|
|
|
|
pos += 2;
|
|
|
|
else if (base[pos] == '#')
|
|
|
|
{
|
|
|
|
while (pos != length and base[pos] != '\n')
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-04 00:57:14 +02:00
|
|
|
template<bool throw_on_unterminated>
|
2014-04-21 22:49:25 +02:00
|
|
|
Token parse_percent_token(StringView line, ByteCount& pos)
|
2014-04-04 00:57:14 +02:00
|
|
|
{
|
|
|
|
const ByteCount length = line.length();
|
|
|
|
const ByteCount type_start = ++pos;
|
|
|
|
while (isalpha(line[pos]))
|
|
|
|
++pos;
|
2014-04-21 22:49:25 +02:00
|
|
|
StringView type_name = line.substr(type_start, pos - type_start);
|
2014-04-04 00:57:14 +02:00
|
|
|
|
|
|
|
if (throw_on_unterminated and pos == length)
|
2014-04-08 20:54:32 +02:00
|
|
|
throw parse_error{"expected a string delimiter after '%" +
|
|
|
|
type_name + "'"};
|
2014-04-04 00:57:14 +02:00
|
|
|
|
|
|
|
Token::Type type = token_type<throw_on_unterminated>(type_name);
|
|
|
|
static const std::unordered_map<char, char> matching_delimiters = {
|
|
|
|
{ '(', ')' }, { '[', ']' }, { '{', '}' }, { '<', '>' }
|
|
|
|
};
|
|
|
|
|
|
|
|
char opening_delimiter = line[pos];
|
|
|
|
ByteCount token_start = ++pos;
|
|
|
|
|
|
|
|
auto delim_it = matching_delimiters.find(opening_delimiter);
|
|
|
|
if (delim_it != matching_delimiters.end())
|
|
|
|
{
|
|
|
|
char closing_delimiter = delim_it->second;
|
|
|
|
String token = get_until_delimiter(line, pos, opening_delimiter,
|
|
|
|
closing_delimiter);
|
|
|
|
if (throw_on_unterminated and pos == length)
|
|
|
|
throw unterminated_string("%" + type_name + opening_delimiter,
|
|
|
|
String{closing_delimiter}, 0);
|
|
|
|
return {type, token_start, pos, std::move(token)};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
String token = get_until_delimiter(line, pos, opening_delimiter);
|
|
|
|
return {type, token_start, pos, std::move(token)};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-30 15:22:18 +01:00
|
|
|
template<bool throw_on_unterminated>
|
2014-04-21 22:49:25 +02:00
|
|
|
TokenList parse(StringView line)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2011-09-13 23:16:48 +02:00
|
|
|
TokenList result;
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2014-04-04 00:57:14 +02:00
|
|
|
const ByteCount length = line.length();
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount pos = 0;
|
2012-07-31 14:22:57 +02:00
|
|
|
while (pos < length)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2013-12-29 19:37:48 +01:00
|
|
|
skip_blanks_and_comments(line, pos);
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount token_start = pos;
|
2012-12-15 17:47:50 +01:00
|
|
|
ByteCount start_pos = pos;
|
2012-02-13 22:38:07 +01:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
if (line[pos] == '"' or line[pos] == '\'')
|
2011-11-26 18:20:02 +01:00
|
|
|
{
|
2012-02-13 22:38:07 +01:00
|
|
|
char delimiter = line[pos];
|
2012-07-31 00:06:50 +02:00
|
|
|
|
|
|
|
token_start = ++pos;
|
2013-06-27 20:07:26 +02:00
|
|
|
String token = get_until_delimiter(line, pos, delimiter);
|
2013-12-30 15:22:18 +01:00
|
|
|
if (throw_on_unterminated and pos == length)
|
2014-04-08 20:54:32 +02:00
|
|
|
throw unterminated_string(String{delimiter},
|
|
|
|
String{delimiter});
|
2014-04-04 00:57:14 +02:00
|
|
|
result.emplace_back(Token::Type::Raw, token_start,
|
|
|
|
pos, std::move(token));
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
|
|
|
else if (line[pos] == '%')
|
2014-04-08 20:54:32 +02:00
|
|
|
result.push_back(
|
|
|
|
parse_percent_token<throw_on_unterminated>(line, pos));
|
2012-02-13 22:38:07 +01:00
|
|
|
else
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
2012-08-29 21:50:48 +02:00
|
|
|
while (pos != length and
|
|
|
|
((not is_command_separator(line[pos]) and
|
|
|
|
not is_horizontal_blank(line[pos]))
|
|
|
|
or (pos != 0 and line[pos-1] == '\\')))
|
2012-02-13 22:38:07 +01:00
|
|
|
++pos;
|
2013-06-27 20:07:26 +02:00
|
|
|
if (start_pos != pos)
|
|
|
|
{
|
2014-04-21 22:49:25 +02:00
|
|
|
String token = line.substr(token_start, pos - token_start);
|
2013-06-27 20:07:26 +02:00
|
|
|
static const Regex regex{R"(\\([ \t;\n]))"};
|
2013-12-29 19:37:48 +01:00
|
|
|
result.emplace_back(Token::Type::Raw, token_start, pos,
|
2014-04-08 20:54:32 +02:00
|
|
|
boost::regex_replace(token, regex,
|
|
|
|
"\\1"));
|
2013-06-27 20:07:26 +02:00
|
|
|
}
|
2012-07-31 00:06:50 +02:00
|
|
|
}
|
2011-11-26 18:20:02 +01:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
if (is_command_separator(line[pos]))
|
2014-04-08 20:54:32 +02:00
|
|
|
result.emplace_back(Token::Type::CommandSeparator, pos, pos+1);
|
2012-01-15 02:37:35 +01:00
|
|
|
|
2011-11-26 18:20:02 +01:00
|
|
|
++pos;
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
2012-08-01 14:27:34 +02:00
|
|
|
return result;
|
2011-11-26 19:32:57 +01:00
|
|
|
}
|
|
|
|
|
2014-04-04 00:57:14 +02:00
|
|
|
String eval_token(const Token& token, Context& context,
|
|
|
|
memoryview<String> shell_params,
|
|
|
|
const EnvVarMap& env_vars);
|
|
|
|
|
|
|
|
String eval(const String& str, Context& context,
|
|
|
|
memoryview<String> shell_params,
|
|
|
|
const EnvVarMap& env_vars)
|
|
|
|
{
|
|
|
|
String res;
|
|
|
|
auto pos = 0_byte;
|
|
|
|
auto length = str.length();
|
|
|
|
while (pos < length)
|
|
|
|
{
|
|
|
|
if (str[pos] == '\\')
|
|
|
|
{
|
|
|
|
char c = str[++pos];
|
|
|
|
if (c != '%' and c != '\\')
|
|
|
|
res += '\\';
|
|
|
|
res += c;
|
|
|
|
}
|
|
|
|
else if (str[pos] == '%')
|
|
|
|
{
|
|
|
|
Token token = parse_percent_token<true>(str, pos);
|
|
|
|
res += eval_token(token, context, shell_params, env_vars);
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
res += str[pos++];
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
String eval_token(const Token& token, Context& context,
|
|
|
|
memoryview<String> shell_params,
|
|
|
|
const EnvVarMap& env_vars)
|
|
|
|
{
|
2014-04-08 20:54:32 +02:00
|
|
|
auto& content = token.content();
|
2014-04-04 00:57:14 +02:00
|
|
|
switch (token.type())
|
|
|
|
{
|
|
|
|
case Token::Type::ShellExpand:
|
2014-04-08 20:54:32 +02:00
|
|
|
return ShellManager::instance().eval(content, context, shell_params,
|
|
|
|
env_vars);
|
2014-04-04 00:57:14 +02:00
|
|
|
case Token::Type::RegisterExpand:
|
2014-04-08 20:54:32 +02:00
|
|
|
if (content.length() != 1)
|
|
|
|
throw runtime_error("wrong register name: " + content);
|
|
|
|
return RegisterManager::instance()[content[0]].values(context)[0];
|
2014-04-04 00:57:14 +02:00
|
|
|
case Token::Type::OptionExpand:
|
2014-04-08 20:54:32 +02:00
|
|
|
return context.options()[content].get_as_string();
|
2014-04-04 00:57:14 +02:00
|
|
|
case Token::Type::RawEval:
|
2014-04-08 20:54:32 +02:00
|
|
|
return eval(content, context, shell_params, env_vars);
|
2014-04-04 00:57:14 +02:00
|
|
|
case Token::Type::Raw:
|
2014-04-08 20:54:32 +02:00
|
|
|
return content;
|
2014-04-04 00:57:14 +02:00
|
|
|
default: kak_assert(false);
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2012-08-02 06:41:55 +02:00
|
|
|
}
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
struct command_not_found : runtime_error
|
|
|
|
{
|
|
|
|
command_not_found(const String& command)
|
|
|
|
: runtime_error(command + " : no such command") {}
|
|
|
|
};
|
|
|
|
|
2014-04-08 20:54:32 +02:00
|
|
|
CommandManager::CommandMap::const_iterator
|
|
|
|
CommandManager::find_command(const String& name) const
|
2013-12-24 03:06:22 +01:00
|
|
|
{
|
|
|
|
auto it = m_aliases.find(name);
|
|
|
|
const String& cmd_name = it == m_aliases.end() ? name : it->second;
|
|
|
|
|
|
|
|
return m_commands.find(cmd_name);
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void CommandManager::execute_single_command(CommandParameters params,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context) const
|
2012-08-06 19:29:51 +02:00
|
|
|
{
|
|
|
|
if (params.empty())
|
|
|
|
return;
|
|
|
|
|
2013-12-24 03:06:22 +01:00
|
|
|
memoryview<String> param_view(params.begin()+1, params.end());
|
|
|
|
auto command_it = find_command(params[0]);
|
2012-08-06 19:29:51 +02:00
|
|
|
if (command_it == m_commands.end())
|
|
|
|
throw command_not_found(params[0]);
|
2014-04-08 20:54:32 +02:00
|
|
|
|
|
|
|
ParametersParser parameter_parser(param_view,
|
|
|
|
command_it->second.param_desc);
|
|
|
|
command_it->second.command(parameter_parser, context);
|
2012-08-06 19:29:51 +02:00
|
|
|
}
|
|
|
|
|
2014-04-21 22:49:25 +02:00
|
|
|
void CommandManager::execute(StringView command_line,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context,
|
2013-07-26 01:17:12 +02:00
|
|
|
memoryview<String> shell_params,
|
2012-05-29 07:42:26 +02:00
|
|
|
const EnvVarMap& env_vars)
|
2011-11-26 19:32:57 +01:00
|
|
|
{
|
2013-12-30 15:22:18 +01:00
|
|
|
TokenList tokens = parse<true>(command_line);
|
2012-08-01 14:27:34 +02:00
|
|
|
if (tokens.empty())
|
2012-01-14 15:02:54 +01:00
|
|
|
return;
|
|
|
|
|
2012-08-06 19:29:51 +02:00
|
|
|
std::vector<String> params;
|
|
|
|
for (auto it = tokens.begin(); it != tokens.end(); ++it)
|
2012-01-15 02:37:35 +01:00
|
|
|
{
|
2014-04-04 00:57:14 +02:00
|
|
|
if (it->type() == Token::Type::CommandSeparator)
|
2012-01-15 02:37:35 +01:00
|
|
|
{
|
2014-04-04 00:57:14 +02:00
|
|
|
execute_single_command(params, context);
|
|
|
|
params.clear();
|
|
|
|
}
|
|
|
|
// Shell expand are retokenized
|
|
|
|
else if (it->type() == Token::Type::ShellExpand)
|
|
|
|
{
|
|
|
|
auto shell_tokens = parse<true>(eval_token(*it, context,
|
2014-04-08 20:54:32 +02:00
|
|
|
shell_params,
|
|
|
|
env_vars));
|
2012-08-06 19:29:51 +02:00
|
|
|
it = tokens.erase(it);
|
|
|
|
for (auto& token : shell_tokens)
|
|
|
|
it = ++tokens.insert(it, std::move(token));
|
|
|
|
|
2014-04-04 00:57:14 +02:00
|
|
|
if (tokens.empty())
|
2012-08-06 19:29:51 +02:00
|
|
|
break;
|
2014-04-04 00:57:14 +02:00
|
|
|
|
|
|
|
it -= shell_tokens.size() + 1;
|
2012-01-15 02:37:35 +01:00
|
|
|
}
|
2014-04-04 00:57:14 +02:00
|
|
|
else
|
2014-04-08 20:54:32 +02:00
|
|
|
params.push_back(eval_token(*it, context, shell_params,
|
|
|
|
env_vars));
|
2012-01-15 02:37:35 +01:00
|
|
|
}
|
2012-08-06 19:29:51 +02:00
|
|
|
execute_single_command(params, context);
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2014-04-21 22:49:25 +02:00
|
|
|
CommandInfo CommandManager::command_info(StringView command_line) const
|
2014-02-11 23:16:17 +01:00
|
|
|
{
|
|
|
|
TokenList tokens = parse<false>(command_line);
|
|
|
|
size_t cmd_idx = 0;
|
|
|
|
for (size_t i = 0; i < tokens.size(); ++i)
|
|
|
|
{
|
|
|
|
if (tokens[i].type() == Token::Type::CommandSeparator)
|
|
|
|
cmd_idx = i+1;
|
|
|
|
}
|
|
|
|
|
2014-04-21 22:49:25 +02:00
|
|
|
CommandInfo res;
|
2014-04-08 20:54:32 +02:00
|
|
|
if (cmd_idx == tokens.size() or
|
|
|
|
tokens[cmd_idx].type() != Token::Type::Raw)
|
2014-02-11 23:16:17 +01:00
|
|
|
return res;
|
|
|
|
|
|
|
|
auto cmd = find_command(tokens[cmd_idx].content());
|
|
|
|
if (cmd == m_commands.end())
|
|
|
|
return res;
|
|
|
|
|
|
|
|
res.first = cmd->first;
|
2014-02-12 10:02:09 +01:00
|
|
|
if (not cmd->second.docstring.empty())
|
|
|
|
res.second += cmd->second.docstring + "\n";
|
2014-02-11 23:23:44 +01:00
|
|
|
auto& switches = cmd->second.param_desc.switches;
|
|
|
|
if (not switches.empty())
|
2014-02-11 23:16:17 +01:00
|
|
|
{
|
2014-02-11 23:23:44 +01:00
|
|
|
res.second += "Switches:\n";
|
|
|
|
res.second += generate_switches_doc(switches);
|
2014-02-11 23:16:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-04-08 20:54:32 +02:00
|
|
|
Completions CommandManager::complete(const Context& context,
|
|
|
|
CompletionFlags flags,
|
2014-04-21 22:49:25 +02:00
|
|
|
StringView command_line,
|
2014-04-08 20:54:32 +02:00
|
|
|
ByteCount cursor_pos)
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
2013-12-30 15:22:18 +01:00
|
|
|
TokenList tokens = parse<false>(command_line);
|
2011-09-13 23:16:48 +02:00
|
|
|
|
2014-01-03 21:07:40 +01:00
|
|
|
size_t cmd_idx = 0;
|
|
|
|
size_t tok_idx = tokens.size();
|
2011-09-13 23:16:48 +02:00
|
|
|
for (size_t i = 0; i < tokens.size(); ++i)
|
|
|
|
{
|
2014-01-03 21:07:40 +01:00
|
|
|
if (tokens[i].type() == Token::Type::CommandSeparator)
|
|
|
|
cmd_idx = i+1;
|
|
|
|
|
2013-12-29 19:37:48 +01:00
|
|
|
if (tokens[i].begin() <= cursor_pos and tokens[i].end() >= cursor_pos)
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
2014-01-03 21:07:40 +01:00
|
|
|
tok_idx = i;
|
2011-09-13 23:16:48 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-03 21:07:40 +01:00
|
|
|
// command name completion
|
2013-12-30 15:22:18 +01:00
|
|
|
if (tokens.empty() or
|
2014-01-03 21:07:40 +01:00
|
|
|
(tok_idx == cmd_idx and (tok_idx == tokens.size() or
|
|
|
|
tokens[tok_idx].type() == Token::Type::Raw)))
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
2014-04-08 20:54:32 +02:00
|
|
|
const bool is_end_token = tok_idx == tokens.size();
|
|
|
|
ByteCount cmd_start = is_end_token ? cursor_pos
|
|
|
|
: tokens[tok_idx].begin();
|
2011-10-19 20:50:28 +02:00
|
|
|
Completions result(cmd_start, cursor_pos);
|
2014-04-21 22:49:25 +02:00
|
|
|
StringView prefix = command_line.substr(cmd_start,
|
|
|
|
cursor_pos - cmd_start);
|
2011-09-13 23:16:48 +02:00
|
|
|
|
|
|
|
for (auto& command : m_commands)
|
|
|
|
{
|
2013-11-12 20:38:19 +01:00
|
|
|
if (command.second.flags & CommandFlags::Hidden)
|
|
|
|
continue;
|
|
|
|
if ( prefix_match(command.first, prefix))
|
2011-09-13 23:16:48 +02:00
|
|
|
result.candidates.push_back(command.first);
|
|
|
|
}
|
2012-06-02 17:49:56 +02:00
|
|
|
std::sort(result.candidates.begin(), result.candidates.end());
|
2011-09-13 23:16:48 +02:00
|
|
|
return result;
|
|
|
|
}
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(not tokens.empty());
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2014-01-03 21:07:40 +01:00
|
|
|
ByteCount start = tok_idx < tokens.size() ?
|
|
|
|
tokens[tok_idx].begin() : cursor_pos;
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount cursor_pos_in_token = cursor_pos - start;
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2014-01-03 21:07:40 +01:00
|
|
|
const Token::Type token_type = tok_idx < tokens.size() ?
|
|
|
|
tokens[tok_idx].type() : Token::Type::Raw;
|
2013-12-30 15:22:18 +01:00
|
|
|
switch (token_type)
|
|
|
|
{
|
|
|
|
case Token::Type::OptionExpand:
|
2014-01-26 17:14:02 +01:00
|
|
|
{
|
|
|
|
Completions result(start , cursor_pos);
|
2014-04-08 20:54:32 +02:00
|
|
|
result.candidates = context.options().complete_option_name(
|
|
|
|
tokens[tok_idx].content(), cursor_pos_in_token);
|
2013-12-30 15:22:18 +01:00
|
|
|
return result;
|
2014-01-26 17:14:02 +01:00
|
|
|
}
|
2013-12-30 15:22:18 +01:00
|
|
|
case Token::Type::ShellExpand:
|
|
|
|
{
|
2014-04-08 20:54:32 +02:00
|
|
|
Completions shell_completions = shell_complete(
|
|
|
|
context, flags, tokens[tok_idx].content(), cursor_pos_in_token);
|
2014-01-26 17:14:02 +01:00
|
|
|
shell_completions.start += start;
|
|
|
|
shell_completions.end += start;
|
|
|
|
return shell_completions;
|
2013-12-30 15:22:18 +01:00
|
|
|
}
|
|
|
|
case Token::Type::Raw:
|
|
|
|
{
|
2014-01-03 21:07:40 +01:00
|
|
|
if (tokens[cmd_idx].type() != Token::Type::Raw)
|
2013-12-30 15:22:18 +01:00
|
|
|
return Completions{};
|
|
|
|
|
2014-01-03 21:07:40 +01:00
|
|
|
const String& command_name = tokens[cmd_idx].content();
|
2013-12-30 15:22:18 +01:00
|
|
|
|
|
|
|
auto command_it = find_command(command_name);
|
2014-04-08 20:54:32 +02:00
|
|
|
if (command_it == m_commands.end() or
|
|
|
|
not command_it->second.completer)
|
2013-12-30 15:22:18 +01:00
|
|
|
return Completions();
|
|
|
|
|
|
|
|
std::vector<String> params;
|
2014-04-08 20:54:32 +02:00
|
|
|
for (auto token_it = tokens.begin() + cmd_idx + 1;
|
|
|
|
token_it != tokens.end(); ++token_it)
|
2013-12-30 15:22:18 +01:00
|
|
|
params.push_back(token_it->content());
|
2014-01-03 21:07:40 +01:00
|
|
|
if (tok_idx == tokens.size())
|
2013-12-30 15:22:18 +01:00
|
|
|
params.push_back("");
|
2014-04-08 20:54:32 +02:00
|
|
|
Completions completions = command_it->second.completer(
|
|
|
|
context, flags, params, tok_idx - cmd_idx - 1,
|
|
|
|
cursor_pos_in_token);
|
2014-01-26 17:14:02 +01:00
|
|
|
completions.start += start;
|
|
|
|
completions.end += start;
|
|
|
|
return completions;
|
2013-12-30 15:22:18 +01:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return Completions{};
|
2011-09-16 11:18:51 +02:00
|
|
|
}
|
|
|
|
|
2014-01-26 17:14:02 +01:00
|
|
|
Completions PerArgumentCommandCompleter::operator()(const Context& context,
|
|
|
|
CompletionFlags flags,
|
|
|
|
CommandParameters params,
|
|
|
|
size_t token_to_complete,
|
2014-04-08 20:54:32 +02:00
|
|
|
ByteCount pos_in_token)
|
|
|
|
const
|
2011-09-16 11:18:51 +02:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
if (token_to_complete >= m_completers.size())
|
2014-01-26 17:14:02 +01:00
|
|
|
return Completions{};
|
2011-09-16 11:18:51 +02:00
|
|
|
|
|
|
|
// it is possible to try to complete a new argument
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(token_to_complete <= params.size());
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
const String& argument = token_to_complete < params.size() ?
|
2012-08-01 14:27:34 +02:00
|
|
|
params[token_to_complete] : String();
|
2014-04-08 20:54:32 +02:00
|
|
|
return m_completers[token_to_complete](context, flags, argument,
|
|
|
|
pos_in_token);
|
2011-09-13 23:16:48 +02:00
|
|
|
}
|
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|