2009-07-30 02:27:20 +04:00
|
|
|
#ifndef REGEX_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|
|
|
|
|
#define REGEX_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|
|
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
#if defined(_MSC_VER) || \
|
|
|
|
|
(defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \
|
|
|
|
|
(__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4
|
2011-03-02 09:11:41 +03:00
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-09-04 02:20:39 +04:00
|
|
|
#include <string>
|
2014-03-23 07:46:04 +04:00
|
|
|
#include <vector>
|
2008-09-04 02:20:39 +04:00
|
|
|
|
2016-08-18 16:47:09 +03:00
|
|
|
#include "yaml-cpp/dll.h"
|
|
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
namespace YAML {
|
|
|
|
|
class Stream;
|
|
|
|
|
|
|
|
|
|
enum REGEX_OP {
|
|
|
|
|
REGEX_EMPTY,
|
|
|
|
|
REGEX_MATCH,
|
|
|
|
|
REGEX_RANGE,
|
|
|
|
|
REGEX_OR,
|
|
|
|
|
REGEX_AND,
|
|
|
|
|
REGEX_NOT,
|
|
|
|
|
REGEX_SEQ
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// simplified regular expressions
|
|
|
|
|
// . Only straightforward matches (no repeated characters)
|
|
|
|
|
// . Only matches from start of string
|
2016-08-18 16:47:09 +03:00
|
|
|
class YAML_CPP_API RegEx {
|
2014-03-22 21:49:16 +04:00
|
|
|
public:
|
|
|
|
|
RegEx();
|
2019-03-14 01:18:34 +03:00
|
|
|
explicit RegEx(char ch);
|
2014-03-22 21:49:16 +04:00
|
|
|
RegEx(char a, char z);
|
|
|
|
|
RegEx(const std::string& str, REGEX_OP op = REGEX_SEQ);
|
|
|
|
|
~RegEx() {}
|
2008-09-04 02:20:39 +04:00
|
|
|
|
2016-08-18 16:47:09 +03:00
|
|
|
friend YAML_CPP_API RegEx operator!(const RegEx& ex);
|
2019-03-14 01:18:34 +03:00
|
|
|
friend YAML_CPP_API RegEx operator|(const RegEx& ex1, const RegEx& ex2);
|
|
|
|
|
friend YAML_CPP_API RegEx operator&(const RegEx& ex1, const RegEx& ex2);
|
2016-08-18 16:47:09 +03:00
|
|
|
friend YAML_CPP_API RegEx operator+(const RegEx& ex1, const RegEx& ex2);
|
2008-09-04 02:20:39 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
bool Matches(char ch) const;
|
|
|
|
|
bool Matches(const std::string& str) const;
|
|
|
|
|
bool Matches(const Stream& in) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
bool Matches(const Source& source) const;
|
2008-09-04 02:20:39 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
int Match(const std::string& str) const;
|
|
|
|
|
int Match(const Stream& in) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
int Match(const Source& source) const;
|
2009-07-10 07:10:03 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
private:
|
2019-03-14 01:18:34 +03:00
|
|
|
explicit RegEx(REGEX_OP op);
|
2008-09-04 02:20:39 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
template <typename Source>
|
|
|
|
|
bool IsValidSource(const Source& source) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
int MatchUnchecked(const Source& source) const;
|
2009-07-10 07:10:03 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
template <typename Source>
|
|
|
|
|
int MatchOpEmpty(const Source& source) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
int MatchOpMatch(const Source& source) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
int MatchOpRange(const Source& source) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
int MatchOpOr(const Source& source) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
int MatchOpAnd(const Source& source) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
int MatchOpNot(const Source& source) const;
|
|
|
|
|
template <typename Source>
|
|
|
|
|
int MatchOpSeq(const Source& source) const;
|
2008-09-04 02:20:39 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
private:
|
|
|
|
|
REGEX_OP m_op;
|
2018-09-24 02:40:53 +03:00
|
|
|
char m_a{};
|
|
|
|
|
char m_z{};
|
2014-03-22 21:49:16 +04:00
|
|
|
std::vector<RegEx> m_params;
|
|
|
|
|
};
|
2018-09-24 02:40:53 +03:00
|
|
|
} // namespace YAML
|
2009-07-10 07:10:03 +04:00
|
|
|
|
|
|
|
|
#include "regeximpl.h"
|
2009-07-30 02:27:20 +04:00
|
|
|
|
2014-03-22 21:49:16 +04:00
|
|
|
#endif // REGEX_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|