CommandParameters is a list of Tokens instead of Strings
CommandManager string parsing is less ad-hoc.
This commit is contained in:
parent
a3cb9bfc5e
commit
b65f8cc887
|
@ -37,8 +37,11 @@ static bool is_blank(char c)
|
||||||
return c == ' ' or c == '\t' or c == '\n';
|
return c == ' ' or c == '\t' or c == '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef std::vector<std::pair<size_t, size_t>> TokenList;
|
using TokenList = std::vector<Token>;
|
||||||
static TokenList split(const String& line)
|
using TokenPosList = std::vector<std::pair<size_t, size_t>>;
|
||||||
|
|
||||||
|
static TokenList parse(const String& line,
|
||||||
|
TokenPosList* opt_token_pos_info = NULL)
|
||||||
{
|
{
|
||||||
TokenList result;
|
TokenList result;
|
||||||
|
|
||||||
|
@ -50,18 +53,20 @@ static TokenList split(const String& line)
|
||||||
|
|
||||||
size_t token_start = pos;
|
size_t token_start = pos;
|
||||||
|
|
||||||
|
Token::Type type = Token::Type::Raw;
|
||||||
if (line[pos] == '"' or line[pos] == '\'' or line[pos] == '`')
|
if (line[pos] == '"' or line[pos] == '\'' or line[pos] == '`')
|
||||||
{
|
{
|
||||||
char delimiter = line[pos];
|
char delimiter = line[pos];
|
||||||
++pos;
|
|
||||||
token_start = delimiter == '`' ? pos - 1 : pos;
|
if (delimiter == '`')
|
||||||
|
type = Token::Type::ShellExpand;
|
||||||
|
|
||||||
|
token_start = ++pos;
|
||||||
|
|
||||||
while ((line[pos] != delimiter or line[pos-1] == '\\') and
|
while ((line[pos] != delimiter or line[pos-1] == '\\') and
|
||||||
pos != line.length())
|
pos != line.length())
|
||||||
++pos;
|
++pos;
|
||||||
|
|
||||||
if (delimiter == '`' and line[pos] == '`')
|
|
||||||
++pos;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
while (not is_blank(line[pos]) and pos != line.length() and
|
while (not is_blank(line[pos]) and pos != line.length() and
|
||||||
|
@ -69,10 +74,18 @@ static TokenList split(const String& line)
|
||||||
++pos;
|
++pos;
|
||||||
|
|
||||||
if (token_start != pos)
|
if (token_start != pos)
|
||||||
result.push_back(std::make_pair(token_start, pos));
|
{
|
||||||
|
if (opt_token_pos_info)
|
||||||
|
opt_token_pos_info->push_back({token_start, pos});
|
||||||
|
result.push_back({type, line.substr(token_start, pos - token_start)});
|
||||||
|
}
|
||||||
|
|
||||||
if (line[pos] == ';')
|
if (line[pos] == ';')
|
||||||
result.push_back(std::make_pair(pos, pos+1));
|
{
|
||||||
|
if (opt_token_pos_info)
|
||||||
|
opt_token_pos_info->push_back({pos, pos+1});
|
||||||
|
result.push_back(Token{ Token::Type::CommandSeparator });
|
||||||
|
}
|
||||||
|
|
||||||
++pos;
|
++pos;
|
||||||
}
|
}
|
||||||
|
@ -89,33 +102,20 @@ void CommandManager::execute(const String& command_line,
|
||||||
const Context& context,
|
const Context& context,
|
||||||
const EnvVarMap& env_vars)
|
const EnvVarMap& env_vars)
|
||||||
{
|
{
|
||||||
TokenList tokens = split(command_line);
|
TokenList tokens = parse(command_line);
|
||||||
if (tokens.empty())
|
execute(tokens, context, env_vars);
|
||||||
return;
|
|
||||||
|
|
||||||
std::vector<String> params;
|
|
||||||
for (auto it = tokens.begin(); it != tokens.end(); ++it)
|
|
||||||
{
|
|
||||||
params.push_back(command_line.substr(it->first,
|
|
||||||
it->second - it->first));
|
|
||||||
}
|
|
||||||
|
|
||||||
execute(params, context, env_vars);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void shell_eval(std::vector<String>& params,
|
static void shell_eval(TokenList& params,
|
||||||
const String& cmdline,
|
const String& cmdline,
|
||||||
const Context& context,
|
const Context& context,
|
||||||
const EnvVarMap& env_vars)
|
const EnvVarMap& env_vars)
|
||||||
{
|
{
|
||||||
String output = ShellManager::instance().eval(cmdline, context, env_vars);
|
String output = ShellManager::instance().eval(cmdline, context, env_vars);
|
||||||
TokenList tokens = split(output);
|
TokenList tokens = parse(output);
|
||||||
|
|
||||||
for (auto it = tokens.begin(); it != tokens.end(); ++it)
|
for (auto& token : tokens)
|
||||||
{
|
params.push_back(std::move(token));
|
||||||
params.push_back(output.substr(it->first,
|
|
||||||
it->second - it->first));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CommandManager::execute(const CommandParameters& params,
|
void CommandManager::execute(const CommandParameters& params,
|
||||||
|
@ -129,29 +129,16 @@ void CommandManager::execute(const CommandParameters& params,
|
||||||
auto end = begin;
|
auto end = begin;
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
while (end != params.end() and *end != ";")
|
while (end != params.end() and end->type() != Token::Type::CommandSeparator)
|
||||||
++end;
|
++end;
|
||||||
|
|
||||||
if (end != begin)
|
if (end != begin)
|
||||||
{
|
{
|
||||||
std::vector<String> expanded_params;
|
if (begin->type() != Token::Type::Raw)
|
||||||
auto command_it = m_commands.find(*begin);
|
throw command_not_found("unable to parse command name");
|
||||||
|
auto command_it = m_commands.find(begin->content());
|
||||||
if (command_it == m_commands.end() and
|
|
||||||
begin->front() == '`' and begin->back() == '`')
|
|
||||||
{
|
|
||||||
shell_eval(expanded_params,
|
|
||||||
begin->substr(1, begin->length() - 2),
|
|
||||||
context, env_vars);
|
|
||||||
if (not expanded_params.empty())
|
|
||||||
{
|
|
||||||
command_it = m_commands.find(expanded_params[0]);
|
|
||||||
expanded_params.erase(expanded_params.begin());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (command_it == m_commands.end())
|
if (command_it == m_commands.end())
|
||||||
throw command_not_found(*begin);
|
throw command_not_found(begin->content());
|
||||||
|
|
||||||
if (command_it->second.flags & IgnoreSemiColons)
|
if (command_it->second.flags & IgnoreSemiColons)
|
||||||
end = params.end();
|
end = params.end();
|
||||||
|
@ -160,18 +147,17 @@ void CommandManager::execute(const CommandParameters& params,
|
||||||
command_it->second.command(CommandParameters(begin + 1, end), context);
|
command_it->second.command(CommandParameters(begin + 1, end), context);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
TokenList expanded_tokens;
|
||||||
for (auto param = begin+1; param != end; ++param)
|
for (auto param = begin+1; param != end; ++param)
|
||||||
{
|
{
|
||||||
if (param->front() == '`' and param->back() == '`')
|
if (param->type() == Token::Type::ShellExpand)
|
||||||
shell_eval(expanded_params,
|
shell_eval(expanded_tokens, param->content(),
|
||||||
param->substr(1, param->length() - 2),
|
|
||||||
context, env_vars);
|
context, env_vars);
|
||||||
else
|
else
|
||||||
expanded_params.push_back(*param);
|
expanded_tokens.push_back(*param);
|
||||||
}
|
}
|
||||||
command_it->second.command(expanded_params, context);
|
command_it->second.command(expanded_tokens, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (end == params.end())
|
if (end == params.end())
|
||||||
|
@ -184,12 +170,13 @@ void CommandManager::execute(const CommandParameters& params,
|
||||||
|
|
||||||
Completions CommandManager::complete(const String& command_line, size_t cursor_pos)
|
Completions CommandManager::complete(const String& command_line, size_t cursor_pos)
|
||||||
{
|
{
|
||||||
TokenList tokens = split(command_line);
|
TokenPosList pos_info;
|
||||||
|
TokenList tokens = parse(command_line, &pos_info);
|
||||||
|
|
||||||
size_t token_to_complete = tokens.size();
|
size_t token_to_complete = tokens.size();
|
||||||
for (size_t i = 0; i < tokens.size(); ++i)
|
for (size_t i = 0; i < tokens.size(); ++i)
|
||||||
{
|
{
|
||||||
if (tokens[i].first <= cursor_pos and tokens[i].second >= cursor_pos)
|
if (pos_info[i].first <= cursor_pos and pos_info[i].second >= cursor_pos)
|
||||||
{
|
{
|
||||||
token_to_complete = i;
|
token_to_complete = i;
|
||||||
break;
|
break;
|
||||||
|
@ -198,7 +185,7 @@ Completions CommandManager::complete(const String& command_line, size_t cursor_p
|
||||||
|
|
||||||
if (token_to_complete == 0 or tokens.empty()) // command name completion
|
if (token_to_complete == 0 or tokens.empty()) // command name completion
|
||||||
{
|
{
|
||||||
size_t cmd_start = tokens.empty() ? 0 : tokens[0].first;
|
size_t cmd_start = tokens.empty() ? 0 : pos_info[0].first;
|
||||||
Completions result(cmd_start, cursor_pos);
|
Completions result(cmd_start, cursor_pos);
|
||||||
String prefix = command_line.substr(cmd_start,
|
String prefix = command_line.substr(cmd_start,
|
||||||
cursor_pos - cmd_start);
|
cursor_pos - cmd_start);
|
||||||
|
@ -214,26 +201,21 @@ Completions CommandManager::complete(const String& command_line, size_t cursor_p
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(not tokens.empty());
|
assert(not tokens.empty());
|
||||||
String command_name =
|
if (tokens[0].type() != Token::Type::Raw)
|
||||||
command_line.substr(tokens[0].first,
|
return Completions();
|
||||||
tokens[0].second - tokens[0].first);
|
|
||||||
|
const String& command_name = tokens[0].content();
|
||||||
|
|
||||||
auto command_it = m_commands.find(command_name);
|
auto command_it = m_commands.find(command_name);
|
||||||
if (command_it == m_commands.end() or not command_it->second.completer)
|
if (command_it == m_commands.end() or not command_it->second.completer)
|
||||||
return Completions();
|
return Completions();
|
||||||
|
|
||||||
std::vector<String> params;
|
|
||||||
for (auto it = tokens.begin() + 1; it != tokens.end(); ++it)
|
|
||||||
{
|
|
||||||
params.push_back(command_line.substr(it->first,
|
|
||||||
it->second - it->first));
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t start = token_to_complete < tokens.size() ?
|
size_t start = token_to_complete < tokens.size() ?
|
||||||
tokens[token_to_complete].first : cursor_pos;
|
pos_info[token_to_complete].first : cursor_pos;
|
||||||
Completions result(start , cursor_pos);
|
Completions result(start , cursor_pos);
|
||||||
size_t cursor_pos_in_token = cursor_pos - start;
|
size_t cursor_pos_in_token = cursor_pos - start;
|
||||||
|
|
||||||
|
CommandParameters params(tokens.begin()+1, tokens.end());
|
||||||
result.candidates = command_it->second.completer(params,
|
result.candidates = command_it->second.completer(params,
|
||||||
token_to_complete - 1,
|
token_to_complete - 1,
|
||||||
cursor_pos_in_token);
|
cursor_pos_in_token);
|
||||||
|
@ -244,14 +226,16 @@ CandidateList PerArgumentCommandCompleter::operator()(const CommandParameters& p
|
||||||
size_t token_to_complete,
|
size_t token_to_complete,
|
||||||
size_t pos_in_token) const
|
size_t pos_in_token) const
|
||||||
{
|
{
|
||||||
if (token_to_complete >= m_completers.size())
|
if (token_to_complete >= m_completers.size() or
|
||||||
|
(token_to_complete < params.size() and
|
||||||
|
params[token_to_complete].type() != Token::Type::Raw))
|
||||||
return CandidateList();
|
return CandidateList();
|
||||||
|
|
||||||
// it is possible to try to complete a new argument
|
// it is possible to try to complete a new argument
|
||||||
assert(token_to_complete <= params.size());
|
assert(token_to_complete <= params.size());
|
||||||
|
|
||||||
const String& argument = token_to_complete < params.size() ?
|
const String& argument = token_to_complete < params.size() ?
|
||||||
params[token_to_complete] : String();
|
params[token_to_complete].content() : String();
|
||||||
return m_completers[token_to_complete](argument, pos_in_token);
|
return m_completers[token_to_complete](argument, pos_in_token);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,31 @@ struct wrong_argument_count : runtime_error
|
||||||
wrong_argument_count() : runtime_error("wrong argument count") {}
|
wrong_argument_count() : runtime_error("wrong argument count") {}
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef memoryview<String> CommandParameters;
|
struct Token
|
||||||
|
{
|
||||||
|
enum class Type
|
||||||
|
{
|
||||||
|
Raw,
|
||||||
|
ShellExpand,
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
|
||||||
|
using CommandParameters = memoryview<Token>;
|
||||||
|
|
||||||
typedef std::function<void (const CommandParameters&,
|
typedef std::function<void (const CommandParameters&,
|
||||||
const Context& context)> Command;
|
const Context& context)> Command;
|
||||||
|
|
||||||
|
|
157
src/commands.cc
157
src/commands.cc
|
@ -61,16 +61,19 @@ struct ParametersParser
|
||||||
{
|
{
|
||||||
for (size_t i = 0; i < params.size(); ++i)
|
for (size_t i = 0; i < params.size(); ++i)
|
||||||
{
|
{
|
||||||
if (params[i][0] == '-')
|
if (params[i].type() != Token::Type::Raw)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (params[i].content()[0] == '-')
|
||||||
{
|
{
|
||||||
auto it = options.find(params[i].substr(1));
|
auto it = options.find(params[i].content().substr(1));
|
||||||
if (it == options.end())
|
if (it == options.end())
|
||||||
throw unknown_option(params[i]);
|
throw unknown_option(params[i].content());
|
||||||
|
|
||||||
if (it->second)
|
if (it->second)
|
||||||
{
|
{
|
||||||
if (i + 1 == params.size() or params[i+1][0] == '-')
|
if (i + 1 == params.size() or params[i+1].content()[0] == '-')
|
||||||
throw missing_option_value(params[i]);
|
throw missing_option_value(params[i].content());
|
||||||
|
|
||||||
m_positional[i+1] = false;
|
m_positional[i+1] = false;
|
||||||
}
|
}
|
||||||
|
@ -78,7 +81,7 @@ struct ParametersParser
|
||||||
}
|
}
|
||||||
|
|
||||||
// all options following -- are positional
|
// all options following -- are positional
|
||||||
if (params[i] == "--")
|
if (params[i].content() == "--")
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,12 +90,15 @@ struct ParametersParser
|
||||||
bool has_option(const String& name) const
|
bool has_option(const String& name) const
|
||||||
{
|
{
|
||||||
assert(m_options.find(name) != m_options.end());
|
assert(m_options.find(name) != m_options.end());
|
||||||
for (auto param : m_params)
|
for (auto& param : m_params)
|
||||||
{
|
{
|
||||||
if (param[0] == '-' and param.substr(1) == name)
|
if (param.type() != Token::Type::Raw)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (param.content()[0] == '-' and param.content().substr(1) == name)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (param == "--")
|
if (param.content() == "--")
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
@ -108,10 +114,13 @@ struct ParametersParser
|
||||||
|
|
||||||
for (size_t i = 0; i < m_params.size(); ++i)
|
for (size_t i = 0; i < m_params.size(); ++i)
|
||||||
{
|
{
|
||||||
if (m_params[i][0] == '-' and m_params[i].substr(1) == name)
|
if (m_params[i].type() != Token::Type::Raw)
|
||||||
return m_params[i+1];
|
continue;
|
||||||
|
|
||||||
if (m_params[i] == "--")
|
if (m_params[i].content()[0] == '-' and m_params[i].content().substr(1) == name)
|
||||||
|
return m_params[i+1].content();
|
||||||
|
|
||||||
|
if (m_params[i].content() == "--")
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
static String empty;
|
static String empty;
|
||||||
|
@ -141,12 +150,18 @@ struct ParametersParser
|
||||||
iterator(const ParametersParser& parser, size_t index)
|
iterator(const ParametersParser& parser, size_t index)
|
||||||
: m_parser(parser), m_index(index) {}
|
: m_parser(parser), m_index(index) {}
|
||||||
|
|
||||||
const String& operator*() const
|
const Token& operator*() const
|
||||||
{
|
{
|
||||||
assert(m_parser.m_positional[m_index]);
|
assert(m_parser.m_positional[m_index]);
|
||||||
return m_parser.m_params[m_index];
|
return m_parser.m_params[m_index];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const Token* operator->() const
|
||||||
|
{
|
||||||
|
assert(m_parser.m_positional[m_index]);
|
||||||
|
return &m_parser.m_params[m_index];
|
||||||
|
}
|
||||||
|
|
||||||
iterator& operator++()
|
iterator& operator++()
|
||||||
{
|
{
|
||||||
while (m_index < m_parser.m_positional.size() and
|
while (m_index < m_parser.m_positional.size() and
|
||||||
|
@ -191,7 +206,7 @@ struct ParametersParser
|
||||||
}
|
}
|
||||||
|
|
||||||
// access positional parameter by index
|
// access positional parameter by index
|
||||||
const String& operator[] (size_t index) const
|
const Token& operator[] (size_t index) const
|
||||||
{
|
{
|
||||||
assert(index < positional_count());
|
assert(index < positional_count());
|
||||||
iterator it = begin();
|
iterator it = begin();
|
||||||
|
@ -230,7 +245,7 @@ void edit(const CommandParameters& params, const Context& context)
|
||||||
if (params.size() == 0 or params.size() > 3)
|
if (params.size() == 0 or params.size() > 3)
|
||||||
throw wrong_argument_count();
|
throw wrong_argument_count();
|
||||||
|
|
||||||
String filename = params[0];
|
const String& filename = params[0].content();
|
||||||
|
|
||||||
Buffer* buffer = nullptr;
|
Buffer* buffer = nullptr;
|
||||||
if (not force_reload)
|
if (not force_reload)
|
||||||
|
@ -242,9 +257,9 @@ void edit(const CommandParameters& params, const Context& context)
|
||||||
|
|
||||||
if (params.size() > 1)
|
if (params.size() > 1)
|
||||||
{
|
{
|
||||||
int line = std::max(0, str_to_int(params[1]) - 1);
|
int line = std::max(0, str_to_int(params[1].content()) - 1);
|
||||||
int column = params.size() > 2 ?
|
int column = params.size() > 2 ?
|
||||||
std::max(0, str_to_int(params[2]) - 1) : 0;
|
std::max(0, str_to_int(params[2].content()) - 1) : 0;
|
||||||
|
|
||||||
window.select(window.buffer().iterator_at({line, column}));
|
window.select(window.buffer().iterator_at({line, column}));
|
||||||
}
|
}
|
||||||
|
@ -259,7 +274,7 @@ void write_buffer(const CommandParameters& params, const Context& context)
|
||||||
|
|
||||||
Buffer& buffer = context.window().buffer();
|
Buffer& buffer = context.window().buffer();
|
||||||
String filename = params.empty() ? buffer.name()
|
String filename = params.empty() ? buffer.name()
|
||||||
: parse_filename(params[0]);
|
: parse_filename(params[0].content());
|
||||||
|
|
||||||
write_buffer_to_file(buffer, filename);
|
write_buffer_to_file(buffer, filename);
|
||||||
buffer.notify_saved();
|
buffer.notify_saved();
|
||||||
|
@ -307,9 +322,10 @@ void show_buffer(const CommandParameters& params, const Context& context)
|
||||||
if (params.size() != 1)
|
if (params.size() != 1)
|
||||||
throw wrong_argument_count();
|
throw wrong_argument_count();
|
||||||
|
|
||||||
Buffer* buffer = BufferManager::instance().get_buffer(params[0]);
|
const String& buffer_name = params[0].content();
|
||||||
|
Buffer* buffer = BufferManager::instance().get_buffer(buffer_name);
|
||||||
if (not buffer)
|
if (not buffer)
|
||||||
throw runtime_error("buffer " + params[0] + " does not exists");
|
throw runtime_error("buffer " + buffer_name + " does not exists");
|
||||||
|
|
||||||
main_context = Context(*buffer->get_or_create_window());
|
main_context = Context(*buffer->get_or_create_window());
|
||||||
}
|
}
|
||||||
|
@ -325,12 +341,13 @@ void delete_buffer(const CommandParameters& params, const Context& context)
|
||||||
buffer = &context.buffer();
|
buffer = &context.buffer();
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
buffer = manager.get_buffer(params[0]);
|
const String& buffer_name = params[0].content();
|
||||||
|
buffer = manager.get_buffer(buffer_name);
|
||||||
if (not buffer)
|
if (not buffer)
|
||||||
throw runtime_error("buffer " + params[0] + " does not exists");
|
throw runtime_error("buffer " + buffer_name + " does not exists");
|
||||||
}
|
}
|
||||||
if (buffer->type()!= Buffer::Type::Scratch and buffer->is_modified())
|
if (buffer->type()!= Buffer::Type::Scratch and buffer->is_modified())
|
||||||
throw runtime_error("buffer " + params[0] + " is modified");
|
throw runtime_error("buffer " + buffer->name() + " is modified");
|
||||||
|
|
||||||
if (&main_context.buffer() == buffer)
|
if (&main_context.buffer() == buffer)
|
||||||
{
|
{
|
||||||
|
@ -357,8 +374,10 @@ void add_highlighter(const CommandParameters& params, const Context& context)
|
||||||
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
||||||
|
|
||||||
auto begin = parser.begin();
|
auto begin = parser.begin();
|
||||||
const String& name = *begin;
|
const String& name = begin->content();
|
||||||
std::vector<String> highlighter_params(++begin, parser.end());
|
std::vector<String> highlighter_params;
|
||||||
|
for (++begin; begin != parser.end(); ++begin)
|
||||||
|
highlighter_params.push_back(begin->content());
|
||||||
|
|
||||||
Window& window = context.window();
|
Window& window = context.window();
|
||||||
HighlighterGroup& group = parser.has_option("group") ?
|
HighlighterGroup& group = parser.has_option("group") ?
|
||||||
|
@ -380,7 +399,7 @@ void rm_highlighter(const CommandParameters& params, const Context& context)
|
||||||
window.highlighters().get_group(parser.option_value("group"))
|
window.highlighters().get_group(parser.option_value("group"))
|
||||||
: window.highlighters();
|
: window.highlighters();
|
||||||
|
|
||||||
group.remove(*parser.begin());
|
group.remove(parser.begin()->content());
|
||||||
}
|
}
|
||||||
|
|
||||||
void add_filter(const CommandParameters& params, const Context& context)
|
void add_filter(const CommandParameters& params, const Context& context)
|
||||||
|
@ -392,8 +411,10 @@ void add_filter(const CommandParameters& params, const Context& context)
|
||||||
FilterRegistry& registry = FilterRegistry::instance();
|
FilterRegistry& registry = FilterRegistry::instance();
|
||||||
|
|
||||||
auto begin = parser.begin();
|
auto begin = parser.begin();
|
||||||
const String& name = *begin;
|
const String& name = begin->content();
|
||||||
std::vector<String> filter_params(++begin, parser.end());
|
std::vector<String> filter_params;
|
||||||
|
for (++begin; begin != parser.end(); ++begin)
|
||||||
|
filter_params.push_back(begin->content());
|
||||||
|
|
||||||
Window& window = context.window();
|
Window& window = context.window();
|
||||||
FilterGroup& group = parser.has_option("group") ?
|
FilterGroup& group = parser.has_option("group") ?
|
||||||
|
@ -414,7 +435,7 @@ void rm_filter(const CommandParameters& params, const Context& context)
|
||||||
window.filters().get_group(parser.option_value("group"))
|
window.filters().get_group(parser.option_value("group"))
|
||||||
: window.filters();
|
: window.filters();
|
||||||
|
|
||||||
group.remove(*parser.begin());
|
group.remove(parser.begin()->content());
|
||||||
}
|
}
|
||||||
|
|
||||||
void add_hook(const CommandParameters& params, const Context& context)
|
void add_hook(const CommandParameters& params, const Context& context)
|
||||||
|
@ -422,8 +443,8 @@ void add_hook(const CommandParameters& params, const Context& context)
|
||||||
if (params.size() < 4)
|
if (params.size() < 4)
|
||||||
throw wrong_argument_count();
|
throw wrong_argument_count();
|
||||||
|
|
||||||
String regex = params[2];
|
String regex = params[2].content();
|
||||||
std::vector<String> hook_params(params.begin()+3, params.end());
|
std::vector<Token> hook_params(params.begin()+3, params.end());
|
||||||
|
|
||||||
auto hook_func = [=](const String& param, const Context& context) {
|
auto hook_func = [=](const String& param, const Context& context) {
|
||||||
if (boost::regex_match(param.begin(), param.end(),
|
if (boost::regex_match(param.begin(), param.end(),
|
||||||
|
@ -431,14 +452,16 @@ void add_hook(const CommandParameters& params, const Context& context)
|
||||||
CommandManager::instance().execute(hook_params, context);
|
CommandManager::instance().execute(hook_params, context);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (params[0] == "global")
|
const String& scope = params[0].content();
|
||||||
GlobalHookManager::instance().add_hook(params[1], hook_func);
|
const String& name = params[1].content();
|
||||||
else if (params[0] == "buffer")
|
if (scope == "global")
|
||||||
context.buffer().hook_manager().add_hook(params[1], hook_func);
|
GlobalHookManager::instance().add_hook(name, hook_func);
|
||||||
else if (params[0] == "window")
|
else if (scope == "buffer")
|
||||||
context.window().hook_manager().add_hook(params[1], hook_func);
|
context.buffer().hook_manager().add_hook(name, hook_func);
|
||||||
|
else if (scope == "window")
|
||||||
|
context.window().hook_manager().add_hook(name , hook_func);
|
||||||
else
|
else
|
||||||
throw runtime_error("error: no such hook container " + params[0]);
|
throw runtime_error("error: no such hook container " + scope);
|
||||||
}
|
}
|
||||||
|
|
||||||
EnvVarMap params_to_env_var_map(const CommandParameters& params)
|
EnvVarMap params_to_env_var_map(const CommandParameters& params)
|
||||||
|
@ -448,7 +471,7 @@ EnvVarMap params_to_env_var_map(const CommandParameters& params)
|
||||||
for (size_t i = 0; i < params.size(); ++i)
|
for (size_t i = 0; i < params.size(); ++i)
|
||||||
{
|
{
|
||||||
param_name[sizeof(param_name) - 2] = '0' + i;
|
param_name[sizeof(param_name) - 2] = '0' + i;
|
||||||
vars[param_name] = params[i];
|
vars[param_name] = params[i].content();
|
||||||
}
|
}
|
||||||
return vars;
|
return vars;
|
||||||
}
|
}
|
||||||
|
@ -465,13 +488,13 @@ void define_command(const CommandParameters& params, const Context& context)
|
||||||
throw wrong_argument_count();
|
throw wrong_argument_count();
|
||||||
|
|
||||||
auto begin = parser.begin();
|
auto begin = parser.begin();
|
||||||
const String& cmd_name = *begin;
|
const String& cmd_name = begin->content();
|
||||||
|
|
||||||
if (CommandManager::instance().command_defined(cmd_name) and
|
if (CommandManager::instance().command_defined(cmd_name) and
|
||||||
not parser.has_option("allow-override"))
|
not parser.has_option("allow-override"))
|
||||||
throw runtime_error("command '" + cmd_name + "' already defined");
|
throw runtime_error("command '" + cmd_name + "' already defined");
|
||||||
|
|
||||||
std::vector<String> cmd_params(++begin, parser.end());
|
std::vector<Token> cmd_params(++begin, parser.end());
|
||||||
Command cmd;
|
Command cmd;
|
||||||
if (parser.has_option("env-params"))
|
if (parser.has_option("env-params"))
|
||||||
{
|
{
|
||||||
|
@ -483,7 +506,7 @@ void define_command(const CommandParameters& params, const Context& context)
|
||||||
else if (parser.has_option("append-params"))
|
else if (parser.has_option("append-params"))
|
||||||
{
|
{
|
||||||
cmd = [=](const CommandParameters& params, const Context& context) {
|
cmd = [=](const CommandParameters& params, const Context& context) {
|
||||||
std::vector<String> merged_params = cmd_params;
|
std::vector<Token> merged_params = cmd_params;
|
||||||
for (auto& param : params)
|
for (auto& param : params)
|
||||||
merged_params.push_back(param);
|
merged_params.push_back(param);
|
||||||
CommandManager::instance().execute(merged_params, context);
|
CommandManager::instance().execute(merged_params, context);
|
||||||
|
@ -522,7 +545,7 @@ void echo_message(const CommandParameters& params, const Context& context)
|
||||||
{
|
{
|
||||||
String message;
|
String message;
|
||||||
for (auto& param : params)
|
for (auto& param : params)
|
||||||
message += param + " ";
|
message += param.content() + " ";
|
||||||
print_status(message);
|
print_status(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -532,7 +555,7 @@ void exec_commands_in_file(const CommandParameters& params,
|
||||||
if (params.size() != 1)
|
if (params.size() != 1)
|
||||||
throw wrong_argument_count();
|
throw wrong_argument_count();
|
||||||
|
|
||||||
String file_content = read_file(parse_filename(params[0]));
|
String file_content = read_file(parse_filename(params[0].content()));
|
||||||
CommandManager& cmd_manager = CommandManager::instance();
|
CommandManager& cmd_manager = CommandManager::instance();
|
||||||
|
|
||||||
size_t pos = 0;
|
size_t pos = 0;
|
||||||
|
@ -582,7 +605,7 @@ void exec_commands_in_file(const CommandParameters& params,
|
||||||
{
|
{
|
||||||
if (cat_with_previous)
|
if (cat_with_previous)
|
||||||
throw runtime_error("while executing commands in \"" +
|
throw runtime_error("while executing commands in \"" +
|
||||||
params[0] +
|
params[0].content() +
|
||||||
"\": last command not complete");
|
"\": last command not complete");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -596,7 +619,7 @@ void exec_commands_in_runtime_file(const CommandParameters& params,
|
||||||
if (params.size() != 1)
|
if (params.size() != 1)
|
||||||
throw wrong_argument_count();
|
throw wrong_argument_count();
|
||||||
|
|
||||||
const String& filename = params[0];
|
const String& filename = params[0].content();
|
||||||
char buffer[2048];
|
char buffer[2048];
|
||||||
#if defined(__linux__)
|
#if defined(__linux__)
|
||||||
ssize_t res = readlink("/proc/self/exe", buffer, 2048 - filename.length());
|
ssize_t res = readlink("/proc/self/exe", buffer, 2048 - filename.length());
|
||||||
|
@ -615,7 +638,7 @@ void exec_commands_in_runtime_file(const CommandParameters& params,
|
||||||
if (ptr)
|
if (ptr)
|
||||||
{
|
{
|
||||||
strcpy(ptr+1, filename.c_str());
|
strcpy(ptr+1, filename.c_str());
|
||||||
exec_commands_in_file(CommandParameters(buffer), main_context);
|
exec_commands_in_file(CommandParameters(Token(buffer)), main_context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -625,7 +648,7 @@ void set_option(OptionManager& option_manager, const CommandParameters& params,
|
||||||
if (params.size() != 2)
|
if (params.size() != 2)
|
||||||
throw wrong_argument_count();
|
throw wrong_argument_count();
|
||||||
|
|
||||||
option_manager.set_option(params[0], Option(params[1]));
|
option_manager.set_option(params[0].content(), Option(params[1].content()));
|
||||||
}
|
}
|
||||||
|
|
||||||
class RegisterRestorer
|
class RegisterRestorer
|
||||||
|
@ -737,7 +760,7 @@ void exec_string(const CommandParameters& params,
|
||||||
if (params.size() != 1)
|
if (params.size() != 1)
|
||||||
throw wrong_argument_count();
|
throw wrong_argument_count();
|
||||||
|
|
||||||
KeyList keys = parse_keys(params[0]);
|
KeyList keys = parse_keys(params[0].content());
|
||||||
|
|
||||||
exec_keys(keys, context);
|
exec_keys(keys, context);
|
||||||
}
|
}
|
||||||
|
@ -759,14 +782,14 @@ void menu(const CommandParameters& params,
|
||||||
|
|
||||||
if (count == 2 and parser.has_option("auto-single"))
|
if (count == 2 and parser.has_option("auto-single"))
|
||||||
{
|
{
|
||||||
CommandManager::instance().execute(parser[1], context);
|
CommandManager::instance().execute(parser[1].content(), context);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::ostringstream oss;
|
std::ostringstream oss;
|
||||||
for (int i = 0; i < count; i += 2)
|
for (int i = 0; i < count; i += 2)
|
||||||
{
|
{
|
||||||
oss << i/2 + 1 << "[" << parser[i] << "] ";
|
oss << i/2 + 1 << "[" << parser[i].content() << "] ";
|
||||||
}
|
}
|
||||||
oss << "(empty cancels): ";
|
oss << "(empty cancels): ";
|
||||||
|
|
||||||
|
@ -774,7 +797,7 @@ void menu(const CommandParameters& params,
|
||||||
int i = str_to_int(choice);
|
int i = str_to_int(choice);
|
||||||
|
|
||||||
if (i > 0 and i < (count / 2) + 1)
|
if (i > 0 and i < (count / 2) + 1)
|
||||||
CommandManager::instance().execute(parser[(i-1)*2+1], context);
|
CommandManager::instance().execute(parser[(i-1)*2+1].content(), context);
|
||||||
}
|
}
|
||||||
|
|
||||||
void try_catch(const CommandParameters& params,
|
void try_catch(const CommandParameters& params,
|
||||||
|
@ -783,7 +806,7 @@ void try_catch(const CommandParameters& params,
|
||||||
size_t i = 0;
|
size_t i = 0;
|
||||||
for (; i < params.size(); ++i)
|
for (; i < params.size(); ++i)
|
||||||
{
|
{
|
||||||
if (params[i] == "catch")
|
if (params[i].content() == "catch")
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -834,10 +857,10 @@ void register_commands()
|
||||||
{
|
{
|
||||||
Window& w = main_context.window();
|
Window& w = main_context.window();
|
||||||
const String& arg = token_to_complete < params.size() ?
|
const String& arg = token_to_complete < params.size() ?
|
||||||
params[token_to_complete] : String();
|
params[token_to_complete].content() : String();
|
||||||
if (token_to_complete == 1 and params[0] == "-group")
|
if (token_to_complete == 1 and params[0].content() == "-group")
|
||||||
return w.highlighters().complete_group_id(arg, pos_in_token);
|
return w.highlighters().complete_group_id(arg, pos_in_token);
|
||||||
else if (token_to_complete == 0 or (token_to_complete == 2 and params[0] == "-group"))
|
else if (token_to_complete == 0 or (token_to_complete == 2 and params[0].content() == "-group"))
|
||||||
return HighlighterRegistry::instance().complete_highlighter(arg, pos_in_token);
|
return HighlighterRegistry::instance().complete_highlighter(arg, pos_in_token);
|
||||||
else
|
else
|
||||||
return CandidateList();
|
return CandidateList();
|
||||||
|
@ -848,11 +871,11 @@ void register_commands()
|
||||||
{
|
{
|
||||||
Window& w = main_context.window();
|
Window& w = main_context.window();
|
||||||
const String& arg = token_to_complete < params.size() ?
|
const String& arg = token_to_complete < params.size() ?
|
||||||
params[token_to_complete] : String();
|
params[token_to_complete].content() : String();
|
||||||
if (token_to_complete == 1 and params[0] == "-group")
|
if (token_to_complete == 1 and params[0].content() == "-group")
|
||||||
return w.highlighters().complete_group_id(arg, pos_in_token);
|
return w.highlighters().complete_group_id(arg, pos_in_token);
|
||||||
else if (token_to_complete == 2 and params[0] == "-group")
|
else if (token_to_complete == 2 and params[0].content() == "-group")
|
||||||
return w.highlighters().get_group(params[1]).complete_id(arg, pos_in_token);
|
return w.highlighters().get_group(params[1].content()).complete_id(arg, pos_in_token);
|
||||||
else
|
else
|
||||||
return w.highlighters().complete_id(arg, pos_in_token);
|
return w.highlighters().complete_id(arg, pos_in_token);
|
||||||
});
|
});
|
||||||
|
@ -862,10 +885,10 @@ void register_commands()
|
||||||
{
|
{
|
||||||
Window& w = main_context.window();
|
Window& w = main_context.window();
|
||||||
const String& arg = token_to_complete < params.size() ?
|
const String& arg = token_to_complete < params.size() ?
|
||||||
params[token_to_complete] : String();
|
params[token_to_complete].content() : String();
|
||||||
if (token_to_complete == 1 and params[0] == "-group")
|
if (token_to_complete == 1 and params[0].content() == "-group")
|
||||||
return w.filters().complete_group_id(arg, pos_in_token);
|
return w.filters().complete_group_id(arg, pos_in_token);
|
||||||
else if (token_to_complete == 0 or (token_to_complete == 2 and params[0] == "-group"))
|
else if (token_to_complete == 0 or (token_to_complete == 2 and params[0].content() == "-group"))
|
||||||
return FilterRegistry::instance().complete_filter(arg, pos_in_token);
|
return FilterRegistry::instance().complete_filter(arg, pos_in_token);
|
||||||
else
|
else
|
||||||
return CandidateList();
|
return CandidateList();
|
||||||
|
@ -876,11 +899,11 @@ void register_commands()
|
||||||
{
|
{
|
||||||
Window& w = main_context.window();
|
Window& w = main_context.window();
|
||||||
const String& arg = token_to_complete < params.size() ?
|
const String& arg = token_to_complete < params.size() ?
|
||||||
params[token_to_complete] : String();
|
params[token_to_complete].content() : String();
|
||||||
if (token_to_complete == 1 and params[0] == "-group")
|
if (token_to_complete == 1 and params[0].content() == "-group")
|
||||||
return w.filters().complete_group_id(arg, pos_in_token);
|
return w.filters().complete_group_id(arg, pos_in_token);
|
||||||
else if (token_to_complete == 2 and params[0] == "-group")
|
else if (token_to_complete == 2 and params[0].content() == "-group")
|
||||||
return w.filters().get_group(params[1]).complete_id(arg, pos_in_token);
|
return w.filters().get_group(params[1].content()).complete_id(arg, pos_in_token);
|
||||||
else
|
else
|
||||||
return w.filters().complete_id(arg, pos_in_token);
|
return w.filters().complete_id(arg, pos_in_token);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user