2011-11-29 23:37:20 +01:00
|
|
|
#include "highlighters.hh"
|
2011-11-14 15:23:02 +01:00
|
|
|
#include "assert.hh"
|
2011-11-10 00:56:22 +01:00
|
|
|
#include "window.hh"
|
2012-09-17 19:01:13 +02:00
|
|
|
#include "color_registry.hh"
|
2012-01-19 21:37:29 +01:00
|
|
|
#include "highlighter_group.hh"
|
2012-12-31 14:28:32 +01:00
|
|
|
#include "register_manager.hh"
|
|
|
|
#include "context.hh"
|
2012-08-29 21:49:36 +02:00
|
|
|
#include "string.hh"
|
2012-10-08 14:27:43 +02:00
|
|
|
#include "utf8.hh"
|
2013-02-26 14:12:21 +01:00
|
|
|
#include "utf8_iterator.hh"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <locale>
|
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-08-10 14:20:15 +02:00
|
|
|
if (begin == end or end <= display_buffer.range().first
|
|
|
|
or begin >= display_buffer.range().second)
|
2012-07-12 23:51:13 +02:00
|
|
|
return;
|
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto& line : display_buffer.lines())
|
2011-09-30 21:16:23 +02:00
|
|
|
{
|
2012-12-12 19:33:29 +01:00
|
|
|
if (line.buffer_line() < begin.line() or end.line() < line.buffer_line())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
2012-07-03 23:23:07 +02:00
|
|
|
{
|
2012-12-12 19:33:29 +01:00
|
|
|
bool is_replaced = atom_it->content.type() == AtomContent::ReplacedBufferRange;
|
2011-11-14 15:23:02 +01:00
|
|
|
|
2012-12-12 19:33:29 +01: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-12-12 19:33:29 +01:00
|
|
|
if (end <= atom_it->content.begin() or begin >= atom_it->content.end())
|
|
|
|
continue;
|
2012-02-22 22:48:14 +01:00
|
|
|
|
2012-12-12 19:33:29 +01: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-12-12 19:33:29 +01:00
|
|
|
if (not is_replaced and end < atom_it->content.end())
|
|
|
|
{
|
|
|
|
atom_it = line.split(atom_it, end);
|
|
|
|
func(*atom_it);
|
|
|
|
++atom_it;
|
2012-07-12 23:19:10 +02:00
|
|
|
}
|
2012-12-12 19:33:29 +01:00
|
|
|
else
|
|
|
|
func(*atom_it);
|
2012-07-12 23:19:10 +02:00
|
|
|
}
|
2011-09-30 21:16:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-17 21:02:08 +02:00
|
|
|
typedef std::unordered_map<size_t, const ColorPair*> ColorSpec;
|
2012-08-15 17:08:48 +02:00
|
|
|
|
|
|
|
class RegexColorizer
|
2011-11-24 20:11:58 +01:00
|
|
|
{
|
2012-08-15 17:08:48 +02:00
|
|
|
public:
|
|
|
|
RegexColorizer(Regex regex, ColorSpec colors)
|
|
|
|
: m_regex(std::move(regex)), m_colors(std::move(colors)),
|
2012-08-15 17:24:08 +02:00
|
|
|
m_cache_timestamp(0)
|
2012-08-15 17:08:48 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator()(DisplayBuffer& display_buffer)
|
2012-07-12 23:19:10 +02:00
|
|
|
{
|
2012-08-15 17:24:08 +02:00
|
|
|
update_cache_ifn(display_buffer.range());
|
2012-08-15 17:08:48 +02:00
|
|
|
for (auto& match : m_cache_matches)
|
2012-08-07 00:13:54 +02:00
|
|
|
{
|
2012-08-15 17:08:48 +02:00
|
|
|
for (size_t n = 0; n < match.size(); ++n)
|
|
|
|
{
|
|
|
|
auto col_it = m_colors.find(n);
|
|
|
|
if (col_it == m_colors.end())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
highlight_range(display_buffer, match[n].first, match[n].second, true,
|
|
|
|
[&](DisplayAtom& atom) {
|
2012-09-17 21:02:08 +02:00
|
|
|
atom.fg_color = col_it->second->first;
|
|
|
|
atom.bg_color = col_it->second->second;
|
2012-08-15 17:08:48 +02:00
|
|
|
});
|
|
|
|
}
|
2012-08-07 00:13:54 +02:00
|
|
|
}
|
2012-07-12 23:19:10 +02:00
|
|
|
}
|
2012-08-15 17:08:48 +02:00
|
|
|
|
|
|
|
private:
|
2012-08-15 17:24:08 +02:00
|
|
|
BufferRange m_cache_range;
|
|
|
|
size_t m_cache_timestamp;
|
2012-08-15 17:08:48 +02:00
|
|
|
std::vector<boost::match_results<BufferIterator>> m_cache_matches;
|
|
|
|
|
|
|
|
Regex m_regex;
|
|
|
|
ColorSpec m_colors;
|
|
|
|
|
2012-08-15 17:24:08 +02:00
|
|
|
void update_cache_ifn(const BufferRange& range)
|
2012-08-15 17:08:48 +02:00
|
|
|
{
|
2012-08-17 18:42:07 +02:00
|
|
|
const Buffer& buf = range.first.buffer();
|
2012-08-15 17:24:08 +02:00
|
|
|
if (m_cache_range.first.is_valid() and
|
2012-08-17 18:42:07 +02:00
|
|
|
&m_cache_range.first.buffer() == &buf and
|
|
|
|
buf.timestamp() == m_cache_timestamp and
|
2012-08-15 17:24:08 +02:00
|
|
|
range.first >= m_cache_range.first and
|
|
|
|
range.second <= m_cache_range.second)
|
2012-08-15 17:08:48 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
m_cache_matches.clear();
|
2012-08-21 20:53:23 +02:00
|
|
|
m_cache_range.first = buf.iterator_at_line_begin(range.first.line() - 10);
|
|
|
|
m_cache_range.second = buf.iterator_at_line_end(range.second.line() + 10);
|
2012-08-17 18:42:07 +02:00
|
|
|
m_cache_timestamp = buf.timestamp();
|
2012-08-15 17:08:48 +02:00
|
|
|
|
2012-08-15 17:24:08 +02:00
|
|
|
RegexIterator re_it(m_cache_range.first, m_cache_range.second, m_regex);
|
2012-08-15 17:08:48 +02:00
|
|
|
RegexIterator re_end;
|
|
|
|
for (; re_it != re_end; ++re_it)
|
|
|
|
m_cache_matches.push_back(*re_it);
|
|
|
|
}
|
|
|
|
};
|
2011-11-24 20:11:58 +01:00
|
|
|
|
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
|
|
|
{
|
2012-08-07 00:13:54 +02:00
|
|
|
if (params.size() < 2)
|
2011-11-10 15:28:38 +01:00
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
2012-08-07 00:32:21 +02:00
|
|
|
try
|
2012-08-07 00:13:54 +02:00
|
|
|
{
|
2012-10-01 20:20:08 +02:00
|
|
|
static Regex color_spec_ex(R"((\d+):(\w+(,\w+)?))");
|
2012-08-07 00:32:21 +02:00
|
|
|
ColorSpec colors;
|
|
|
|
for (auto it = params.begin() + 1; it != params.end(); ++it)
|
|
|
|
{
|
|
|
|
boost::match_results<String::iterator> res;
|
|
|
|
if (not boost::regex_match(it->begin(), it->end(), res, color_spec_ex))
|
|
|
|
throw runtime_error("wrong colorspec: '" + *it +
|
|
|
|
"' expected <capture>:<fgcolor>[,<bgcolor>]");
|
|
|
|
|
|
|
|
int capture = str_to_int(String(res[1].first, res[1].second));
|
2012-09-17 21:02:08 +02:00
|
|
|
const ColorPair*& color = colors[capture];
|
|
|
|
color = &ColorRegistry::instance()[String(res[2].first, res[2].second)];
|
2012-08-07 00:32:21 +02:00
|
|
|
}
|
2011-11-10 15:28:38 +01:00
|
|
|
|
2012-08-07 00:32:21 +02:00
|
|
|
String id = "colre'" + params[0] + "'";
|
2011-11-15 15:28:03 +01:00
|
|
|
|
2012-08-07 00:32:21 +02:00
|
|
|
Regex ex(params[0].begin(), params[0].end(),
|
|
|
|
boost::regex::perl | boost::regex::optimize);
|
|
|
|
|
2012-08-15 17:08:48 +02:00
|
|
|
return HighlighterAndId(id, RegexColorizer(std::move(ex),
|
|
|
|
std::move(colors)));
|
2012-08-08 19:02:36 +02:00
|
|
|
}
|
2012-08-07 00:32:21 +02:00
|
|
|
catch (boost::regex_error& err)
|
|
|
|
{
|
|
|
|
throw runtime_error(String("regex error: ") + err.what());
|
|
|
|
}
|
2011-11-10 15:28:38 +01:00
|
|
|
}
|
|
|
|
|
2012-12-31 14:28:32 +01:00
|
|
|
class SearchHighlighter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SearchHighlighter(const ColorSpec& colors)
|
|
|
|
: m_colors(colors), m_colorizer(Regex(), m_colors) {}
|
|
|
|
|
|
|
|
void operator()(DisplayBuffer& display_buffer)
|
|
|
|
{
|
|
|
|
memoryview<String> searches = RegisterManager::instance()['/'].values(Context{});
|
|
|
|
if (searches.empty())
|
|
|
|
return;
|
|
|
|
const String& search = searches[0];
|
|
|
|
if (search != m_last_search)
|
|
|
|
{
|
|
|
|
m_last_search = search;
|
|
|
|
if (not m_last_search.empty())
|
|
|
|
m_colorizer = RegexColorizer{Regex{m_last_search.begin(), m_last_search.end()}, m_colors};
|
|
|
|
}
|
|
|
|
if (not m_last_search.empty())
|
|
|
|
m_colorizer(display_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-01-04 18:39:13 +01:00
|
|
|
String m_last_search;
|
|
|
|
ColorSpec m_colors;
|
|
|
|
RegexColorizer m_colorizer;
|
2012-12-31 14:28:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
HighlighterAndId highlight_search_factory(Window& window,
|
|
|
|
const HighlighterParameters params)
|
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ColorSpec colors;
|
|
|
|
colors[0] = &ColorRegistry::instance()[params[0]];
|
|
|
|
return {"hlsearch", SearchHighlighter{colors}};
|
|
|
|
}
|
|
|
|
catch (boost::regex_error& err)
|
|
|
|
{
|
|
|
|
throw runtime_error(String("regex error: ") + err.what());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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-11-22 13:50:29 +01:00
|
|
|
const int tabstop = window.options()["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);
|
|
|
|
|
|
|
|
int column = 0;
|
2012-08-15 17:55:58 +02:00
|
|
|
for (auto line_it = it.buffer().iterator_at_line_begin(it);
|
2012-07-12 23:19:10 +02:00
|
|
|
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-08-22 23:33:52 +02:00
|
|
|
LineCount last_line = window.buffer().line_count();
|
2012-02-22 21:43:59 +01:00
|
|
|
int digit_count = 0;
|
2012-08-22 23:33:52 +02:00
|
|
|
for (LineCount c = last_line; c > 0; c /= 10)
|
2012-02-22 21:43:59 +01:00
|
|
|
++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];
|
2012-08-22 23:33:52 +02:00
|
|
|
snprintf(buffer, 10, format, (int)line.buffer_line() + 1);
|
2012-07-12 23:19:10 +02:00
|
|
|
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-10-08 14:27:43 +02:00
|
|
|
highlight_range(display_buffer, last, utf8::next(last), false,
|
2013-01-04 18:39:13 +01:00
|
|
|
[](DisplayAtom& atom) { atom.attribute |= Attributes::Reverse;
|
|
|
|
atom.attribute &= ~Attributes::Underline; });
|
2012-04-03 15:22:07 +02:00
|
|
|
}
|
2013-01-03 14:01:34 +01:00
|
|
|
const Selection& back = window.selections().back();
|
|
|
|
highlight_range(display_buffer, back.begin(), back.end(), false,
|
|
|
|
[](DisplayAtom& atom) { atom.attribute |= Attributes::Bold; });
|
2012-04-03 15:22:07 +02:00
|
|
|
}
|
|
|
|
|
2013-02-26 14:12:21 +01:00
|
|
|
void expand_unprintable(DisplayBuffer& display_buffer)
|
|
|
|
{
|
|
|
|
for (auto& line : display_buffer.lines())
|
|
|
|
{
|
|
|
|
for (auto& atom : line)
|
|
|
|
{
|
|
|
|
if (atom.content.type() == AtomContent::BufferRange)
|
|
|
|
{
|
|
|
|
using Utf8It = utf8::utf8_iterator<BufferIterator>;
|
|
|
|
for (Utf8It it = atom.content.begin(), end = atom.content.end(); it != end; ++it)
|
|
|
|
{
|
|
|
|
Codepoint cp = *it;
|
|
|
|
if (cp != '\n' and not std::isprint((wchar_t)cp, std::locale()))
|
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "U+" << std::hex << cp;
|
|
|
|
String str = oss.str();
|
|
|
|
highlight_range(display_buffer,
|
|
|
|
it.underlying_iterator(), (it+1).underlying_iterator(),
|
|
|
|
true, [&str](DisplayAtom& atom){ atom.content.replace(str);
|
|
|
|
atom.bg_color = Color::Red;
|
|
|
|
atom.fg_color = Color::Black; });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-11-23 13:40:20 +01:00
|
|
|
registry.register_func("highlight_selections", WindowHighlighterFactory<highlight_selections>("highlight_selections"));
|
|
|
|
registry.register_func("expand_tabs", WindowHighlighterFactory<expand_tabulations>("expand_tabs"));
|
2013-02-26 14:12:21 +01:00
|
|
|
registry.register_func("expand_unprintable", SimpleHighlighterFactory<expand_unprintable>("expand_unprintable"));
|
2012-11-23 13:40:20 +01:00
|
|
|
registry.register_func("number_lines", WindowHighlighterFactory<show_line_numbers>("number_lines"));
|
|
|
|
registry.register_func("regex", colorize_regex_factory);
|
2012-12-31 14:28:32 +01:00
|
|
|
registry.register_func("search", highlight_search_factory);
|
2012-11-23 13:40:20 +01:00
|
|
|
registry.register_func("group", highlighter_group_factory);
|
2011-11-08 15:28:01 +01:00
|
|
|
}
|
|
|
|
|
2011-09-30 21:16:23 +02:00
|
|
|
}
|