//! A single element of text. use std::cell::RefCell; use std::rc::Rc; use crate::parser::parser_with_context::parser_with_context; use crate::parser::text::paragraph_end; use super::new_context::ChainBehavior; use super::new_context::ContextElement; use super::new_context::ContextTree; use super::new_context::FailMatcherNode; use super::text::bold_end; use super::text::bold_start; use super::text::line_break; use super::text::link_end; use super::text::link_start; use super::text::space; use super::text::span; use super::text::symbol; use super::text::Bold; use super::text::Link; use super::text::Res; use super::text::TextElement; use nom::branch::alt; use nom::combinator::eof; use nom::combinator::map; use nom::combinator::not; use nom::combinator::recognize; use nom::error::ErrorKind; use nom::error::ParseError; use nom::error::VerboseError; use nom::multi::many1; use nom::multi::many_till; use nom::sequence::tuple; use nom::IResult; use nom::InputLength; use nom::Parser; use tracing::instrument; use tracing::trace; fn context_many_till<'r, C, I, O, E, F, M, T>( context: &'r ContextTree<'r, C>, mut many_matcher: M, mut till_matcher: T, ) -> impl FnMut(I) -> IResult, F), E> where C: ContextElement, I: Clone + InputLength, M: Parser, T: Parser, E: ParseError, { move |mut i: I| { let mut ret = Vec::new(); loop { let len = i.input_len(); match till_matcher.parse(i.clone()) { Ok((remaining, finish)) => return Ok((remaining, (ret, finish))), Err(nom::Err::Error(_)) => { match many_matcher.parse(i.clone()) { Err(nom::Err::Error(err)) => { return Err(nom::Err::Error(E::append(i, ErrorKind::ManyTill, err))) } Err(e) => return Err(e), Ok((remaining, many_elem)) => { // infinite loop check: the parser must always consume if remaining.input_len() == len { return Err(nom::Err::Error(E::from_error_kind( remaining, ErrorKind::ManyTill, ))); } ret.push(many_elem); i = remaining; } } } Err(e) => return Err(e), } } } } pub fn document(input: &str) -> Res<&str, Vec<(Vec, &str)>> { let initial_context: ContextTree<'_, FailMatcherNode> = ContextTree::new(); let paragraph_parser = parser_with_context!(paragraph); let ret = many1(paragraph_parser(&initial_context))(input); ret } pub fn paragraph<'s, 'r, C>( context: &'r ContextTree<'r, C>, i: &'s str, ) -> Res<&'s str, (Vec>, &'s str)> where C: ContextElement, { // Add a not(eof) check because many_till cannot match a zero-length string not(eof)(i)?; let paragraph_context = context.with_additional_node(FailMatcherNode { fail_matcher: ChainBehavior::AndParent(Some(¶graph_end)), }); // let paragraph_context = context.with_additional_fail_matcher(¶graph_end); let text_element_parser = parser_with_context!(flat_text_element)(¶graph_context); let ret = context_many_till(¶graph_context, text_element_parser, paragraph_end)(i); // let ret = many_till(text_element_parser, paragraph_end)(i); ret } fn flat_text_element<'s, 'r, C>( context: &'r ContextTree<'r, C>, i: &'s str, ) -> Res<&'s str, TextElement<'s>> where C: ContextElement, { not(|i| context.check_fail_matcher(i))(i)?; let bold_matcher = parser_with_context!(flat_bold)(context); let link_matcher = parser_with_context!(flat_link)(context); alt(( map(bold_matcher, TextElement::Bold), map(link_matcher, TextElement::Link), map(span, TextElement::Span), map(symbol("*"), TextElement::Symbol), map(symbol("["), TextElement::Symbol), map(symbol("]"), TextElement::Symbol), map(space, TextElement::Space), map(line_break, TextElement::LineBreak), ))(i) } fn recognize_bold_end(input: &str) -> Res<&str, &str> { recognize(bold_end)(input) } fn flat_bold<'s, 'r, C>(context: &'r ContextTree<'r, C>, i: &'s str) -> Res<&'s str, Bold<'s>> where C: ContextElement, { let new_context = context.with_additional_node(FailMatcherNode { fail_matcher: ChainBehavior::AndParent(Some(&recognize_bold_end)), }); // let new_context = context.with_additional_fail_matcher(&recognize_bold_end); let text_element_parser = parser_with_context!(flat_text_element)(&new_context); let (remaining, captured) = recognize(tuple(( bold_start, many_till(text_element_parser, bold_end), )))(i)?; let ret = Bold { contents: captured }; Ok((remaining, ret)) } fn recognize_link_end(input: &str) -> Res<&str, &str> { recognize(link_end)(input) } fn flat_link<'s, 'r, C>(context: &'r ContextTree<'r, C>, i: &'s str) -> Res<&'s str, Link<'s>> where C: ContextElement, { let new_context = context.with_additional_node(FailMatcherNode { fail_matcher: ChainBehavior::AndParent(Some(&recognize_link_end)), }); // let new_context = context.with_additional_fail_matcher(&recognize_link_end); let text_element_parser = parser_with_context!(flat_text_element)(&new_context); let (remaining, captured) = recognize(tuple(( link_start, many_till(text_element_parser, link_end), )))(i)?; let ret = Link { contents: captured }; Ok((remaining, ret)) }