2011-09-07 20:16:56 +02:00
|
|
|
#include "command_manager.hh"
|
|
|
|
|
2014-10-30 00:22:54 +01:00
|
|
|
#include "alias_registry.hh"
|
2011-09-16 11:18:51 +02:00
|
|
|
#include "assert.hh"
|
2017-08-29 10:23:03 +02:00
|
|
|
#include "buffer_utils.hh"
|
2012-02-13 22:38:07 +01:00
|
|
|
#include "context.hh"
|
2017-03-15 19:25:59 +01:00
|
|
|
#include "flags.hh"
|
2017-08-29 10:23:03 +02:00
|
|
|
#include "optional.hh"
|
|
|
|
#include "ranges.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
|
|
|
|
{
|
|
|
|
|
2017-04-10 22:33:20 +02:00
|
|
|
bool CommandManager::command_defined(StringView command_name) const
|
2012-06-02 17:49:35 +02:00
|
|
|
{
|
2014-10-30 00:22:54 +01:00
|
|
|
return m_commands.find(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,
|
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,
|
2012-11-22 14:28:14 +01:00
|
|
|
CommandCompleter completer)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2017-11-04 09:00:34 +01:00
|
|
|
m_commands[command_name] = { std::move(func),
|
2014-04-08 20:54:32 +02:00
|
|
|
std::move(docstring),
|
|
|
|
std::move(param_desc),
|
|
|
|
flags,
|
2015-02-08 20:04:20 +01:00
|
|
|
std::move(helper),
|
2014-04-08 20:54:32 +02:00
|
|
|
std::move(completer) };
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2013-07-28 16:40:02 +02:00
|
|
|
struct parse_error : runtime_error
|
|
|
|
{
|
2014-11-15 19:45:56 +01:00
|
|
|
parse_error(StringView error)
|
2015-03-31 00:06:02 +02:00
|
|
|
: runtime_error{format("parse error: {}", error)} {}
|
2013-07-28 16:40:02 +02:00
|
|
|
};
|
2012-11-21 13:56:52 +01:00
|
|
|
|
2012-08-02 06:41:55 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2015-08-27 21:48:51 +02:00
|
|
|
struct Reader
|
|
|
|
{
|
|
|
|
public:
|
2018-02-03 23:21:15 +01:00
|
|
|
Reader(StringView s) : str{s}, pos{s.begin()}, line_start{s.begin()}, line{} {}
|
2017-01-29 14:49:45 +01:00
|
|
|
|
2015-08-27 21:48:51 +02:00
|
|
|
[[gnu::always_inline]]
|
2018-02-03 23:21:15 +01:00
|
|
|
Codepoint operator*() const
|
2017-04-19 22:52:27 +02:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
kak_assert(pos < str.end());
|
|
|
|
return utf8::codepoint(pos, str.end());
|
2017-04-19 22:52:27 +02:00
|
|
|
}
|
2015-08-27 21:48:51 +02:00
|
|
|
|
|
|
|
Reader& operator++()
|
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
kak_assert(pos < str.end());
|
|
|
|
if (*pos == '\n')
|
|
|
|
++line;
|
|
|
|
utf8::to_next(pos, str.end());
|
2015-08-27 21:48:51 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[gnu::always_inline]]
|
2018-02-03 23:21:15 +01:00
|
|
|
explicit operator bool() const { return pos < str.end(); }
|
2015-08-27 21:48:51 +02:00
|
|
|
|
|
|
|
[[gnu::always_inline]]
|
2018-02-03 23:21:15 +01:00
|
|
|
StringView substr_from(const char* start) const
|
2015-08-27 21:48:51 +02:00
|
|
|
{
|
2017-04-19 22:52:27 +02:00
|
|
|
kak_assert(start <= pos);
|
2018-02-03 23:21:15 +01:00
|
|
|
return {start, pos};
|
2015-08-27 21:48:51 +02:00
|
|
|
}
|
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
Optional<Codepoint> peek_next() const
|
2015-08-27 21:48:51 +02:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
auto next = utf8::next(pos, str.end());
|
|
|
|
if (next != str.end())
|
|
|
|
return utf8::codepoint(next, str.end());
|
2015-08-27 21:48:51 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
DisplayCoord coord() const
|
|
|
|
{
|
|
|
|
return {line, utf8::column_distance(line_start, pos)};
|
|
|
|
}
|
|
|
|
|
2015-08-27 21:48:51 +02:00
|
|
|
StringView str;
|
2018-02-03 23:21:15 +01:00
|
|
|
const char* pos;
|
|
|
|
const char* line_start;
|
|
|
|
LineCount line;
|
2015-08-27 21:48:51 +02:00
|
|
|
};
|
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
bool is_command_separator(Codepoint c)
|
2012-07-31 14:22:57 +02:00
|
|
|
{
|
|
|
|
return c == ';' or c == '\n';
|
|
|
|
}
|
|
|
|
|
2015-08-27 21:48:51 +02:00
|
|
|
template<typename Func>
|
|
|
|
String get_until_delimiter(Reader& reader, Func is_delimiter)
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
auto beg = reader.pos;
|
2013-06-27 20:07:26 +02:00
|
|
|
String str;
|
2015-08-27 21:48:51 +02:00
|
|
|
bool was_antislash = false;
|
|
|
|
|
|
|
|
while (reader)
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
const Codepoint c = *reader;
|
2015-08-27 21:48:51 +02:00
|
|
|
if (is_delimiter(c))
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
str += reader.substr_from(beg);
|
|
|
|
if (was_antislash)
|
2015-07-25 09:56:27 +02:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
str.back() = c;
|
|
|
|
beg = reader.pos+1;
|
2015-07-25 09:56:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return str;
|
2013-06-27 20:07:26 +02:00
|
|
|
}
|
2015-08-27 21:48:51 +02:00
|
|
|
was_antislash = c == '\\';
|
|
|
|
++reader;
|
2013-06-27 20:07:26 +02:00
|
|
|
}
|
2018-02-03 23:21:15 +01:00
|
|
|
if (beg < reader.str.end())
|
2015-08-27 21:48:51 +02:00
|
|
|
str += reader.substr_from(beg);
|
2014-03-05 21:57:12 +01:00
|
|
|
return str;
|
2013-06-27 20:07:26 +02:00
|
|
|
}
|
|
|
|
|
2015-08-27 21:48:51 +02:00
|
|
|
[[gnu::always_inline]]
|
2018-02-03 23:21:15 +01:00
|
|
|
inline String get_until_delimiter(Reader& reader, Codepoint c)
|
2013-12-29 19:37:48 +01:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
return get_until_delimiter(reader, [c](Codepoint ch) { return c == ch; });
|
2015-08-27 21:48:51 +02:00
|
|
|
}
|
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
StringView get_until_closing_delimiter(Reader& reader, Codepoint opening_delimiter,
|
|
|
|
Codepoint closing_delimiter)
|
2015-08-27 21:48:51 +02:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
kak_assert(utf8::codepoint(utf8::previous(reader.pos, reader.str.begin()),
|
|
|
|
reader.str.end()) == opening_delimiter);
|
2013-12-29 19:37:48 +01:00
|
|
|
int level = 0;
|
2015-08-27 21:48:51 +02:00
|
|
|
auto start = reader.pos;
|
|
|
|
while (reader)
|
2013-12-29 19:37:48 +01:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
const Codepoint c = *reader;
|
2015-08-27 21:48:51 +02:00
|
|
|
if (c == opening_delimiter)
|
2013-12-29 19:37:48 +01:00
|
|
|
++level;
|
2015-08-27 21:48:51 +02:00
|
|
|
else if (c == closing_delimiter)
|
2013-12-29 19:37:48 +01:00
|
|
|
{
|
|
|
|
if (level > 0)
|
|
|
|
--level;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2015-08-27 21:48:51 +02:00
|
|
|
++reader;
|
2013-12-29 19:37:48 +01:00
|
|
|
}
|
2015-08-27 21:48:51 +02:00
|
|
|
return reader.substr_from(start);
|
2013-12-29 19:37:48 +01:00
|
|
|
}
|
|
|
|
|
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 == "")
|
2015-09-20 12:19:10 +02:00
|
|
|
return Token::Type::RawQuoted;
|
2013-12-29 19:37:48 +01:00
|
|
|
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-06-18 20:28:48 +02:00
|
|
|
else if (type_name == "val")
|
|
|
|
return Token::Type::ValExpand;
|
2015-12-01 21:07:14 +01:00
|
|
|
else if (type_name == "arg")
|
|
|
|
return Token::Type::ArgExpand;
|
2014-02-27 07:41:58 +01:00
|
|
|
else if (throw_on_invalid)
|
2017-06-07 20:01:26 +02:00
|
|
|
throw parse_error{format("unknown expand '{}'", type_name)};
|
2014-02-27 07:41:58 +01:00
|
|
|
else
|
2015-09-20 12:19:10 +02:00
|
|
|
return Token::Type::RawQuoted;
|
2013-12-29 19:37:48 +01:00
|
|
|
}
|
|
|
|
|
2015-08-27 21:48:51 +02:00
|
|
|
void skip_blanks_and_comments(Reader& reader)
|
2013-12-29 19:37:48 +01:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
while (reader)
|
2013-12-29 19:37:48 +01:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
const Codepoint c = *reader;
|
2015-08-27 21:48:51 +02:00
|
|
|
if (is_horizontal_blank(c))
|
|
|
|
++reader;
|
2018-02-03 23:21:15 +01:00
|
|
|
else if (c == '\\' and reader.peek_next().value_or((Codepoint)'\0') == '\n')
|
2015-08-27 21:48:51 +02:00
|
|
|
++(++reader);
|
|
|
|
else if (c == '#')
|
2013-12-29 19:37:48 +01:00
|
|
|
{
|
2017-05-25 09:30:49 +02:00
|
|
|
while (reader and *reader != '\n')
|
|
|
|
++reader;
|
2013-12-29 19:37:48 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-04 00:57:14 +02:00
|
|
|
template<bool throw_on_unterminated>
|
2015-08-27 21:48:51 +02:00
|
|
|
Token parse_percent_token(Reader& reader)
|
2014-04-04 00:57:14 +02:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
++reader;
|
2018-02-03 23:21:15 +01:00
|
|
|
const auto type_start = reader.pos;
|
2015-08-27 21:48:51 +02:00
|
|
|
while (reader and isalpha(*reader))
|
|
|
|
++reader;
|
|
|
|
StringView type_name = reader.substr_from(type_start);
|
2014-04-04 00:57:14 +02:00
|
|
|
|
2017-06-07 14:09:45 +02:00
|
|
|
if (not reader or is_blank(*reader))
|
|
|
|
{
|
|
|
|
if (throw_on_unterminated)
|
|
|
|
throw parse_error{format("expected a string delimiter after '%{}'",
|
|
|
|
type_name)};
|
2017-04-19 22:52:27 +02:00
|
|
|
return {};
|
2017-06-07 14:09:45 +02:00
|
|
|
}
|
2014-04-04 00:57:14 +02:00
|
|
|
|
|
|
|
Token::Type type = token_type<throw_on_unterminated>(type_name);
|
2015-08-27 22:36:49 +02:00
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
constexpr struct CharPair { Codepoint opening; Codepoint closing; } matching_pairs[] = {
|
2014-04-04 00:57:14 +02:00
|
|
|
{ '(', ')' }, { '[', ']' }, { '{', '}' }, { '<', '>' }
|
|
|
|
};
|
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
const Codepoint opening_delimiter = *reader;
|
|
|
|
auto coord = reader.coord();
|
2015-08-27 21:48:51 +02:00
|
|
|
++reader;
|
|
|
|
auto start = reader.pos;
|
2014-04-04 00:57:14 +02:00
|
|
|
|
2015-08-27 22:36:49 +02:00
|
|
|
auto it = find_if(matching_pairs, [opening_delimiter](const CharPair& cp)
|
|
|
|
{ return opening_delimiter == cp.opening; });
|
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
const auto str_beg = reader.str.begin();
|
2015-08-27 22:36:49 +02:00
|
|
|
if (it != std::end(matching_pairs))
|
2014-04-04 00:57:14 +02:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
const Codepoint closing_delimiter = it->closing;
|
2015-08-27 21:48:51 +02:00
|
|
|
auto token = get_until_closing_delimiter(reader, opening_delimiter,
|
|
|
|
closing_delimiter);
|
|
|
|
if (throw_on_unterminated and not reader)
|
|
|
|
throw parse_error{format("{}:{}: unterminated string '%{}{}...{}'",
|
|
|
|
coord.line, coord.column, type_name,
|
|
|
|
opening_delimiter, closing_delimiter)};
|
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
return {type, start - str_beg, reader.pos - str_beg, coord, token.str()};
|
2014-04-04 00:57:14 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
String token = get_until_delimiter(reader, opening_delimiter);
|
|
|
|
|
|
|
|
if (throw_on_unterminated and not reader)
|
|
|
|
throw parse_error{format("{}:{}: unterminated string '%{}{}...{}'",
|
|
|
|
coord.line, coord.column, type_name,
|
|
|
|
opening_delimiter, opening_delimiter)};
|
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
return {type, start - str_beg, reader.pos - str_beg, coord, std::move(token)};
|
2014-04-04 00:57:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-12 07:50:58 +01:00
|
|
|
String expand_token(const Token& token, const Context& context,
|
|
|
|
const ShellContext& shell_context)
|
|
|
|
{
|
2017-09-01 12:09:34 +02:00
|
|
|
auto& content = token.content;
|
|
|
|
switch (token.type)
|
2015-12-12 07:50:58 +01:00
|
|
|
{
|
|
|
|
case Token::Type::ShellExpand:
|
2016-06-19 18:01:56 +02:00
|
|
|
{
|
|
|
|
auto str = ShellManager::instance().eval(
|
|
|
|
content, context, {}, ShellManager::Flags::WaitForStdout,
|
|
|
|
shell_context).first;
|
|
|
|
|
|
|
|
int trailing_eol_count = 0;
|
|
|
|
for (auto c : str | reverse())
|
|
|
|
{
|
|
|
|
if (c != '\n')
|
|
|
|
break;
|
|
|
|
++trailing_eol_count;
|
|
|
|
}
|
|
|
|
str.resize(str.length() - trailing_eol_count, 0);
|
|
|
|
return str;
|
|
|
|
|
|
|
|
}
|
2015-12-12 07:50:58 +01:00
|
|
|
case Token::Type::RegisterExpand:
|
|
|
|
return context.main_sel_register_value(content).str();
|
|
|
|
case Token::Type::OptionExpand:
|
|
|
|
return context.options()[content].get_as_string();
|
|
|
|
case Token::Type::ValExpand:
|
|
|
|
{
|
|
|
|
auto it = shell_context.env_vars.find(content);
|
|
|
|
if (it != shell_context.env_vars.end())
|
|
|
|
return it->value;
|
|
|
|
return ShellManager::instance().get_val(content, context);
|
|
|
|
}
|
|
|
|
case Token::Type::ArgExpand:
|
|
|
|
{
|
|
|
|
auto& params = shell_context.params;
|
|
|
|
if (content == '@')
|
|
|
|
return join(params, ' ');
|
|
|
|
|
|
|
|
const int arg = str_to_int(content)-1;
|
|
|
|
if (arg < 0)
|
|
|
|
throw runtime_error("invalid argument index");
|
|
|
|
return arg < params.size() ? params[arg] : String{};
|
|
|
|
}
|
|
|
|
case Token::Type::RawEval:
|
|
|
|
return expand(content, context, shell_context);
|
|
|
|
case Token::Type::Raw:
|
|
|
|
case Token::Type::RawQuoted:
|
|
|
|
return content;
|
|
|
|
default: kak_assert(false);
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2015-08-27 21:48:51 +02:00
|
|
|
Reader reader{line};
|
2017-04-19 22:52:27 +02:00
|
|
|
while (true)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
skip_blanks_and_comments(reader);
|
2017-04-19 22:52:27 +02:00
|
|
|
if (not reader)
|
|
|
|
break;
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
const char* start = reader.pos;
|
|
|
|
auto coord = reader.coord();
|
2012-02-13 22:38:07 +01:00
|
|
|
|
2018-02-03 23:21:15 +01:00
|
|
|
const Codepoint c = *reader;
|
2015-08-27 21:48:51 +02:00
|
|
|
if (c == '"' or c == '\'')
|
2011-11-26 18:20:02 +01:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
start = (++reader).pos;
|
|
|
|
String token = get_until_delimiter(reader, c);
|
|
|
|
if (throw_on_unterminated and not reader)
|
|
|
|
throw parse_error{format("unterminated string {0}...{0}", c)};
|
2017-09-01 12:09:34 +02:00
|
|
|
result.push_back({c == '"' ? Token::Type::RawEval
|
2015-09-20 12:19:10 +02:00
|
|
|
: Token::Type::RawQuoted,
|
2018-02-03 23:21:15 +01:00
|
|
|
start - line.begin(), reader.pos - line.begin(), coord, std::move(token)});
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2015-08-27 21:48:51 +02:00
|
|
|
else if (c == '%')
|
2014-04-08 20:54:32 +02:00
|
|
|
result.push_back(
|
2015-08-27 21:48:51 +02:00
|
|
|
parse_percent_token<throw_on_unterminated>(reader));
|
2012-02-13 22:38:07 +01:00
|
|
|
else
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
String str = get_until_delimiter(reader, [](Codepoint c) {
|
2015-08-27 21:48:51 +02:00
|
|
|
return is_command_separator(c) or is_horizontal_blank(c);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (not str.empty())
|
2018-02-03 23:21:15 +01:00
|
|
|
result.push_back({Token::Type::Raw, start - line.begin(), reader.pos - line.begin(),
|
2017-09-01 12:09:34 +02:00
|
|
|
coord, unescape(str, "%", '\\')});
|
2011-11-26 18:20:02 +01:00
|
|
|
|
2017-05-08 12:46:03 +02:00
|
|
|
if (reader and is_command_separator(*reader))
|
2017-09-01 12:09:34 +02:00
|
|
|
result.push_back({Token::Type::CommandSeparator,
|
2018-02-03 23:21:15 +01:00
|
|
|
reader.pos - line.begin(), utf8::next(reader.pos, line.end()) - line.begin(), coord, {}});
|
2017-04-19 22:52:27 +02:00
|
|
|
}
|
2012-01-15 02:37:35 +01:00
|
|
|
|
2017-04-19 22:52:27 +02:00
|
|
|
if (not reader)
|
|
|
|
break;
|
2015-08-27 21:48:51 +02:00
|
|
|
++reader;
|
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
|
|
|
}
|
|
|
|
|
2016-12-07 21:07:32 +01:00
|
|
|
template<typename Postprocess>
|
|
|
|
String expand_impl(StringView str, const Context& context,
|
|
|
|
const ShellContext& shell_context,
|
|
|
|
Postprocess postprocess)
|
2015-05-04 18:08:57 +02:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
Reader reader{str};
|
2015-05-04 18:08:57 +02:00
|
|
|
String res;
|
2018-02-03 23:21:15 +01:00
|
|
|
auto beg = str.begin();
|
2015-08-27 21:48:51 +02:00
|
|
|
while (reader)
|
2015-05-04 18:08:57 +02:00
|
|
|
{
|
2018-02-03 23:21:15 +01:00
|
|
|
Codepoint c = *reader;
|
2015-08-27 21:48:51 +02:00
|
|
|
if (c == '\\')
|
2015-05-04 18:08:57 +02:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
c = *++reader;
|
2015-07-25 09:56:27 +02:00
|
|
|
if (c == '%' or c == '\\')
|
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
res += reader.substr_from(beg);
|
2015-07-25 09:56:27 +02:00
|
|
|
res.back() = c;
|
2015-08-27 21:48:51 +02:00
|
|
|
beg = (++reader).pos;
|
2015-07-25 09:56:27 +02:00
|
|
|
}
|
2015-05-04 18:08:57 +02:00
|
|
|
}
|
2015-08-27 21:48:51 +02:00
|
|
|
else if (c == '%')
|
2015-05-04 18:08:57 +02:00
|
|
|
{
|
2015-08-27 21:48:51 +02:00
|
|
|
res += reader.substr_from(beg);
|
2016-12-07 21:07:32 +01:00
|
|
|
res += postprocess(expand_token(parse_percent_token<true>(reader),
|
|
|
|
context, shell_context));
|
2015-08-27 21:48:51 +02:00
|
|
|
beg = (++reader).pos;
|
2015-05-04 18:08:57 +02:00
|
|
|
}
|
|
|
|
else
|
2015-08-27 21:48:51 +02:00
|
|
|
++reader;
|
2015-05-04 18:08:57 +02:00
|
|
|
}
|
2015-08-27 21:48:51 +02:00
|
|
|
res += reader.substr_from(beg);
|
2015-05-04 18:08:57 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2016-12-07 21:07:32 +01:00
|
|
|
String expand(StringView str, const Context& context,
|
|
|
|
const ShellContext& shell_context)
|
|
|
|
{
|
2017-01-09 00:26:15 +01:00
|
|
|
return expand_impl(str, context, shell_context, [](String s){ return s; });
|
2016-12-07 21:07:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String expand(StringView str, const Context& context,
|
|
|
|
const ShellContext& shell_context,
|
2017-03-17 00:08:10 +01:00
|
|
|
const std::function<String (String)>& postprocess)
|
2016-12-07 21:07:32 +01:00
|
|
|
{
|
|
|
|
return expand_impl(str, context, shell_context,
|
|
|
|
[&](String s) { return postprocess(std::move(s)); });
|
|
|
|
}
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
struct command_not_found : runtime_error
|
|
|
|
{
|
2017-11-04 09:00:34 +01:00
|
|
|
command_not_found(StringView name)
|
|
|
|
: runtime_error(name + " : no such command") {}
|
2012-08-01 14:27:34 +02:00
|
|
|
};
|
|
|
|
|
2014-04-08 20:54:32 +02:00
|
|
|
CommandManager::CommandMap::const_iterator
|
2017-04-10 22:33:20 +02:00
|
|
|
CommandManager::find_command(const Context& context, StringView name) const
|
2013-12-24 03:06:22 +01:00
|
|
|
{
|
2014-10-30 00:22:54 +01:00
|
|
|
auto alias = context.aliases()[name];
|
2017-04-10 22:33:20 +02:00
|
|
|
StringView cmd_name = alias.empty() ? name : alias;
|
2013-12-24 03:06:22 +01:00
|
|
|
|
|
|
|
return m_commands.find(cmd_name);
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void CommandManager::execute_single_command(CommandParameters params,
|
2014-05-07 21:39:59 +02:00
|
|
|
Context& context,
|
2015-10-22 14:59:23 +02:00
|
|
|
const ShellContext& shell_context,
|
2017-01-29 14:56:05 +01:00
|
|
|
DisplayCoord pos)
|
2012-08-06 19:29:51 +02:00
|
|
|
{
|
|
|
|
if (params.empty())
|
|
|
|
return;
|
|
|
|
|
2017-01-29 14:56:05 +01:00
|
|
|
constexpr int max_command_depth = 100;
|
|
|
|
if (m_command_depth > max_command_depth)
|
|
|
|
throw runtime_error("maximum nested command depth hit");
|
|
|
|
|
|
|
|
++m_command_depth;
|
|
|
|
auto pop_cmd = on_scope_end([this] { --m_command_depth; });
|
|
|
|
|
2016-12-25 02:42:31 +01:00
|
|
|
ParameterList param_view(params.begin()+1, params.end());
|
2014-10-30 00:22:54 +01:00
|
|
|
auto command_it = find_command(context, 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
|
|
|
|
2017-06-17 10:27:07 +02:00
|
|
|
const DebugFlags debug_flags = context.options()["debug"].get<DebugFlags>();
|
|
|
|
if (debug_flags & DebugFlags::Commands)
|
|
|
|
{
|
|
|
|
String repr_parameters;
|
|
|
|
|
|
|
|
for (auto repr_param : param_view)
|
|
|
|
repr_parameters += " " + repr_param;
|
|
|
|
write_to_debug_buffer(format("command {}{}", params[0], repr_parameters));
|
|
|
|
}
|
|
|
|
|
2014-05-07 21:39:59 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
ParametersParser parameter_parser(param_view,
|
2017-03-07 01:30:54 +01:00
|
|
|
command_it->value.param_desc);
|
2017-11-04 09:00:34 +01:00
|
|
|
command_it->value.func(parameter_parser, context, shell_context);
|
2014-05-07 21:39:59 +02:00
|
|
|
}
|
|
|
|
catch (runtime_error& error)
|
|
|
|
{
|
2015-03-31 00:56:33 +02:00
|
|
|
throw runtime_error(format("{}:{}: '{}' {}", pos.line+1, pos.column+1,
|
2017-05-07 17:22:29 +02:00
|
|
|
params[0], error.what()));
|
2014-05-07 21:39:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-21 22:49:25 +02:00
|
|
|
void CommandManager::execute(StringView command_line,
|
2015-10-22 14:48:57 +02:00
|
|
|
Context& context, const ShellContext& shell_context)
|
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;
|
2017-10-17 04:25:20 +02:00
|
|
|
// Tokens are going to be read as a stack
|
|
|
|
std::reverse(tokens.begin(), tokens.end());
|
2012-01-14 15:02:54 +01:00
|
|
|
|
2016-09-22 21:36:26 +02:00
|
|
|
DisplayCoord command_coord;
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> params;
|
2017-10-17 04:25:20 +02:00
|
|
|
while (not tokens.empty())
|
2012-01-15 02:37:35 +01:00
|
|
|
{
|
2017-10-17 04:25:20 +02:00
|
|
|
Token token = std::move(tokens.back());
|
|
|
|
tokens.pop_back();
|
2014-05-07 21:39:59 +02:00
|
|
|
if (params.empty())
|
2017-10-17 04:25:20 +02:00
|
|
|
command_coord = token.coord;
|
2014-05-07 21:39:59 +02:00
|
|
|
|
2017-10-17 04:25:20 +02:00
|
|
|
if (token.type == Token::Type::CommandSeparator)
|
2012-01-15 02:37:35 +01:00
|
|
|
{
|
2015-10-22 14:59:23 +02:00
|
|
|
execute_single_command(params, context, shell_context, command_coord);
|
2014-04-04 00:57:14 +02:00
|
|
|
params.clear();
|
|
|
|
}
|
|
|
|
// Shell expand are retokenized
|
2017-10-17 04:25:20 +02:00
|
|
|
else if (token.type == Token::Type::ShellExpand)
|
2014-04-04 00:57:14 +02:00
|
|
|
{
|
2017-10-17 04:25:20 +02:00
|
|
|
auto new_tokens = parse<true>(expand_token(token, context,
|
2016-12-07 14:26:11 +01:00
|
|
|
shell_context));
|
2017-10-17 04:25:20 +02:00
|
|
|
tokens.insert(tokens.end(),
|
|
|
|
std::make_move_iterator(new_tokens.rbegin()),
|
|
|
|
std::make_move_iterator(new_tokens.rend()));
|
2012-01-15 02:37:35 +01:00
|
|
|
}
|
2017-10-17 04:25:20 +02:00
|
|
|
else if (token.type == Token::Type::ArgExpand and token.content == '@')
|
2016-12-07 14:26:11 +01:00
|
|
|
params.insert(params.end(), shell_context.params.begin(),
|
|
|
|
shell_context.params.end());
|
2014-04-04 00:57:14 +02:00
|
|
|
else
|
2017-10-17 04:25:20 +02:00
|
|
|
params.push_back(expand_token(token, context, shell_context));
|
2012-01-15 02:37:35 +01:00
|
|
|
}
|
2015-10-22 14:59:23 +02:00
|
|
|
execute_single_command(params, context, shell_context, command_coord);
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 17:23:31 +01:00
|
|
|
Optional<CommandInfo> CommandManager::command_info(const Context& context, 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)
|
|
|
|
{
|
2017-09-01 12:09:34 +02:00
|
|
|
if (tokens[i].type == Token::Type::CommandSeparator)
|
2014-02-11 23:16:17 +01:00
|
|
|
cmd_idx = i+1;
|
|
|
|
}
|
|
|
|
|
2014-04-08 20:54:32 +02:00
|
|
|
if (cmd_idx == tokens.size() or
|
2017-09-01 12:09:34 +02:00
|
|
|
(tokens[cmd_idx].type != Token::Type::Raw and
|
|
|
|
tokens[cmd_idx].type != Token::Type::RawQuoted))
|
2016-12-23 17:23:31 +01:00
|
|
|
return {};
|
2014-02-11 23:16:17 +01:00
|
|
|
|
2017-09-01 12:09:34 +02:00
|
|
|
auto cmd = find_command(context, tokens[cmd_idx].content);
|
2014-02-11 23:16:17 +01:00
|
|
|
if (cmd == m_commands.end())
|
2016-12-23 17:23:31 +01:00
|
|
|
return {};
|
2014-02-11 23:16:17 +01:00
|
|
|
|
2016-12-23 17:23:31 +01:00
|
|
|
CommandInfo res;
|
2017-03-07 01:30:54 +01:00
|
|
|
res.name = cmd->key;
|
|
|
|
if (not cmd->value.docstring.empty())
|
|
|
|
res.info += cmd->value.docstring + "\n";
|
2014-05-03 16:54:51 +02:00
|
|
|
|
2017-03-07 01:30:54 +01:00
|
|
|
if (cmd->value.helper)
|
2015-02-08 20:04:20 +01:00
|
|
|
{
|
|
|
|
Vector<String> params;
|
|
|
|
for (auto it = tokens.begin() + cmd_idx + 1;
|
2017-09-01 12:09:34 +02:00
|
|
|
it != tokens.end() and it->type != Token::Type::CommandSeparator;
|
2015-02-08 20:04:20 +01:00
|
|
|
++it)
|
|
|
|
{
|
2017-09-01 12:09:34 +02:00
|
|
|
if (it->type == Token::Type::Raw or
|
|
|
|
it->type == Token::Type::RawQuoted or
|
|
|
|
it->type == Token::Type::RawEval)
|
|
|
|
params.push_back(it->content);
|
2015-02-08 20:04:20 +01:00
|
|
|
}
|
2017-03-07 01:30:54 +01:00
|
|
|
String helpstr = cmd->value.helper(context, params);
|
2015-02-08 20:04:20 +01:00
|
|
|
if (not helpstr.empty())
|
2017-06-04 09:37:51 +02:00
|
|
|
res.info += format("{}\n", helpstr);
|
2015-02-08 20:04:20 +01:00
|
|
|
}
|
|
|
|
|
2014-05-03 16:54:51 +02:00
|
|
|
String aliases;
|
2017-03-07 01:30:54 +01:00
|
|
|
for (auto& alias : context.aliases().aliases_for(cmd->key))
|
2014-10-30 00:22:54 +01:00
|
|
|
aliases += " " + alias;
|
2014-05-03 16:54:51 +02:00
|
|
|
if (not aliases.empty())
|
2017-06-04 09:37:51 +02:00
|
|
|
res.info += format("Aliases:{}\n", aliases);
|
2014-05-03 16:54:51 +02:00
|
|
|
|
|
|
|
|
2017-03-07 01:30:54 +01:00
|
|
|
auto& switches = cmd->value.param_desc.switches;
|
2014-02-11 23:23:44 +01:00
|
|
|
if (not switches.empty())
|
2017-06-04 09:37:51 +02:00
|
|
|
res.info += format("Switches:\n{}", indent(generate_switches_doc(switches)));
|
2014-02-11 23:16:17 +01:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2017-06-29 08:43:20 +02:00
|
|
|
Completions CommandManager::complete_command_name(const Context& context, StringView query) const
|
2016-03-08 14:56:37 +01:00
|
|
|
{
|
2016-03-24 01:05:40 +01:00
|
|
|
auto commands = m_commands
|
2017-03-07 01:30:54 +01:00
|
|
|
| filter([](const CommandMap::Item& cmd) { return not (cmd.value.flags & CommandFlags::Hidden); })
|
|
|
|
| transform(std::mem_fn(&CommandMap::Item::key));
|
2016-03-08 22:35:56 +01:00
|
|
|
|
2017-06-29 08:43:20 +02:00
|
|
|
return {0, query.length(), Kakoune::complete(query, query.length(), commands)};
|
2016-03-08 14:56:37 +01:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2017-09-01 12:09:34 +02:00
|
|
|
if (tokens[i].type == Token::Type::CommandSeparator)
|
2014-01-03 21:07:40 +01:00
|
|
|
cmd_idx = i+1;
|
|
|
|
|
2017-09-01 12:09:34 +02: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-08 14:56:37 +01:00
|
|
|
const bool is_last_token = tok_idx == tokens.size();
|
2015-06-26 14:52:01 +02:00
|
|
|
// command name completion
|
2013-12-30 15:22:18 +01:00
|
|
|
if (tokens.empty() or
|
2016-03-08 14:56:37 +01:00
|
|
|
(tok_idx == cmd_idx and (is_last_token or
|
2017-09-01 12:09:34 +02:00
|
|
|
tokens[tok_idx].type == Token::Type::Raw or
|
|
|
|
tokens[tok_idx].type == Token::Type::RawQuoted)))
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
2017-09-01 12:09:34 +02:00
|
|
|
auto cmd_start = is_last_token ? cursor_pos : tokens[tok_idx].begin;
|
2016-03-08 14:56:37 +01:00
|
|
|
StringView query = command_line.substr(cmd_start, cursor_pos - cmd_start);
|
2017-06-29 08:43:20 +02:00
|
|
|
return offset_pos(complete_command_name(context, query), cmd_start);
|
2011-09-13 23:16:48 +02:00
|
|
|
}
|
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() ?
|
2017-09-01 12:09:34 +02:00
|
|
|
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
|
|
|
|
2015-08-27 21:48:51 +02:00
|
|
|
const Token::Type type = tok_idx < tokens.size() ?
|
2017-09-01 12:09:34 +02:00
|
|
|
tokens[tok_idx].type : Token::Type::Raw;
|
2015-08-27 21:48:51 +02:00
|
|
|
switch (type)
|
2013-12-30 15:22:18 +01:00
|
|
|
{
|
|
|
|
case Token::Type::OptionExpand:
|
2015-08-27 14:57:56 +02:00
|
|
|
return {start , cursor_pos,
|
|
|
|
GlobalScope::instance().option_registry().complete_option_name(
|
2017-09-01 12:09:34 +02:00
|
|
|
tokens[tok_idx].content, cursor_pos_in_token) };
|
2015-08-27 14:57:56 +02:00
|
|
|
|
2013-12-30 15:22:18 +01:00
|
|
|
case Token::Type::ShellExpand:
|
2017-09-01 12:09:34 +02:00
|
|
|
return offset_pos(shell_complete(context, flags, tokens[tok_idx].content,
|
2015-08-27 14:57:56 +02:00
|
|
|
cursor_pos_in_token), start);
|
|
|
|
|
2016-04-17 20:21:43 +02:00
|
|
|
case Token::Type::ValExpand:
|
|
|
|
return {start , cursor_pos,
|
|
|
|
ShellManager::instance().complete_env_var(
|
2017-09-01 12:09:34 +02:00
|
|
|
tokens[tok_idx].content, cursor_pos_in_token) };
|
2016-04-17 20:21:43 +02:00
|
|
|
|
2013-12-30 15:22:18 +01:00
|
|
|
case Token::Type::Raw:
|
2015-09-20 12:19:10 +02:00
|
|
|
case Token::Type::RawQuoted:
|
|
|
|
case Token::Type::RawEval:
|
2013-12-30 15:22:18 +01:00
|
|
|
{
|
2017-09-01 12:09:34 +02:00
|
|
|
if (tokens[cmd_idx].type != Token::Type::Raw)
|
2013-12-30 15:22:18 +01:00
|
|
|
return Completions{};
|
|
|
|
|
2017-09-01 12:09:34 +02:00
|
|
|
StringView command_name = tokens[cmd_idx].content;
|
2016-08-05 14:53:19 +02:00
|
|
|
if (command_name != m_last_complete_command)
|
|
|
|
{
|
2017-04-10 22:33:20 +02:00
|
|
|
m_last_complete_command = command_name.str();
|
2016-08-05 14:53:19 +02:00
|
|
|
flags |= CompletionFlags::Start;
|
|
|
|
}
|
2013-12-30 15:22:18 +01:00
|
|
|
|
2014-10-30 00:22:54 +01:00
|
|
|
auto command_it = find_command(context, command_name);
|
2014-04-08 20:54:32 +02:00
|
|
|
if (command_it == m_commands.end() or
|
2017-03-07 01:30:54 +01:00
|
|
|
not command_it->value.completer)
|
2013-12-30 15:22:18 +01:00
|
|
|
return Completions();
|
|
|
|
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> params;
|
2015-08-27 21:48:51 +02:00
|
|
|
for (auto it = tokens.begin() + cmd_idx + 1; it != tokens.end(); ++it)
|
2017-09-01 12:09:34 +02:00
|
|
|
params.push_back(it->content);
|
2014-01-03 21:07:40 +01:00
|
|
|
if (tok_idx == tokens.size())
|
2017-01-08 23:30:15 +01:00
|
|
|
params.emplace_back("");
|
2017-03-07 01:30:54 +01:00
|
|
|
Completions completions = offset_pos(command_it->value.completer(
|
2014-04-08 20:54:32 +02:00
|
|
|
context, flags, params, tok_idx - cmd_idx - 1,
|
2015-09-20 12:19:10 +02:00
|
|
|
cursor_pos_in_token), start);
|
2014-05-05 13:54:23 +02:00
|
|
|
|
2015-09-20 12:19:10 +02:00
|
|
|
if (type != Token::Type::RawQuoted)
|
|
|
|
{
|
|
|
|
StringView to_escape = type == Token::Type::Raw ? "% \t;" : "%";
|
|
|
|
for (auto& candidate : completions.candidates)
|
|
|
|
candidate = escape(candidate, to_escape, '\\');
|
|
|
|
}
|
2014-05-05 13:54:23 +02:00
|
|
|
|
2014-01-26 17:14:02 +01:00
|
|
|
return completions;
|
2013-12-30 15:22:18 +01:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return Completions{};
|
2011-09-16 11:18:51 +02:00
|
|
|
}
|
|
|
|
|
2015-06-26 14:52:01 +02:00
|
|
|
Completions CommandManager::complete(const Context& context,
|
|
|
|
CompletionFlags flags,
|
|
|
|
CommandParameters params,
|
|
|
|
size_t token_to_complete,
|
|
|
|
ByteCount pos_in_token)
|
|
|
|
{
|
|
|
|
StringView prefix = params[token_to_complete].substr(0, pos_in_token);
|
|
|
|
|
|
|
|
if (token_to_complete == 0)
|
2017-06-29 08:43:20 +02:00
|
|
|
return complete_command_name(context, prefix);
|
2015-06-26 14:52:01 +02:00
|
|
|
else
|
|
|
|
{
|
2017-04-10 22:33:20 +02:00
|
|
|
StringView command_name = params[0];
|
2016-08-05 14:53:19 +02:00
|
|
|
if (command_name != m_last_complete_command)
|
|
|
|
{
|
2017-04-10 22:33:20 +02:00
|
|
|
m_last_complete_command = command_name.str();
|
2016-08-05 14:53:19 +02:00
|
|
|
flags |= CompletionFlags::Start;
|
|
|
|
}
|
2015-06-26 14:52:01 +02:00
|
|
|
|
|
|
|
auto command_it = find_command(context, command_name);
|
2017-03-07 01:30:54 +01:00
|
|
|
if (command_it != m_commands.end() and command_it->value.completer)
|
|
|
|
return command_it->value.completer(
|
2016-11-20 12:15:15 +01:00
|
|
|
context, flags, params.subrange(1),
|
2015-06-26 14:52:01 +02:00
|
|
|
token_to_complete-1, pos_in_token);
|
|
|
|
}
|
|
|
|
return Completions{};
|
|
|
|
}
|
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|