/* tre-filter.c: Histogram filter to quickly find regexp match candidates This software is released under a BSD-style license. See the file LICENSE for details and copyright. */ /* The idea of this filter is quite simple. First, let's assume the search pattern is a simple string. In order for a substring of a longer string to match the search pattern, it must have the same numbers of different characters as the pattern, and those characters must occur in the same order as they occur in pattern. */ #ifdef HAVE_CONFIG_H #include #endif /* HAVE_CONFIG_H */ #include #include "tre-internal.h" #include "tre-filter.h" int tre_filter_find(const unsigned char *str, size_t len, tre_filter_t *filter) { unsigned short counts[256]; unsigned int i; unsigned int window_len = filter->window_len; tre_filter_profile_t *profile = filter->profile; const unsigned char *str_orig = str; DPRINT(("tre_filter_find: %.*s\n", len, str)); for (i = 0; i < elementsof(counts); i++) counts[i] = 0; i = 0; while (*str && i < window_len && i < len) { counts[*str]++; i++; str++; len--; } while (len > 0) { tre_filter_profile_t *p; counts[*str]++; counts[*(str - window_len)]--; p = profile; while (p->ch) { if (counts[p->ch] < p->count) break; p++; } if (!p->ch) { DPRINT(("Found possible match at %d\n", str - str_orig)); return str - str_orig; } else { DPRINT(("No match so far...\n")); } len--; str++; } DPRINT(("This string cannot match.\n")); return -1; }