-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.rs
511 lines (454 loc) · 17 KB
/
parse.rs
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
use parse::Membership::*;
use parse::Faction::*;
use range_set::{Range, Set};
use std::collections::VecDeque;
use std::{char, fmt};
use std::convert::From;
use std::result;
// Unicode tables for character classes are defined in libunicode
use unicode::regex::{PERLD, PERLS, PERLW};
pub type Result<T> = result::Result<T, ParseError>;
#[derive(Debug)]
enum ParseError {
ClassInvalid(char),
ClassMustClose,
ClassSetMustClose,
EllipsisCloseNeedsEscape,
EllipsisNotFirst,
EllipsisNotLast,
EllipsisOnlyChar,
EmptyRegex,
EscapeNotLast,
Invalid(char),
LiteralMustClose(char),
}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Error: {}", match *self {
ParseError::ClassInvalid(ref c) =>
format!("`{}` is invalid inside `<>` and outside `[]`.", c),
ParseError::ClassMustClose => "A `<` must have a closing `>`.".to_owned(),
ParseError::ClassSetMustClose => "A `[` must have a closing `]`.".to_owned(),
ParseError::EllipsisCloseNeedsEscape =>
"An `..` cannot be closed by an unescaped `]`".to_owned(),
ParseError::EllipsisNotFirst => "`..` cannot be the first element in a character class.".to_owned(),
ParseError::EllipsisNotLast => "An `..` must be followed by another char.".to_owned(),
ParseError::EllipsisOnlyChar => "`..` only operate on characters.".to_owned(),
ParseError::EmptyRegex => "An empty regex is not allowed.".to_owned(),
ParseError::EscapeNotLast => "A `\\` must be followed by another char.".to_owned(),
ParseError::Invalid(ref c) => format!("`{}` is not valid here.", c),
ParseError::LiteralMustClose(ref c) =>
format!("A literal must have an opening and closing `{}`.", c),
})
}
}
impl From<&'static [(char, char)]> for Set {
fn from(array: &'static [(char, char)]) -> Self {
let mut set = Set::new();
for &(open, close) in array {
set.insert(Range(open, close));
}
set
}
}
impl From<char> for Set {
fn from(c: char) -> Self {
let mut set = Set::new();
set.insert(Range(c, c));
set
}
}
// A set may be composed of Chars and Ranges but other types
// have no meaning here. These are the only applicable types.
impl From<Vec<Ast>> for Set {
fn from(vec: Vec<Ast>) -> Self {
let mut set = Set::new();
for ast in vec {
match ast {
Ast::Char(c) => set.insert(Range(c, c)),
Ast::Range(range) => set.insert(range),
_ => unreachable!(),
}
}
set
}
}
impl From<Vec<Ast>> for Ast {
fn from(vec: Vec<Ast>) -> Self {
let (mut inclusive, mut exclusive) = (Set::new(), Set::new());
for ast in vec {
match ast {
Ast::Char(c) => inclusive.insert(Range(c, c)),
Ast::Range(range) => inclusive.insert(range),
Ast::Set(set, Inclusive) => inclusive = inclusive.union(&set),
Ast::Set(set, Exclusive) => exclusive = exclusive.union(&set),
_ => unreachable!(),
}
}
if exclusive.is_empty() { Ast::Set(inclusive, Inclusive) }
else { Op::Union.apply(Ast::Set(inclusive, Inclusive),
Ast::Set(exclusive, Exclusive)) }
}
}
pub trait NextPrev {
fn next(&self) -> Self;
fn prev(&self) -> Self;
}
impl NextPrev for char {
fn next(&self) -> Self { char::from_u32(*self as u32 + 1).unwrap() }
fn prev(&self) -> Self { char::from_u32(*self as u32 - 1).unwrap() }
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub enum Membership {
Exclusive,
Inclusive,
}
impl Membership {
fn negate(self) -> Self {
match self {
Exclusive => Inclusive,
Inclusive => Exclusive,
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub enum Op {
Ellipsis, // ..
Difference, // -
SymmetricDifference, // ^
Intersection, // &
Union, // + or |
}
impl Op {
// Apply set operations. Must have `Char` removed beforehand. Subsets should be
// removed beforehand. This will remove new subsets before exiting.
pub fn apply(&self, left: Ast, right: Ast) -> Ast {
match *self {
Op::Difference => self.difference(left, right),
Op::SymmetricDifference => self.symmetric_difference(left, right),
Op::Intersection => self.intersection(left, right),
Op::Union => self.union(left, right),
_ => unimplemented!(),
}
}
// Apply set difference.
fn difference(&self, left: Ast, right: Ast) -> Ast {
match (left, right) {
(Ast::Empty, right) => right.negate(),
(left, Ast::Empty) => left,
(Ast::Set(lset, lmem), Ast::Set(rset, rmem)) => {
match (lmem, rmem) {
(l, r) if l == r => Ast::Set(lset.difference(&rset), l),
_ => unimplemented!(),
}
},
_ => unimplemented!(),
}
}
// Apply symmetric set difference.
fn symmetric_difference(&self, left: Ast, right: Ast) -> Ast {
match (left, right) {
(Ast::Empty, right) => right,
(left, Ast::Empty) => left,
(Ast::Set(lset, lmembership), Ast::Set(rset, rmembership)) => {
if lmembership == rmembership {
Ast::Set(lset.symmetric_difference(&rset), lmembership)
} else { unimplemented!() }
},
_ => unimplemented!(),
}
}
// Apply set intersection.
fn intersection(&self, left: Ast, right: Ast) -> Ast {
match (left, right) {
(Ast::Empty, _) |
(_, Ast::Empty) => Ast::Empty,
(Ast::Set(lset, lmem), Ast::Set(rset, rmem)) => {
match (lmem, rmem) {
(l, r) if l == r => Ast::Set(lset.intersection(&rset), l),
_ => unimplemented!(),
}
},
_ => unimplemented!(),
}
}
// Apply set union.
fn union(&self, left: Ast, right: Ast) -> Ast {
match (left, right) {
(Ast::Empty, right) => right,
(left , Ast::Empty) => left,
(Ast::Set(lset, lmembership), Ast::Set(rset, rmembership)) => {
// Unifying sets with opposite membership isn't obvious. If
// -3 is 3 Exclusive and 3 is Inclusive then `-3 + 3` is a
// union which is identical to `-(3 - 3)` = `-()`. Similarly,
// `-1 + 7` = `-(1 - 7)` = `-1`.
match (lmembership, rmembership) {
(x, y) if x == y => Ast::Set(lset.union(&rset), x),
(x @ Exclusive, _) => Ast::Set(lset.difference(&rset), x),
(Inclusive, y) => Ast::Set(rset.difference(&lset), y),
}
},
_ => unreachable!(),
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum Faction {
Capture,
NonCapture,
}
trait SetMatch {
fn find_set(&self, &Set, &Membership) -> Option<usize>;
fn starts_with_set(&self, &Set, &Membership) -> bool;
}
impl SetMatch for str {
fn find_set(&self, set: &Set, membership: &Membership) -> Option<usize> {
self.chars()
.position(|c| match *membership {
Inclusive => set.contains(c),
Exclusive => !set.contains(c),
})
}
fn starts_with_set(&self, set: &Set, membership: &Membership) -> bool {
self.chars()
.take(1)
.any(|c| match *membership {
Inclusive => set.contains(c),
Exclusive => !set.contains(c),
})
}
}
// Abstract syntax tree
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub enum Ast {
Empty,
Char(char), // abc123
Class(VecDeque<Ast>), // <[135] + [68\w]>
Dot, // .
Group(Vec<Ast>, Faction), // [123] or (123) outside a `<>`
Literal(String), // `'hello'` or `"hello"`
Op(Op),
// Unicode uses (open, close) pairs to denote range. A set of these is
// more efficient than specifying every character. A set may include a
// few dozen pairs instead of 100s/1000s.
Range(Range), // (open, close) range for character sets
// A character class with all the ops already applied.
Set(Set, Membership), // [1..5 \d] inside a `<>`
}
impl Ast {
// Return the index where the first match is found as an Option.
pub fn find(&self, txt: &str) -> Option<usize> {
match self {
&Ast::Char(c) => txt.find(c),
&Ast::Literal(ref s) => txt.find(s),
&Ast::Set(ref set, ref membership) => txt.find_set(set, membership),
_ => unimplemented!(),
}
}
// If the str matches, return the remainer of the str after the 1st match
// has been trimmed off.
pub fn trim_left_match<'a>(&self, txt: &'a str) -> Option<&'a str> {
match self {
&Ast::Char(c) => if txt.starts_with(c) { Some(&txt[1..]) } else { None },
&Ast::Literal(ref s) => if txt.starts_with(s) { Some(&txt[s.len()..]) } else { None },
&Ast::Set(ref set, ref membership) => {
if txt.starts_with_set(set, membership) { Some(&txt[1..]) } else { None }
},
_ => unimplemented!(),
}
}
fn negate(self) -> Self {
match self {
Ast::Set(set, membership) => Ast::Set(set, membership.negate()),
_ => unreachable!(),
}
}
}
pub fn parse(s: &str) -> Result<Vec<Ast>> {
Parser { chars: s.chars().collect(),
pos: 0,
}.parse()
}
struct Parser {
chars: Vec<char>,
pos: usize,
}
impl Parser {
fn cur(&self) -> char { self.chars[self.pos] }
// True if next finds another char.
fn next(&mut self) -> bool {
if self.pos == self.chars.len() - 1 { false }
else {
self.pos += 1;
true
}
}
fn parse(&mut self) -> Result<Vec<Ast>> {
let mut vec = vec![];
if self.chars.len() == 0 { return Err(ParseError::EmptyRegex) }
loop {
let c = self.cur();
if c.is_alphanumeric() || c == '_' { vec.push(Ast::Char(c)) }
else if !c.is_whitespace() {
vec.push(try!(match c {
'\\' => self.parse_escape_set(),
'\'' | '"' => self.parse_literal(),
'<' => self.parse_class(),
'.' => Ok(Ast::Dot),
'#' => self.parse_comment(),
_ => Err(ParseError::Invalid(c)),
}));
}
if !self.next() { break }
}
Ok(vec)
}
// Parse the `< [123 a] + [4 \d] - [\w \d] >`
fn parse_class(&mut self) -> Result<Ast> {
// Classes will need to be merged later which requires collapsing from the
// front so I'm using a deque (`<[abc] + [cde]>` collapses to `<[a...e]>`).
let mut deque = VecDeque::new();
let mut closed = false; // Deliminator hasn't been closed yet.
while self.next() {
let c = self.cur();
if c == '>' {
closed = true;
break;
} else if !c.is_whitespace() {
deque.push_back(try!(match c {
'-' => Ok(Ast::Op(Op::Difference)),
'^' => Ok(Ast::Op(Op::SymmetricDifference)),
'&' => Ok(Ast::Op(Op::Intersection)),
'+' | '|' => Ok(Ast::Op(Op::Union)),
'[' => self.parse_class_set(),
_ => Err(ParseError::ClassInvalid(c)),
}));
}
}
if !closed { return Err(ParseError::ClassMustClose) }
// Insert `Empty` in front if first character is a binary op.
match deque[0] {
Ast::Op(Op::Difference) |
Ast::Op(Op::SymmetricDifference) |
Ast::Op(Op::Intersection) |
Ast::Op(Op::Union) => deque.push_front(Ast::Empty),
_ => {},
}
// Insert `Empty` in back if last character is a binary op.
match deque[deque.len()-1] {
Ast::Op(Op::Difference) |
Ast::Op(Op::SymmetricDifference) |
Ast::Op(Op::Intersection) |
Ast::Op(Op::Union) => deque.push_back(Ast::Empty),
_ => {},
}
Ok(Ast::Class(deque))
}
// Inside a `<>`, parse the `[123 a]` or `[4 \d]`. Assume `[` is the first char.
fn parse_class_set(&mut self) -> Result<Ast> {
// Need a set but an ellipsis will require pulling the last element back off
// the end. A set may not preserve order so a vec is used to build then
// morphed into a set later.
let mut vec = vec![];
let mut closed = false; // Deliminator hasn't been closed yet.
while !closed && self.next() {
let c = self.cur();
if c == ']' { closed = true } else if !c.is_whitespace() {
let ast = try!(match c {
'\\' => self.parse_escape_set(),
'.' => {
if self.peek('.') {
self.next(); // Advance to second `.`
// Pull off the last `Ast` before the `..`
let before = try!(match vec.pop() {
Some(Ast::Char(c)) => Ok(c),
Some(_) => Err(ParseError::EllipsisOnlyChar),
None => Err(ParseError::EllipsisNotFirst),
});
self.parse_ellipsis(before)
} else { Ok(Ast::Char(c)) }
},
c => Ok(Ast::Char(c)),
});
vec.push(ast);
}
}
if !closed { return Err(ParseError::ClassSetMustClose) }
Ok(vec.into())
}
// When a `#` initiates a comment, continue parsing to the end of the line
fn parse_comment(&mut self) -> Result<Ast> {
while self.next() {
match self.cur() {
'\n' | '\r' => break,
_ => {},
}
}
Ok(Ast::Empty)
}
// The `a .. b` notation has been parsed. Determine `b` and return a `Range`
// from `a` to `b`.
fn parse_ellipsis(&mut self, a: char) -> Result<Ast> {
while self.next() {
let b = self.cur();
if !b.is_whitespace() {
return match b {
']' => Err(ParseError::EllipsisCloseNeedsEscape),
'\\' => self.parse_escape().map(|c| Ast::Range(Range(a, c))),
_ => Ok(Ast::Range(Range(a, b))),
};
}
}
Err(ParseError::EllipsisNotLast)
}
// Return the next character which follows a `\`.
fn parse_escape(&mut self) -> Result<char> {
if !self.next() { return Err(ParseError::EscapeNotLast) }
Ok(self.cur())
}
// Parse the `\w`, `\d`, ... types
fn parse_escape_set(&mut self) -> Result<Ast> {
self.parse_escape()
.map(|c| match c {
'd' => Ast::Set(PERLD.into(), Inclusive),
'D' => Ast::Set(PERLD.into(), Exclusive),
'n' => Ast::Set('\n'.into(), Inclusive),
'N' => Ast::Set('\n'.into(), Exclusive),
't' => Ast::Set('\t'.into(), Inclusive),
'T' => Ast::Set('\t'.into(), Exclusive),
's' => Ast::Set(PERLS.into(), Inclusive),
'S' => Ast::Set(PERLS.into(), Exclusive),
'w' => Ast::Set(PERLW.into(), Inclusive),
'W' => Ast::Set(PERLW.into(), Exclusive),
c => Ast::Char(c),
})
}
// Parse the `'hello world'` and `"testing_this"`
fn parse_literal(&mut self) -> Result<Ast> {
let close = self.cur();
let mut s = String::new();
while self.next() {
let c = self.cur();
if c == close { return Ok(Ast::Literal(s)) }
s.push(c);
}
Err(ParseError::LiteralMustClose(close))
}
// Check if next character matches `needle`. Doesn't modify pos.
fn peek(&mut self, needle: char) -> bool {
let mut ret = false;
if self.next() &&
self.cur() == needle { ret = true; }
// `self.next()` always increments pos even if it fails to find an element. So decrement.
self.prev();
ret
}
// True if prev finds another char.
fn prev(&mut self) -> bool {
if self.pos == 0 { false }
else {
self.pos -= 1;
true
}
}
}