Scrolling Window Pattern Matcher
This crate provides a generic pattern matcher that operates over a scrolling window (queue) of items. Patterns can be defined as sequences of values, functions, or a mix of both. When a pattern matches, an optional user-defined callback is invoked. The matcher supports optional deduplication of matches and per-pattern overlap settings.
Features
- Match patterns using values, functions, or both
- Optional deduplication of matches
- Support for overlapping matches (per-pattern control)
- Callback invocation on match (per-pattern)
- No unnecessary trait bounds: PartialEq is only required for value-based patterns
Usage: Value/Mixed Patterns with Multiple Patterns
use ;
let window = vec!;
let patterns = vec!;
let matcher = new;
let matches = matcher.find_matches;
assert!; // [1,2] at 0
assert!; // [2,1] at 1
assert!; // [1] at 0
assert!; // [2] at 1
Usage: Patterns with Callbacks and Overlap Settings
use ;
use Rc;
use RefCell;
let window = vec!;
let results: = new;
let results1 = results.clone;
let results2 = results.clone;
let patterns = vec!;
let matcher = new;
matcher.find_matches_with_callbacks;
let results = results.borrow;
assert!;
assert!;
Overlap Settings
allow_overlap_with_others
: If false, this pattern will not match if it would overlap with any previous match.allow_others_to_overlap
: If false, once this pattern matches, no future matches can overlap its matched region.
Debug Logging
This crate uses the log crate for debug logging. To enable debug output during development, add the following to your main function or test harness:
;
init
Then run your program or tests with:
RUST_LOG=debug cargo test
To disable logging (e.g., in production), do not initialize a logger, or set a higher log level:
RUST_LOG=info cargo run
Debug logs provide detailed information about matcher execution, pattern matching, overlap checks, and callback invocations.
API
ScrollingWindowPatternMatcherRef::find_matches
: Value/mixed patterns with multiple patterns and multi-element support.ScrollingWindowPatternMatcherRef::find_matches_with_callbacks
: Value/mixed patterns with per-pattern callbacks and overlap settings.ScrollingWindowFunctionPatternMatcherRef::find_matches
: Function-only patterns with multiple patterns.ScrollingWindowFunctionPatternMatcherRef::find_matches_with_callbacks
: Function-only patterns with per-pattern callbacks and overlap settings.
See the test module for more comprehensive examples and edge cases.