2011-09-21 16:37:09 +02:00
|
|
|
#include "selectors.hh"
|
|
|
|
|
2011-11-21 20:08:51 +01:00
|
|
|
#include <boost/regex.hpp>
|
2011-09-21 21:09:49 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2011-09-21 21:09:49 +02:00
|
|
|
static bool is_eol(char c)
|
|
|
|
{
|
|
|
|
return c == '\n';
|
|
|
|
}
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
static bool is_blank(char c)
|
|
|
|
{
|
2011-09-26 01:50:13 +02:00
|
|
|
return c == ' ' or c == '\t';
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_word(char c)
|
|
|
|
{
|
|
|
|
if (c >= '0' and c <= '9')
|
|
|
|
return true;
|
|
|
|
if (c >= 'a' and c <= 'z')
|
|
|
|
return true;
|
|
|
|
if (c >= 'A' and c <= 'Z')
|
|
|
|
return true;
|
2011-09-22 16:00:31 +02:00
|
|
|
if (c == '_')
|
|
|
|
return true;
|
2011-09-21 16:37:09 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-22 16:00:31 +02:00
|
|
|
static bool is_punctuation(char c)
|
|
|
|
{
|
2011-09-26 01:50:13 +02:00
|
|
|
return not (is_word(c) or is_blank(c) or is_eol(c));
|
2011-09-22 16:00:31 +02:00
|
|
|
}
|
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
enum class CharCategories
|
|
|
|
{
|
|
|
|
Blank,
|
2011-09-26 01:50:13 +02:00
|
|
|
EndOfLine,
|
2011-09-23 11:17:19 +02:00
|
|
|
Word,
|
|
|
|
Punctuation,
|
|
|
|
};
|
|
|
|
|
2011-10-25 20:46:14 +02:00
|
|
|
template<bool punctuation_is_not_word = true>
|
2011-09-23 11:17:19 +02:00
|
|
|
static CharCategories categorize(char c)
|
|
|
|
{
|
|
|
|
if (is_word(c))
|
|
|
|
return CharCategories::Word;
|
2011-09-26 01:50:13 +02:00
|
|
|
if (is_eol(c))
|
|
|
|
return CharCategories::EndOfLine;
|
2011-09-23 11:17:19 +02:00
|
|
|
if (is_blank(c))
|
|
|
|
return CharCategories::Blank;
|
2011-10-25 20:46:14 +02:00
|
|
|
return punctuation_is_not_word ? CharCategories::Punctuation
|
|
|
|
: CharCategories::Word;
|
2011-09-23 11:17:19 +02:00
|
|
|
}
|
|
|
|
|
2011-09-22 16:00:31 +02:00
|
|
|
template<typename T>
|
|
|
|
void skip_while(BufferIterator& it, T condition)
|
|
|
|
{
|
|
|
|
while (not it.is_end() and condition(*it))
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void skip_while_reverse(BufferIterator& it, T condition)
|
|
|
|
{
|
|
|
|
while (not it.is_begin() and condition(*it))
|
|
|
|
--it;
|
|
|
|
}
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
Selection select_to_next_word(const BufferIterator& cursor)
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator begin = cursor;
|
2011-09-26 01:50:13 +02:00
|
|
|
if (categorize(*begin) != categorize(*(begin+1)))
|
2011-09-23 11:17:19 +02:00
|
|
|
++begin;
|
2011-09-26 01:50:13 +02:00
|
|
|
|
|
|
|
skip_while(begin, is_eol);
|
|
|
|
|
|
|
|
BufferIterator end = begin+1;
|
2011-09-23 11:17:19 +02:00
|
|
|
|
|
|
|
if (is_punctuation(*begin))
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while(end, is_punctuation);
|
2011-09-26 01:50:13 +02:00
|
|
|
else if (is_word(*begin))
|
2011-09-23 11:17:19 +02:00
|
|
|
skip_while(end, is_word);
|
|
|
|
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while(end, is_blank);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, end-1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Selection select_to_next_word_end(const BufferIterator& cursor)
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator begin = cursor;
|
2011-09-26 01:50:13 +02:00
|
|
|
if (categorize(*begin) != categorize(*(begin+1)))
|
2011-09-23 11:17:19 +02:00
|
|
|
++begin;
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-26 01:50:13 +02:00
|
|
|
skip_while(begin, is_eol);
|
|
|
|
BufferIterator end = begin;
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while(end, is_blank);
|
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
if (is_punctuation(*end))
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while(end, is_punctuation);
|
2011-09-23 11:17:19 +02:00
|
|
|
else if (is_word(*end))
|
|
|
|
skip_while(end, is_word);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, end-1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Selection select_to_previous_word(const BufferIterator& cursor)
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator begin = cursor;
|
|
|
|
|
2011-09-26 01:50:13 +02:00
|
|
|
if (categorize(*begin) != categorize(*(begin-1)))
|
2011-09-23 11:17:19 +02:00
|
|
|
--begin;
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-26 01:50:13 +02:00
|
|
|
skip_while_reverse(begin, is_eol);
|
|
|
|
BufferIterator end = begin;
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while_reverse(end, is_blank);
|
2011-09-23 11:17:19 +02:00
|
|
|
|
|
|
|
if (is_punctuation(*end))
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while_reverse(end, is_punctuation);
|
2011-09-23 11:17:19 +02:00
|
|
|
else if (is_word(*end))
|
|
|
|
skip_while_reverse(end, is_word);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, end+1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
2011-10-25 20:46:14 +02:00
|
|
|
Selection select_to_next_WORD(const BufferIterator& cursor)
|
|
|
|
{
|
|
|
|
BufferIterator begin = cursor;
|
|
|
|
if (categorize<false>(*begin) != categorize<false>(*(begin+1)))
|
|
|
|
++begin;
|
|
|
|
|
|
|
|
skip_while(begin, is_eol);
|
|
|
|
|
|
|
|
BufferIterator end = begin+1;
|
|
|
|
|
|
|
|
skip_while(end, [] (char c) { return !is_blank(c) and !is_eol(c); });
|
|
|
|
skip_while(end, is_blank);
|
|
|
|
|
|
|
|
return Selection(begin, end-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Selection select_to_next_WORD_end(const BufferIterator& cursor)
|
|
|
|
{
|
|
|
|
BufferIterator begin = cursor;
|
|
|
|
if (categorize<false>(*begin) != categorize<false>(*(begin+1)))
|
|
|
|
++begin;
|
|
|
|
|
|
|
|
skip_while(begin, is_eol);
|
|
|
|
|
|
|
|
BufferIterator end = begin+1;
|
|
|
|
|
|
|
|
skip_while(end, is_blank);
|
|
|
|
skip_while(end, [] (char c) { return !is_blank(c) and !is_eol(c); });
|
|
|
|
|
|
|
|
return Selection(begin, end-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Selection select_to_previous_WORD(const BufferIterator& cursor)
|
|
|
|
{
|
|
|
|
BufferIterator begin = cursor;
|
2011-10-27 16:09:57 +02:00
|
|
|
if (categorize<false>(*begin) != categorize<false>(*(begin-1)))
|
|
|
|
--begin;
|
2011-10-25 20:46:14 +02:00
|
|
|
|
|
|
|
skip_while_reverse(begin, is_eol);
|
2011-10-27 16:09:57 +02:00
|
|
|
BufferIterator end = begin;
|
2011-10-25 20:46:14 +02:00
|
|
|
skip_while_reverse(end, is_blank);
|
|
|
|
skip_while_reverse(end, [] (char c) { return !is_blank(c) and !is_eol(c); });
|
|
|
|
|
|
|
|
return Selection(begin, end+1);
|
|
|
|
}
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
Selection select_line(const BufferIterator& cursor)
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator first = cursor;
|
2011-10-27 20:57:31 +02:00
|
|
|
if (*first == '\n' and not first.is_end())
|
|
|
|
++first;
|
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
while (not first.is_begin() and *(first - 1) != '\n')
|
|
|
|
--first;
|
|
|
|
|
2011-10-27 20:57:31 +02:00
|
|
|
BufferIterator last = first;
|
2011-09-23 11:17:19 +02:00
|
|
|
while (not (last + 1).is_end() and *last != '\n')
|
|
|
|
++last;
|
|
|
|
return Selection(first, last);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
2011-09-21 21:09:49 +02:00
|
|
|
Selection select_matching(const BufferIterator& cursor)
|
|
|
|
{
|
|
|
|
std::vector<char> matching_pairs = { '(', ')', '{', '}', '[', ']', '<', '>' };
|
|
|
|
BufferIterator it = cursor;
|
|
|
|
std::vector<char>::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(cursor, cursor);
|
|
|
|
|
|
|
|
BufferIterator begin = it;
|
|
|
|
|
|
|
|
if (((match - matching_pairs.begin()) % 2) == 0)
|
|
|
|
{
|
|
|
|
int level = 0;
|
|
|
|
const char opening = *match;
|
|
|
|
const char closing = *(match+1);
|
|
|
|
while (not it.is_end())
|
|
|
|
{
|
|
|
|
if (*it == opening)
|
|
|
|
++level;
|
|
|
|
else if (*it == closing and --level == 0)
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, it);
|
2011-09-21 21:09:49 +02:00
|
|
|
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int level = 0;
|
|
|
|
const char opening = *(match-1);
|
|
|
|
const char closing = *match;
|
|
|
|
while (not it.is_begin())
|
|
|
|
{
|
|
|
|
if (*it == closing)
|
|
|
|
++level;
|
|
|
|
else if (*it == opening and --level == 0)
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, it);
|
2011-09-21 21:09:49 +02:00
|
|
|
--it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Selection(cursor, cursor);
|
|
|
|
}
|
|
|
|
|
2011-09-27 16:27:48 +02:00
|
|
|
Selection select_to(const BufferIterator& cursor, char c, int count, bool inclusive)
|
2011-09-22 16:35:28 +02:00
|
|
|
{
|
2011-09-27 16:27:48 +02:00
|
|
|
BufferIterator end = cursor;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
++end;
|
|
|
|
skip_while(end, [c](char cur) { return not is_eol(cur) and cur != c; });
|
|
|
|
if (end.is_end() or is_eol(*end))
|
|
|
|
return Selection(cursor, cursor);
|
|
|
|
}
|
|
|
|
while (--count > 0);
|
|
|
|
|
|
|
|
return Selection(cursor, inclusive ? end : end-1);
|
2011-09-22 16:35:28 +02:00
|
|
|
}
|
|
|
|
|
2011-10-03 16:29:44 +02:00
|
|
|
Selection select_to_reverse(const BufferIterator& cursor, char c, int count, bool inclusive)
|
|
|
|
{
|
|
|
|
BufferIterator end = cursor;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
--end;
|
|
|
|
skip_while_reverse(end, [c](char cur) { return not is_eol(cur) and cur != c; });
|
|
|
|
if (end.is_begin() or is_eol(*end))
|
|
|
|
return Selection(cursor, cursor);
|
|
|
|
}
|
|
|
|
while (--count > 0);
|
|
|
|
|
|
|
|
return Selection(cursor, inclusive ? end : end+1);
|
|
|
|
}
|
|
|
|
|
2011-10-10 16:24:17 +02:00
|
|
|
Selection select_to_eol(const BufferIterator& cursor)
|
|
|
|
{
|
|
|
|
BufferIterator end = cursor + 1;
|
|
|
|
skip_while(end, [](char cur) { return not is_eol(cur); });
|
|
|
|
return Selection(cursor, end-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Selection select_to_eol_reverse(const BufferIterator& cursor)
|
|
|
|
{
|
|
|
|
BufferIterator end = cursor - 1;
|
|
|
|
skip_while_reverse(end, [](char cur) { return not is_eol(cur); });
|
|
|
|
return Selection(cursor, end.is_begin() ? end : end+1);
|
|
|
|
}
|
|
|
|
|
2011-11-21 19:53:22 +01:00
|
|
|
SelectionList select_whole_lines(const Selection& selection)
|
|
|
|
{
|
|
|
|
BufferIterator first = selection.first();
|
|
|
|
BufferIterator last = selection.last();
|
|
|
|
BufferIterator& to_line_start = first <= last ? first : last;
|
|
|
|
BufferIterator& to_line_end = first <= last ? last : first;
|
|
|
|
|
|
|
|
skip_while_reverse(to_line_start, [](char cur) { return not is_eol(cur); });
|
|
|
|
skip_while(to_line_end, [](char cur) { return not is_eol(cur); });
|
|
|
|
|
|
|
|
if (to_line_start != to_line_end)
|
|
|
|
++to_line_start;
|
|
|
|
|
|
|
|
SelectionList result;
|
|
|
|
result.push_back(Selection(first, last));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-11-21 20:08:51 +01:00
|
|
|
Selection select_next_match(const BufferIterator& cursor,
|
|
|
|
const std::string& regex)
|
|
|
|
{
|
|
|
|
boost::regex ex(regex);
|
|
|
|
|
|
|
|
BufferIterator begin = cursor;
|
|
|
|
BufferIterator end = cursor;
|
|
|
|
Selection::CaptureList captures;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
boost::match_results<BufferIterator> matches;
|
|
|
|
|
|
|
|
if (boost::regex_search(cursor, cursor.buffer().end(), matches,
|
|
|
|
ex))
|
|
|
|
{
|
|
|
|
begin = matches[0].first;
|
|
|
|
end = matches[0].second;
|
|
|
|
std::copy(matches.begin(), matches.end(),
|
|
|
|
std::back_inserter(captures));
|
|
|
|
}
|
|
|
|
else if (boost::regex_search(cursor.buffer().begin(), cursor, matches,
|
|
|
|
ex))
|
|
|
|
{
|
|
|
|
begin = matches[0].first;
|
|
|
|
end = matches[0].second;
|
|
|
|
std::copy(matches.begin(), matches.end(),
|
|
|
|
std::back_inserter(captures));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (boost::regex_error& err)
|
|
|
|
{
|
|
|
|
throw runtime_error("regex error");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (begin == end)
|
|
|
|
++end;
|
|
|
|
|
|
|
|
return Selection(begin, end - 1, std::move(captures));
|
|
|
|
}
|
|
|
|
|
2011-11-21 20:30:44 +01:00
|
|
|
typedef boost::regex_iterator<BufferIterator> RegexIterator;
|
|
|
|
|
2011-11-21 20:08:51 +01:00
|
|
|
SelectionList select_all_matches(const Selection& selection,
|
|
|
|
const std::string& regex)
|
|
|
|
{
|
|
|
|
boost::regex ex(regex);
|
2011-11-21 20:30:44 +01:00
|
|
|
RegexIterator re_it(selection.begin(), selection.end(), ex);
|
|
|
|
RegexIterator re_end;
|
2011-11-21 20:08:51 +01:00
|
|
|
|
|
|
|
SelectionList result;
|
|
|
|
for (; re_it != re_end; ++re_it)
|
|
|
|
{
|
|
|
|
BufferIterator begin = (*re_it)[0].first;
|
|
|
|
BufferIterator end = (*re_it)[0].second;
|
|
|
|
|
|
|
|
Selection::CaptureList captures(re_it->begin(), re_it->end());
|
2011-11-21 20:30:44 +01:00
|
|
|
|
|
|
|
result.push_back(Selection(begin, begin == end ? end : end-1,
|
|
|
|
std::move(captures)));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
SelectionList split_selection(const Selection& selection,
|
|
|
|
const std::string& separator_regex)
|
|
|
|
{
|
|
|
|
boost::regex ex(separator_regex);
|
|
|
|
RegexIterator re_it(selection.begin(), selection.end(), ex,
|
|
|
|
boost::regex_constants::match_nosubs);
|
|
|
|
RegexIterator re_end;
|
|
|
|
|
|
|
|
SelectionList result;
|
|
|
|
BufferIterator begin = selection.begin();
|
|
|
|
for (; re_it != re_end; ++re_it)
|
|
|
|
{
|
|
|
|
BufferIterator end = (*re_it)[0].first;
|
|
|
|
|
|
|
|
result.push_back(Selection(begin, (begin == end) ? end : end-1));
|
|
|
|
begin = (*re_it)[0].second;
|
2011-11-21 20:08:51 +01:00
|
|
|
}
|
2011-11-21 20:30:44 +01:00
|
|
|
result.push_back(Selection(begin, selection.last()));
|
2011-11-21 20:08:51 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|