regex.h 2.5 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <vector>
#include <string>

namespace YAML
{
	struct 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
	{
	private:
		struct Operator {
			virtual ~Operator() {}
			virtual int Match(const std::string& str, const RegEx& regex) const = 0;
21
			virtual int Match(const char *buffer, const RegEx& regex) const = 0;
22
23
24
25
		};

		struct MatchOperator: public Operator {
			virtual int Match(const std::string& str, const RegEx& regex) const;
26
			virtual int Match(const char *buffer, const RegEx& regex) const;
27
28
29
30
		};

		struct RangeOperator: public Operator {
			virtual int Match(const std::string& str, const RegEx& regex) const;
31
			virtual int Match(const char *buffer, const RegEx& regex) const;
32
33
34
35
		};

		struct OrOperator: public Operator {
			virtual int Match(const std::string& str, const RegEx& regex) const;
36
			virtual int Match(const char *buffer, const RegEx& regex) const;
37
38
39
40
		};

		struct AndOperator: public Operator {
			virtual int Match(const std::string& str, const RegEx& regex) const;
41
			virtual int Match(const char *buffer, const RegEx& regex) const;
42
43
44
45
		};

		struct NotOperator: public Operator {
			virtual int Match(const std::string& str, const RegEx& regex) const;
46
			virtual int Match(const char *buffer, const RegEx& regex) const;
47
48
49
50
		};

		struct SeqOperator: public Operator {
			virtual int Match(const std::string& str, const RegEx& regex) const;
51
			virtual int Match(const char *buffer, const RegEx& regex) const;
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
		};

	public:
		friend struct Operator;

		RegEx();
		RegEx(char ch);
		RegEx(char a, char z);
		RegEx(const std::string& str, REGEX_OP op = REGEX_SEQ);
		RegEx(const RegEx& rhs);
		~RegEx();

		RegEx& operator = (const RegEx& rhs);

		bool Matches(char ch) const;
		bool Matches(const std::string& str) const;
68
69
		bool Matches(const char *buffer) const;
		bool Matches(const Stream& in) const;
70
		int Match(const std::string& str) const;
71
72
		int Match(const char *buffer) const;
		int Match(const Stream& in) const;
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89

		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);

	private:
		RegEx(REGEX_OP op);
		void SetOp();

	private:
		REGEX_OP m_op;
		Operator *m_pOp;
		char m_a, m_z;
		std::vector <RegEx> m_params;
	};
}