use nom::{
bytes::complete::{tag_no_case, take_while},
character::complete::line_ending,
combinator::complete,
error::{ContextError, ParseError},
multi::many0,
sequence::{delimited, preceded},
Err, IResult, Parser,
};
#[cfg(test)]
use pretty_assertions::assert_eq;
use super::parsed_string::ParseString;
pub fn property_key<'a, E: ParseError<&'a str> + ContextError<&'a str>>(
input: &'a str,
) -> IResult<&'a str, &str, E> {
if input.get(0..=2) == Some("END") || input.get(0..=4) == Some("BEGIN") {
IResult::Err(Err::Error(nom::error::make_error(
input,
nom::error::ErrorKind::Satisfy,
)))
} else {
valid_key_sequence(input)
}
}
pub fn valid_key_sequence<'a, E: ParseError<&'a str> + ContextError<&'a str>>(
input: &'a str,
) -> IResult<&'a str, &str, E> {
take_while(|c: char| {
c == '.' || c == ',' || c == '/' || c == '_' || c == '-' || c.is_alphanumeric()
})
.parse(input)
}
pub fn valid_key_sequence_cow<'a, E: ParseError<&'a str> + ContextError<&'a str>>(
input: &'a str,
) -> IResult<&'a str, ParseString<'a>, E> {
take_while(|c: char| {
c == '.' || c == ',' || c == '/' || c == '_' || c == '-' || c.is_alphanumeric()
})
.map(ParseString::from)
.parse(input)
}
pub fn line<'a, O, E: ParseError<&'a str>, F: Parser<&'a str, O, E>>(
prefix: &'a str,
f: F,
) -> impl FnMut(&'a str) -> IResult<&'a str, O, E> {
line_separated(complete(preceded(tag_no_case(prefix), f)))
}
pub fn line_separated<'a, O, E: ParseError<&'a str>, F: Parser<&'a str, O, E>>(
f: F,
) -> impl FnMut(&'a str) -> IResult<&'a str, O, E> {
delimited(many0(line_ending), f, many0(line_ending))
}
pub fn unfold(input: &str) -> String {
input
.split("\r\n ")
.flat_map(|l| l.split("\n "))
.flat_map(|l| l.split("\r\n "))
.flat_map(|l| l.split("\n "))
.collect()
}
#[test]
fn test_unfold1() {
let input = "1 hello world\r\n2 hello \r\n world\r\n3 hello \r\n world\r\n4 hello world";
let expected = "1 hello world\r\n2 hello world\r\n3 hello world\r\n4 hello world";
assert_eq!(unfold(input), expected);
}
#[test]
fn test_unfold1_tabs() {
let input = "1 hello world\r\n2 hello \r\n world\r\n3 hello \r\n world\r\n4 hello world";
let expected = "1 hello world\r\n2 hello world\r\n3 hello world\r\n4 hello world";
assert_eq!(unfold(input), expected);
}
#[test]
fn test_unfold2() {
let input1 = "1 hello world\n2 hello \n world\n3 hello world\n4 hello world";
let input2 = "1 hello world\r\n2 hello \r\n world\r\n3 hello \r\n world\r\n4 hello world";
let expected = vec![
"1 hello world",
"2 hello world",
"3 hello world",
"4 hello world",
];
assert_eq!(unfold(input1).lines().collect::<Vec<_>>(), expected);
assert_eq!(unfold(input2).lines().collect::<Vec<_>>(), expected);
}