2014-10-13 14:12:33 +02:00
|
|
|
#ifndef regex_hh_INCLUDED
|
|
|
|
#define regex_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "string.hh"
|
2015-07-14 22:06:41 +02:00
|
|
|
#include "exception.hh"
|
2014-10-13 14:12:33 +02:00
|
|
|
|
2014-10-13 20:40:27 +02:00
|
|
|
#ifdef KAK_USE_STDREGEX
|
2014-10-13 14:12:33 +02:00
|
|
|
#include <regex>
|
|
|
|
#else
|
|
|
|
#include <boost/regex.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2015-07-14 22:06:41 +02:00
|
|
|
struct regex_error : runtime_error
|
|
|
|
{
|
|
|
|
regex_error(StringView desc)
|
|
|
|
: runtime_error{format("regex error: '{}'", desc)}
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2014-10-13 20:40:27 +02:00
|
|
|
#ifdef KAK_USE_STDREGEX
|
|
|
|
// Regex that keeps track of its string representation
|
|
|
|
struct Regex : std::regex
|
|
|
|
{
|
|
|
|
Regex() = default;
|
|
|
|
|
2015-07-14 22:06:41 +02:00
|
|
|
explicit Regex(StringView re, flag_type flags = ECMAScript) try
|
2014-10-13 20:40:27 +02:00
|
|
|
: std::regex(re.begin(), re.end(), flags), m_str(re) {}
|
2015-07-14 22:06:41 +02:00
|
|
|
catch (std::runtime_error& err) { throw regex_error(err.what()); }
|
2014-10-13 20:40:27 +02:00
|
|
|
|
|
|
|
template<typename Iterator>
|
2015-07-14 22:06:41 +02:00
|
|
|
Regex(Iterator begin, Iterator end, flag_type flags = ECMAScript) try
|
2014-10-13 20:40:27 +02:00
|
|
|
: std::regex(begin, end, flags), m_str(begin, end) {}
|
2015-07-14 22:06:41 +02:00
|
|
|
catch (std::runtime_error& err) { throw regex_error(err.what()); }
|
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
|
|
|
|
|
|
|
private:
|
|
|
|
String m_str;
|
|
|
|
};
|
|
|
|
namespace regex_ns = std;
|
|
|
|
#else
|
2015-03-10 20:33:46 +01:00
|
|
|
struct Regex : boost::regex
|
|
|
|
{
|
|
|
|
Regex() = default;
|
|
|
|
|
2015-07-14 22:06:41 +02:00
|
|
|
explicit Regex(StringView re, flag_type flags = ECMAScript) try
|
2015-03-10 20:33:46 +01:00
|
|
|
: boost::regex(re.begin(), re.end(), flags) {}
|
2015-07-14 22:06:41 +02:00
|
|
|
catch (std::runtime_error& err) { throw regex_error(err.what()); }
|
2015-03-10 20:33:46 +01:00
|
|
|
|
|
|
|
template<typename Iterator>
|
2015-07-14 22:06:41 +02:00
|
|
|
Regex(Iterator begin, Iterator end, flag_type flags = ECMAScript) try
|
2015-03-10 20:33:46 +01:00
|
|
|
: boost::regex(begin, end, flags) {}
|
2015-07-14 22:06:41 +02:00
|
|
|
catch (std::runtime_error& err) { throw regex_error(err.what()); }
|
2015-03-10 20:33:46 +01:00
|
|
|
|
2015-04-29 14:45:53 +02:00
|
|
|
String str() const { auto s = boost::regex::str(); return {s.begin(), s.end()}; }
|
2015-03-10 20:33:46 +01:00
|
|
|
};
|
2014-10-13 20:40:27 +02:00
|
|
|
namespace regex_ns = boost;
|
|
|
|
#endif
|
2014-10-13 14:12:33 +02:00
|
|
|
|
|
|
|
template<typename Iterator>
|
2014-10-13 20:40:27 +02:00
|
|
|
using RegexIterator = regex_ns::regex_iterator<Iterator>;
|
2014-10-13 14:12:33 +02:00
|
|
|
|
|
|
|
template<typename Iterator>
|
2014-10-13 20:40:27 +02:00
|
|
|
using MatchResults = regex_ns::match_results<Iterator>;
|
2014-10-13 14:12:33 +02:00
|
|
|
|
|
|
|
String option_to_string(const Regex& re);
|
|
|
|
void option_from_string(StringView str, Regex& re);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // regex_hh_INCLUDED
|