organic/src/parser/export_snippet.rs

77 lines
2.6 KiB
Rust
Raw Normal View History

2023-07-19 04:37:51 +00:00
use nom::bytes::complete::tag;
use nom::character::complete::anychar;
use nom::combinator::opt;
use nom::combinator::recognize;
use nom::combinator::verify;
use nom::multi::many1;
use nom::multi::many_till;
use nom::sequence::tuple;
use super::org_source::OrgSource;
use super::util::maybe_consume_object_trailing_whitespace_if_not_exiting;
2023-07-19 04:09:16 +00:00
use crate::error::Res;
2023-07-19 04:37:51 +00:00
use crate::parser::util::exit_matcher_parser;
use crate::parser::util::get_consumed;
2023-07-19 04:09:16 +00:00
use crate::parser::ExportSnippet;
2023-08-11 00:04:59 +00:00
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
2023-07-19 04:09:16 +00:00
pub fn export_snippet<'r, 's>(
2023-09-02 23:16:44 +00:00
context: RefContext<'r, 's>,
input: OrgSource<'s>,
) -> Res<OrgSource<'s>, ExportSnippet<'s>> {
2023-07-19 04:37:51 +00:00
let (remaining, _) = tag("@@")(input)?;
let (remaining, backend_name) = backend(context, remaining)?;
let parser_context =
context.with_additional_node(ContextElement::ExitMatcherNode(ExitMatcherNode {
class: ExitClass::Gamma,
exit_matcher: &export_snippet_end,
}));
let (remaining, backend_contents) = opt(tuple((
tag(":"),
parser_with_context!(contents)(&parser_context),
)))(remaining)?;
2023-07-19 04:37:51 +00:00
let (remaining, _) = tag("@@")(remaining)?;
let (remaining, _trailing_whitespace) =
maybe_consume_object_trailing_whitespace_if_not_exiting(context, remaining)?;
2023-07-19 04:37:51 +00:00
let source = get_consumed(input, remaining);
Ok((
remaining,
ExportSnippet {
source: source.into(),
backend: backend_name.into(),
contents: backend_contents.map(|(_colon, backend_contents)| backend_contents.into()),
2023-07-19 04:37:51 +00:00
},
))
}
2023-08-11 00:04:59 +00:00
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
fn backend<'r, 's>(
2023-09-02 23:16:44 +00:00
_context: RefContext<'r, 's>,
input: OrgSource<'s>,
) -> Res<OrgSource<'s>, OrgSource<'s>> {
2023-07-19 04:37:51 +00:00
let (remaining, backend_name) =
recognize(many1(verify(anychar, |c| c.is_alphanumeric() || *c == '-')))(input)?;
Ok((remaining, backend_name))
}
2023-08-11 00:04:59 +00:00
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
fn contents<'r, 's>(
2023-09-02 23:16:44 +00:00
context: RefContext<'r, 's>,
input: OrgSource<'s>,
) -> Res<OrgSource<'s>, OrgSource<'s>> {
2023-07-19 04:37:51 +00:00
let (remaining, source) = recognize(verify(
many_till(anychar, parser_with_context!(exit_matcher_parser)(context)),
2023-07-19 04:37:51 +00:00
|(children, _exit_contents)| !children.is_empty(),
))(input)?;
Ok((remaining, source))
2023-07-19 04:09:16 +00:00
}
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
fn export_snippet_end<'r, 's>(
2023-09-02 23:16:44 +00:00
_context: RefContext<'r, 's>,
input: OrgSource<'s>,
) -> Res<OrgSource<'s>, OrgSource<'s>> {
tag("@@")(input)
}