From bcdba3431c72cd0804d9a95972a907b828fb5fad Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Tue, 12 Jan 2021 22:15:26 -0300 Subject: Prepare VM design --- src/pattern.rs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/pattern.rs (limited to 'src/pattern.rs') diff --git a/src/pattern.rs b/src/pattern.rs new file mode 100644 index 0000000..8c57f00 --- /dev/null +++ b/src/pattern.rs @@ -0,0 +1,22 @@ +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 { + constants: PatternConstants, +} + +impl Pattern { + pub fn compile(s: &str) -> Result { + Ok(Self { + constants: parse(s)? + }) + } + + pub fn attempt_match<'a, 'b>(&'a self, value: &'b T::Value) -> Matcher<'a, 'b, T> { + Matcher::new(value, &self.constants, self.constants.protos.len() - 1, MAX_CALLS).ok().expect("datafu internal error: MAX_CALLS must not be 0") + } +} -- cgit 1.4.1