3 releases

0.1.2 Jan 19, 2022
0.1.1 Nov 2, 2020
0.1.0 Oct 29, 2020

#2529 in Parser implementations

Download history 6/week @ 2024-02-18 22/week @ 2024-02-25 13/week @ 2024-03-03 15/week @ 2024-03-10 58/week @ 2024-03-17 17/week @ 2024-03-24 49/week @ 2024-03-31

142 downloads per month
Used in 3 crates (via msf-sdp)

MIT license

15KB
218 lines

String reader

Crates.io MIT licensed Build Status

Zero-allocation string reader. The string reader can be used to parse all kinds of values from strings. It can be used for construction of traditional lexical analyzers for example. It is useful in situation when you need to parse simple formatted strings but regular expressions are too heavy-weight.

Example

Parsing HTTP response header:

use std::num::ParseIntError;

use str_reader::{ParseError, StringReader};

/// Parse the first line of an HTTP response header.
fn parse_http_response_line(line: &str) -> Result<(u16, &str), HttpParseError> {
    let mut reader = StringReader::new(line);

    reader.match_str("HTTP/")?;

    match reader.read_word() {
        "1.0" => (),
        "1.1" => (),
        _ => return Err(HttpParseError),
    }

    let status_code = reader.read_u16()?;

    Ok((status_code, reader.as_str().trim()))
}

#[derive(Debug)]
struct HttpParseError;

impl From<ParseError> for HttpParseError {
    fn from(_: ParseError) -> Self {
        Self
    }
}

impl From<ParseIntError> for HttpParseError {
    fn from(_: ParseIntError) -> Self {
        Self
    }
}

let (status_code, status_msg) = parse_http_response_line("HTTP/1.1 404 Not Found").unwrap();

assert_eq!(status_code, 404);
assert_eq!(status_msg, "Not Found");

No runtime deps