-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrammar.hpp
228 lines (189 loc) · 6.31 KB
/
grammar.hpp
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#if !defined(ASCII_TREE_GRAMMAR_H)
#define ASCII_TREE_GRAMMAR_H
#include <iterator>
#include <utility>
#include <cctype>
#include <string>
#include <vector>
#include "parser.hpp"
#if 0
GRAMMAR
========
tokens: token
tokens token
token: root-node
named-node
horizontal-edge
descending-edge-part
vertical-edge-part
ascending-edge-part
edge-name
root-node: '[' '*' ']'
named-node: '[' name-chars ']'
horizontal-edge: edge-chars edge-name edge-chars
descending-edge-part '\'
vertical-edge-part '|'
ascending-edge-part '/'
edge-name: '(' name-chars ')'
name-chars: name-char
name-chars name-char
name-char: alnum
'_'
alnum: one of: [A-Za-z0-9]
edge-chars: '-'
edge-chars '-'
#endif
namespace ascii_tree
{
struct token
{
enum toktype { root_node, named_node, edge_name, horizontal_edge, ascending_edge_part, descending_edge_part, vertical_edge_part };
toktype type;
std::string name;
token(toktype type, std::string&& name) : type(type), name(std::move(name)) {}
};
inline bool operator==(const token& lhs, const token& rhs)
{
return lhs.type == rhs.type
&& lhs.name == rhs.name;
}
inline token root_node() { return token(token::root_node, ""); }
inline token named_node(std::string&& name) { return token(token::named_node, std::move(name)); }
inline token edge_name(std::string&& name) { return token(token::edge_name, std::move(name)); }
inline token horizontal_edge(std::string&& name) { return token(token::horizontal_edge, std::move(name)); }
inline token ascending_edge_part() { return token(token::ascending_edge_part, ""); }
inline token descending_edge_part() { return token(token::descending_edge_part, ""); }
inline token vertical_edge_part() { return token(token::vertical_edge_part, ""); }
enum terminal
{
none, open_square_brace, close_square_brace, asterisk, dash,
open_paren, close_paren, name_char, slash, backslash, pipe, space
};
struct terminal_traits
{
typedef terminal type;
static const type ignore_me = space;
static terminal to_terminal(char ch)
{
if (ch == '[') return open_square_brace;
else if (ch == '*') return asterisk;
else if (ch == ']') return close_square_brace;
else if (isalnum(ch) || ch == '_') return name_char;
else if (ch == '-') return dash;
else if (ch == '(') return open_paren;
else if (ch == ')') return close_paren;
else if (ch == '\\') return backslash;
else if (ch == '|') return pipe;
else if (ch == '/') return slash;
else if (ch == ' ') return space;
return none;
}
};
class grammar
{
parser<terminal_traits> p_;
std::string expect_name_chars_()
{
auto begin = p_.expect(name_char);
while (p_.accept(name_char)) {}
p_.unignore(); // strip trailing spaces
return p_.substring(begin);
}
public:
explicit grammar(const std::string& s)
: p_(s)
{}
token root_node()
{
p_.expect(open_square_brace);
p_.expect(asterisk);
p_.expect(close_square_brace);
return ascii_tree::root_node();
}
token named_node()
{
p_.expect(open_square_brace);
auto name = expect_name_chars_();
p_.expect(close_square_brace);
return ascii_tree::named_node(std::move(name));
}
token edge_name()
{
p_.expect(open_paren);
auto name = expect_name_chars_();
p_.expect(close_paren);
return ascii_tree::edge_name(std::move(name));
}
token ascending_edge_part()
{
p_.expect(slash);
return ascii_tree::ascending_edge_part();
}
token descending_edge_part()
{
p_.expect(backslash);
return ascii_tree::descending_edge_part();
}
token vertical_edge_part()
{
p_.expect(pipe);
return ascii_tree::vertical_edge_part();
}
token horizontal_edge()
{
p_.expect(dash);
while (p_.accept(dash)) {}
p_.expect(open_paren);
auto name = expect_name_chars_();
p_.expect(close_paren);
p_.expect(dash);
while (p_.accept(dash)) {}
return ascii_tree::horizontal_edge(std::move(name));
}
std::vector<token> tokens()
{
std::vector<token> tokens;
while (p_.ignore(), !p_.at_end())
{
auto peek = p_;
if (peek.accept(open_square_brace))
{
if (peek.accept(asterisk))
{
tokens.emplace_back(root_node());
}
else
{
tokens.emplace_back(named_node());
}
}
else if (peek.accept(dash))
{
tokens.emplace_back(horizontal_edge());
}
else if (peek.accept(backslash))
{
tokens.emplace_back(descending_edge_part());
}
else if (peek.accept(pipe))
{
tokens.emplace_back(vertical_edge_part());
}
else if (peek.accept(slash))
{
tokens.emplace_back(ascending_edge_part());
}
else if (peek.accept(open_paren))
{
tokens.emplace_back(edge_name());
}
else
{
p_.error();
}
}
return tokens;
}
};
}
#endif // ASCII_TREE_GRAMMAR_H