intuicio_parser/
not.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use crate::{
    ParseResult, Parser, ParserExt, ParserHandle, ParserNoValue, ParserOutput, ParserRegistry,
};

pub mod shorthand {
    use super::*;

    pub fn not(parser: ParserHandle) -> ParserHandle {
        NotParser::new(parser).into_handle()
    }
}

#[derive(Clone)]
pub struct NotParser(ParserHandle);

impl NotParser {
    pub fn new(parser: ParserHandle) -> Self {
        Self(parser)
    }
}

impl Parser for NotParser {
    fn parse<'a>(&self, registry: &ParserRegistry, input: &'a str) -> ParseResult<'a> {
        match self.0.parse(registry, input) {
            Ok(_) => Err("Expected to not match input".into()),
            Err(_) => Ok((input, ParserOutput::new(ParserNoValue).ok().unwrap())),
        }
    }

    fn extend(&self, parser: ParserHandle) {
        self.0.extend(parser);
    }
}

#[cfg(test)]
mod tests {
    use crate::{
        not::NotParser,
        shorthand::{lit, not, seq},
        ParserRegistry,
    };

    fn is_async<T: Send + Sync>() {}

    #[test]
    fn test_not() {
        is_async::<NotParser>();

        let registry = ParserRegistry::default();
        let sentence = seq([lit("foo"), not(lit("bar"))]);
        let (rest, _) = sentence.parse(&registry, "foozee").unwrap();
        assert_eq!(rest, "zee");
    }
}