2023-07-14 03:02:12 +00:00
|
|
|
use nom::bytes::complete::tag;
|
|
|
|
use nom::character::complete::anychar;
|
|
|
|
use nom::combinator::peek;
|
|
|
|
use nom::combinator::recognize;
|
|
|
|
use nom::multi::many_till;
|
|
|
|
|
2023-08-23 04:30:26 +00:00
|
|
|
use super::org_source::OrgSource;
|
2023-08-31 19:44:44 +00:00
|
|
|
use super::util::maybe_consume_object_trailing_whitespace_if_not_exiting;
|
2023-09-03 16:07:51 +00:00
|
|
|
use crate::context::parser_with_context;
|
|
|
|
use crate::context::ContextElement;
|
|
|
|
use crate::context::ExitClass;
|
|
|
|
use crate::context::ExitMatcherNode;
|
|
|
|
use crate::context::RefContext;
|
2023-07-14 02:42:42 +00:00
|
|
|
use crate::error::Res;
|
2023-07-14 03:02:12 +00:00
|
|
|
use crate::parser::plain_link::protocol;
|
|
|
|
use crate::parser::util::exit_matcher_parser;
|
|
|
|
use crate::parser::util::get_consumed;
|
2023-09-03 16:07:51 +00:00
|
|
|
use crate::types::AngleLink;
|
2023-07-14 02:42:42 +00:00
|
|
|
|
2023-08-11 00:04:59 +00:00
|
|
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
2023-09-11 17:11:08 +00:00
|
|
|
fn angle_link<'b, 'g, 'r, 's>(
|
2023-09-03 19:44:18 +00:00
|
|
|
context: RefContext<'b, 'g, 'r, 's>,
|
2023-08-23 04:30:26 +00:00
|
|
|
input: OrgSource<'s>,
|
|
|
|
) -> Res<OrgSource<'s>, AngleLink<'s>> {
|
2023-07-14 03:02:12 +00:00
|
|
|
let (remaining, _) = tag("<")(input)?;
|
|
|
|
let (remaining, proto) = protocol(context, remaining)?;
|
|
|
|
let (remaining, _separator) = tag(":")(remaining)?;
|
|
|
|
let (remaining, path) = path_angle(context, remaining)?;
|
|
|
|
let (remaining, _) = tag(">")(remaining)?;
|
2023-08-31 19:44:44 +00:00
|
|
|
let (remaining, _trailing_whitespace) =
|
|
|
|
maybe_consume_object_trailing_whitespace_if_not_exiting(context, remaining)?;
|
2023-07-14 03:02:12 +00:00
|
|
|
let source = get_consumed(input, remaining);
|
|
|
|
Ok((
|
|
|
|
remaining,
|
|
|
|
AngleLink {
|
2023-08-23 04:30:26 +00:00
|
|
|
source: source.into(),
|
|
|
|
link_type: proto.into(),
|
|
|
|
path: path.into(),
|
2023-07-14 03:02:12 +00:00
|
|
|
},
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2023-08-11 00:04:59 +00:00
|
|
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
2023-09-03 19:44:18 +00:00
|
|
|
fn path_angle<'b, 'g, 'r, 's>(
|
|
|
|
context: RefContext<'b, 'g, 'r, 's>,
|
2023-08-23 04:30:26 +00:00
|
|
|
input: OrgSource<'s>,
|
|
|
|
) -> Res<OrgSource<'s>, OrgSource<'s>> {
|
2023-09-03 16:07:51 +00:00
|
|
|
let parser_context = ContextElement::ExitMatcherNode(ExitMatcherNode {
|
|
|
|
class: ExitClass::Gamma,
|
|
|
|
exit_matcher: &path_angle_end,
|
|
|
|
});
|
|
|
|
let parser_context = context.with_additional_node(&parser_context);
|
2023-07-14 03:02:12 +00:00
|
|
|
|
|
|
|
let exit_matcher = parser_with_context!(exit_matcher_parser)(&parser_context);
|
|
|
|
|
|
|
|
let (remaining, path) = recognize(many_till(anychar, peek(exit_matcher)))(input)?;
|
|
|
|
Ok((remaining, path))
|
|
|
|
}
|
|
|
|
|
2023-08-11 00:04:59 +00:00
|
|
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
2023-09-03 19:44:18 +00:00
|
|
|
fn path_angle_end<'b, 'g, 'r, 's>(
|
|
|
|
_context: RefContext<'b, 'g, 'r, 's>,
|
2023-08-23 04:30:26 +00:00
|
|
|
input: OrgSource<'s>,
|
|
|
|
) -> Res<OrgSource<'s>, OrgSource<'s>> {
|
2023-07-14 03:02:12 +00:00
|
|
|
tag(">")(input)
|
2023-07-14 02:42:42 +00:00
|
|
|
}
|