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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
//! Token-based iXML grammar parser that produces AST
//!
//! Now uses a handwritten recursive descent parser for fast, linear-time parsing
//! (previously used RustyLR GLR which had exponential performance issues)
// Re-export the handwritten parser's parse function
pub use crateparse_ixml_grammar;
// Keep the old RustyLR implementation commented out for reference
/*
use rusty_lr::lr1;
use crate::lexer::Token;
use crate::ast::{IxmlGrammar, Rule, Alternatives, Sequence, Factor, BaseFactor, Mark, Repetition};
lr1! {
%err String;
%glr;
%tokentype Token;
%start Grammar;
// Map token patterns to terminal symbols
%token ident Token::Ident(_);
%token string Token::String(_);
%token charclass Token::CharClass(_);
%token hexchar Token::HexChar(_);
%token colon Token::Colon;
%token period Token::Period;
%token semicolon Token::Semicolon;
%token pipe Token::Pipe;
%token plus Token::Plus;
%token star Token::Star;
%token double_star Token::DoubleStar;
%token double_plus Token::DoublePlus;
%token question Token::Question;
%token at Token::At;
%token minus Token::Minus;
%token caret Token::Caret;
%token tilde Token::Tilde;
%token lparen Token::LParen;
%token rparen Token::RParen;
%token comma Token::Comma;
// Base factor (without repetition operator)
BaseFactor(BaseFactor): tok=string {
match tok {
Token::String(s) => BaseFactor::literal(s),
_ => unreachable!(),
}
}
| plus tok=string {
match tok {
Token::String(s) => BaseFactor::insertion(s),
_ => unreachable!(),
}
}
| at tok=string {
match tok {
Token::String(s) => BaseFactor::marked_literal(s, Mark::Attribute),
_ => unreachable!(),
}
}
| minus tok=string {
match tok {
Token::String(s) => BaseFactor::marked_literal(s, Mark::Hidden),
_ => unreachable!(),
}
}
| caret tok=string {
match tok {
Token::String(s) => BaseFactor::marked_literal(s, Mark::Promoted),
_ => unreachable!(),
}
}
| tok=hexchar {
match tok {
Token::HexChar(hex) => {
// Convert hex string to character
let code_point = u32::from_str_radix(&hex, 16)
.expect("Hex validation should have happened in lexer");
let ch = char::from_u32(code_point)
.expect("Invalid Unicode code point should have been caught in lexer");
BaseFactor::literal(ch.to_string())
},
_ => unreachable!(),
}
}
| plus tok=hexchar {
match tok {
Token::HexChar(hex) => {
// Convert hex string to character
let code_point = u32::from_str_radix(&hex, 16)
.expect("Hex validation should have happened in lexer");
let ch = char::from_u32(code_point)
.expect("Invalid Unicode code point should have been caught in lexer");
BaseFactor::insertion(ch.to_string())
},
_ => unreachable!(),
}
}
| at tok=hexchar {
match tok {
Token::HexChar(hex) => {
let code_point = u32::from_str_radix(&hex, 16)
.expect("Hex validation should have happened in lexer");
let ch = char::from_u32(code_point)
.expect("Invalid Unicode code point should have been caught in lexer");
BaseFactor::marked_literal(ch.to_string(), Mark::Attribute)
},
_ => unreachable!(),
}
}
| minus tok=hexchar {
match tok {
Token::HexChar(hex) => {
let code_point = u32::from_str_radix(&hex, 16)
.expect("Hex validation should have happened in lexer");
let ch = char::from_u32(code_point)
.expect("Invalid Unicode code point should have been caught in lexer");
BaseFactor::marked_literal(ch.to_string(), Mark::Hidden)
},
_ => unreachable!(),
}
}
| caret tok=hexchar {
match tok {
Token::HexChar(hex) => {
let code_point = u32::from_str_radix(&hex, 16)
.expect("Hex validation should have happened in lexer");
let ch = char::from_u32(code_point)
.expect("Invalid Unicode code point should have been caught in lexer");
BaseFactor::marked_literal(ch.to_string(), Mark::Promoted)
},
_ => unreachable!(),
}
}
| tok=ident {
match tok {
Token::Ident(name) => BaseFactor::nonterminal(name),
_ => unreachable!(),
}
}
| at tok=ident {
match tok {
Token::Ident(name) => BaseFactor::marked_nonterminal(name, Mark::Attribute),
_ => unreachable!(),
}
}
| minus tok=ident {
match tok {
Token::Ident(name) => BaseFactor::marked_nonterminal(name, Mark::Hidden),
_ => unreachable!(),
}
}
| caret tok=ident {
match tok {
Token::Ident(name) => BaseFactor::marked_nonterminal(name, Mark::Promoted),
_ => unreachable!(),
}
}
| lparen alts=Alternatives rparen {
BaseFactor::group(alts)
}
| lparen rparen {
BaseFactor::group(Alternatives::single(Sequence::empty()))
}
| tok=charclass {
match tok {
Token::CharClass(content) => BaseFactor::charclass(content),
_ => unreachable!(),
}
}
| tilde tok=charclass {
match tok {
Token::CharClass(content) => BaseFactor::negated_charclass(content),
_ => unreachable!(),
}
}
| at tok=charclass {
match tok {
Token::CharClass(content) => BaseFactor::marked_charclass(content, false, Mark::Attribute),
_ => unreachable!(),
}
}
| minus tok=charclass {
match tok {
Token::CharClass(content) => BaseFactor::marked_charclass(content, false, Mark::Hidden),
_ => unreachable!(),
}
}
| caret tok=charclass {
match tok {
Token::CharClass(content) => BaseFactor::marked_charclass(content, false, Mark::Promoted),
_ => unreachable!(),
}
}
| at tilde tok=charclass {
match tok {
Token::CharClass(content) => BaseFactor::marked_charclass(content, true, Mark::Attribute),
_ => unreachable!(),
}
}
| minus tilde tok=charclass {
match tok {
Token::CharClass(content) => BaseFactor::marked_charclass(content, true, Mark::Hidden),
_ => unreachable!(),
}
}
| caret tilde tok=charclass {
match tok {
Token::CharClass(content) => BaseFactor::marked_charclass(content, true, Mark::Promoted),
_ => unreachable!(),
}
};
// Factor with optional repetition operator
Factor(Factor): base=BaseFactor plus {
Factor::new(base, Repetition::OneOrMore)
}
| base=BaseFactor star {
Factor::new(base, Repetition::ZeroOrMore)
}
| base=BaseFactor double_star lparen sep=Sequence rparen {
Factor::new(base, Repetition::SeparatedZeroOrMore(Box::new(sep)))
}
| base=BaseFactor double_plus lparen sep=Sequence rparen {
Factor::new(base, Repetition::SeparatedOneOrMore(Box::new(sep)))
}
| base=BaseFactor double_star sep=BaseFactor {
// Bare separator: hash**S is equivalent to hash**(S)
let sep_factor = Factor::simple(sep);
let sep_seq = Sequence::new(vec![sep_factor]);
Factor::new(base, Repetition::SeparatedZeroOrMore(Box::new(sep_seq)))
}
| base=BaseFactor double_plus sep=BaseFactor {
// Bare separator: atom++dot is equivalent to atom++(dot)
let sep_factor = Factor::simple(sep);
let sep_seq = Sequence::new(vec![sep_factor]);
Factor::new(base, Repetition::SeparatedOneOrMore(Box::new(sep_seq)))
}
| base=BaseFactor question {
Factor::new(base, Repetition::Optional)
}
| base=BaseFactor {
Factor::simple(base)
}
;
// Sequence: one or more factors (comma-separated or whitespace-separated)
Sequence(Sequence): factors=$sep(Factor, comma, +) {
Sequence::new(factors)
}
| factors=Factor+ {
Sequence::new(factors)
};
// Alternatives: one or more sequences separated by pipe or semicolon
Alternatives(Alternatives): alts=$sep(Sequence, pipe, +) {
Alternatives::new(alts)
}
| alts=$sep(Sequence, semicolon, +) {
Alternatives::new(alts)
};
// Rule: name: alternatives.
Rule(Rule): name_tok=ident colon body=Alternatives period {
match name_tok {
Token::Ident(name) => Rule::new(name, Mark::None, body),
_ => unreachable!(),
}
}
| at name_tok=ident colon body=Alternatives period {
match name_tok {
Token::Ident(name) => Rule::new(name, Mark::Attribute, body),
_ => unreachable!(),
}
}
| minus name_tok=ident colon body=Alternatives period {
match name_tok {
Token::Ident(name) => Rule::new(name, Mark::Hidden, body),
_ => unreachable!(),
}
}
| caret name_tok=ident colon body=Alternatives period {
match name_tok {
Token::Ident(name) => Rule::new(name, Mark::Promoted, body),
_ => unreachable!(),
}
};
// Grammar: one or more rules
Grammar(IxmlGrammar): rules=Rule+ {
IxmlGrammar::new(rules)
};
}
pub fn parse_tokens(tokens: Vec<Token>) -> Result<IxmlGrammar, String> {
let parser = GrammarParser::new();
let mut ctx = GrammarContext::new();
// Feed all tokens except EOF
for token in tokens {
if token == Token::Eof {
break;
}
ctx.feed(&parser, token, &mut ()).map_err(|e| format!("Parse error: {:?}", e))?;
}
// Signal end of input
let results: Vec<_> = ctx.accept(&parser, &mut ())
.map_err(|e| format!("Accept error: {:?}", e))?
.collect();
if results.is_empty() {
Err("No parse results".to_string())
} else {
Ok(results[0].clone())
}
}
pub fn parse_ixml_grammar_old(input: &str) -> Result<IxmlGrammar, String> {
use crate::lexer::Lexer;
let mut lexer = Lexer::new(input);
let tokens = lexer.tokenize()?;
parse_tokens(tokens)
}
*/
// Tests now use the new handwritten parser