forked from 0xERR0R/blocky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrie.go
192 lines (155 loc) · 3.8 KB
/
trie.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package trie
import (
"strings"
"github.com/0xERR0R/blocky/log"
)
// Trie stores a set of strings and can quickly check
// if it contains an element, or one of its parents.
//
// It implements a semi-radix/semi-compressed trie:
// a node that would be a single child is merged with
// its parent, if it is a terminal.
//
// The word "prefix" is avoided because in practice
// we use the `Trie` with `SplitTLD` so parents are
// suffixes even if in the datastructure they are
// prefixes.
type Trie struct {
split SplitFunc
root parent
}
func NewTrie(split SplitFunc) *Trie {
return &Trie{
split: split,
root: parent{},
}
}
func (t *Trie) IsEmpty() bool {
return t.root.children == nil
}
func (t *Trie) Insert(key string) {
t.root.insert(key, t.split)
}
func (t *Trie) HasParentOf(key string) bool {
return t.root.hasParentOf(key, t.split)
}
type node interface {
hasParentOf(key string, split SplitFunc) bool
}
// We save memory by not keeping track of children of
// nodes that are terminals (part of the set) as we only
// ever need to know if a domain, or any of its parents,
// is in the `Trie`.
// Example: if the `Trie` contains "example.com", inserting
// "www.example.com" has no effect as we already know it
// is contained in the set.
// Conversely, if it contains "www.example.com" and we insert
// "example.com", then "www.example.com" is removed as it is
// no longer useful.
//
// This means that all terminals are leafs and vice-versa.
// So we save slightly more memory by avoiding a `isTerminal bool`
// per parent.
type parent struct {
children map[string]node
}
func newParent() *parent {
return &parent{
children: make(map[string]node, 1),
}
}
func (n *parent) insert(key string, split SplitFunc) {
if len(key) == 0 {
return
}
for {
if n.children == nil {
n.children = make(map[string]node, 1)
}
label, rest := split(key)
child, ok := n.children[label]
if !ok || len(rest) == 0 {
n.children[label] = terminal(rest)
return
}
switch child := child.(type) {
case *parent:
// Continue down the trie
key = rest
n = child
continue
case terminal:
if child.hasParentOf(rest, split) {
// Found a parent/"prefix" in the set
return
}
p := newParent()
n.children[label] = p
p.insert(child.String(), split) // keep existing terminal
p.insert(rest, split) // add new value
return
}
}
}
func (n *parent) hasParentOf(key string, split SplitFunc) bool {
searchString := key
rule := ""
for {
label, rest := split(key)
rule = strings.Join([]string{label, rule}, ".")
child, ok := n.children[label]
if !ok {
return false
}
switch child := child.(type) {
case *parent:
if len(rest) == 0 {
// The trie only contains children/"suffixes" of the
// key we're searching for
return false
}
// Continue down the trie
key = rest
n = child
continue
case terminal:
// Continue down the trie
matched := child.hasParentOf(rest, split)
if matched {
rule = strings.Join([]string{child.String(), rule}, ".")
rule = strings.Trim(rule, ".")
log.PrefixedLog("trie").Debugf("wildcard block rule '%s' matched with '%s'", rule, searchString)
}
return matched
}
}
}
type terminal string
func (t terminal) String() string {
return string(t)
}
func (t terminal) hasParentOf(searchKey string, split SplitFunc) bool {
tKey := t.String()
if tKey == "" {
return true
}
for {
tLabel, tRest := split(tKey)
searchLabel, searchRest := split(searchKey)
if searchLabel != tLabel {
return false
}
if len(tRest) == 0 {
// Found a parent/"prefix" in the set
return true
}
if len(searchRest) == 0 {
// The trie only contains children/"suffixes" of the
// key we're searching for
return false
}
// Continue down the trie
searchKey = searchRest
tKey = tRest
}
}