2023-07-22 05:36:00 +00:00
|
|
|
use nom::bytes::complete::tag;
|
|
|
|
use nom::character::complete::anychar;
|
|
|
|
use nom::character::complete::one_of;
|
|
|
|
use nom::character::complete::space0;
|
|
|
|
use nom::combinator::peek;
|
|
|
|
use nom::combinator::recognize;
|
|
|
|
use nom::combinator::verify;
|
|
|
|
use nom::multi::many_till;
|
|
|
|
|
2023-08-23 04:30:26 +00:00
|
|
|
use super::org_source::OrgSource;
|
2023-07-22 05:36:00 +00:00
|
|
|
use super::Context;
|
|
|
|
use crate::error::CustomError;
|
|
|
|
use crate::error::MyError;
|
|
|
|
use crate::error::Res;
|
|
|
|
use crate::parser::exiting::ExitClass;
|
|
|
|
use crate::parser::parser_context::ContextElement;
|
|
|
|
use crate::parser::parser_context::ExitMatcherNode;
|
|
|
|
use crate::parser::parser_with_context::parser_with_context;
|
|
|
|
use crate::parser::util::exit_matcher_parser;
|
|
|
|
use crate::parser::util::get_consumed;
|
|
|
|
use crate::parser::Target;
|
|
|
|
|
2023-08-11 00:04:59 +00:00
|
|
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
2023-08-23 04:30:26 +00:00
|
|
|
pub fn target<'r, 's>(
|
|
|
|
context: Context<'r, 's>,
|
|
|
|
input: OrgSource<'s>,
|
|
|
|
) -> Res<OrgSource<'s>, Target<'s>> {
|
2023-07-22 05:36:00 +00:00
|
|
|
let (remaining, _) = tag("<<")(input)?;
|
|
|
|
let (remaining, _) = peek(verify(anychar, |c| {
|
|
|
|
!c.is_whitespace() && !"<>\n".contains(*c)
|
|
|
|
}))(remaining)?;
|
|
|
|
|
|
|
|
let parser_context =
|
|
|
|
context.with_additional_node(ContextElement::ExitMatcherNode(ExitMatcherNode {
|
|
|
|
class: ExitClass::Beta,
|
|
|
|
exit_matcher: &target_end,
|
|
|
|
}));
|
2023-07-22 05:43:17 +00:00
|
|
|
let (remaining, _body) = recognize(many_till(
|
2023-07-22 05:36:00 +00:00
|
|
|
anychar,
|
|
|
|
parser_with_context!(exit_matcher_parser)(&parser_context),
|
|
|
|
))(remaining)?;
|
|
|
|
|
2023-08-24 20:55:56 +00:00
|
|
|
let preceding_character = remaining
|
|
|
|
.get_preceding_character()
|
2023-07-22 05:36:00 +00:00
|
|
|
.expect("We cannot be at the start of the file because we are inside a target.");
|
|
|
|
if preceding_character.is_whitespace() {
|
|
|
|
return Err(nom::Err::Error(CustomError::MyError(MyError(
|
2023-08-23 04:30:26 +00:00
|
|
|
"Targets cannot end with whitespace.".into(),
|
2023-07-22 05:36:00 +00:00
|
|
|
))));
|
|
|
|
}
|
|
|
|
let (remaining, _) = tag(">>")(remaining)?;
|
|
|
|
let (remaining, _) = space0(remaining)?;
|
|
|
|
let source = get_consumed(input, remaining);
|
|
|
|
|
2023-08-23 04:30:26 +00:00
|
|
|
Ok((
|
|
|
|
remaining,
|
|
|
|
Target {
|
|
|
|
source: source.into(),
|
|
|
|
},
|
|
|
|
))
|
2023-07-22 05:36:00 +00:00
|
|
|
}
|
|
|
|
|
2023-08-11 00:04:59 +00:00
|
|
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
2023-08-23 04:30:26 +00:00
|
|
|
fn target_end<'r, 's>(
|
|
|
|
context: Context<'r, 's>,
|
|
|
|
input: OrgSource<'s>,
|
|
|
|
) -> Res<OrgSource<'s>, OrgSource<'s>> {
|
2023-07-22 05:36:00 +00:00
|
|
|
recognize(one_of("<>\n"))(input)
|
|
|
|
}
|