#ifndef regex_hh_INCLUDED #define regex_hh_INCLUDED #include "string.hh" #ifdef KAK_USE_STDREGEX #include #else #include #endif namespace Kakoune { #ifdef KAK_USE_STDREGEX // Regex that keeps track of its string representation struct Regex : std::regex { Regex() = default; explicit Regex(StringView re, flag_type flags = ECMAScript) : std::regex(re.begin(), re.end(), flags), m_str(re) {} template Regex(Iterator begin, Iterator end, flag_type flags = ECMAScript) : std::regex(begin, end, flags), m_str(begin, end) {} bool empty() const { return m_str.empty(); } bool operator==(const Regex& other) const { return m_str == other.m_str; } bool operator!=(const Regex& other) const { return m_str != other.m_str; } const String& str() const { return m_str; } private: String m_str; }; namespace regex_ns = std; #else struct Regex : boost::regex { Regex() = default; explicit Regex(StringView re, flag_type flags = ECMAScript) : boost::regex(re.begin(), re.end(), flags) {} template Regex(Iterator begin, Iterator end, flag_type flags = ECMAScript) : boost::regex(begin, end, flags) {} String str() const { auto s = boost::regex::str(); return {s.begin(), s.end()}; } }; namespace regex_ns = boost; #endif template using RegexIterator = regex_ns::regex_iterator; template using MatchResults = regex_ns::match_results; using RegexError = regex_ns::regex_error; String option_to_string(const Regex& re); void option_from_string(StringView str, Regex& re); } #endif // regex_hh_INCLUDED