mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
f494df2567
[common/strmatcher] Implement Match and MatchAny for all MatcherGroup and IndexMatcher
96 lines
2.2 KiB
Go
96 lines
2.2 KiB
Go
package strmatcher
|
|
|
|
// A MphIndexMatcher is divided into three parts:
|
|
// 1. `full` and `domain` patterns are matched by Rabin-Karp algorithm and minimal perfect hash table;
|
|
// 2. `substr` patterns are matched by ac automaton;
|
|
// 3. `regex` patterns are matched with the regex library.
|
|
type MphIndexMatcher struct {
|
|
count uint32
|
|
mph *MphMatcherGroup
|
|
ac *ACAutomatonMatcherGroup
|
|
regex *SimpleMatcherGroup
|
|
}
|
|
|
|
func NewMphIndexMatcher() *MphIndexMatcher {
|
|
return new(MphIndexMatcher)
|
|
}
|
|
|
|
// Add implements IndexMatcher.Add.
|
|
func (g *MphIndexMatcher) Add(matcher Matcher) uint32 {
|
|
g.count++
|
|
index := g.count
|
|
|
|
switch matcher := matcher.(type) {
|
|
case FullMatcher:
|
|
if g.mph == nil {
|
|
g.mph = NewMphMatcherGroup()
|
|
}
|
|
g.mph.AddFullMatcher(matcher, index)
|
|
case DomainMatcher:
|
|
if g.mph == nil {
|
|
g.mph = NewMphMatcherGroup()
|
|
}
|
|
g.mph.AddDomainMatcher(matcher, index)
|
|
case SubstrMatcher:
|
|
if g.ac == nil {
|
|
g.ac = NewACAutomatonMatcherGroup()
|
|
}
|
|
g.ac.AddSubstrMatcher(matcher, index)
|
|
case *RegexMatcher:
|
|
if g.regex == nil {
|
|
g.regex = &SimpleMatcherGroup{}
|
|
}
|
|
g.regex.AddMatcher(matcher, index)
|
|
}
|
|
|
|
return index
|
|
}
|
|
|
|
// Build implements IndexMatcher.Build.
|
|
func (g *MphIndexMatcher) Build() error {
|
|
if g.mph != nil {
|
|
g.mph.Build()
|
|
}
|
|
if g.ac != nil {
|
|
g.ac.Build()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Match implements IndexMatcher.Match.
|
|
func (g *MphIndexMatcher) Match(input string) []uint32 {
|
|
result := make([][]uint32, 0, 5)
|
|
if g.mph != nil {
|
|
if matches := g.mph.Match(input); len(matches) > 0 {
|
|
result = append(result, matches)
|
|
}
|
|
}
|
|
if g.ac != nil {
|
|
if matches := g.ac.Match(input); len(matches) > 0 {
|
|
result = append(result, matches)
|
|
}
|
|
}
|
|
if g.regex != nil {
|
|
if matches := g.regex.Match(input); len(matches) > 0 {
|
|
result = append(result, matches)
|
|
}
|
|
}
|
|
return CompositeMatches(result)
|
|
}
|
|
|
|
// MatchAny implements IndexMatcher.MatchAny.
|
|
func (g *MphIndexMatcher) MatchAny(input string) bool {
|
|
if g.mph != nil && g.mph.MatchAny(input) {
|
|
return true
|
|
}
|
|
if g.ac != nil && g.ac.MatchAny(input) {
|
|
return true
|
|
}
|
|
return g.regex != nil && g.regex.MatchAny(input)
|
|
}
|
|
|
|
// Size implements IndexMatcher.Size.
|
|
func (g *MphIndexMatcher) Size() uint32 {
|
|
return g.count
|
|
}
|