summary refs log tree commit diff stats
path: root/src/pattern.rs
blob: 0368a88506fb5d0f784c239128733557233a5332 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use crate::PatternTypes;
use crate::errors::PatternError;
use crate::parser::parse;
use crate::vm::Matcher;
use crate::vm::PatternConstants;
use crate::vm::MAX_CALLS;

pub struct Pattern<T: PatternTypes> {
    consts: PatternConstants<T>,
}

impl<T: PatternTypes> Pattern<T> {
    pub fn compile(s: &str) -> Result<Self, PatternError> {
        Ok(Self {
            consts: parse(s)?
        })
    }

    pub fn attempt_match<'a, 'b>(
        &'a self,
        value: &'b T::Value
    ) -> Matcher<'a, 'b, T> {
        Matcher::new(value, &self.consts, self.consts.protos.len() - 1, MAX_CALLS).ok().expect("datafu internal error: MAX_CALLS must not be 0")
    }
}