pub struct NFA { /* private fields */ }
Expand description

A noncontiguous NFA implementation of Aho-Corasick.

When possible, prefer using AhoCorasick instead of this type directly. Using an NFA directly is typically only necessary when one needs access to the Automaton trait implementation.

This NFA represents the “core” implementation of Aho-Corasick in this crate. Namely, constructing this NFA involving building a trie and then filling in the failure transitions between states, similar to what is described in any standard textbook description of Aho-Corasick.

In order to minimize heap usage and to avoid additional construction costs, this implementation represents the transitions of all states as distinct sparse memory allocations. This is where it gets its name from. That is, this NFA has no contiguous memory allocation for its transition table. Each state gets its own allocation.

While the sparse representation keeps memory usage to somewhat reasonable levels, it is still quite large and also results in somewhat mediocre search performance. For this reason, it is almost always a good idea to use a contiguous::NFA instead. It is marginally slower to build, but has higher throughput and can sometimes use an order of magnitude less memory. The main reason to use a noncontiguous NFA is when you need the fastest possible construction time, or when a contiguous NFA does not have the desired capacity. (The total number of NFA states it can have is fewer than a noncontiguous NFA.)

Example

This example shows how to build an NFA directly and use it to execute Automaton::try_find:

use aho_corasick::{
    automaton::Automaton,
    nfa::noncontiguous::NFA,
    Input, Match,
};

let patterns = &["b", "abc", "abcd"];
let haystack = "abcd";

let nfa = NFA::new(patterns).unwrap();
assert_eq!(
    Some(Match::must(0, 1..2)),
    nfa.try_find(&Input::new(haystack))?,
);

It is also possible to implement your own version of try_find. See the Automaton documentation for an example.

Implementations

Create a new Aho-Corasick noncontiguous NFA using the default configuration.

Use a Builder if you want to change the configuration.

A convenience method for returning a new Aho-Corasick noncontiguous NFA builder.

This usually permits one to just import the NFA type.

Trait Implementations

Returns the starting state for the given anchor mode. Read more
Performs a state transition from sid for byte and returns the next state. Read more
Returns true if the given ID represents a “special” state. A special state is a dead, match or start state. Read more
Returns true if the given ID represents a dead state. Read more
Returns true if the given ID represents a match state. Read more
Returns true if the given ID represents a start state. Read more
Returns the match semantics that this automaton was built with.
Returns the total number of patterns compiled into this automaton.
Returns the length of the pattern for the given ID. Read more
Returns the length, in bytes, of the shortest pattern in this automaton. Read more
Returns the length, in bytes, of the longest pattern in this automaton.
Returns the total number of matches for the given state ID. Read more
Returns the pattern ID for the match state given by sid at the index given. Read more
Returns the heap memory usage, in bytes, used by this automaton.
Returns a prefilter, if available, that can be used to accelerate searches for this automaton. Read more
Executes a non-overlapping search with this automaton using the given configuration. Read more
Executes a overlapping search with this automaton using the given configuration. Read more
Returns an iterator of non-overlapping matches with this automaton using the given configuration. Read more
Returns an iterator of overlapping matches with this automaton using the given configuration. Read more
Replaces all non-overlapping matches in haystack with strings from replace_with depending on the pattern that matched. The replace_with slice must have length equal to Automaton::patterns_len. Read more
Replaces all non-overlapping matches in haystack with strings from replace_with depending on the pattern that matched. The replace_with slice must have length equal to Automaton::patterns_len. Read more
Replaces all non-overlapping matches in haystack by calling the replace_with closure given. Read more
Replaces all non-overlapping matches in haystack by calling the replace_with closure given. Read more
Returns an iterator of non-overlapping matches with this automaton from the stream given. Read more
Replaces all non-overlapping matches in rdr with strings from replace_with depending on the pattern that matched, and writes the result to wtr. The replace_with slice must have length equal to Automaton::patterns_len. Read more
Replaces all non-overlapping matches in rdr by calling the replace_with closure given and writing the result to wtr. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.