2010-06-29 17:09:40 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file regexp.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Peter Kümmel
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LYX_REGEXP_H
|
|
|
|
#define LYX_REGEXP_H
|
|
|
|
|
2015-05-19 13:10:38 +00:00
|
|
|
#if defined(LYX_USE_CXX11) && defined(LYX_USE_STD_REGEX)
|
2014-12-23 21:18:08 +00:00
|
|
|
# include <regex>
|
2010-06-30 11:04:30 +00:00
|
|
|
# ifdef _MSC_VER
|
2011-03-02 21:28:36 +00:00
|
|
|
namespace lyx {
|
|
|
|
// inheriting 'private' to see which functions are used and if there are
|
2015-11-22 12:02:39 +00:00
|
|
|
// other ECMAScript defaults
|
2014-12-28 17:08:18 +00:00
|
|
|
// FIXME: Is this really needed?
|
|
|
|
// If yes, then the MSVC regex implementation is not standard-conforming.
|
2014-12-23 21:18:08 +00:00
|
|
|
class regex : private std::regex
|
2011-03-02 21:28:36 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
regex() {}
|
2014-12-23 21:18:08 +00:00
|
|
|
regex(const regex& rhs) : std::regex(rhs) {}
|
2011-03-02 21:28:36 +00:00
|
|
|
template<class T>
|
2014-12-23 21:18:08 +00:00
|
|
|
regex(T t) : std::regex(t, std::regex_constants::grep) {}
|
2011-03-02 21:28:36 +00:00
|
|
|
template<class T>
|
2014-12-23 21:18:08 +00:00
|
|
|
void assign(T t) { std::regex::assign(t, std::regex_constants::grep); }
|
2011-03-02 21:28:36 +00:00
|
|
|
template<class T, class V>
|
2014-12-23 21:18:08 +00:00
|
|
|
void assign(T t, V v) { std::regex::assign(t, v); }
|
|
|
|
const std::regex& toStd() const { return *this; }
|
2011-03-02 21:28:36 +00:00
|
|
|
};
|
|
|
|
template<class T>
|
2014-12-23 21:18:08 +00:00
|
|
|
bool regex_match(T t, const regex& r) { return std::regex_match(t, r.toStd()); }
|
2015-11-22 12:02:39 +00:00
|
|
|
template<class T>
|
|
|
|
bool regex_match(T t, std::smatch& m, const regex& r) { return std::regex_match(t, m, r.toStd()); }
|
2011-03-02 21:28:36 +00:00
|
|
|
template<class T, class V>
|
2015-11-22 12:02:39 +00:00
|
|
|
bool regex_match(T t, V v, std::smatch& m, const regex& r) { return std::regex_match(t, v, m, r.toStd()); }
|
2011-03-02 21:28:36 +00:00
|
|
|
template<class T, class V>
|
2014-12-23 21:18:08 +00:00
|
|
|
std::string regex_replace(T t, const regex& r, V v) { return std::regex_replace(t, r.toStd(), v); }
|
2015-11-22 12:02:39 +00:00
|
|
|
template<class T, class V, class U, class H>
|
|
|
|
T regex_replace(T t, V v, U u, const regex& r, H h) { return std::regex_replace(t, v, u, r.toStd(), h); }
|
2011-03-02 21:28:36 +00:00
|
|
|
template<class T>
|
2014-12-23 21:18:08 +00:00
|
|
|
bool regex_search(T t, const regex& r) { return std::regex_search(t, r.toStd()); }
|
2015-11-22 12:02:39 +00:00
|
|
|
template<class T>
|
|
|
|
bool regex_search(T t, std::smatch& m, const regex& r) { return std::regex_search(t, m, r.toStd()); }
|
2011-03-02 21:28:36 +00:00
|
|
|
template<class T, class V>
|
2015-11-22 12:02:39 +00:00
|
|
|
bool regex_search(T t, V v, std::smatch& m, const regex& r) { return std::regex_search(t, v, m, r.toStd()); }
|
2011-03-02 21:28:36 +00:00
|
|
|
|
2014-12-23 21:18:08 +00:00
|
|
|
struct sregex_iterator : std::sregex_iterator
|
2011-03-02 21:28:36 +00:00
|
|
|
{
|
|
|
|
sregex_iterator() {}
|
|
|
|
template<class T, class V>
|
2014-12-23 21:18:08 +00:00
|
|
|
sregex_iterator(T t, V v, const regex& r) : std::sregex_iterator(t, v, r.toStd()) {}
|
2011-03-02 21:28:36 +00:00
|
|
|
};
|
|
|
|
}
|
2010-06-30 11:04:30 +00:00
|
|
|
# else
|
2014-12-21 19:19:12 +00:00
|
|
|
// <regex> in gcc is unusable in versions less than 4.9.0
|
|
|
|
// see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53631
|
|
|
|
# define LR_NS std
|
|
|
|
namespace lyx {
|
|
|
|
using LR_NS::regex;
|
|
|
|
using LR_NS::regex_match;
|
2015-11-22 12:02:39 +00:00
|
|
|
using LR_NS::regex_replace;
|
|
|
|
using LR_NS::regex_search;
|
2014-12-21 19:19:12 +00:00
|
|
|
using LR_NS::sregex_iterator;
|
|
|
|
}
|
2014-12-23 21:18:08 +00:00
|
|
|
# endif
|
|
|
|
#else
|
2010-06-30 11:04:30 +00:00
|
|
|
# include <boost/regex.hpp>
|
|
|
|
# define LR_NS boost
|
2011-03-02 21:28:36 +00:00
|
|
|
namespace lyx {
|
|
|
|
using LR_NS::regex;
|
|
|
|
using LR_NS::regex_match;
|
2015-11-22 12:02:39 +00:00
|
|
|
using LR_NS::regex_replace;
|
|
|
|
using LR_NS::regex_search;
|
2011-03-02 21:28:36 +00:00
|
|
|
using LR_NS::sregex_iterator;
|
|
|
|
}
|
2010-06-29 17:09:40 +00:00
|
|
|
#endif
|
|
|
|
|
2010-06-30 11:04:30 +00:00
|
|
|
namespace lyx {
|
2011-03-02 21:28:36 +00:00
|
|
|
using LR_NS::smatch;
|
|
|
|
using LR_NS::basic_regex;
|
|
|
|
using LR_NS::regex_error;
|
2010-06-30 11:04:30 +00:00
|
|
|
using LR_NS::match_results;
|
|
|
|
|
|
|
|
namespace regex_constants
|
2010-06-29 17:09:40 +00:00
|
|
|
{
|
2010-06-30 11:04:30 +00:00
|
|
|
using namespace LR_NS::regex_constants;
|
|
|
|
using LR_NS::regex_constants::match_flag_type;
|
2010-06-29 17:09:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-06-30 11:04:30 +00:00
|
|
|
#undef LR_NS
|
2010-06-29 17:09:40 +00:00
|
|
|
|
|
|
|
#endif
|