2018-08-19 15:04:15 -04:00
|
|
|
package strmatcher_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
"testing"
|
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
. "github.com/v2fly/v2ray-core/v5/common/strmatcher"
|
2018-08-19 15:04:15 -04:00
|
|
|
)
|
|
|
|
|
2021-10-31 06:01:13 -04:00
|
|
|
// Benchmark Domain Matcher Groups
|
|
|
|
|
|
|
|
func BenchmarkSimpleMatcherGroupForDomain(b *testing.B) {
|
|
|
|
g := new(SimpleMatcherGroup)
|
|
|
|
|
2021-01-20 02:53:07 -05:00
|
|
|
for i := 1; i <= 1024; i++ {
|
2021-10-31 06:01:13 -04:00
|
|
|
AddMatcherToGroup(g, DomainMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
2021-01-20 02:53:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-10-31 06:01:13 -04:00
|
|
|
_ = g.Match("0.v2fly.org")
|
2021-01-20 02:53:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-19 15:04:15 -04:00
|
|
|
func BenchmarkDomainMatcherGroup(b *testing.B) {
|
|
|
|
g := new(DomainMatcherGroup)
|
|
|
|
|
|
|
|
for i := 1; i <= 1024; i++ {
|
2021-10-31 06:01:13 -04:00
|
|
|
AddMatcherToGroup(g, DomainMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_ = g.Match("0.v2fly.org")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkACAutomatonMatcherGroupForDomain(b *testing.B) {
|
|
|
|
ac := NewACAutomatonMatcherGroup()
|
|
|
|
for i := 1; i <= 1024; i++ {
|
|
|
|
AddMatcherToGroup(ac, DomainMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
|
|
|
}
|
|
|
|
ac.Build()
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_ = ac.MatchAny("0.v2fly.org")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMphMatcherGroupForDomain(b *testing.B) {
|
|
|
|
mph := NewMphMatcherGroup()
|
|
|
|
for i := 1; i <= 1024; i++ {
|
|
|
|
AddMatcherToGroup(mph, DomainMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
|
|
|
}
|
|
|
|
mph.Build()
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_ = mph.MatchAny("0.v2fly.org")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Benchmark Full Matcher Groups
|
|
|
|
|
|
|
|
func BenchmarkSimpleMatcherGroupForFull(b *testing.B) {
|
|
|
|
g := new(SimpleMatcherGroup)
|
|
|
|
|
|
|
|
for i := 1; i <= 1024; i++ {
|
|
|
|
AddMatcherToGroup(g, FullMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
2018-08-19 15:04:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-02-16 15:31:50 -05:00
|
|
|
_ = g.Match("0.v2fly.org")
|
2018-08-19 15:04:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 03:57:06 -04:00
|
|
|
func BenchmarkFullMatcherGroup(b *testing.B) {
|
|
|
|
g := new(FullMatcherGroup)
|
|
|
|
|
|
|
|
for i := 1; i <= 1024; i++ {
|
2021-10-31 06:01:13 -04:00
|
|
|
AddMatcherToGroup(g, FullMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_ = g.Match("0.v2fly.org")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkACAutomatonMatcherGroupForFull(b *testing.B) {
|
|
|
|
ac := NewACAutomatonMatcherGroup()
|
|
|
|
for i := 1; i <= 1024; i++ {
|
|
|
|
AddMatcherToGroup(ac, FullMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
|
|
|
}
|
|
|
|
ac.Build()
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_ = ac.MatchAny("0.v2fly.org")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMphMatcherGroupFull(b *testing.B) {
|
|
|
|
mph := NewMphMatcherGroup()
|
|
|
|
for i := 1; i <= 1024; i++ {
|
|
|
|
AddMatcherToGroup(mph, FullMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
|
|
|
}
|
|
|
|
mph.Build()
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_ = mph.MatchAny("0.v2fly.org")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Benchmark Substr Matcher Groups
|
|
|
|
|
|
|
|
func BenchmarkSimpleMatcherGroupForSubstr(b *testing.B) {
|
|
|
|
g := new(SimpleMatcherGroup)
|
|
|
|
|
|
|
|
for i := 1; i <= 1024; i++ {
|
|
|
|
AddMatcherToGroup(g, SubstrMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
2018-08-20 03:57:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-02-16 15:31:50 -05:00
|
|
|
_ = g.Match("0.v2fly.org")
|
2018-08-20 03:57:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-31 06:01:13 -04:00
|
|
|
func BenchmarkACAutomatonMatcherGroupForSubstr(b *testing.B) {
|
|
|
|
ac := NewACAutomatonMatcherGroup()
|
|
|
|
for i := 1; i <= 1024; i++ {
|
|
|
|
AddMatcherToGroup(ac, SubstrMatcher(strconv.Itoa(i)+".v2fly.org"), uint32(i))
|
|
|
|
}
|
|
|
|
ac.Build()
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_ = ac.MatchAny("0.v2fly.org")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Benchmark Index Matchers
|
|
|
|
|
|
|
|
func BenchmarkLinearIndexMatcher(b *testing.B) {
|
|
|
|
g := new(LinearIndexMatcher)
|
2018-08-19 15:04:15 -04:00
|
|
|
for i := 1; i <= 1024; i++ {
|
2021-02-16 15:31:50 -05:00
|
|
|
m, err := Domain.New(strconv.Itoa(i) + ".v2fly.org")
|
2018-08-19 15:04:15 -04:00
|
|
|
common.Must(err)
|
|
|
|
g.Add(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-02-16 15:31:50 -05:00
|
|
|
_ = g.Match("0.v2fly.org")
|
2018-08-19 15:04:15 -04:00
|
|
|
}
|
|
|
|
}
|