generated from openacid/gotmpl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
sskv_test.go
278 lines (240 loc) · 6.32 KB
/
sskv_test.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package succinct
import (
"fmt"
"sort"
"strconv"
"testing"
"github.com/google/btree"
"github.com/openacid/low/bitmap"
"github.com/openacid/low/mathext/zipf"
"github.com/openacid/low/size"
"github.com/openacid/testkeys"
"github.com/openacid/testutil"
"github.com/stretchr/testify/require"
)
func TestNew(t *testing.T) {
ta := require.New(t)
type wantTyp struct {
leaves string
labelBitmap string
ranks []int32
selects []int32
labels string
}
cases := []struct {
keys []string
want wantTyp
}{
{
keys: []string{
"",
"a",
},
want: wantTyp{
leaves: "11000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000",
labelBitmap: "01100000 00000000 00000000 00000000 00000000 00000000 00000000 00000000",
ranks: []int32{0, 2},
selects: []int32{1},
labels: "a",
},
},
{
keys: []string{
"a",
"b",
"c",
},
want: wantTyp{
leaves: "01110000 00000000 00000000 00000000 00000000 00000000 00000000 00000000",
labelBitmap: "00011110 00000000 00000000 00000000 00000000 00000000 00000000 00000000",
ranks: []int32{0, 4},
selects: []int32{3},
labels: "abc",
},
},
{
keys: []string{
"a",
"ab",
"abc",
},
want: wantTyp{
leaves: "01110000 00000000 00000000 00000000 00000000 00000000 00000000 00000000",
labelBitmap: "01010110 00000000 00000000 00000000 00000000 00000000 00000000 00000000",
ranks: []int32{0, 4},
selects: []int32{1},
labels: "abc",
},
},
{
keys: []string{
"abc",
"abcd",
"abd",
"abde",
"bc",
"bcd",
"bcde",
"cde",
},
want: wantTyp{
leaves: "00000101 11111100 00000000 00000000 00000000 00000000 00000000 00000000",
// 0 -a-> 1 -b-> 4 -c-> 7 -d-> $
// -d-> 8 -e-> $
// -b-> 2 -c-> 5 -d-> 9 -e-> $
// -c-> 3 -d-> 6 -e-> $
//
// 1 2 3 4
// abc b c d cd d e d e e
labelBitmap: "00010101 01001010 10101011 11100000 00000000 00000000 00000000 00000000",
ranks: []int32{0, 14},
selects: []int32{3},
labels: "abcbcdcddedee",
},
},
{
keys: []string{
"A", "Aani", "Aaron", "Aaronic", "Aaronical", "Aaronite",
"Aaronitic", "Aaru", "Ab", "Ababdeh", "Ababua", "Abadite",
"Abama", "Abanic", "Abantes", "Abarambo", "Abaris", "Abasgi",
"Abassin", "Abatua", "Abba", "Abbadide", "Abbasside", "Abbie",
"Abby", "Abderian", "Abderite", "Abdiel", "Abdominales", "Abe",
"Abel", "Abelia", "Abelian", "Abelicea", "Abelite",
"Abelmoschus", "Abelonian", "Abencerrages", "Aberdeen",
"Aberdonian", "Aberia", "Abhorson",
},
want: wantTyp{
leaves: ("" +
"01010000 01010100 00000101 00010001 00010000 00000100 00000000 00101001," +
"10100010 10000000 10101110 10000010 10000000 10110110 10001011 11001000," +
"00111010 00000000 00000000 00000000 00000000 00000000 00000000 00000000"),
labelBitmap: ("" +
"01001001 00000101 00100000 00100010 00100010 11011001 01010010 01001010," +
"01011010 10100010 10010101 01010110 10101010 10101010 11010101 00010101," +
"01001010 10010110 11010111 01101010 01101010 10101010 10101101 01001111," +
"01101010 10101101 10101010 10101011 01110111 01101010 11011111 01011010," +
"10101011 11011000 00000000 00000000 00000000 00000000 00000000 00000000"),
ranks: []int32{0, 21, 52, 87, 126, 135},
selects: []int32{1, 89, 151, 208, 260},
labels: "Aabnrabdehioubdmnrstaiyeiolnronduiaitaigsudseremimocdirieatcemsiiaisiliactoneeoascthesbndiatnneesirenoaeioedneaacarninlcelhnaaeugnsses",
},
},
}
for i, c := range cases {
_ = i
s := NewSet(c.keys)
got := wantTyp{
bitmap.Fmt(s.leaves),
bitmap.Fmt(s.labelBitmap),
s.ranks,
s.selects,
string(s.labels),
}
ta.Equal(c.want, got, "%d-th: struct; case: %+v", i+1, c)
for _, k := range c.keys {
found := s.Has(k)
ta.True(found, "search for %v, case: %v", k, c)
}
absent := testutil.RandStrSlice(len(c.keys)*2, 0, 10)
for _, k := range absent {
found := s.Has(k)
idx := sort.SearchStrings(c.keys, k)
has := idx < len(c.keys) && c.keys[idx] == k
ta.Equal(has, found, "search for: %v, case: %v", k, c)
}
}
}
var OutputSet bool
func BenchmarkSet_200kweb2(b *testing.B) {
keys := getKeys("200kweb2")
subBenSetHas(b, keys)
subBenArrayBsearch(b, keys)
subBenBtree(b, keys)
}
func BenchmarkSet_870k_ip4(b *testing.B) {
keys := getKeys("870k_ip4_hex")
subBenSetHas(b, keys)
subBenArrayBsearch(b, keys)
subBenBtree(b, keys)
}
func subBenSetHas(b *testing.B, keys []string) int {
sz := 0
b.Run(fmt.Sprintf("Has:n=%d", len(keys)), func(b *testing.B) {
s := NewSet(keys)
load := zipf.Accesses(2, 1.5, len(keys), b.N, nil)
sz = size.Of(s)
b.ResetTimer()
var v bool
for i := 0; i < b.N; i++ {
rst := s.Has(keys[load[i]])
v = v || rst
}
OutputSet = v
})
return sz
}
func subBenArrayBsearch(b *testing.B, keys []string) int {
sz := 0
b.Run(fmt.Sprintf("bsearch:n=%d", len(keys)), func(b *testing.B) {
load := zipf.Accesses(2, 1.5, len(keys), b.N, nil)
sz = size.Of(keys)
b.ResetTimer()
var v bool
for i := 0; i < b.N; i++ {
rst := sort.SearchStrings(keys, keys[load[i]])
v = v || rst == 8
}
OutputSet = v
})
return sz
}
type BtreeElt struct {
Key string
}
func (kv *BtreeElt) Less(than btree.Item) bool {
o := than.(*BtreeElt)
return kv.Key < o.Key
}
func subBenBtree(b *testing.B, keys []string) int {
sz := 0
b.Run(fmt.Sprintf("btree:n=%d", len(keys)), func(b *testing.B) {
bt := btree.New(32)
for _, k := range keys {
v := &BtreeElt{Key: k}
bt.ReplaceOrInsert(v)
}
load := zipf.Accesses(2, 1.5, len(keys), b.N, nil)
sz = size.Of(bt)
b.ResetTimer()
var id int
for i := 0; i < b.N; i++ {
idx := load[i]
itm := &BtreeElt{Key: keys[idx]}
ee := bt.Get(itm)
id += len(ee.(*BtreeElt).Key)
}
OutputSet = id > 8
})
return sz
}
func getKeys(name string) []string {
keys := testkeys.Load(name)
if name == "870k_ip4_hex" {
ks := make([]string, 0, len(keys))
for _, k := range keys {
n, err := strconv.ParseUint(k, 16, 0)
if err != nil {
panic(err)
}
packed := string([]byte{
byte(n >> 24),
byte(n >> 16),
byte(n >> 8),
byte(n),
})
ks = append(ks, packed)
}
return ks
}
return keys
}