minify-html/src/pattern.rs

61 lines
1.5 KiB
Rust

use phf::Map;
use crate::proc::Processor;
pub struct SinglePattern {
seq: &'static [u8],
table: &'static [usize],
}
impl SinglePattern {
pub fn match_against(&self, haystack: &[u8]) -> Option<usize> {
let mut hay_idx = 0usize;
let mut pat_idx = 0usize;
while hay_idx < haystack.len() {
if self.seq[pat_idx] == haystack[hay_idx] {
pat_idx += 1;
hay_idx += 1;
};
if pat_idx == self.seq.len() {
return Some(hay_idx - pat_idx);
};
if hay_idx < haystack.len() && self.seq[pat_idx] != haystack[hay_idx] {
if pat_idx != 0 {
pat_idx = self.table[pat_idx - 1];
} else {
hay_idx += 1;
};
};
};
None
}
}
include!(concat!(env!("OUT_DIR"), "/gen_patterns.rs"));
pub struct TrieNode<V: 'static + Copy> {
pub children: Map<u8, &'static TrieNode<V>>,
pub value: Option<V>,
}
impl<V: 'static + Copy> TrieNode<V> {
pub fn get(&self, proc: &mut Processor) -> Option<V> {
let mut current = self;
let mut found: Option<V> = None;
while let Some(c) = proc.peek_eof() {
match current.children.get(&c) {
Some(n) => current = n,
None => break,
};
proc.skip_expect();
if current.value.is_some() {
found = current.value;
};
};
found
}
}