regex_yaml.h 2.21 KB
Newer Older
1
2
3
#ifndef REGEX_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define REGEX_H_62B23520_7C8E_11DE_8A39_0800200C9A66

Jesse Beder's avatar
Jesse Beder committed
4
5
6
#if defined(_MSC_VER) ||                                            \
    (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \
     (__GNUC__ >= 4))  // GCC supports "pragma once" correctly since 3.4
7
8
9
#pragma once
#endif

10
11
12
#include <vector>
#include <string>

Jesse Beder's avatar
Jesse Beder committed
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
class RegEx {
 public:
  RegEx();
  RegEx(char ch);
  RegEx(char a, char z);
  RegEx(const std::string& str, REGEX_OP op = REGEX_SEQ);
  ~RegEx() {}
36

Jesse Beder's avatar
Jesse Beder committed
37
38
39
40
  friend RegEx operator!(const RegEx & ex);
  friend RegEx operator||(const RegEx& ex1, const RegEx& ex2);
  friend RegEx operator&&(const RegEx& ex1, const RegEx& ex2);
  friend RegEx operator+(const RegEx& ex1, const RegEx& ex2);
41

Jesse Beder's avatar
Jesse Beder committed
42
43
44
45
46
  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;
47

Jesse Beder's avatar
Jesse Beder committed
48
49
50
51
  int Match(const std::string& str) const;
  int Match(const Stream& in) const;
  template <typename Source>
  int Match(const Source& source) const;
52

Jesse Beder's avatar
Jesse Beder committed
53
54
 private:
  RegEx(REGEX_OP op);
55

Jesse Beder's avatar
Jesse Beder committed
56
57
58
59
  template <typename Source>
  bool IsValidSource(const Source& source) const;
  template <typename Source>
  int MatchUnchecked(const Source& source) const;
60

Jesse Beder's avatar
Jesse Beder committed
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  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;
75

Jesse Beder's avatar
Jesse Beder committed
76
77
78
79
80
 private:
  REGEX_OP m_op;
  char m_a, m_z;
  std::vector<RegEx> m_params;
};
81
}
82
83

#include "regeximpl.h"
84

Jesse Beder's avatar
Jesse Beder committed
85
#endif  // REGEX_H_62B23520_7C8E_11DE_8A39_0800200C9A66