Crates.io | matchgen |
lib.rs | matchgen |
version | |
source | src |
created_at | 2023-02-27 21:54:13.36964+00 |
updated_at | 2025-03-06 08:09:26.230554+00 |
description | Generate functions to quickly map byte string prefixes to values |
homepage | https://github.com/danielparks/matchgen |
repository | https://github.com/danielparks/matchgen |
max_upload_size | |
id | 796387 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
TreeMatcher
can be used from a build script to generate a matcher
function that maps byte sequences to arbitrary values. It returns the mapped
value (or None
) and the remainder of the input.
For example, suppose you generate a matcher for all HTML entities
called entity_matcher()
:
assert!(entity_matcher(b"×XYZ") == (Some("×"), b"XYZ".as_slice()));
(None, &input)
.Since the matchers only check the start of the input, you will want to use
iter().position()
or the memchr crate to find the start of a
potential match.
It can also be configured to accept an iterator over bytes as input instead of a slice.
To create a matcher to handle the four basic HTML entities, use a build script like the following:
use matchgen::TreeMatcher;
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
TreeMatcher::new("pub fn entity_decode", "u8")
.doc("Decode basic HTML entities.")
.add(b"&", "b'&'")
.add(b"<", "b'<'")
.add(b">", "b'>'")
.add(b""", "b'\"'")
.write_to_out_dir("matcher.rs")?;
Ok(())
}
To use the matcher:
include!(concat!(env!("OUT_DIR"), "/matcher.rs"));
fn main() {
assert_eq!(
entity_decode(b"& on & on"),
(Some(b'&'), b" on & on".as_slice()),
);
}
This is potentially stable. I’m letting it bake a while to see if I come up with new features or better ways to accomplish the same thing before I release version 1.0.
I am open to suggestions.
This project dual-licensed under the Apache 2 and MIT licenses. You may choose to use either.
Unless you explicitly state otherwise, any contribution you submit as defined in the Apache 2.0 license shall be dual licensed as above, without any additional terms or conditions.