"vscode:/vscode.git/clone" did not exist on "2a038c1d7e8351b386dbf6944e63f1053cf9b9b6"
regex.h 1.82 KB
Newer Older
1
2
3
4
5
6
7
#pragma once

#include <vector>
#include <string>

namespace YAML
{
8
	class Stream;
9
10
11
12
13
14
15
16
17
18
19
20
21

	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);
22
		~RegEx() {}
23

24
25
26
27
28
		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);
		
29
30
		bool Matches(char ch) const;
		bool Matches(const std::string& str) const;
31
		bool Matches(const Stream& in) const;
32
33
		template <typename Source> bool Matches(const Source& source) const;

34
		int Match(const std::string& str) const;
35
		int Match(const Stream& in) const;
36
37
38

	private:
		RegEx(REGEX_OP op);
39
40
41
42
43
44
45
46
47
48
49
50
		
		template <typename Source> bool IsValidSource(const Source& source) const;
		template <typename Source> int Match(const Source& source) const;
		template <typename Source> int MatchUnchecked(const Source& source) const;

		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;
51
52
53
54
55
56
57

	private:
		REGEX_OP m_op;
		char m_a, m_z;
		std::vector <RegEx> m_params;
	};
}
58
59

#include "regeximpl.h"