-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathnode_iterators.go
241 lines (234 loc) · 7.22 KB
/
node_iterators.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
package radix
// each will iterate over the tree in order
func (self *node) each(prefix []Nibble, use int, f nodeIterator) (cont bool) {
cont = true
if self != nil {
prefix = append(prefix, self.segment...)
if !self.empty && (use == 0 || self.use&use != 0) {
cont = f(Stitch(prefix), self.byteValue, self.treeValue, self.use, self.timestamp)
}
if cont {
for _, child := range self.children {
cont = child.each(prefix, use, f)
if !cont {
break
}
}
}
}
return
}
// reverseEach will iterate over the tree in reverse order
func (self *node) reverseEach(prefix []Nibble, use int, f nodeIterator) (cont bool) {
cont = true
if self != nil {
prefix = append(prefix, self.segment...)
for i := len(self.children) - 1; i >= 0; i-- {
cont = self.children[i].reverseEach(prefix, use, f)
if !cont {
break
}
}
if cont {
if !self.empty && (use == 0 || self.use&use != 0) {
cont = f(Stitch(prefix), self.byteValue, self.treeValue, self.use, self.timestamp)
}
}
}
return
}
// eachBetween will iterate between min and max, including each depending on mincmp and maxcmp, in order
func (self *node) eachBetween(prefix, min, max []Nibble, mincmp, maxcmp, use int, f nodeIterator) (cont bool) {
cont = true
prefix = append(prefix, self.segment...)
if !self.empty && (use == 0 || self.use&use != 0) && (min == nil || nComp(prefix, min) > mincmp) && (max == nil || nComp(prefix, max) < maxcmp) {
cont = f(Stitch(prefix), self.byteValue, self.treeValue, self.use, self.timestamp)
}
if cont {
for _, child := range self.children {
if child != nil {
childKey := make([]Nibble, len(prefix)+len(child.segment))
copy(childKey, prefix)
copy(childKey[len(prefix):], child.segment)
mmi := len(childKey)
if mmi > len(min) {
mmi = len(min)
}
mma := len(childKey)
if mma > len(max) {
mma = len(max)
}
if (min == nil || nComp(childKey[:mmi], min[:mmi]) > -1) && (max == nil || nComp(childKey[:mma], max[:mma]) < 1) {
cont = child.eachBetween(prefix, min, max, mincmp, maxcmp, use, f)
}
if !cont {
break
}
}
}
}
return
}
// eachBetween will iterate between min and max, including each depending on mincmp and maxcmp, in reverse order
func (self *node) reverseEachBetween(prefix, min, max []Nibble, mincmp, maxcmp, use int, f nodeIterator) (cont bool) {
cont = true
prefix = append(prefix, self.segment...)
var child *node
for i := len(self.children) - 1; i >= 0; i-- {
child = self.children[i]
if child != nil {
childKey := make([]Nibble, len(prefix)+len(child.segment))
copy(childKey, prefix)
copy(childKey[len(prefix):], child.segment)
mmi := len(childKey)
if mmi > len(min) {
mmi = len(min)
}
mma := len(childKey)
if mma > len(max) {
mma = len(max)
}
if (min == nil || nComp(childKey[:mmi], min[:mmi]) > -1) && (max == nil || nComp(childKey[:mma], max[:mma]) < 1) {
cont = child.reverseEachBetween(prefix, min, max, mincmp, maxcmp, use, f)
}
if !cont {
break
}
}
}
if cont {
if !self.empty && (use == 0 || self.use&use != 0) && (min == nil || nComp(prefix, min) > mincmp) && (max == nil || nComp(prefix, max) < maxcmp) {
cont = f(Stitch(prefix), self.byteValue, self.treeValue, self.use, self.timestamp)
}
}
return
}
// sizeBetween will count values between min and max, including each depending on mincmp and maxcmp, counting values of types included in use (byteValue and/or treeValue)
func (self *node) sizeBetween(prefix, min, max []Nibble, mincmp, maxcmp, use int) (result int) {
prefix = append(prefix, self.segment...)
if !self.empty && (use == 0 || self.use&use != 0) && (min == nil || nComp(prefix, min) > mincmp) && (max == nil || nComp(prefix, max) < maxcmp) {
if use == 0 || self.use&use&byteValue != 0 {
result++
}
if use == 0 || self.use&use&treeValue != 0 {
result += self.treeValue.Size()
}
}
for _, child := range self.children {
if child != nil {
childKey := make([]Nibble, len(prefix)+len(child.segment))
copy(childKey, prefix)
copy(childKey[len(prefix):], child.segment)
mmi := len(childKey)
if mmi > len(min) {
mmi = len(min)
}
mma := len(childKey)
if mma > len(max) {
mma = len(max)
}
mires := nComp(childKey[:mmi], min[:mmi])
mares := nComp(childKey[:mma], max[:mma])
if (min == nil || mires > -1) && (max == nil || mares < 1) {
if (min == nil || mires > 0) && (max == nil || mares < 0) {
if use == 0 {
result += child.realSize
} else {
if use&byteValue != 0 {
result += child.byteSize
}
if use&treeValue != 0 {
result += child.treeSize
}
}
} else {
result += child.sizeBetween(prefix, min, max, mincmp, maxcmp, use)
}
}
}
}
return
}
// eachBetweenIndex will iterate over the tree between index min and max, inclusive.
// Missing min or max will mean 'from the start' or 'to the end' respectively.
func (self *node) eachBetweenIndex(prefix []Nibble, count int, min, max *int, use int, f nodeIndexIterator) (cont bool) {
cont = true
prefix = append(prefix, self.segment...)
if !self.empty && (use == 0 || self.use&use != 0) && (min == nil || count >= *min) && (max == nil || count <= *max) {
cont = f(Stitch(prefix), self.byteValue, self.treeValue, self.use, self.timestamp, count)
if use == 0 || self.use&use&byteValue != 0 {
count++
}
if use == 0 || self.use&use&treeValue != 0 {
count += self.treeValue.Size()
}
}
if cont {
relevantChildSize := 0
for _, child := range self.children {
if child != nil {
relevantChildSize = 0
if use == 0 {
relevantChildSize = child.realSize
} else {
if use&byteValue != 0 {
relevantChildSize += child.byteSize
}
if use&treeValue != 0 {
relevantChildSize += child.treeSize
}
}
if (min == nil || relevantChildSize+count > *min) && (max == nil || count <= *max) {
cont = child.eachBetweenIndex(prefix, count, min, max, use, f)
}
count += relevantChildSize
if !cont {
break
}
}
}
}
return
}
// reverseEachBetweenIndex is like eachBetweenIndex, but iterates in reverse.
func (self *node) reverseEachBetweenIndex(prefix []Nibble, count int, min, max *int, use int, f nodeIndexIterator) (cont bool) {
cont = true
prefix = append(prefix, self.segment...)
var child *node
relevantChildSize := 0
for i := len(self.children) - 1; i >= 0; i-- {
child = self.children[i]
if child != nil {
relevantChildSize = 0
if use == 0 {
relevantChildSize = child.realSize
} else {
if use&byteValue != 0 {
relevantChildSize += child.byteSize
}
if use&treeValue != 0 {
relevantChildSize += child.treeSize
}
}
if (min == nil || relevantChildSize+count > *min) && (max == nil || count <= *max) {
cont = child.reverseEachBetweenIndex(prefix, count, min, max, use, f)
}
count += relevantChildSize
if !cont {
break
}
}
}
if cont {
if !self.empty && (use == 0 || self.use&use != 0) && (min == nil || count >= *min) && (max == nil || count <= *max) {
cont = f(Stitch(prefix), self.byteValue, self.treeValue, self.use, self.timestamp, count)
if use == 0 || self.use&use&byteValue != 0 {
count++
}
if use == 0 || self.use&use&treeValue != 0 {
count += self.treeValue.Size()
}
}
}
return
}