2011-11-29 23:37:20 +01:00
|
|
|
#include "highlighters.hh"
|
2011-09-30 21:16:23 +02:00
|
|
|
|
2011-11-14 15:23:02 +01:00
|
|
|
#include "assert.hh"
|
2011-11-10 00:56:22 +01:00
|
|
|
#include "window.hh"
|
2011-11-29 23:37:20 +01:00
|
|
|
#include "highlighter_registry.hh"
|
2012-01-19 21:37:29 +01:00
|
|
|
#include "highlighter_group.hh"
|
2012-04-14 03:17:09 +02:00
|
|
|
#include "regex.hh"
|
2011-11-08 15:28:01 +01:00
|
|
|
|
2011-09-30 21:16:23 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-04-03 15:39:20 +02:00
|
|
|
using namespace std::placeholders;
|
|
|
|
|
2012-05-03 09:25:13 +02:00
|
|
|
typedef boost::regex_iterator<BufferIterator> RegexIterator;
|
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
template<typename T>
|
|
|
|
void highlight_range(DisplayBuffer& display_buffer,
|
|
|
|
BufferIterator begin, BufferIterator end,
|
|
|
|
bool skip_replaced, T func)
|
2011-09-30 21:16:23 +02:00
|
|
|
{
|
2012-07-12 23:51:13 +02:00
|
|
|
if (end <= display_buffer.range().first or begin >= display_buffer.range().second)
|
|
|
|
return;
|
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto& line : display_buffer.lines())
|
2011-09-30 21:16:23 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
if (line.buffer_line() >= begin.line() and line.buffer_line() <= end.line())
|
2012-07-03 23:23:07 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
|
|
|
{
|
|
|
|
bool is_replaced = atom_it->content.type() == AtomContent::ReplacedBufferRange;
|
2011-11-14 15:23:02 +01:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
if (not atom_it->content.has_buffer_range() or
|
|
|
|
(skip_replaced and is_replaced))
|
|
|
|
continue;
|
2011-09-30 21:16:23 +02:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
if (end <= atom_it->content.begin() or begin >= atom_it->content.end())
|
|
|
|
continue;
|
2012-02-22 22:48:14 +01:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
if (not is_replaced and begin > atom_it->content.begin())
|
|
|
|
atom_it = ++line.split(atom_it, begin);
|
2011-11-14 15:23:02 +01:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
if (not is_replaced and end < atom_it->content.end())
|
|
|
|
{
|
|
|
|
atom_it = line.split(atom_it, end);
|
|
|
|
func(*atom_it);
|
|
|
|
++atom_it;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
func(*atom_it);
|
|
|
|
}
|
|
|
|
}
|
2011-09-30 21:16:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-24 20:11:58 +01:00
|
|
|
void colorize_regex(DisplayBuffer& display_buffer,
|
2012-04-14 03:17:09 +02:00
|
|
|
const Regex& ex,
|
2011-11-24 20:11:58 +01:00
|
|
|
Color fg_color, Color bg_color = Color::Default)
|
|
|
|
{
|
2012-07-12 23:51:13 +02:00
|
|
|
const BufferRange& range = display_buffer.range();
|
|
|
|
RegexIterator re_it(range.first, range.second, ex, boost::match_nosubs);
|
2012-07-12 23:19:10 +02:00
|
|
|
RegexIterator re_end;
|
|
|
|
for (; re_it != re_end; ++re_it)
|
|
|
|
{
|
|
|
|
highlight_range(display_buffer, (*re_it)[0].first, (*re_it)[0].second, true,
|
|
|
|
[&](DisplayAtom& atom) {
|
|
|
|
atom.fg_color = fg_color;
|
|
|
|
atom.bg_color = bg_color;
|
|
|
|
});
|
|
|
|
}
|
2011-11-24 20:11:58 +01:00
|
|
|
}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
Color parse_color(const String& color)
|
2011-11-10 15:28:38 +01:00
|
|
|
{
|
|
|
|
if (color == "default") return Color::Default;
|
|
|
|
if (color == "black") return Color::Black;
|
|
|
|
if (color == "red") return Color::Red;
|
|
|
|
if (color == "green") return Color::Green;
|
|
|
|
if (color == "yellow") return Color::Yellow;
|
|
|
|
if (color == "blue") return Color::Blue;
|
|
|
|
if (color == "magenta") return Color::Magenta;
|
|
|
|
if (color == "cyan") return Color::Cyan;
|
|
|
|
if (color == "white") return Color::White;
|
|
|
|
return Color::Default;
|
|
|
|
}
|
|
|
|
|
2011-11-29 23:37:20 +01:00
|
|
|
HighlighterAndId colorize_regex_factory(Window& window,
|
2011-11-30 15:11:53 +01:00
|
|
|
const HighlighterParameters params)
|
2011-11-10 15:28:38 +01:00
|
|
|
{
|
|
|
|
if (params.size() != 3)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
2012-07-18 19:02:41 +02:00
|
|
|
Regex ex(params[0].begin(), params[0].end(),
|
|
|
|
boost::regex::perl | boost::regex::optimize);
|
2011-11-10 15:28:38 +01:00
|
|
|
|
|
|
|
Color fg_color = parse_color(params[1]);
|
|
|
|
Color bg_color = parse_color(params[2]);
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
String id = "colre'" + params[0] + "'";
|
2011-11-15 15:28:03 +01:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
return HighlighterAndId(id, std::bind(colorize_regex,
|
2012-07-12 23:51:13 +02:00
|
|
|
_1, ex, fg_color, bg_color));
|
2011-11-10 15:28:38 +01:00
|
|
|
}
|
|
|
|
|
2012-04-03 15:39:20 +02:00
|
|
|
void expand_tabulations(Window& window, DisplayBuffer& display_buffer)
|
2011-10-12 20:52:22 +02:00
|
|
|
{
|
2012-06-12 20:26:20 +02:00
|
|
|
const int tabstop = window.option_manager()["tabstop"].as_int();
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto& line : display_buffer.lines())
|
2011-10-12 20:52:22 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
2011-10-12 20:52:22 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
if (atom_it->content.type() != AtomContent::BufferRange)
|
|
|
|
continue;
|
2011-10-17 21:01:36 +02:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
auto begin = atom_it->content.begin();
|
|
|
|
auto end = atom_it->content.end();
|
|
|
|
for (BufferIterator it = begin; it != end; ++it)
|
|
|
|
{
|
|
|
|
if (*it == '\t')
|
2011-10-15 06:45:49 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
if (it != begin)
|
|
|
|
atom_it = ++line.split(atom_it, it);
|
|
|
|
if (it+1 != end)
|
|
|
|
atom_it = line.split(atom_it, it+1);
|
|
|
|
|
|
|
|
BufferCoord pos = it.buffer().line_and_column_at(it);
|
|
|
|
|
|
|
|
int column = 0;
|
|
|
|
for (auto line_it = it.buffer().iterator_at({pos.line, 0});
|
|
|
|
line_it != it; ++line_it)
|
|
|
|
{
|
|
|
|
assert(*line_it != '\n');
|
|
|
|
if (*line_it == '\t')
|
|
|
|
column += tabstop - (column % tabstop);
|
|
|
|
else
|
|
|
|
++column;
|
|
|
|
}
|
|
|
|
|
|
|
|
int count = tabstop - (column % tabstop);
|
|
|
|
String padding;
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
padding += ' ';
|
|
|
|
atom_it->content.replace(padding);
|
|
|
|
break;
|
2011-10-15 06:45:49 +02:00
|
|
|
}
|
2011-10-12 20:52:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
void show_line_numbers(Window& window, DisplayBuffer& display_buffer)
|
2011-10-17 21:01:36 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
int last_line = window.buffer().line_count();
|
2012-02-22 21:43:59 +01:00
|
|
|
int digit_count = 0;
|
|
|
|
for (int c = last_line; c > 0; c /= 10)
|
|
|
|
++digit_count;
|
|
|
|
|
|
|
|
char format[] = "%?d ";
|
|
|
|
format[1] = '0' + digit_count;
|
2011-10-17 21:01:36 +02:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto& line : display_buffer.lines())
|
2011-10-17 21:01:36 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
char buffer[10];
|
|
|
|
snprintf(buffer, 10, format, line.buffer_line() + 1);
|
|
|
|
DisplayAtom atom = DisplayAtom(AtomContent(buffer));
|
|
|
|
atom.fg_color = Color::Black;
|
|
|
|
atom.bg_color = Color::White;
|
|
|
|
line.insert(line.begin(), std::move(atom));
|
2011-10-17 21:01:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-03 15:22:07 +02:00
|
|
|
void highlight_selections(Window& window, DisplayBuffer& display_buffer)
|
|
|
|
{
|
|
|
|
for (auto& sel : window.selections())
|
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
highlight_range(display_buffer, sel.begin(), sel.end(), false,
|
|
|
|
[](DisplayAtom& atom) { atom.attribute |= Attributes::Underline; });
|
2012-04-03 15:22:07 +02:00
|
|
|
|
|
|
|
const BufferIterator& last = sel.last();
|
2012-07-12 23:19:10 +02:00
|
|
|
highlight_range(display_buffer, last, last+1, false,
|
|
|
|
[](DisplayAtom& atom) { atom.attribute |= Attributes::Reverse; });
|
2012-04-03 15:22:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-29 23:37:20 +01:00
|
|
|
template<void (*highlighter_func)(DisplayBuffer&)>
|
|
|
|
class SimpleHighlighterFactory
|
2011-11-08 15:28:01 +01:00
|
|
|
{
|
|
|
|
public:
|
2012-04-14 03:17:09 +02:00
|
|
|
SimpleHighlighterFactory(const String& id) : m_id(id) {}
|
2011-11-08 15:28:01 +01:00
|
|
|
|
2011-11-29 23:37:20 +01:00
|
|
|
HighlighterAndId operator()(Window& window,
|
|
|
|
const HighlighterParameters& params) const
|
2011-11-08 15:28:01 +01:00
|
|
|
{
|
2011-11-29 23:37:20 +01:00
|
|
|
return HighlighterAndId(m_id, HighlighterFunc(highlighter_func));
|
2011-11-08 15:28:01 +01:00
|
|
|
}
|
|
|
|
private:
|
2012-04-14 03:17:09 +02:00
|
|
|
String m_id;
|
2011-11-08 15:28:01 +01:00
|
|
|
};
|
|
|
|
|
2012-04-03 15:22:07 +02:00
|
|
|
template<void (*highlighter_func)(Window&, DisplayBuffer&)>
|
|
|
|
class WindowHighlighterFactory
|
2011-11-10 00:56:22 +01:00
|
|
|
{
|
|
|
|
public:
|
2012-04-14 03:17:09 +02:00
|
|
|
WindowHighlighterFactory(const String& id) : m_id(id) {}
|
2011-11-10 00:56:22 +01:00
|
|
|
|
2012-04-03 15:22:07 +02:00
|
|
|
HighlighterAndId operator()(Window& window,
|
|
|
|
const HighlighterParameters& params) const
|
2011-11-10 00:56:22 +01:00
|
|
|
{
|
2012-04-03 15:22:07 +02:00
|
|
|
return HighlighterAndId(m_id, std::bind(highlighter_func, std::ref(window), _1));
|
2011-11-10 00:56:22 +01:00
|
|
|
}
|
|
|
|
private:
|
2012-04-14 03:17:09 +02:00
|
|
|
String m_id;
|
2011-11-10 00:56:22 +01:00
|
|
|
};
|
|
|
|
|
2012-01-19 21:37:29 +01:00
|
|
|
HighlighterAndId highlighter_group_factory(Window& window,
|
|
|
|
const HighlighterParameters& params)
|
2012-01-15 14:45:18 +01:00
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
|
|
|
return HighlighterAndId(params[0], HighlighterGroup());
|
|
|
|
}
|
|
|
|
|
2011-11-29 23:37:20 +01:00
|
|
|
void register_highlighters()
|
2011-11-08 15:28:01 +01:00
|
|
|
{
|
2011-11-29 23:37:20 +01:00
|
|
|
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
2011-11-15 15:28:03 +01:00
|
|
|
|
2012-04-03 15:22:07 +02:00
|
|
|
registry.register_factory("highlight_selections", WindowHighlighterFactory<highlight_selections>("highlight_selections"));
|
2012-04-03 15:39:20 +02:00
|
|
|
registry.register_factory("expand_tabs", WindowHighlighterFactory<expand_tabulations>("expand_tabs"));
|
2012-07-12 23:19:10 +02:00
|
|
|
registry.register_factory("number_lines", WindowHighlighterFactory<show_line_numbers>("number_lines"));
|
2011-11-10 15:28:38 +01:00
|
|
|
registry.register_factory("regex", colorize_regex_factory);
|
2012-01-19 21:37:29 +01:00
|
|
|
registry.register_factory("group", highlighter_group_factory);
|
2011-11-08 15:28:01 +01:00
|
|
|
}
|
|
|
|
|
2011-09-30 21:16:23 +02:00
|
|
|
}
|