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>
|
2011-11-24 19:46:35 +01:00
|
|
|
bool skip_while(BufferIterator& it, T condition)
|
2011-09-22 16:00:31 +02:00
|
|
|
{
|
|
|
|
while (not it.is_end() and condition(*it))
|
|
|
|
++it;
|
2011-11-24 19:46:35 +01:00
|
|
|
return condition(*it);
|
2011-09-22 16:00:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2011-11-24 19:46:35 +01:00
|
|
|
bool skip_while_reverse(BufferIterator& it, T condition)
|
2011-09-22 16:00:31 +02:00
|
|
|
{
|
|
|
|
while (not it.is_begin() and condition(*it))
|
|
|
|
--it;
|
2011-11-24 19:46:35 +01:00
|
|
|
return condition(*it);
|
2011-09-22 16:00:31 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_next_word(const Selection& selection)
|
2011-09-21 16:37:09 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
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-11-24 19:46:35 +01:00
|
|
|
bool with_end = skip_while(end, is_blank);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-11-24 19:46:35 +01:00
|
|
|
return Selection(begin, with_end ? end : end-1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_next_word_end(const Selection& selection)
|
2011-09-21 16:37:09 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
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-11-24 19:46:35 +01:00
|
|
|
bool with_end = false;
|
2011-09-23 11:17:19 +02:00
|
|
|
if (is_punctuation(*end))
|
2011-11-24 19:46:35 +01:00
|
|
|
with_end = skip_while(end, is_punctuation);
|
2011-09-23 11:17:19 +02:00
|
|
|
else if (is_word(*end))
|
2011-11-24 19:46:35 +01:00
|
|
|
with_end = skip_while(end, is_word);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-11-24 19:46:35 +01:00
|
|
|
return Selection(begin, with_end ? end : end-1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_previous_word(const Selection& selection)
|
2011-09-21 16:37:09 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
2011-09-23 11:17:19 +02:00
|
|
|
|
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
|
|
|
|
2011-11-24 19:46:35 +01:00
|
|
|
bool with_end = false;
|
2011-09-23 11:17:19 +02:00
|
|
|
if (is_punctuation(*end))
|
2011-11-24 19:46:35 +01:00
|
|
|
with_end = skip_while_reverse(end, is_punctuation);
|
2011-09-23 11:17:19 +02:00
|
|
|
else if (is_word(*end))
|
2011-11-24 19:46:35 +01:00
|
|
|
with_end = skip_while_reverse(end, is_word);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-11-24 19:46:35 +01:00
|
|
|
return Selection(begin, with_end ? end : end+1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_next_WORD(const Selection& selection)
|
2011-10-25 20:46:14 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
2011-10-25 20:46:14 +02:00
|
|
|
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); });
|
2011-11-24 19:46:35 +01:00
|
|
|
bool with_end = skip_while(end, is_blank);
|
2011-10-25 20:46:14 +02:00
|
|
|
|
2011-11-24 19:46:35 +01:00
|
|
|
return Selection(begin, with_end ? end : end-1);
|
2011-10-25 20:46:14 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_next_WORD_end(const Selection& selection)
|
2011-10-25 20:46:14 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
2011-10-25 20:46:14 +02:00
|
|
|
if (categorize<false>(*begin) != categorize<false>(*(begin+1)))
|
|
|
|
++begin;
|
|
|
|
|
|
|
|
skip_while(begin, is_eol);
|
|
|
|
|
|
|
|
BufferIterator end = begin+1;
|
|
|
|
|
|
|
|
skip_while(end, is_blank);
|
2011-11-24 19:46:35 +01:00
|
|
|
bool with_end = skip_while(end, [] (char c) { return !is_blank(c)
|
|
|
|
and !is_eol(c); });
|
2011-10-25 20:46:14 +02:00
|
|
|
|
2011-11-24 19:46:35 +01:00
|
|
|
return Selection(begin, with_end ? end : end-1);
|
2011-10-25 20:46:14 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_previous_WORD(const Selection& selection)
|
2011-10-25 20:46:14 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
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);
|
2011-11-24 19:46:35 +01:00
|
|
|
bool with_end = skip_while_reverse(end, [] (char c) { return !is_blank(c)
|
|
|
|
and !is_eol(c); });
|
2011-10-25 20:46:14 +02:00
|
|
|
|
2011-11-24 19:46:35 +01:00
|
|
|
return Selection(begin, with_end ? end : end+1);
|
2011-10-25 20:46:14 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_line(const Selection& selection)
|
2011-09-21 16:37:09 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator first = selection.last();
|
2011-12-02 19:56:18 +01:00
|
|
|
if (*first == '\n' and not (first + 1).is_end())
|
2011-10-27 20:57:31 +02:00
|
|
|
++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
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_matching(const Selection& selection)
|
2011-09-21 21:09:49 +02:00
|
|
|
{
|
|
|
|
std::vector<char> matching_pairs = { '(', ')', '{', '}', '[', ']', '<', '>' };
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator it = selection.last();
|
2011-09-21 21:09:49 +02:00
|
|
|
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())
|
2012-02-07 15:26:51 +01:00
|
|
|
return selection;
|
2011-09-21 21:09:49 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2012-02-07 15:26:51 +01:00
|
|
|
return selection;
|
2011-09-21 21:09:49 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_surrounding(const Selection& selection,
|
2012-01-04 15:18:08 +01:00
|
|
|
const std::pair<char, char>& matching,
|
|
|
|
bool inside)
|
|
|
|
{
|
|
|
|
int level = 0;
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator first = selection.last();
|
2012-01-04 15:18:08 +01:00
|
|
|
while (not first.is_begin())
|
|
|
|
{
|
|
|
|
if (*first == matching.second)
|
|
|
|
++level;
|
|
|
|
else if (*first == matching.first)
|
|
|
|
{
|
|
|
|
if (level == 0)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
--level;
|
|
|
|
}
|
|
|
|
--first;
|
|
|
|
}
|
|
|
|
if (level != 0 or *first != matching.first)
|
2012-02-07 15:26:51 +01:00
|
|
|
return selection;
|
2012-01-04 15:18:08 +01:00
|
|
|
|
|
|
|
level = 0;
|
|
|
|
BufferIterator last = first + 1;
|
|
|
|
while (not last.is_end())
|
|
|
|
{
|
|
|
|
if (*last == matching.first)
|
|
|
|
++level;
|
|
|
|
else if (*last == matching.second)
|
|
|
|
{
|
|
|
|
if (level == 0)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
--level;
|
|
|
|
}
|
|
|
|
++last;
|
|
|
|
}
|
|
|
|
if (level != 0 or *last != matching.second)
|
2012-02-07 15:26:51 +01:00
|
|
|
return selection;
|
2012-01-04 15:18:08 +01:00
|
|
|
|
|
|
|
if (inside)
|
|
|
|
{
|
|
|
|
++first;
|
|
|
|
if (first != last)
|
|
|
|
--last;
|
|
|
|
}
|
|
|
|
return Selection(first, last);
|
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to(const Selection& selection,
|
|
|
|
char c, int count, bool inclusive)
|
2011-09-22 16:35:28 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
|
|
|
BufferIterator end = begin;
|
2011-09-27 16:27:48 +02:00
|
|
|
do
|
|
|
|
{
|
|
|
|
++end;
|
|
|
|
skip_while(end, [c](char cur) { return not is_eol(cur) and cur != c; });
|
|
|
|
if (end.is_end() or is_eol(*end))
|
2012-02-07 15:26:51 +01:00
|
|
|
return selection;
|
2011-09-27 16:27:48 +02:00
|
|
|
}
|
|
|
|
while (--count > 0);
|
|
|
|
|
2012-02-07 15:26:51 +01:00
|
|
|
return Selection(begin, inclusive ? end : end-1);
|
2011-09-22 16:35:28 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_reverse(const Selection& selection,
|
|
|
|
char c, int count, bool inclusive)
|
2011-10-03 16:29:44 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
|
|
|
BufferIterator end = begin;
|
2011-10-03 16:29:44 +02:00
|
|
|
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))
|
2012-02-07 15:26:51 +01:00
|
|
|
return selection;
|
2011-10-03 16:29:44 +02:00
|
|
|
}
|
|
|
|
while (--count > 0);
|
|
|
|
|
2012-02-07 15:26:51 +01:00
|
|
|
return Selection(begin, inclusive ? end : end+1);
|
2011-10-03 16:29:44 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_eol(const Selection& selection)
|
2011-10-10 16:24:17 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
|
|
|
BufferIterator end = begin + 1;
|
2011-10-10 16:24:17 +02:00
|
|
|
skip_while(end, [](char cur) { return not is_eol(cur); });
|
2012-02-07 15:26:51 +01:00
|
|
|
return Selection(begin, end-1);
|
2011-10-10 16:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_to_eol_reverse(const Selection& selection)
|
2011-10-10 16:24:17 +02:00
|
|
|
{
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
|
|
|
BufferIterator end = begin - 1;
|
2011-10-10 16:24:17 +02:00
|
|
|
skip_while_reverse(end, [](char cur) { return not is_eol(cur); });
|
2012-02-07 15:26:51 +01:00
|
|
|
return Selection(begin, end.is_begin() ? end : end+1);
|
2011-10-10 16:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_whole_lines(const Selection& selection)
|
2011-11-21 19:53:22 +01:00
|
|
|
{
|
|
|
|
BufferIterator first = selection.first();
|
|
|
|
BufferIterator last = selection.last();
|
|
|
|
BufferIterator& to_line_start = first <= last ? first : last;
|
|
|
|
BufferIterator& to_line_end = first <= last ? last : first;
|
|
|
|
|
2011-11-22 19:58:05 +01:00
|
|
|
--to_line_start;
|
2011-11-21 19:53:22 +01:00
|
|
|
skip_while_reverse(to_line_start, [](char cur) { return not is_eol(cur); });
|
2011-11-22 19:58:05 +01:00
|
|
|
++to_line_start;
|
|
|
|
|
2011-11-21 19:53:22 +01:00
|
|
|
skip_while(to_line_end, [](char cur) { return not is_eol(cur); });
|
|
|
|
|
|
|
|
|
2012-02-07 15:26:51 +01:00
|
|
|
return Selection(first, last);
|
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_whole_buffer(const Selection& selection)
|
2012-02-07 15:26:51 +01:00
|
|
|
{
|
|
|
|
const Buffer& buffer = selection.first().buffer();
|
|
|
|
return Selection(buffer.begin(), buffer.end()-1);
|
2011-11-21 19:53:22 +01:00
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCaptures select_next_match(const Selection& selection,
|
|
|
|
const std::string& regex)
|
2011-11-21 20:08:51 +01:00
|
|
|
{
|
|
|
|
boost::regex ex(regex);
|
|
|
|
|
2012-02-07 15:26:51 +01:00
|
|
|
BufferIterator begin = selection.last();
|
|
|
|
BufferIterator end = begin;
|
2012-02-10 00:47:55 +01:00
|
|
|
CaptureList captures;
|
2011-11-21 20:08:51 +01:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
boost::match_results<BufferIterator> matches;
|
|
|
|
|
2012-02-07 15:26:51 +01:00
|
|
|
if (boost::regex_search(begin+1, begin.buffer().end(), matches,
|
2011-11-21 20:08:51 +01:00
|
|
|
ex))
|
|
|
|
{
|
|
|
|
begin = matches[0].first;
|
|
|
|
end = matches[0].second;
|
|
|
|
std::copy(matches.begin(), matches.end(),
|
|
|
|
std::back_inserter(captures));
|
|
|
|
}
|
2012-02-07 15:26:51 +01:00
|
|
|
else if (boost::regex_search(begin.buffer().begin(), begin+1, matches,
|
2011-11-21 20:08:51 +01:00
|
|
|
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;
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
return SelectionAndCaptures(begin, end - 1, std::move(captures));
|
2011-11-21 20:08:51 +01:00
|
|
|
}
|
|
|
|
|
2011-11-21 20:30:44 +01:00
|
|
|
typedef boost::regex_iterator<BufferIterator> RegexIterator;
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCapturesList select_all_matches(const Selection& selection,
|
|
|
|
const std::string& regex)
|
2011-11-21 20:08:51 +01:00
|
|
|
{
|
|
|
|
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
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCapturesList result;
|
2011-11-21 20:08:51 +01:00
|
|
|
for (; re_it != re_end; ++re_it)
|
|
|
|
{
|
|
|
|
BufferIterator begin = (*re_it)[0].first;
|
|
|
|
BufferIterator end = (*re_it)[0].second;
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
CaptureList captures(re_it->begin(), re_it->end());
|
2011-11-21 20:30:44 +01:00
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
result.push_back(SelectionAndCaptures(begin, begin == end ? end : end-1,
|
|
|
|
std::move(captures)));
|
2011-11-21 20:30:44 +01:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCapturesList split_selection(const Selection& selection,
|
|
|
|
const std::string& separator_regex)
|
2011-11-21 20:30:44 +01:00
|
|
|
{
|
|
|
|
boost::regex ex(separator_regex);
|
|
|
|
RegexIterator re_it(selection.begin(), selection.end(), ex,
|
|
|
|
boost::regex_constants::match_nosubs);
|
|
|
|
RegexIterator re_end;
|
|
|
|
|
2012-02-10 00:47:55 +01:00
|
|
|
SelectionAndCapturesList result;
|
2011-11-21 20:30:44 +01:00
|
|
|
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
|
|
|
}
|