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
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
//! Basic Parsers over string data

mod tag;
pub use tag::*;
mod one_of;
pub use one_of::*;
mod many;
pub use many::*;

use crate::{eyre, Buffer, Parse};

#[derive(Debug, Copy, Clone, PartialEq)]
/// Parses newline `"\n"` or carriage return `"\r\n"`
pub struct LineEnding;

impl Parse<char> for LineEnding {
    fn parse(input: &mut impl Buffer<char>) -> eyre::Result<Self> {
        match Self::peek(input) {
            true => Ok(Self),
            false => Err(eyre::eyre!("could not parse line ending")),
        }
    }

    fn peek(input: &mut impl Buffer<char>) -> bool {
        match input.next() {
            Some('\n') => true,
            Some('\r') => input.next() == Some('\n'),
            _ => false,
        }
    }
}

#[derive(Debug, Copy, Clone, PartialEq)]
/// Type that parses any space characters (tabs, spaces)
pub struct Space;

impl Parse<char> for Space {
    fn parse(input: &mut impl Buffer<char>) -> eyre::Result<Self> {
        match Self::peek(input) {
            true => Ok(Self),
            false => Err(eyre::eyre!("could not parse space")),
        }
    }

    fn peek(input: &mut impl Buffer<char>) -> bool {
        matches!(input.next(), Some(' ') | Some('\t'))
    }
}

#[derive(Debug, Copy, Clone, PartialEq)]
/// Type that parses any whitespace characters (tabs, spaces, newlines and carriage returns)
pub struct WhiteSpace;

impl Parse<char> for WhiteSpace {
    fn parse(input: &mut impl Buffer<char>) -> eyre::Result<Self> {
        match Self::peek(input) {
            true => Ok(Self),
            false => Err(eyre::eyre!("could not parse whitespace")),
        }
    }

    fn peek(input: &mut impl Buffer<char>) -> bool {
        match input.next() {
            Some(' ') | Some('\t') | Some('\n') => true,
            Some('\r') => input.next() == Some('\n'),
            _ => false,
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::IntoBuf;

    #[test]
    fn parse_spaces() {
        let mut input = " \t \t   \t\t  \t.".chars().into_buf();
        let output = Vec::<Space>::parse(&mut input).unwrap();
        assert_eq!(output.len(), 12);
        assert_eq!(input.next(), Some('.'));
    }
    #[test]
    fn peek_spaces() {
        let mut input = " \t \t   \t\t  \t.".chars().into_buf();
        let mut cursor = input.cursor();
        assert!(Vec::<Space>::peek(&mut cursor));
        assert_eq!(cursor.next(), Some('.'));
    }

    #[test]
    fn parse_newline() {
        let mut input = "\n.\r\n.".chars().into_buf();

        let _ = LineEnding::parse(&mut input).unwrap();
        assert_eq!(input.next(), Some('.'));
        let _ = LineEnding::parse(&mut input).unwrap();
        assert_eq!(input.next(), Some('.'));
    }
}