5 个不稳定版本

0.3.1 2024年5月19日
0.3.0 2023年12月4日
0.2.1 2023年11月21日
0.2.0 2023年11月21日
0.1.0 2023年11月19日

#906 in 解析器实现

43 每月下载量

MIT 许可证

79KB
2.5K SLoC

hefty

流式数据解析器。

// Build parsers for a URI hostname (https://www.rfc-editor.org/rfc/rfc3986.html#appendix-A)
let unreserved = char::when(|c| c.is_ascii_alphanumeric() || "-._~".contains(c));
let pct_encoded = (
    '%',
    char::when(|c| c.is_ascii_hexdigit()).times(2).collect(),
)
    .seq()
    .collect();
let sub_delims = ('!', '$', '&', '\'', '(', ')', '*', '+', ',', ';', '=').any();

let reg_name = (&unreserved, &pct_encoded, &sub_delims)
    .any()
    .repeated(1..255)
    .collect();

// Parse a hostname arriving as a stream of data.
let ParseResult::Partial(state) = reg_name.extract(ByteStream::from("www.exa"), None, false)
else {
    panic!();
};
let ParseResult::Partial(state) =
    reg_name.extract(ByteStream::from("mple.co"), Some(state), false)
else {
    panic!();
};
let ParseResult::Match(output, input) =
    reg_name.extract(ByteStream::from("m/path"), Some(state), true)
else {
    panic!();
};
assert_eq!(output.to_string(), "www.example.com");
assert_eq!(input.to_string(), "/path");

依赖项

~0.5–1MB
~21K SLoC