use crate::Span; #[derive(Debug, Clone, PartialEq, Eq)] pub enum EventKind { Enter(C), Inline, Exit(C), Atom(A), } pub enum Element<'a, C, A> { Container(&'a mut C), Atom(&'a mut A), Inline, } #[derive(Debug, Clone, PartialEq, Eq)] pub struct Event { pub kind: EventKind, pub span: Span, } #[derive(Clone)] pub struct Tree { nodes: std::rc::Rc<[Node]>, branch: Vec, head: Option, } impl Tree { pub fn empty() -> Self { Self { nodes: vec![].into_boxed_slice().into(), branch: Vec::new(), head: None, } } /// Count number of direct children nodes. pub fn count_children(&self) -> usize { let mut head = self.head; let mut count = 0; while let Some(h) = head { let n = &self.nodes[h.index()]; head = n.next; count += 1; } count } /// Split off the remaining part of the current branch. The returned [`Tree`] will continue on /// the branch, this [`Tree`] will skip over the current branch. pub fn take_branch(&mut self) -> Self { let head = self.head.take(); self.head = self.branch.pop(); if let Some(h) = self.head { let n = &self.nodes[h.index()]; self.head = n.next; } Self { nodes: self.nodes.clone(), branch: Vec::new(), head, } } /// Retrieve all inlines until the end of the current container. Panics if any upcoming node is /// not an inline node. pub fn take_inlines(&mut self) -> impl Iterator + '_ { let mut head = self.head.take(); std::iter::from_fn(move || { head.take().map(|h| { let n = &self.nodes[h.index()]; assert!(matches!(n.kind, NodeKind::Inline)); head = n.next; n.span }) }) } } impl Iterator for Tree { type Item = Event; fn next(&mut self) -> Option { if let Some(head) = self.head { let n = &self.nodes[head.index()]; let kind = match &n.kind { NodeKind::Root => unreachable!(), NodeKind::Container(c, child) => { self.branch.push(head); self.head = *child; EventKind::Enter(c.clone()) } NodeKind::Atom(a) => { self.head = n.next; EventKind::Atom(a.clone()) } NodeKind::Inline => { self.head = n.next; EventKind::Inline } }; Some(Event { kind, span: n.span }) } else if let Some(block_ni) = self.branch.pop() { let Node { next, kind, span } = &self.nodes[block_ni.index()]; let kind = match kind { NodeKind::Container(c, _) => EventKind::Exit(c.clone()), _ => panic!(), }; self.head = *next; Some(Event { kind, span: *span }) } else { None } } } #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub struct NodeIndex(std::num::NonZeroUsize); impl NodeIndex { fn new(i: usize) -> Self { assert_ne!(i, usize::MAX); Self((i + 1).try_into().unwrap()) } fn root() -> Self { Self::new(0) } fn index(self) -> usize { usize::from(self.0) - 1 } } #[derive(Debug, Clone, PartialEq, Eq)] enum NodeKind { Root, Container(C, Option), Atom(A), Inline, } #[derive(Debug, Clone)] struct Node { span: Span, kind: NodeKind, next: Option, } #[derive(Clone)] pub struct Builder { nodes: Vec>, branch: Vec, head: Option, depth: usize, } impl<'a, C, A> From<&'a mut NodeKind> for Element<'a, C, A> { fn from(kind: &'a mut NodeKind) -> Self { match kind { NodeKind::Root => unreachable!(), NodeKind::Container(c, ..) => Element::Container(c), NodeKind::Atom(a) => Element::Atom(a), NodeKind::Inline => Element::Inline, } } } impl Builder { pub(super) fn new() -> Self { Builder { nodes: vec![Node { span: Span::default(), kind: NodeKind::Root, next: None, }], branch: vec![], head: Some(NodeIndex::root()), depth: 0, } } pub(super) fn atom(&mut self, a: A, span: Span) { self.add_node(Node { span, kind: NodeKind::Atom(a), next: None, }); } pub(super) fn inline(&mut self, span: Span) { self.add_node(Node { span, kind: NodeKind::Inline, next: None, }); } pub(super) fn enter(&mut self, c: C, span: Span) -> NodeIndex { self.depth += 1; self.add_node(Node { span, kind: NodeKind::Container(c, None), next: None, }) } pub(super) fn exit(&mut self) { self.depth -= 1; if let Some(head) = self.head.take() { if matches!(self.nodes[head.index()].kind, NodeKind::Container(..)) { self.branch.push(head); } } else { let last = self.branch.pop(); assert_ne!(last, None); } } /// Exit and discard all the contents of the current container. pub(super) fn exit_discard(&mut self) { self.exit(); let exited = self.branch.pop().unwrap(); self.nodes.drain(exited.index()..); let (ni, has_parent) = self.relink(exited, None); if has_parent { self.head = Some(ni); } else { self.branch.push(ni); } } pub(super) fn depth(&self) -> usize { self.depth } pub(super) fn elem(&mut self, ni: NodeIndex) -> Element { match &mut self.nodes[ni.index()].kind { NodeKind::Root => unreachable!(), NodeKind::Container(c, ..) => Element::Container(c), NodeKind::Atom(a) => Element::Atom(a), NodeKind::Inline => Element::Inline, } } /// Retrieve all children nodes for the specified node. Order is in the order they were added. pub(super) fn children( &mut self, node: NodeIndex, ) -> impl Iterator, Span)> { assert!(matches!( self.nodes[node.index()].kind, NodeKind::Container(..) )); let end = self.nodes[node.index()] .next .map_or(self.nodes.len(), NodeIndex::index); self.nodes[node.index()..end] .iter_mut() .map(|n| (Element::from(&mut n.kind), n.span)) } pub(super) fn finish(self) -> Tree { assert_eq!(self.depth, 0); let head = self.nodes[NodeIndex::root().index()].next; Tree { nodes: self.nodes.into_boxed_slice().into(), branch: Vec::new(), head, } } fn add_node(&mut self, node: Node) -> NodeIndex { let ni = NodeIndex::new(self.nodes.len()); self.nodes.push(node); if let Some(head_ni) = &mut self.head { let mut head = &mut self.nodes[head_ni.index()]; match &mut head.kind { NodeKind::Root | NodeKind::Inline | NodeKind::Atom(_) => { // set next pointer of previous node assert_eq!(head.next, None); head.next = Some(ni); } NodeKind::Container(_, child) => { self.branch.push(*head_ni); // set child pointer of current container assert_eq!(*child, None); *child = Some(ni); } } } else if let Some(block) = self.branch.pop() { let mut block = &mut self.nodes[block.index()]; assert!(matches!(block.kind, NodeKind::Container(..))); block.next = Some(ni); } else { panic!() } self.head = Some(ni); ni } /// Remove the link from the node that points to the specified node. Return the pointer node /// and whether it is a container or not. fn relink(&mut self, prev: NodeIndex, next: Option) -> (NodeIndex, bool) { for (i, n) in self.nodes.iter_mut().enumerate().rev() { let ni = NodeIndex::new(i); if n.next == Some(prev) { n.next = next; return (ni, false); } else if let NodeKind::Container(kind, child) = &mut n.kind { if *child == Some(prev) { dbg!(kind, next); *child = next; return (ni, true); } } } panic!() } } impl std::fmt::Debug for Builder { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { self.clone().finish().fmt(f) } } impl std::fmt::Debug for Tree { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { const INDENT: &str = " "; let mut level = 0; writeln!(f)?; for e in self.clone() { let indent = INDENT.repeat(level); match e.kind { EventKind::Enter(c) => { write!(f, "{}{:?}", indent, c)?; level += 1; } EventKind::Inline => write!(f, "{}Inline", indent)?, EventKind::Exit(..) => { level -= 1; continue; } EventKind::Atom(a) => write!(f, "{}{:?}", indent, a)?, } writeln!(f, " ({}:{})", e.span.start(), e.span.end())?; } Ok(()) } } #[cfg(test)] mod test { use crate::Span; use super::Event; use super::EventKind; #[test] fn fmt() { let mut tree = super::Builder::new(); tree.enter(1, Span::new(0, 1)); tree.atom(11, Span::new(0, 1)); tree.atom(12, Span::new(0, 1)); tree.exit(); tree.enter(2, Span::new(1, 5)); tree.enter(21, Span::new(2, 5)); tree.enter(211, Span::new(3, 4)); tree.atom(2111, Span::new(3, 4)); tree.exit(); tree.exit(); tree.enter(22, Span::new(4, 5)); tree.atom(221, Span::new(4, 5)); tree.exit(); tree.exit(); tree.enter(3, Span::new(5, 6)); tree.atom(31, Span::new(5, 6)); tree.exit(); assert_eq!( format!("{:?}", tree.finish()), concat!( "\n", "1 (0:1)\n", " 11 (0:1)\n", " 12 (0:1)\n", "2 (1:5)\n", " 21 (2:5)\n", " 211 (3:4)\n", " 2111 (3:4)\n", " 22 (4:5)\n", " 221 (4:5)\n", "3 (5:6)\n", " 31 (5:6)\n", ) ); } #[test] fn branch_take_branch() { let mut b = super::Builder::new(); let sp = Span::new(0, 0); b.enter(1, sp); b.atom(11, sp); b.exit(); b.enter(2, sp); b.enter(21, sp); b.atom(211, sp); b.exit(); b.exit(); b.enter(3, sp); b.atom(31, sp); b.exit(); let mut tree = b.finish(); assert_eq!( (&mut tree).take(3).collect::>(), &[ Event { kind: EventKind::Enter(1), span: sp }, Event { kind: EventKind::Atom(11), span: sp }, Event { kind: EventKind::Exit(1), span: sp }, ] ); assert_eq!( tree.next(), Some(Event { kind: EventKind::Enter(2), span: sp }) ); assert_eq!( tree.take_branch().collect::>(), &[ Event { kind: EventKind::Enter(21), span: sp }, Event { kind: EventKind::Atom(211), span: sp }, Event { kind: EventKind::Exit(21), span: sp }, ] ); assert_eq!( tree.collect::>(), &[ Event { kind: EventKind::Enter(3), span: sp }, Event { kind: EventKind::Atom(31), span: sp }, Event { kind: EventKind::Exit(3), span: sp }, ] ); } }