2014-10-13 14:12:33 +02:00
|
|
|
#ifndef regex_hh_INCLUDED
|
|
|
|
#define regex_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "string.hh"
|
2017-10-02 08:59:04 +02:00
|
|
|
#include "regex_impl.hh"
|
2014-10-13 14:12:33 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2014-10-13 20:40:27 +02:00
|
|
|
// Regex that keeps track of its string representation
|
2017-10-09 08:04:14 +02:00
|
|
|
class Regex
|
2014-10-13 20:40:27 +02:00
|
|
|
{
|
2016-12-14 21:59:39 +01:00
|
|
|
public:
|
2014-10-13 20:40:27 +02:00
|
|
|
Regex() = default;
|
|
|
|
|
2017-12-01 12:57:02 +01:00
|
|
|
explicit Regex(StringView re, RegexCompileFlags flags = RegexCompileFlags::None);
|
2014-10-13 20:40:27 +02:00
|
|
|
bool empty() const { return m_str.empty(); }
|
2015-04-09 00:16:27 +02:00
|
|
|
bool operator==(const Regex& other) const { return m_str == other.m_str; }
|
|
|
|
bool operator!=(const Regex& other) const { return m_str != other.m_str; }
|
2014-10-13 20:40:27 +02:00
|
|
|
|
2015-03-10 20:33:46 +01:00
|
|
|
const String& str() const { return m_str; }
|
2014-10-13 20:40:27 +02:00
|
|
|
|
2017-10-09 08:04:14 +02:00
|
|
|
size_t mark_count() const { return m_impl->save_count / 2 - 1; }
|
|
|
|
|
2016-08-18 23:42:31 +02:00
|
|
|
static constexpr const char* option_type_name = "regex";
|
2016-08-06 10:05:50 +02:00
|
|
|
|
2017-10-06 07:40:27 +02:00
|
|
|
const CompiledRegex* impl() const { return m_impl.get(); }
|
2017-10-02 08:59:04 +02:00
|
|
|
|
2014-10-13 20:40:27 +02:00
|
|
|
private:
|
2017-10-06 07:40:27 +02:00
|
|
|
RefPtr<CompiledRegex> m_impl;
|
2017-10-09 08:04:14 +02:00
|
|
|
String m_str;
|
2014-10-13 20:40:27 +02:00
|
|
|
};
|
2015-03-10 20:33:46 +01:00
|
|
|
|
2014-10-13 14:12:33 +02:00
|
|
|
template<typename Iterator>
|
2017-10-09 08:04:14 +02:00
|
|
|
struct MatchResults
|
2016-05-10 10:12:30 +02:00
|
|
|
{
|
|
|
|
struct SubMatch : std::pair<Iterator, Iterator>
|
|
|
|
{
|
|
|
|
SubMatch() = default;
|
2017-10-09 08:04:14 +02:00
|
|
|
SubMatch(Iterator begin, Iterator end)
|
|
|
|
: std::pair<Iterator, Iterator>{begin, end}, matched{begin != Iterator{}}
|
2016-05-10 10:12:30 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
bool matched = false;
|
|
|
|
};
|
|
|
|
|
2017-10-09 08:04:14 +02:00
|
|
|
struct iterator : std::iterator<std::bidirectional_iterator_tag, SubMatch, size_t, SubMatch*, SubMatch>
|
2016-05-10 10:12:30 +02:00
|
|
|
{
|
2017-11-12 05:30:21 +01:00
|
|
|
using It = typename Vector<Iterator, MemoryDomain::Regex>::const_iterator;
|
2017-10-09 08:04:14 +02:00
|
|
|
|
|
|
|
iterator() = default;
|
|
|
|
iterator(It it) : m_it{std::move(it)} {}
|
|
|
|
|
|
|
|
iterator& operator--() { m_it += 2; return *this; }
|
|
|
|
iterator& operator++() { m_it += 2; return *this; }
|
|
|
|
SubMatch operator*() const { return {*m_it, *(m_it+1)}; }
|
|
|
|
|
|
|
|
friend bool operator==(const iterator& lhs, const iterator& rhs) { return lhs.m_it == rhs.m_it; }
|
|
|
|
friend bool operator!=(const iterator& lhs, const iterator& rhs) { return lhs.m_it != rhs.m_it; }
|
|
|
|
private:
|
2016-05-10 10:12:30 +02:00
|
|
|
|
2017-10-09 08:04:14 +02:00
|
|
|
It m_it;
|
2016-05-10 10:12:30 +02:00
|
|
|
};
|
|
|
|
|
2017-10-09 08:04:14 +02:00
|
|
|
MatchResults() = default;
|
2017-11-12 05:30:21 +01:00
|
|
|
MatchResults(Vector<Iterator, MemoryDomain::Regex> values) : m_values{std::move(values)} {}
|
2017-10-09 08:04:14 +02:00
|
|
|
|
|
|
|
iterator begin() const { return iterator{m_values.begin()}; }
|
|
|
|
iterator cbegin() const { return iterator{m_values.cbegin()}; }
|
|
|
|
iterator end() const { return iterator{m_values.end()}; }
|
|
|
|
iterator cend() const { return iterator{m_values.cend()}; }
|
|
|
|
|
|
|
|
size_t size() const { return m_values.size() / 2; }
|
|
|
|
bool empty() const { return m_values.empty(); }
|
|
|
|
|
|
|
|
SubMatch operator[](size_t i) const
|
|
|
|
{
|
|
|
|
return i * 2 < m_values.size() ?
|
|
|
|
SubMatch{m_values[i*2], m_values[i*2+1]} : SubMatch{};
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator==(const MatchResults& lhs, const MatchResults& rhs)
|
|
|
|
{
|
|
|
|
return lhs.m_values == rhs.m_values;
|
|
|
|
}
|
2016-05-10 10:12:30 +02:00
|
|
|
|
2017-10-09 08:04:14 +02:00
|
|
|
friend bool operator!=(const MatchResults& lhs, const MatchResults& rhs)
|
|
|
|
{
|
|
|
|
return not (lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void swap(MatchResults& other)
|
|
|
|
{
|
|
|
|
m_values.swap(other.m_values);
|
|
|
|
}
|
|
|
|
|
2017-11-29 07:07:04 +01:00
|
|
|
Vector<Iterator, MemoryDomain::Regex>& values() { return m_values; }
|
|
|
|
|
2017-10-09 08:04:14 +02:00
|
|
|
private:
|
2017-11-12 05:30:21 +01:00
|
|
|
Vector<Iterator, MemoryDomain::Regex> m_values;
|
2016-05-10 10:12:30 +02:00
|
|
|
};
|
2014-10-13 14:12:33 +02:00
|
|
|
|
2017-12-28 23:55:53 +01:00
|
|
|
inline RegexExecFlags match_flags(bool bol, bool eol, bool bow, bool eow, bool bos, bool eos)
|
2015-12-23 22:43:07 +01:00
|
|
|
{
|
2017-10-09 08:04:14 +02:00
|
|
|
return (bol ? RegexExecFlags::None : RegexExecFlags::NotBeginOfLine) |
|
|
|
|
(eol ? RegexExecFlags::None : RegexExecFlags::NotEndOfLine) |
|
|
|
|
(bow ? RegexExecFlags::None : RegexExecFlags::NotBeginOfWord) |
|
2017-12-28 23:55:53 +01:00
|
|
|
(eow ? RegexExecFlags::None : RegexExecFlags::NotEndOfWord) |
|
|
|
|
(bos ? RegexExecFlags::None : RegexExecFlags::NotBeginOfSubject) |
|
|
|
|
(eos ? RegexExecFlags::None : RegexExecFlags::NotEndOfSubject);
|
2015-12-23 22:43:07 +01:00
|
|
|
}
|
|
|
|
|
2016-05-10 10:12:30 +02:00
|
|
|
template<typename It>
|
|
|
|
bool regex_match(It begin, It end, const Regex& re)
|
|
|
|
{
|
2017-11-01 07:08:03 +01:00
|
|
|
return regex_match(begin, end, *re.impl());
|
2016-05-10 10:12:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename It>
|
|
|
|
bool regex_match(It begin, It end, MatchResults<It>& res, const Regex& re)
|
|
|
|
{
|
2017-11-29 07:07:04 +01:00
|
|
|
res.values().clear();
|
|
|
|
return regex_match(begin, end, res.values(), *re.impl());
|
2016-05-10 10:12:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename It>
|
|
|
|
bool regex_search(It begin, It end, const Regex& re,
|
2017-10-09 08:04:14 +02:00
|
|
|
RegexExecFlags flags = RegexExecFlags::None)
|
2016-05-10 10:12:30 +02:00
|
|
|
{
|
2017-11-01 07:08:03 +01:00
|
|
|
return regex_search(begin, end, *re.impl(), flags);
|
2016-05-10 10:12:30 +02:00
|
|
|
}
|
|
|
|
|
2017-10-09 08:56:47 +02:00
|
|
|
template<typename It, MatchDirection direction = MatchDirection::Forward>
|
2016-05-10 10:12:30 +02:00
|
|
|
bool regex_search(It begin, It end, MatchResults<It>& res, const Regex& re,
|
2017-10-09 08:04:14 +02:00
|
|
|
RegexExecFlags flags = RegexExecFlags::None)
|
2016-05-10 10:12:30 +02:00
|
|
|
{
|
2017-11-29 07:07:04 +01:00
|
|
|
res.values().clear();
|
|
|
|
return regex_search<It, direction>(begin, end, res.values(), *re.impl(), flags);
|
2016-05-10 10:12:30 +02:00
|
|
|
}
|
|
|
|
|
2017-12-03 10:04:37 +01:00
|
|
|
template<typename It>
|
|
|
|
bool backward_regex_search(It begin, It end, MatchResults<It>& res, const Regex& re,
|
|
|
|
RegexExecFlags flags = RegexExecFlags::None)
|
|
|
|
{
|
|
|
|
return regex_search<It, MatchDirection::Backward>(std::move(begin), std::move(end), res, re, flags);
|
|
|
|
}
|
|
|
|
|
2014-10-13 14:12:33 +02:00
|
|
|
String option_to_string(const Regex& re);
|
|
|
|
void option_from_string(StringView str, Regex& re);
|
|
|
|
|
2017-12-02 07:02:41 +01:00
|
|
|
template<typename Iterator, MatchDirection direction = MatchDirection::Forward>
|
2017-10-02 16:35:31 +02:00
|
|
|
struct RegexIterator
|
|
|
|
{
|
|
|
|
using ValueType = MatchResults<Iterator>;
|
|
|
|
|
|
|
|
RegexIterator() = default;
|
|
|
|
RegexIterator(Iterator begin, Iterator end, const Regex& re,
|
2017-10-09 08:04:14 +02:00
|
|
|
RegexExecFlags flags = RegexExecFlags::None)
|
2017-12-02 07:02:41 +01:00
|
|
|
: m_regex{&re}, m_next_pos{direction == MatchDirection::Forward ? begin : end},
|
|
|
|
m_begin{begin}, m_end{end}, m_flags{flags}
|
2017-10-02 16:35:31 +02:00
|
|
|
{
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
|
|
|
|
const ValueType& operator*() const { kak_assert(m_regex); return m_results; }
|
|
|
|
const ValueType* operator->() const { kak_assert(m_regex); return &m_results; }
|
|
|
|
|
|
|
|
RegexIterator& operator++()
|
|
|
|
{
|
|
|
|
next();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator==(const RegexIterator& lhs, const RegexIterator& rhs)
|
|
|
|
{
|
|
|
|
if (lhs.m_regex == nullptr and rhs.m_regex == nullptr)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return lhs.m_regex == rhs.m_regex and
|
2017-12-02 07:02:41 +01:00
|
|
|
lhs.m_next_pos == rhs.m_next_pos and
|
2017-10-02 16:35:31 +02:00
|
|
|
lhs.m_end == rhs.m_end and
|
|
|
|
lhs.m_flags == rhs.m_flags and
|
|
|
|
lhs.m_results == rhs.m_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator!=(const RegexIterator& lhs, const RegexIterator& rhs)
|
|
|
|
{
|
|
|
|
return not (lhs == rhs);
|
|
|
|
}
|
|
|
|
|
2017-12-02 07:02:41 +01:00
|
|
|
RegexIterator begin() { return *this; }
|
|
|
|
RegexIterator end() { return {}; }
|
|
|
|
|
2017-10-02 16:35:31 +02:00
|
|
|
private:
|
|
|
|
void next()
|
|
|
|
{
|
|
|
|
kak_assert(m_regex);
|
|
|
|
|
2017-10-09 08:04:14 +02:00
|
|
|
RegexExecFlags additional_flags{};
|
2017-10-02 16:35:31 +02:00
|
|
|
if (m_results.size() and m_results[0].first == m_results[0].second)
|
2017-10-09 08:04:14 +02:00
|
|
|
additional_flags |= RegexExecFlags::NotInitialNull;
|
2017-10-02 16:35:31 +02:00
|
|
|
|
2017-12-02 07:02:41 +01:00
|
|
|
if (direction == MatchDirection::Forward)
|
|
|
|
{
|
|
|
|
if (m_begin != m_next_pos)
|
|
|
|
additional_flags |= RegexExecFlags::NotBeginOfSubject | RegexExecFlags::PrevAvailable;
|
|
|
|
|
|
|
|
if (not regex_search(m_next_pos, m_end, m_results, *m_regex,
|
|
|
|
m_flags | additional_flags))
|
|
|
|
m_regex = nullptr;
|
|
|
|
else
|
|
|
|
m_next_pos = m_results[0].second;
|
|
|
|
}
|
2017-10-02 16:35:31 +02:00
|
|
|
else
|
2017-12-02 07:02:41 +01:00
|
|
|
{
|
2017-12-03 10:04:37 +01:00
|
|
|
if (not backward_regex_search(m_begin, m_next_pos, m_results, *m_regex,
|
|
|
|
m_flags | additional_flags))
|
2017-12-02 07:02:41 +01:00
|
|
|
m_regex = nullptr;
|
|
|
|
else
|
|
|
|
m_next_pos = m_results[0].first;
|
|
|
|
}
|
2017-10-02 16:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const Regex* m_regex = nullptr;
|
|
|
|
MatchResults<Iterator> m_results;
|
2017-12-02 07:02:41 +01:00
|
|
|
Iterator m_next_pos{};
|
2017-10-02 16:35:31 +02:00
|
|
|
const Iterator m_begin{};
|
|
|
|
const Iterator m_end{};
|
2017-10-09 08:04:14 +02:00
|
|
|
const RegexExecFlags m_flags = RegexExecFlags::None;
|
2017-10-02 16:35:31 +02:00
|
|
|
};
|
|
|
|
|
2014-10-13 14:12:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // regex_hh_INCLUDED
|