This repository has been archived by the owner on Oct 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
parser.h
144 lines (115 loc) · 3.26 KB
/
parser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// parser.h
#ifndef _PARSER_H
# define _PARSER_H
# include "misc.h"
# include "stringtool.h"
# include <vector>
///
class Token
{
public:
///
enum Type
{
Type_string, ///
Type_number, ///
Type_regexp, ///
Type_openParen, ///
Type_closeParen, ///
Type_comma, ///
};
private:
u_char m_type; ///
bool m_isValueQuoted; ///
int m_numericValue; ///
tstringi m_stringValue; ///
long m_data; ///
public:
///
Token(const Token &i_token);
///
Token(int i_value, const tstringi &i_display);
///
Token(const tstringi &i_value, bool i_isValueQuoted,
bool i_isRegexp = false);
///
Token(Type i_type);
/// is the value quoted ?
bool isQuoted() const { return m_isValueQuoted; }
/// value type
Type getType() const { return static_cast<Type>(m_type); }
///
bool isString() const { return m_type == Type_string; }
///
bool isNumber() const { return m_type == Type_number; }
///
bool isRegexp() const { return m_type == Type_regexp; }
///
bool isOpenParen() const { return m_type == Type_openParen; }
///
bool isCloseParen() const { return m_type == Type_closeParen; }
///
bool isComma() const { return m_type == Type_comma; }
/// get numeric value
int getNumber() const;
/// get string value
tstringi getString() const;
/// get regexp value
tstringi getRegexp() const;
/// get data
long getData() const { return m_data; }
///
void setData(long i_data) { m_data = i_data; }
/// case insensitive equal
bool operator==(const tstringi &i_str) const
{ return *this == i_str.c_str(); }
///
bool operator==(const _TCHAR *i_str) const;
///
bool operator!=(const tstringi &i_str) const
{ return *this != i_str.c_str(); }
///
bool operator!=(const _TCHAR *i_str) const { return !(*this == i_str); }
/** paren equal
@param i_c '<code>(</code>' or '<code>)</code>' */
bool operator==(const _TCHAR i_c) const;
/** paren equal
@param i_c '<code>(</code>' or '<code>)</code>' */
bool operator!=(const _TCHAR i_c) const { return !(*this == i_c); }
/// add string
void add(const tstringi &i_str);
/// stream output
friend tostream &operator<<(tostream &i_ost, const Token &i_token);
};
///
class Parser
{
public:
///
typedef std::vector<Token> Tokens;
private:
///
typedef std::vector<tstringi> Prefixes;
private:
size_t m_lineNumber; /// current line number
const Prefixes *m_prefixes; /** string that may be prefix
of a token */
size_t m_internalLineNumber; /// next line number
const _TCHAR *m_ptr; /// read pointer
const _TCHAR *m_end; /// end pointer
private:
/// get a line
bool getLine(tstringi *o_line);
public:
///
Parser(const _TCHAR *i_str, size_t i_length);
/** get a parsed line. if no more lines exist, returns false */
bool getLine(Tokens *o_tokens);
/// get current line number
size_t getLineNumber() const { return m_lineNumber; }
/** set string that may be prefix of a token. prefix_ is not
copied, so it must be preserved after setPrefix() */
void setPrefixes(const Prefixes *m_prefixes);
};
#endif // !_PARSER_H