2011-09-07 20:16:56 +02:00
|
|
|
#include "command_manager.hh"
|
|
|
|
|
|
|
|
#include "utils.hh"
|
2011-09-16 11:18:51 +02:00
|
|
|
#include "assert.hh"
|
2012-02-13 22:38:07 +01:00
|
|
|
#include "context.hh"
|
2012-05-03 09:25:13 +02:00
|
|
|
#include "shell_manager.hh"
|
2012-08-11 12:13:48 +02:00
|
|
|
#include "register_manager.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
|
|
|
|
{
|
|
|
|
return m_commands.find(command_name) != m_commands.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandManager::register_command(const String& command_name,
|
|
|
|
Command command,
|
2011-09-16 11:18:51 +02:00
|
|
|
const CommandCompleter& completer)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2012-07-31 14:22:57 +02:00
|
|
|
m_commands[command_name] = CommandDescriptor { command, completer };
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2012-06-02 17:49:35 +02:00
|
|
|
void CommandManager::register_commands(const memoryview<String>& command_names,
|
|
|
|
Command command,
|
2012-02-03 20:14:35 +01:00
|
|
|
const CommandCompleter& completer)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
|
|
|
for (auto command_name : command_names)
|
2012-07-31 14:22:57 +02:00
|
|
|
register_command(command_name, command, completer);
|
2011-09-07 20:16:56 +02: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,
|
|
|
|
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) {}
|
|
|
|
|
|
|
|
explicit Token(const String& string) : m_content(string), m_type(Type::Raw) {}
|
|
|
|
explicit Token(Type type) : m_type(type) {}
|
|
|
|
Token(Type type, String str) : m_content(str), m_type(type) {}
|
|
|
|
|
|
|
|
Type type() const { return m_type; }
|
|
|
|
|
|
|
|
const String& content() const { return m_content; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type m_type;
|
|
|
|
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-08-23 23:56:35 +02:00
|
|
|
using TokenPosList = std::vector<std::pair<CharCount, CharCount>>;
|
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-08-02 06:41:55 +02:00
|
|
|
bool is_horizontal_blank(char c)
|
2012-08-01 14:27:34 +02:00
|
|
|
{
|
|
|
|
return c == ' ' or c == '\t';
|
|
|
|
}
|
|
|
|
|
2012-08-02 06:41:55 +02:00
|
|
|
TokenList parse(const String& line,
|
|
|
|
TokenPosList* opt_token_pos_info = NULL)
|
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
|
|
|
|
2012-08-23 23:56:35 +02:00
|
|
|
CharCount length = line.length();
|
|
|
|
CharCount pos = 0;
|
2012-07-31 14:22:57 +02:00
|
|
|
while (pos < length)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2012-07-31 14:22:57 +02:00
|
|
|
while (pos != length)
|
|
|
|
{
|
|
|
|
if (is_horizontal_blank(line[pos]))
|
|
|
|
++pos;
|
|
|
|
else if (line[pos] == '\\' and pos+1 < length and line[pos+1] == '\n')
|
|
|
|
pos += 2;
|
2012-09-04 00:04:49 +02:00
|
|
|
else if (line[pos] == '#')
|
|
|
|
{
|
|
|
|
while (pos != length and line[pos] != '\n')
|
|
|
|
++pos;
|
|
|
|
}
|
2012-07-31 14:22:57 +02:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-08-23 23:56:35 +02:00
|
|
|
CharCount token_start = pos;
|
2012-02-13 22:38:07 +01:00
|
|
|
|
2012-07-31 00:06:50 +02:00
|
|
|
Token::Type type = Token::Type::Raw;
|
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;
|
2011-11-26 18:20:02 +01:00
|
|
|
|
2012-02-13 22:38:07 +01:00
|
|
|
while ((line[pos] != delimiter or line[pos-1] == '\\') and
|
2012-07-31 14:22:57 +02:00
|
|
|
pos != length)
|
2012-02-13 22:38:07 +01:00
|
|
|
++pos;
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
|
|
|
else if (line[pos] == '%')
|
|
|
|
{
|
2012-08-23 23:56:35 +02:00
|
|
|
CharCount type_start = ++pos;
|
2012-07-31 14:22:57 +02:00
|
|
|
while (isalpha(line[pos]))
|
|
|
|
++pos;
|
|
|
|
String type_name = line.substr(type_start, pos - type_start);
|
|
|
|
|
|
|
|
if (type_name == "sh")
|
|
|
|
type = Token::Type::ShellExpand;
|
2012-08-11 12:13:48 +02:00
|
|
|
if (type_name == "reg")
|
|
|
|
type = Token::Type::RegisterExpand;
|
|
|
|
if (type_name == "opt")
|
|
|
|
type = Token::Type::OptionExpand;
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-10-08 19:33:53 +02:00
|
|
|
static const std::unordered_map<char, char> matching_delimiters = {
|
2012-07-31 14:22:57 +02:00
|
|
|
{ '(', ')' }, { '[', ']' }, { '{', '}' }, { '<', '>' }
|
|
|
|
};
|
|
|
|
|
2012-10-08 19:33:53 +02:00
|
|
|
char opening_delimiter = line[pos];
|
2012-07-31 14:22:57 +02:00
|
|
|
token_start = ++pos;
|
|
|
|
|
|
|
|
auto delim_it = matching_delimiters.find(opening_delimiter);
|
|
|
|
if (delim_it != matching_delimiters.end())
|
|
|
|
{
|
2012-10-08 19:33:53 +02:00
|
|
|
char closing_delimiter = delim_it->second;
|
2012-07-31 14:22:57 +02:00
|
|
|
int level = 0;
|
|
|
|
while (pos != length)
|
|
|
|
{
|
|
|
|
if (line[pos-1] != '\\' and line[pos] == opening_delimiter)
|
|
|
|
++level;
|
|
|
|
if (line[pos-1] != '\\' and line[pos] == closing_delimiter)
|
|
|
|
{
|
|
|
|
if (level > 0)
|
|
|
|
--level;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-15 17:34:01 +02:00
|
|
|
while (pos != length and
|
|
|
|
(line[pos] != opening_delimiter or line[pos-1] == '\\'))
|
2012-07-31 14:22:57 +02:00
|
|
|
++pos;
|
|
|
|
}
|
2012-02-13 22:38:07 +01:00
|
|
|
}
|
|
|
|
else
|
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;
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-02-13 22:38:07 +01:00
|
|
|
if (token_start != pos)
|
2012-07-31 00:06:50 +02:00
|
|
|
{
|
|
|
|
if (opt_token_pos_info)
|
|
|
|
opt_token_pos_info->push_back({token_start, pos});
|
2012-08-29 21:50:48 +02:00
|
|
|
String token = line.substr(token_start, pos - token_start);
|
|
|
|
token = token.replace(R"(\\([ \t;\n]))", "\\1");
|
|
|
|
result.push_back({type, token});
|
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]))
|
2012-07-31 00:06:50 +02:00
|
|
|
{
|
|
|
|
if (opt_token_pos_info)
|
|
|
|
opt_token_pos_info->push_back({pos, pos+1});
|
|
|
|
result.push_back(Token{ Token::Type::CommandSeparator });
|
|
|
|
}
|
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
|
|
|
if (not result.empty() and result.back().type() == Token::Type::CommandSeparator)
|
|
|
|
result.pop_back();
|
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
|
|
|
}
|
|
|
|
|
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") {}
|
|
|
|
};
|
|
|
|
|
2012-08-06 19:29:51 +02:00
|
|
|
void CommandManager::execute_single_command(const 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;
|
|
|
|
|
|
|
|
auto command_it = m_commands.find(params[0]);
|
|
|
|
if (command_it == m_commands.end())
|
|
|
|
throw command_not_found(params[0]);
|
|
|
|
memoryview<String> param_view(params.begin()+1, params.end());
|
|
|
|
command_it->second.command(param_view, context);
|
|
|
|
}
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
void CommandManager::execute(const String& command_line,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context,
|
2012-09-09 17:10:53 +02:00
|
|
|
const memoryview<String>& shell_params,
|
2012-05-29 07:42:26 +02:00
|
|
|
const EnvVarMap& env_vars)
|
2011-11-26 19:32:57 +01:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
TokenList tokens = parse(command_line);
|
|
|
|
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
|
|
|
{
|
2012-08-06 19:29:51 +02:00
|
|
|
if (it->type() == Token::Type::ShellExpand)
|
2012-01-15 02:37:35 +01:00
|
|
|
{
|
2012-08-06 19:29:51 +02:00
|
|
|
String output = ShellManager::instance().eval(it->content(),
|
2012-09-09 17:10:53 +02:00
|
|
|
context, shell_params,
|
|
|
|
env_vars);
|
2012-08-06 19:29:51 +02:00
|
|
|
TokenList shell_tokens = parse(output);
|
|
|
|
it = tokens.erase(it);
|
|
|
|
for (auto& token : shell_tokens)
|
|
|
|
it = ++tokens.insert(it, std::move(token));
|
|
|
|
it -= shell_tokens.size();
|
|
|
|
|
|
|
|
// when last token is a ShellExpand which produces no output
|
|
|
|
if (it == tokens.end())
|
|
|
|
break;
|
2012-01-15 02:37:35 +01:00
|
|
|
}
|
2012-08-11 12:13:48 +02:00
|
|
|
if (it->type() == Token::Type::RegisterExpand)
|
|
|
|
{
|
|
|
|
if (it->content().length() != 1)
|
|
|
|
throw runtime_error("wrong register name: " + it->content());
|
|
|
|
Register& reg = RegisterManager::instance()[it->content()[0]];
|
|
|
|
params.push_back(reg.values(context)[0]);
|
|
|
|
}
|
|
|
|
if (it->type() == Token::Type::OptionExpand)
|
|
|
|
{
|
|
|
|
const Option& option = context.option_manager()[it->content()];
|
|
|
|
params.push_back(option.as_string());
|
|
|
|
}
|
2012-08-06 19:29:51 +02:00
|
|
|
if (it->type() == Token::Type::CommandSeparator)
|
|
|
|
{
|
|
|
|
execute_single_command(params, context);
|
|
|
|
params.clear();
|
|
|
|
}
|
|
|
|
if (it->type() == Token::Type::Raw)
|
|
|
|
params.push_back(it->content());
|
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
|
|
|
}
|
|
|
|
|
2012-08-06 21:37:43 +02:00
|
|
|
Completions CommandManager::complete(const Context& context,
|
2012-08-23 23:56:35 +02:00
|
|
|
const String& command_line, CharCount cursor_pos)
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
2012-07-31 00:06:50 +02:00
|
|
|
TokenPosList pos_info;
|
|
|
|
TokenList tokens = parse(command_line, &pos_info);
|
2011-09-13 23:16:48 +02:00
|
|
|
|
2011-11-26 20:05:49 +01:00
|
|
|
size_t token_to_complete = tokens.size();
|
2011-09-13 23:16:48 +02:00
|
|
|
for (size_t i = 0; i < tokens.size(); ++i)
|
|
|
|
{
|
2012-07-31 00:06:50 +02:00
|
|
|
if (pos_info[i].first <= cursor_pos and pos_info[i].second >= cursor_pos)
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
|
|
|
token_to_complete = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-19 20:50:28 +02:00
|
|
|
if (token_to_complete == 0 or tokens.empty()) // command name completion
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
2012-08-23 23:56:35 +02:00
|
|
|
CharCount cmd_start = tokens.empty() ? 0 : pos_info[0].first;
|
2011-10-19 20:50:28 +02:00
|
|
|
Completions result(cmd_start, cursor_pos);
|
2012-04-14 03:17:09 +02:00
|
|
|
String prefix = command_line.substr(cmd_start,
|
|
|
|
cursor_pos - cmd_start);
|
2011-09-13 23:16:48 +02:00
|
|
|
|
|
|
|
for (auto& command : m_commands)
|
|
|
|
{
|
|
|
|
if (command.first.substr(0, prefix.length()) == prefix)
|
|
|
|
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
|
|
|
|
|
|
|
assert(not tokens.empty());
|
2012-07-31 00:06:50 +02:00
|
|
|
if (tokens[0].type() != Token::Type::Raw)
|
|
|
|
return Completions();
|
|
|
|
|
|
|
|
const String& command_name = tokens[0].content();
|
2011-09-16 11:18:51 +02:00
|
|
|
|
|
|
|
auto command_it = m_commands.find(command_name);
|
|
|
|
if (command_it == m_commands.end() or not command_it->second.completer)
|
|
|
|
return Completions();
|
|
|
|
|
2012-08-23 23:56:35 +02:00
|
|
|
CharCount start = token_to_complete < tokens.size() ?
|
2012-07-31 00:06:50 +02:00
|
|
|
pos_info[token_to_complete].first : cursor_pos;
|
2011-11-26 20:05:49 +01:00
|
|
|
Completions result(start , cursor_pos);
|
2012-08-23 23:56:35 +02:00
|
|
|
CharCount cursor_pos_in_token = cursor_pos - start;
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
std::vector<String> params;
|
|
|
|
for (auto token_it = tokens.begin()+1; token_it != tokens.end(); ++token_it)
|
|
|
|
params.push_back(token_it->content());
|
2012-08-06 21:37:43 +02:00
|
|
|
result.candidates = command_it->second.completer(context, params,
|
2011-09-16 11:18:51 +02:00
|
|
|
token_to_complete - 1,
|
|
|
|
cursor_pos_in_token);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-08-06 21:37:43 +02:00
|
|
|
CandidateList PerArgumentCommandCompleter::operator()(const Context& context,
|
|
|
|
const CommandParameters& params,
|
2011-09-16 11:18:51 +02:00
|
|
|
size_t token_to_complete,
|
2012-08-23 23:56:35 +02:00
|
|
|
CharCount 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())
|
2011-09-16 11:18:51 +02:00
|
|
|
return CandidateList();
|
|
|
|
|
|
|
|
// it is possible to try to complete a new argument
|
|
|
|
assert(token_to_complete <= params.size());
|
|
|
|
|
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();
|
2012-08-06 21:37:43 +02:00
|
|
|
return m_completers[token_to_complete](context, argument, pos_in_token);
|
2011-09-13 23:16:48 +02:00
|
|
|
}
|
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|