kakoune/src/selectors.cc

563 lines
17 KiB
C++
Raw Normal View History

#include "selectors.hh"
#include "optional.hh"
#include "string.hh"
2012-10-08 19:12:09 +02:00
#include <algorithm>
namespace Kakoune
{
2014-09-10 00:41:32 +02:00
static Selection target_eol(Selection sel)
{
sel.cursor().target = INT_MAX;
return sel;
}
2013-06-01 14:22:57 +02:00
Selection select_line(const Buffer& buffer, const Selection& selection)
{
Utf8Iterator first = buffer.iterator_at(selection.cursor());
2013-06-04 18:53:56 +02:00
if (*first == '\n' and first + 1 != buffer.end())
++first;
2013-06-04 18:53:56 +02:00
while (first != buffer.begin() and *(first - 1) != '\n')
--first;
2012-10-08 19:12:09 +02:00
Utf8Iterator last = first;
2013-06-04 18:53:56 +02:00
while (last + 1 != buffer.end() and *last != '\n')
++last;
2014-09-10 00:41:32 +02:00
return target_eol(utf8_range(first, last));
}
2013-06-01 14:22:57 +02:00
Selection select_matching(const Buffer& buffer, const Selection& selection)
{
2015-01-12 14:58:41 +01:00
Vector<Codepoint> matching_pairs = { '(', ')', '{', '}', '[', ']', '<', '>' };
Utf8Iterator it = buffer.iterator_at(selection.cursor());
2015-01-12 14:58:41 +01:00
Vector<Codepoint>::iterator match = matching_pairs.end();
while (not is_eol(*it))
{
match = std::find(matching_pairs.begin(), matching_pairs.end(), *it);
if (match != matching_pairs.end())
break;
++it;
}
if (match == matching_pairs.end())
return selection;
2012-10-08 19:12:09 +02:00
Utf8Iterator begin = it;
if (((match - matching_pairs.begin()) % 2) == 0)
{
int level = 0;
2012-10-11 01:17:29 +02:00
const Codepoint opening = *match;
const Codepoint closing = *(match+1);
2013-06-04 18:53:56 +02:00
while (it != buffer.end())
{
if (*it == opening)
++level;
else if (*it == closing and --level == 0)
return utf8_range(begin, it);
++it;
}
}
else
{
int level = 0;
2012-10-11 01:17:29 +02:00
const Codepoint opening = *(match-1);
const Codepoint closing = *match;
while (true)
{
if (*it == closing)
++level;
else if (*it == opening and --level == 0)
return utf8_range(begin, it);
2013-06-04 18:53:56 +02:00
if (it == buffer.begin())
break;
--it;
}
}
return selection;
}
static Optional<Selection> find_surrounding(const Buffer& buffer,
ByteCoord coord,
MatchingPair matching,
ObjectFlags flags, int init_level)
{
const bool to_begin = flags & ObjectFlags::ToBegin;
const bool to_end = flags & ObjectFlags::ToEnd;
const bool nestable = matching.opening != matching.closing;
2013-06-04 18:53:56 +02:00
auto pos = buffer.iterator_at(coord);
Utf8Iterator first = pos;
if (to_begin)
{
int level = nestable ? init_level : 0;
2013-06-04 18:53:56 +02:00
while (first != buffer.begin())
{
if (nestable and first != pos and *first == matching.closing)
++level;
else if (*first == matching.opening)
{
if (level == 0)
break;
else
--level;
}
--first;
}
if (level != 0 or *first != matching.opening)
return Optional<Selection>{};
}
Utf8Iterator last = pos;
if (to_end)
{
int level = nestable ? init_level : 0;
2013-06-04 18:53:56 +02:00
while (last != buffer.end())
{
if (nestable and last != pos and *last == matching.opening)
++level;
else if (*last == matching.closing)
{
if (level == 0)
break;
else
--level;
}
++last;
}
if (level != 0 or last == buffer.end())
return Optional<Selection>{};
}
if (flags & ObjectFlags::Inner)
{
if (to_begin and first != last)
++first;
if (to_end and first != last)
--last;
}
return to_end ? utf8_range(first, last) : utf8_range(last, first);
}
2013-06-01 14:22:57 +02:00
Selection select_surrounding(const Buffer& buffer, const Selection& selection,
MatchingPair matching, int level,
ObjectFlags flags)
{
const bool nestable = matching.opening != matching.closing;
auto pos = selection.cursor();
2014-01-05 15:30:26 +01:00
if (not nestable or flags & ObjectFlags::Inner)
{
if (auto res = find_surrounding(buffer, pos, matching, flags, level))
return *res;
return selection;
2014-01-05 15:30:26 +01:00
}
2014-01-05 15:30:26 +01:00
auto c = buffer.byte_at(pos);
if ((flags == ObjectFlags::ToBegin and c == matching.opening) or
(flags == ObjectFlags::ToEnd and c == matching.closing))
++level;
auto res = find_surrounding(buffer, pos, matching, flags, level);
if (not res)
return selection;
if (flags == (ObjectFlags::ToBegin | ObjectFlags::ToEnd) and
res->min() == selection.min() and res->max() == selection.max())
{
if (auto res_parent = find_surrounding(buffer, pos, matching, flags, level+1))
return Selection{*res_parent};
}
return *res;
}
2013-06-01 14:22:57 +02:00
Selection select_to(const Buffer& buffer, const Selection& selection,
Codepoint c, int count, bool inclusive)
{
Utf8Iterator begin = buffer.iterator_at(selection.cursor());
2012-10-08 19:12:09 +02:00
Utf8Iterator end = begin;
do
{
++end;
2013-06-04 18:53:56 +02:00
skip_while(end, buffer.end(), [c](Codepoint cur) { return cur != c; });
if (end == buffer.end())
return selection;
}
while (--count > 0);
return utf8_range(begin, inclusive ? end : end-1);
}
2013-06-01 14:22:57 +02:00
Selection select_to_reverse(const Buffer& buffer, const Selection& selection,
Codepoint c, int count, bool inclusive)
{
Utf8Iterator begin = buffer.iterator_at(selection.cursor());
2012-10-08 19:12:09 +02:00
Utf8Iterator end = begin;
do
{
--end;
2013-06-04 18:53:56 +02:00
skip_while_reverse(end, buffer.begin(), [c](Codepoint cur) { return cur != c; });
if (end == buffer.begin())
return selection;
}
while (--count > 0);
return utf8_range(begin, inclusive ? end : end+1);
}
2013-06-01 14:22:57 +02:00
Selection select_to_eol(const Buffer& buffer, const Selection& selection)
{
Utf8Iterator begin = buffer.iterator_at(selection.cursor());
Utf8Iterator end = begin;
2013-06-04 18:53:56 +02:00
skip_while(end, buffer.end(), [](Codepoint cur) { return not is_eol(cur); });
2014-09-10 00:41:32 +02:00
return target_eol(utf8_range(begin, end != begin ? end-1 : end));
}
2013-06-01 14:22:57 +02:00
Selection select_to_eol_reverse(const Buffer& buffer, const Selection& selection)
{
Utf8Iterator begin = buffer.iterator_at(selection.cursor());
2012-10-08 19:12:09 +02:00
Utf8Iterator end = begin - 1;
2013-06-04 18:53:56 +02:00
skip_while_reverse(end, buffer.begin(), [](Codepoint cur) { return not is_eol(cur); });
return utf8_range(begin, end == buffer.begin() ? end : end+1);
}
Selection select_number(const Buffer& buffer, const Selection& selection, ObjectFlags flags)
{
auto is_number = [&](char c) {
return (c >= '0' and c <= '9') or
(not (flags & ObjectFlags::Inner) and c == '.');
};
BufferIterator first = buffer.iterator_at(selection.cursor());
if (flags & ObjectFlags::ToBegin)
{
skip_while_reverse(first, buffer.begin(), is_number);
2014-07-09 19:52:38 +02:00
if (not is_number(*first) and *first != '-')
++first;
}
BufferIterator last = buffer.iterator_at(selection.cursor());
if (flags & ObjectFlags::ToEnd)
{
skip_while(last, buffer.end(), is_number);
--last;
}
return (flags & ObjectFlags::ToEnd) ? Selection{first.coord(), last.coord()}
: Selection{last.coord(), first.coord()};
}
2014-03-30 12:13:37 +02:00
static bool is_end_of_sentence(char c)
{
return c == '.' or c == ';' or c == '!' or c == '?';
}
Selection select_sentence(const Buffer& buffer, const Selection& selection, ObjectFlags flags)
2013-04-30 14:21:48 +02:00
{
BufferIterator first = buffer.iterator_at(selection.cursor());
if (not (flags & ObjectFlags::ToEnd))
{
BufferIterator prev_non_blank = first-1;
skip_while_reverse(prev_non_blank, buffer.begin(),
[](char c) { return is_blank(c) or is_eol(c); });
if (is_end_of_sentence(*prev_non_blank))
first = prev_non_blank;
}
BufferIterator last = first;
2013-04-30 14:21:48 +02:00
if (flags & ObjectFlags::ToBegin)
2013-04-30 14:21:48 +02:00
{
bool saw_non_blank = false;
2013-06-04 18:53:56 +02:00
while (first != buffer.begin())
2013-04-30 14:21:48 +02:00
{
char cur = *first;
char prev = *(first-1);
if (not is_blank(cur))
saw_non_blank = true;
if (is_eol(prev) and is_eol(cur))
{
++first;
break;
}
2014-03-30 12:13:37 +02:00
else if (is_end_of_sentence(prev))
{
if (saw_non_blank)
break;
else if (flags & ObjectFlags::ToEnd)
last = first-1;
}
--first;
2013-04-30 14:21:48 +02:00
}
2013-06-04 18:53:56 +02:00
skip_while(first, buffer.end(), is_blank);
2013-04-30 14:21:48 +02:00
}
if (flags & ObjectFlags::ToEnd)
2013-04-30 14:21:48 +02:00
{
2013-06-04 18:53:56 +02:00
while (last != buffer.end())
{
char cur = *last;
2014-03-30 12:13:37 +02:00
if (is_end_of_sentence(cur) or
2013-06-04 18:53:56 +02:00
(is_eol(cur) and (last+1 == buffer.end() or is_eol(*(last+1)))))
break;
++last;
}
2013-06-04 18:53:56 +02:00
if (not (flags & ObjectFlags::Inner) and last != buffer.end())
{
++last;
2013-06-04 18:53:56 +02:00
skip_while(last, buffer.end(), is_blank);
--last;
}
2013-04-30 14:21:48 +02:00
}
return (flags & ObjectFlags::ToEnd) ? Selection{first.coord(), last.coord()}
: Selection{last.coord(), first.coord()};
2013-04-30 14:21:48 +02:00
}
Selection select_paragraph(const Buffer& buffer, const Selection& selection, ObjectFlags flags)
2013-04-30 14:29:18 +02:00
{
BufferIterator first = buffer.iterator_at(selection.cursor());
if (not (flags & ObjectFlags::ToEnd) and first.coord() > ByteCoord{0,1} and
*(first-1) == '\n' and *(first-2) == '\n')
--first;
else if ((flags & ObjectFlags::ToEnd) and
first != buffer.begin() and (first+1) != buffer.end() and
*(first-1) == '\n' and *first == '\n')
++first;
BufferIterator last = first;
2013-04-30 14:29:18 +02:00
if ((flags & ObjectFlags::ToBegin) and first != buffer.begin())
2013-04-30 14:29:18 +02:00
{
2013-06-04 18:53:56 +02:00
skip_while_reverse(first, buffer.begin(), is_eol);
if (flags & ObjectFlags::ToEnd)
last = first;
2013-06-04 18:53:56 +02:00
while (first != buffer.begin())
2013-04-30 14:29:18 +02:00
{
char cur = *first;
char prev = *(first-1);
if (is_eol(prev) and is_eol(cur))
{
++first;
break;
}
--first;
2013-04-30 14:29:18 +02:00
}
}
if (flags & ObjectFlags::ToEnd)
2013-04-30 14:29:18 +02:00
{
2014-12-29 13:19:16 +01:00
if (last != buffer.end() and is_eol(*last))
++last;
2013-06-04 18:53:56 +02:00
while (last != buffer.end())
2013-04-30 14:29:18 +02:00
{
2014-06-14 15:07:03 +02:00
if (last != buffer.begin() and is_eol(*last) and is_eol(*(last-1)))
{
if (not (flags & ObjectFlags::Inner))
2013-06-04 18:53:56 +02:00
skip_while(last, buffer.end(), is_eol);
break;
}
++last;
2013-04-30 14:29:18 +02:00
}
--last;
2013-04-30 14:29:18 +02:00
}
return (flags & ObjectFlags::ToEnd) ? Selection{first.coord(), last.coord()}
: Selection{last.coord(), first.coord()};
2013-04-30 14:29:18 +02:00
}
2014-06-11 15:00:45 +02:00
Selection select_whitespaces(const Buffer& buffer, const Selection& selection, ObjectFlags flags)
{
auto is_whitespace = [&](char c) {
return c == ' ' or c == '\t' or
(not (flags & ObjectFlags::Inner) and c == '\n');
};
BufferIterator first = buffer.iterator_at(selection.cursor());
BufferIterator last = first;
if (flags & ObjectFlags::ToBegin)
{
if (is_whitespace(*first))
{
skip_while_reverse(first, buffer.begin(), is_whitespace);
if (not is_whitespace(*first))
++first;
}
}
if (flags & ObjectFlags::ToEnd)
{
if (is_whitespace(*last))
{
skip_while(last, buffer.end(), is_whitespace);
--last;
}
}
return (flags & ObjectFlags::ToEnd) ? utf8_range(first, last)
: utf8_range(last, first);
}
static CharCount get_indent(StringView str, int tabstop)
2014-10-02 00:41:06 +02:00
{
CharCount indent = 0;
for (auto& c : str)
{
if (c == ' ')
++indent;
else if (c =='\t')
indent = (indent / tabstop + 1) * tabstop;
else
break;
}
return indent;
}
static bool is_only_whitespaces(StringView str)
{
auto it = str.begin();
skip_while(it, str.end(),
[](char c){ return c == ' ' or c == '\t' or c == '\n'; });
return it == str.end();
}
Selection select_indent(const Buffer& buffer, const Selection& selection, ObjectFlags flags)
2013-07-22 19:58:16 +02:00
{
int tabstop = buffer.options()["tabstop"].get<int>();
LineCount line = selection.cursor().line;
2013-07-22 19:58:16 +02:00
auto indent = get_indent(buffer[line], tabstop);
LineCount begin_line = line - 1;
if (flags & ObjectFlags::ToBegin)
{
while (begin_line >= 0 and (buffer[begin_line] == StringView{"\n"} or
get_indent(buffer[begin_line], tabstop) >= indent))
2013-07-22 19:58:16 +02:00
--begin_line;
}
++begin_line;
LineCount end_line = line + 1;
if (flags & ObjectFlags::ToEnd)
{
const LineCount end = buffer.line_count();
while (end_line < end and (buffer[end_line] == StringView{"\n"} or
get_indent(buffer[end_line], tabstop) >= indent))
2013-07-22 19:58:16 +02:00
++end_line;
}
--end_line;
// remove only whitespaces lines in inner mode
if (flags & ObjectFlags::Inner)
{
while (begin_line < end_line and
is_only_whitespaces(buffer[begin_line]))
++begin_line;
while (begin_line < end_line and
is_only_whitespaces(buffer[end_line]))
--end_line;
}
return Selection{begin_line, {end_line, buffer[end_line].length() - 1}};
2013-07-22 19:58:16 +02:00
}
Selection select_lines(const Buffer& buffer, const Selection& selection)
{
2013-01-03 14:30:14 +01:00
// no need to be utf8 aware for is_eol as we only use \n as line seperator
BufferIterator first = buffer.iterator_at(selection.anchor());
BufferIterator last = buffer.iterator_at(selection.cursor());
2013-01-03 14:30:14 +01:00
BufferIterator& to_line_start = first <= last ? first : last;
BufferIterator& to_line_end = first <= last ? last : first;
2013-01-03 14:30:14 +01:00
--to_line_start;
2013-06-04 18:53:56 +02:00
skip_while_reverse(to_line_start, buffer.begin(), [](char cur) { return not is_eol(cur); });
2013-01-03 14:30:14 +01:00
if (is_eol(*to_line_start))
2014-04-10 21:06:17 +02:00
{
if (++to_line_start == buffer.end())
--to_line_start;
}
2011-11-22 19:58:05 +01:00
2013-06-04 18:53:56 +02:00
skip_while(to_line_end, buffer.end(), [](char cur) { return not is_eol(cur); });
if (to_line_end == buffer.end())
--to_line_end;
2014-09-10 00:41:32 +02:00
return target_eol({first.coord(), last.coord()});
}
2013-06-01 14:22:57 +02:00
Selection trim_partial_lines(const Buffer& buffer, const Selection& selection)
2013-04-16 14:30:11 +02:00
{
// same as select_lines
BufferIterator first = buffer.iterator_at(selection.anchor());
BufferIterator last = buffer.iterator_at(selection.cursor());
2013-04-16 14:30:11 +02:00
BufferIterator& to_line_start = first <= last ? first : last;
BufferIterator& to_line_end = first <= last ? last : first;
2013-06-04 18:53:56 +02:00
while (to_line_start != buffer.begin() and *(to_line_start-1) != '\n')
2013-04-16 14:30:11 +02:00
++to_line_start;
while (*(to_line_end+1) != '\n' and to_line_end != to_line_start)
--to_line_end;
2014-09-10 00:41:32 +02:00
return target_eol({first.coord(), last.coord()});
2013-04-16 14:30:11 +02:00
}
void select_buffer(SelectionList& selections)
{
auto& buffer = selections.buffer();
2014-09-10 00:41:32 +02:00
selections = SelectionList{ buffer, target_eol({{0,0}, buffer.back_coord()}) };
}
using RegexIt = RegexIterator<BufferIterator>;
void select_all_matches(SelectionList& selections, const Regex& regex)
{
2015-01-12 14:58:41 +01:00
Vector<Selection> result;
auto& buffer = selections.buffer();
for (auto& sel : selections)
{
auto sel_end = utf8::next(buffer.iterator_at(sel.max()), buffer.end());
RegexIt re_it(buffer.iterator_at(sel.min()), sel_end, regex);
RegexIt re_end;
for (; re_it != re_end; ++re_it)
{
auto begin = ensure_char_start(buffer, (*re_it)[0].first);
auto end = ensure_char_start(buffer, (*re_it)[0].second);
if (begin == sel_end)
continue;
CaptureList captures;
for (auto& match : *re_it)
captures.emplace_back(match.first, match.second);
result.push_back(
keep_direction({ begin.coord(),
(begin == end ? end : utf8::previous(end, begin)).coord(),
std::move(captures) }, sel));
}
}
if (result.empty())
throw runtime_error("nothing selected");
selections = std::move(result);
}
void split_selections(SelectionList& selections, const Regex& regex)
{
2015-01-12 14:58:41 +01:00
Vector<Selection> result;
auto& buffer = selections.buffer();
auto buf_end = buffer.end();
for (auto& sel : selections)
{
auto begin = buffer.iterator_at(sel.min());
auto sel_end = utf8::next(buffer.iterator_at(sel.max()), buffer.end());
RegexIt re_it(begin, sel_end, regex);
RegexIt re_end;
for (; re_it != re_end; ++re_it)
{
BufferIterator end = (*re_it)[0].first;
if (end == buf_end)
continue;
end = ensure_char_start(buffer, end);
result.push_back(keep_direction({ begin.coord(), (begin == end) ? end.coord() : utf8::previous(end, begin).coord() }, sel));
begin = ensure_char_start(buffer, (*re_it)[0].second);
}
if (begin.coord() <= sel.max())
result.push_back(keep_direction({ begin.coord(), sel.max() }, sel));
}
selections = std::move(result);
}
}