rust/src/parser_impl/event.rs

159 lines
4.7 KiB
Rust
Raw Normal View History

2018-07-29 07:16:07 -05:00
//! This module provides a way to construct a `File`.
//! It is intended to be completely decoupled from the
//! parser, so as to allow to evolve the tree representation
//! and the parser algorithm independently.
//!
//! The `Sink` trait is the bridge between the parser and the
//! tree builder: the parser produces a stream of events like
//! `start node`, `finish node`, and `FileBuilder` converts
//! this stream to a real tree.
2018-07-28 05:07:10 -05:00
use {
2018-07-29 07:16:07 -05:00
lexer::Token,
2018-07-31 15:38:19 -05:00
parser_impl::Sink,
2018-07-30 06:08:06 -05:00
SyntaxKind::{self, TOMBSTONE},
2018-07-28 05:07:10 -05:00
};
2018-07-29 07:16:07 -05:00
2018-08-07 10:28:30 -05:00
2018-02-04 04:53:47 -06:00
/// `Parser` produces a flat list of `Event`s.
/// They are converted to a tree-structure in
/// a separate pass, via `TreeBuilder`.
#[derive(Debug)]
pub(crate) enum Event {
/// This event signifies the start of the node.
/// It should be either abandoned (in which case the
/// `kind` is `TOMBSTONE`, and the event is ignored),
/// or completed via a `Finish` event.
///
/// All tokens between a `Start` and a `Finish` would
/// become the children of the respective node.
///
/// For left-recursive syntactic constructs, the parser produces
/// a child node before it sees a parent. `forward_parent`
/// exists to allow to tweak parent-child relationships.
///
/// Consider this path
///
/// foo::bar
///
/// The events for it would look like this:
///
///
/// START(PATH) IDENT('foo') FINISH START(PATH) COLONCOLON IDENT('bar') FINISH
/// | /\
/// | |
/// +------forward-parent------+
///
/// And the tree would look like this
///
/// +--PATH---------+
/// | | |
/// | | |
/// | '::' 'bar'
/// |
/// PATH
/// |
/// 'foo'
///
2018-02-11 08:58:22 -06:00
/// See also `CompletedMarker::precede`.
2018-02-04 04:53:47 -06:00
Start {
kind: SyntaxKind,
forward_parent: Option<u32>,
},
/// Complete the previous `Start` event
Finish,
/// Produce a single leaf-element.
/// `n_raw_tokens` is used to glue complex contextual tokens.
/// For example, lexer tokenizes `>>` as `>`, `>`, and
/// `n_raw_tokens = 2` is used to produced a single `>>`.
Token {
kind: SyntaxKind,
n_raw_tokens: u8,
},
Error {
msg: String,
2018-02-04 04:53:47 -06:00
},
}
2018-08-05 14:06:34 -05:00
pub(super) fn process<'a, S: Sink<'a>>(builder: &mut S, tokens: &[Token], events: Vec<Event>) {
let mut next_tok_idx = 0;
let eat_ws = |idx: &mut usize, builder: &mut S| {
while let Some(token) = tokens.get(*idx) {
if !token.kind.is_trivia() {
break;
}
builder.leaf(token.kind, token.len);
*idx += 1
}
};
2018-02-04 04:53:47 -06:00
2018-08-05 14:06:34 -05:00
let mut depth = 0;
2018-02-04 04:53:47 -06:00
let mut holes = Vec::new();
let mut forward_parents = Vec::new();
for (i, event) in events.iter().enumerate() {
if holes.last() == Some(&i) {
holes.pop();
continue;
}
match event {
&Event::Start {
kind: TOMBSTONE, ..
} => (),
&Event::Start { .. } => {
forward_parents.clear();
let mut idx = i;
loop {
let (kind, fwd) = match events[idx] {
Event::Start {
kind,
forward_parent,
} => (kind, forward_parent),
_ => unreachable!(),
};
forward_parents.push((idx, kind));
if let Some(fwd) = fwd {
idx += fwd as usize;
} else {
break;
}
}
for &(idx, kind) in forward_parents.iter().into_iter().rev() {
2018-08-05 14:06:34 -05:00
if depth > 0 {
eat_ws(&mut next_tok_idx, builder);
}
depth += 1;
2018-02-04 04:53:47 -06:00
builder.start_internal(kind);
holes.push(idx);
}
holes.pop();
}
&Event::Finish => {
2018-08-05 14:06:34 -05:00
depth -= 1;
if depth == 0 {
eat_ws(&mut next_tok_idx, builder);
2018-02-04 04:53:47 -06:00
}
2018-08-05 14:06:34 -05:00
builder.finish_internal();
2018-02-04 04:53:47 -06:00
}
&Event::Token {
2018-02-04 07:46:26 -06:00
kind,
2018-02-04 04:53:47 -06:00
mut n_raw_tokens,
2018-02-04 07:46:26 -06:00
} => {
2018-08-05 14:06:34 -05:00
eat_ws(&mut next_tok_idx, builder);
2018-07-28 05:07:10 -05:00
let mut len = 0.into();
2018-02-04 07:46:26 -06:00
for _ in 0..n_raw_tokens {
2018-08-05 14:06:34 -05:00
len += tokens[next_tok_idx].len;
next_tok_idx += 1;
2018-02-04 04:53:47 -06:00
}
2018-02-04 07:46:26 -06:00
builder.leaf(kind, len);
2018-02-04 08:06:43 -06:00
}
2018-07-29 06:37:48 -05:00
&Event::Error { ref msg } => builder.error(msg.clone()),
2018-02-04 04:53:47 -06:00
}
}
}