6 releases (breaking)

0.5.1 Mar 28, 2024
0.5.0 Mar 23, 2023
0.4.0 Aug 31, 2021
0.3.0 Nov 26, 2020
0.1.1 Aug 15, 2019

#5 in #packrat

Download history 373/week @ 2024-01-03 334/week @ 2024-01-10 440/week @ 2024-01-17 394/week @ 2024-01-24 440/week @ 2024-01-31 551/week @ 2024-02-07 534/week @ 2024-02-14 483/week @ 2024-02-21 417/week @ 2024-02-28 423/week @ 2024-03-06 463/week @ 2024-03-13 532/week @ 2024-03-20 544/week @ 2024-03-27 449/week @ 2024-04-03 492/week @ 2024-04-10 309/week @ 2024-04-17

1,884 downloads per month
Used in 11 crates (via nom-recursive)

MIT/Apache

5KB
72 lines

nom-packrat

Extension of nom to apply "Packrat Parsing".

Actions Status Crates.io Docs.rs

Requirement

nom must be 5.0.0 or later. nom-packrat can be applied to function-style parser only.

Usage

[dependencies]
nom-packrat = "0.7.0"

Example

use nom::character::complete::char;
use nom::IResult;
use nom_packrat::{init, packrat_parser, storage};

// Declare storage used by packrat_parser
storage!(String);

// Apply packrat_parser by custom attribute
#[packrat_parser]
pub fn parser(s: &str) -> IResult<&str, String> {
    let (s, x) = char('a')(s)?;
    Ok((s, x.to_string()))
}

fn main() {
    let input = "a";

    // Initialize before parsing
    init!();
    let result = parser(input);

    println!("{:?}", result);
}

Performance

Syntax

<S> ::= <T> + <S> | <T> - <S> | <T>
<T> ::= ( <S> ) | a

Input

The following 8 patterns. The first pattern is named as "pair 0" and the last is "pair 7".

a
(a)
((a))
(((a)))
((((a))))
(((((a)))))
((((((a))))))
(((((((a)))))))

Result

  • original : the original nom parser
  • packrat : all parsers with #[packrat_parser]
  • packrat_opt: only <T> with #[packrat_parser]

This is an edge case. The execution time of the original parser increases exponentially. By packrat pasring, the time becomes linear. Instead packrat parsers consume more memory than the original parser.

speed

memory

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~34K SLoC