#include "selectors.hh" #include "string.hh" #include "utf8_iterator.hh" #include #include namespace Kakoune { using Utf8Iterator = utf8::utf8_iterator; namespace { template bool is_word(Codepoint c) { return Kakoune::is_word(c); } template<> bool is_word(Codepoint c) { return !is_blank(c) and !is_eol(c); } static bool is_punctuation(Codepoint c) { return not (is_word(c) or is_blank(c) or is_eol(c)); } enum class CharCategories { Blank, EndOfLine, Word, Punctuation, }; template CharCategories categorize(Codepoint c) { if (is_word(c)) return CharCategories::Word; if (is_eol(c)) return CharCategories::EndOfLine; if (is_blank(c)) return CharCategories::Blank; return punctuation_is_word ? CharCategories::Word : CharCategories::Punctuation; } bool is_begin(const BufferIterator& it) { return it.is_begin(); } bool is_end(const BufferIterator& it) { return it.is_end(); } bool is_begin(const Utf8Iterator& it) { return it.underlying_iterator().is_begin(); } bool is_end(const Utf8Iterator& it) { return it.underlying_iterator().is_end(); } template void skip_while(Iterator& it, T condition) { while (not is_end(it) and condition(*it)) ++it; } template void skip_while_reverse(Iterator& it, T condition) { while (not is_begin(it) and condition(*it)) --it; } Range utf8_range(const Utf8Iterator& first, const Utf8Iterator& last) { return Range{first.underlying_iterator(), last.underlying_iterator()}; } } typedef boost::regex_iterator RegexIterator; template Selection select_to_next_word(const Selection& selection) { Utf8Iterator begin = selection.last(); if (categorize(*begin) != categorize(*(begin+1))) ++begin; skip_while(begin, is_eol); Utf8Iterator end = begin+1; if (not punctuation_is_word and is_punctuation(*begin)) skip_while(end, is_punctuation); else if (is_word(*begin)) skip_while(end, is_word); skip_while(end, is_blank); return utf8_range(begin, end-1); } template Selection select_to_next_word(const Selection&); template Selection select_to_next_word(const Selection&); template Selection select_to_next_word_end(const Selection& selection) { Utf8Iterator begin = selection.last(); if (categorize(*begin) != categorize(*(begin+1))) ++begin; skip_while(begin, is_eol); Utf8Iterator end = begin; skip_while(end, is_blank); if (not punctuation_is_word and is_punctuation(*end)) skip_while(end, is_punctuation); else if (is_word(*end)) skip_while(end, is_word); return utf8_range(begin, end-1); } template Selection select_to_next_word_end(const Selection&); template Selection select_to_next_word_end(const Selection&); template Selection select_to_previous_word(const Selection& selection) { Utf8Iterator begin = selection.last(); if (categorize(*begin) != categorize(*(begin-1))) --begin; skip_while_reverse(begin, is_eol); Utf8Iterator end = begin; skip_while_reverse(end, is_blank); bool with_end = false; if (not punctuation_is_word and is_punctuation(*end)) { skip_while_reverse(end, is_punctuation); with_end = is_punctuation(*end); } else if (is_word(*end)) { skip_while_reverse(end, is_word); with_end = is_word(*end); } return utf8_range(begin, with_end ? end : end+1); } template Selection select_to_previous_word(const Selection&); template Selection select_to_previous_word(const Selection&); Selection select_line(const Selection& selection) { Utf8Iterator first = selection.last(); if (*first == '\n' and not is_end(first + 1)) ++first; while (not is_begin(first) and *(first - 1) != '\n') --first; Utf8Iterator last = first; while (not is_end(last + 1) and *last != '\n') ++last; return utf8_range(first, last); } Selection select_matching(const Selection& selection) { std::vector matching_pairs = { '(', ')', '{', '}', '[', ']', '<', '>' }; Utf8Iterator it = selection.last(); std::vector::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; Utf8Iterator begin = it; if (((match - matching_pairs.begin()) % 2) == 0) { int level = 0; const Codepoint opening = *match; const Codepoint closing = *(match+1); while (not is_end(it)) { if (*it == opening) ++level; else if (*it == closing and --level == 0) return utf8_range(begin, it); ++it; } } else { int level = 0; 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); if (is_begin(it)) break; --it; } } return selection; } // c++14 will add std::optional, so we use boost::optional until then using boost::optional; static optional find_surrounding(const BufferIterator& pos, const CodepointPair& matching, ObjectFlags flags) { const bool to_begin = flags & ObjectFlags::ToBegin; const bool to_end = flags & ObjectFlags::ToEnd; const bool nestable = matching.first != matching.second; Utf8Iterator first = pos; if (to_begin) { int level = 0; while (not is_begin(first)) { if (nestable and first != pos and *first == matching.second) ++level; else if (*first == matching.first) { if (level == 0) break; else --level; } --first; } if (level != 0 or *first != matching.first) return optional{}; } Utf8Iterator last = pos; if (to_end) { int level = 0; last = first + 1; while (not is_end(last)) { if (nestable and *last == matching.first) ++level; else if (*last == matching.second) { if (level == 0) break; else --level; } ++last; } if (level != 0 or *last != matching.second) return optional{}; } if (flags & ObjectFlags::Inner) { if (to_begin) ++first; if (to_end and first != last) --last; } return to_end ? utf8_range(first, last) : utf8_range(last, first); } Selection select_surrounding(const Selection& selection, const CodepointPair& matching, ObjectFlags flags) { auto res = find_surrounding(selection.last(), matching, flags); if (not res) return selection; if (flags == (ObjectFlags::ToBegin | ObjectFlags::ToEnd) and matching.first != matching.second and not res->last().is_end() and (*res == selection or Range{res->last(), res->first()} == selection)) { res = find_surrounding(res->last() + 1, matching, flags); return res ? Selection{*res} : selection; } return *res; } Selection select_to(const Selection& selection, Codepoint c, int count, bool inclusive) { Utf8Iterator begin = selection.last(); Utf8Iterator end = begin; do { ++end; skip_while(end, [c](Codepoint cur) { return cur != c; }); if (is_end(end)) return selection; } while (--count > 0); return utf8_range(begin, inclusive ? end : end-1); } Selection select_to_reverse(const Selection& selection, Codepoint c, int count, bool inclusive) { Utf8Iterator begin = selection.last(); Utf8Iterator end = begin; do { --end; skip_while_reverse(end, [c](Codepoint cur) { return cur != c; }); if (is_begin(end)) return selection; } while (--count > 0); return utf8_range(begin, inclusive ? end : end+1); } Selection select_to_eol(const Selection& selection) { Utf8Iterator begin = selection.last(); Utf8Iterator end = begin + 1; skip_while(end, [](Codepoint cur) { return not is_eol(cur); }); return utf8_range(begin, end-1); } Selection select_to_eol_reverse(const Selection& selection) { Utf8Iterator begin = selection.last(); Utf8Iterator end = begin - 1; skip_while_reverse(end, [](Codepoint cur) { return not is_eol(cur); }); return utf8_range(begin, is_begin(end) ? end : end+1); } template Selection select_whole_word(const Selection& selection, ObjectFlags flags) { Utf8Iterator first = selection.last(); Utf8Iterator last = first; if (is_word(*first)) { if (flags & ObjectFlags::ToBegin) { skip_while_reverse(first, is_word); if (not is_word(*first)) ++first; } if (flags & ObjectFlags::ToEnd) { skip_while(last, is_word); if (not (flags & ObjectFlags::Inner)) skip_while(last, is_blank); --last; } } else if (not (flags & ObjectFlags::Inner)) { if (flags & ObjectFlags::ToBegin) { skip_while_reverse(first, is_blank); if (not is_word(*first)) return selection; skip_while_reverse(first, is_word); if (not is_word(*first)) ++first; } if (flags & ObjectFlags::ToEnd) { skip_while(last, is_blank); --last; } } return (flags & ObjectFlags::ToEnd) ? utf8_range(first, last) : utf8_range(last, first); } template Selection select_whole_word(const Selection&, ObjectFlags); template Selection select_whole_word(const Selection&, ObjectFlags); Selection select_whole_sentence(const Selection& selection, ObjectFlags flags) { BufferIterator first = selection.last(); BufferIterator last = first; if (flags & ObjectFlags::ToBegin) { bool saw_non_blank = false; while (not is_begin(first)) { 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; } else if (prev == '.' or prev == ';' or prev == '!' or prev == '?') { if (saw_non_blank) break; else if (flags & ObjectFlags::ToEnd) last = first-1; } --first; } skip_while(first, is_blank); } if (flags & ObjectFlags::ToEnd) { while (not is_end(last)) { char cur = *last; if (cur == '.' or cur == ';' or cur == '!' or cur == '?' or (is_eol(cur) and (is_end(last+1) or is_eol(*last+1)))) break; ++last; } if (not (flags & ObjectFlags::Inner) and not is_end(last)) { ++last; skip_while(last, is_blank); --last; } } return (flags & ObjectFlags::ToEnd) ? Selection{first, last} : Selection{last, first}; } Selection select_whole_paragraph(const Selection& selection, ObjectFlags flags) { BufferIterator first = selection.last(); BufferIterator last = first; if (flags & ObjectFlags::ToBegin and not is_begin(first)) { skip_while_reverse(first, is_eol); if (flags & ObjectFlags::ToEnd) last = first; while (not is_begin(first)) { char cur = *first; char prev = *(first-1); if (is_eol(prev) and is_eol(cur)) { ++first; break; } --first; } } if (flags & ObjectFlags::ToEnd) { while (not is_end(last)) { char cur = *last; char prev = *(last-1); if (is_eol(cur) and is_eol(prev)) { if (not (flags & ObjectFlags::Inner)) skip_while(last, is_eol); --last; break; } ++last; } } return (flags & ObjectFlags::ToEnd) ? Selection{first, last} : Selection{last, first}; } Selection select_whole_lines(const Selection& selection) { // no need to be utf8 aware for is_eol as we only use \n as line seperator BufferIterator first = selection.first(); BufferIterator last = selection.last(); BufferIterator& to_line_start = first <= last ? first : last; BufferIterator& to_line_end = first <= last ? last : first; --to_line_start; skip_while_reverse(to_line_start, [](char cur) { return not is_eol(cur); }); if (is_eol(*to_line_start)) ++to_line_start; skip_while(to_line_end, [](char cur) { return not is_eol(cur); }); return Selection(first, last); } Selection trim_partial_lines(const Selection& selection) { // same as select_whole_lines BufferIterator first = selection.first(); BufferIterator last = selection.last(); BufferIterator& to_line_start = first <= last ? first : last; BufferIterator& to_line_end = first <= last ? last : first; while (not is_begin(to_line_start) and *(to_line_start-1) != '\n') ++to_line_start; while (*(to_line_end+1) != '\n' and to_line_end != to_line_start) --to_line_end; return Selection(first, last); } Selection select_whole_buffer(const Selection& selection) { const Buffer& buffer = selection.first().buffer(); return Selection(buffer.begin(), utf8::previous(buffer.end())); } using MatchResults = boost::match_results; static bool find_last_match(BufferIterator begin, const BufferIterator& end, MatchResults& res, const Regex& regex) { MatchResults matches; while (boost::regex_search(begin, end, matches, regex)) { if (begin == matches[0].second) break; begin = matches[0].second; res.swap(matches); } return not res.empty(); } template bool find_match_in_buffer(const BufferIterator pos, MatchResults& matches, const Regex& ex) { auto bufbeg = pos.buffer().begin(); auto bufend = pos.buffer().end(); if (forward) return (boost::regex_search(pos, bufend, matches, ex) or boost::regex_search(bufbeg, pos, matches, ex)); else return (find_last_match(bufbeg, pos, matches, ex) or find_last_match(pos, bufend, matches, ex)); } template Selection select_next_match(const Selection& selection, const Regex& regex) { // regex matching do not use Utf8Iterator as boost::regex handle utf8 // decoding itself BufferIterator begin = selection.last(); BufferIterator end = begin; CaptureList captures; MatchResults matches; if (find_match_in_buffer(utf8::next(begin), matches, regex)) { begin = matches[0].first; end = matches[0].second; for (auto& match : matches) captures.push_back(String(match.first, match.second)); } else throw runtime_error("'" + regex.str() + "': no matches found"); if (begin == end) ++end; end = utf8::previous(end); if (not forward) std::swap(begin, end); return Selection{begin, end, std::move(captures)}; } template Selection select_next_match(const Selection&, const Regex&); template Selection select_next_match(const Selection&, const Regex&); SelectionList select_all_matches(const Selection& selection, const Regex& regex) { RegexIterator re_it(selection.begin(), selection.end(), regex); RegexIterator re_end; SelectionList result; for (; re_it != re_end; ++re_it) { BufferIterator begin = (*re_it)[0].first; BufferIterator end = (*re_it)[0].second; if (begin == selection.end()) continue; CaptureList captures; for (auto& match : *re_it) captures.push_back(String(match.first, match.second)); result.push_back(Selection(begin, begin == end ? end : utf8::previous(end), std::move(captures))); } return result; } SelectionList split_selection(const Selection& selection, const Regex& regex) { RegexIterator re_it(selection.begin(), selection.end(), regex, 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 : utf8::previous(end))); begin = (*re_it)[0].second; } result.push_back(Selection(begin, std::max(selection.first(), selection.last()))); return result; } }