10 releases (4 breaking)
0.5.2 | Feb 17, 2022 |
---|---|
0.5.1 | Feb 17, 2022 |
0.4.2 | Jan 31, 2022 |
0.3.0 | Jan 27, 2022 |
0.1.2 |
|
#132 in Parser tooling
38 downloads per month
16KB
338 lines
Nyst is a parser combinator library for Rust.
Nyst is a parser combinator library focused on simplicity while being robust. Other parser libraries like nom are complicated with convoluted syntax, while Nyst keeps operations simple.
Example
Below is code to parse hex color codes, similar to the provided example in nom.
// examples/hex.rs
use nyst::parser::{AndParser, LiteralParser, RangeParser};
use nyst::prelude::*;
fn main() {
let data = b"#bf2b49".to_vec();
let color = HexCodeParser {}.parse(data.as_slice()).unwrap().0;
println!("input: {:?}\noutput: {:?}", data, color);
assert_eq!(color.red, 191);
assert_eq!(color.green, 43);
assert_eq!(color.blue, 73);
}
#[derive(Debug)]
struct Color {
pub red: u8,
pub green: u8,
pub blue: u8,
}
#[derive(Clone)]
struct HexCodeParser {}
impl Parser for HexCodeParser {
type Input = u8;
type Output = Color;
fn parse(&self, data: &[Self::Input]) -> ParseResult<Self::Output> {
let result = AndParser::new(
&LiteralParser::new(b'#'),
&RangeParser::repetitions(&HexToByteParser {}, 3),
)
.parse(data)?;
let (result, units_read) = result;
Ok((
Color {
red: result.1[0],
green: result.1[1],
blue: result.1[2],
},
units_read,
))
}
}
#[derive(Clone)]
struct HexToByteParser {}
impl Parser for HexToByteParser {
type Input = u8;
type Output = u8;
fn parse(&self, data: &[Self::Input]) -> ParseResult<Self::Output> {
if data.len() < 2 {
return Err(ParseError::NotEnoughData);
}
let data_str = std::str::from_utf8(&data[0..2]);
if data_str.is_err() {
return Err(ParseError::InvalidData);
}
let value = u8::from_str_radix(data_str.unwrap(), 16);
if value.is_err() {
return Err(ParseError::InvalidData);
}
Ok((value.unwrap(), 2))
}
}