-
Notifications
You must be signed in to change notification settings - Fork 22
/
xmap_test0.go
284 lines (241 loc) · 6.68 KB
/
xmap_test0.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
279
280
281
282
283
284
package main
import (
"fmt"
"github.com/spf13/cast"
"github.com/heiyeluren/xmm"
"github.com/heiyeluren/xds"
"github.com/heiyeluren/xds/xmap"
)
// TestMap testing
// -----------------------------------
// 把Xmap当做普通map来使用
// 说明:类型不限制,初始化必须设定好数据类型,写入数据必须与这个数据类型一致,类似于 map[KeyType]ValType 必须相互符合
// -----------------------------------
/*
目前支持的类似于 map[keyType][valType] key value 类型如下:
就是调用:m, err := xds.NewMap(mm, xmap.String, xmap.Int) 后面的两个 keyType 和 valType 类型定义如下:
const (
Invalid Kind = iota
Bool
Int
Int8
Int16
Int32
Int64
Uint
Uint8
Uint16
Uint32
Uint64
Uintptr
Float32
Float64
Complex64
Complex128
Array
Chan
Func
Interface
Map
Ptr
ByteSlice
String
Struct
UnsafePointer
)
*/
func TestMap(mm xmm.XMemory) {
// -------------------
// 常规的map操作
// -------------------
fmt.Println("\n--[ XMap NewMap() API example]--")
// 初始化xmap的时候必须制定key和val的数据类型,数据类型是在xmap中定义的
// 构建一个 map[string]int 的xmap
m, err := xmap.NewMap(mm, xds.String, xds.Int)
if err != nil {
panic("call NewMap() fail")
}
var (
k11 string = "id"
v11 int = 9527
)
// set的时候需要关注类型是否跟初始化对象的时候一致
err = m.Set(k11, v11)
if err != nil {
panic("XMap.Set fail")
}
fmt.Println("XMap.Set key: [", k11, "] success")
// get数据不用关心类型,也不用做类型转换
ret, exists, err := m.Get(k11)
if err != nil {
panic("XMap.Get fail")
}
fmt.Println("XMap.Get key: [", k11, "] , value: [", ret, "]")
// Remove数据
err = m.Remove(k11)
if err != nil {
panic("XMap.Remove fail")
}
fmt.Println("XMap.Remove key: [", k11, "] succes")
ret, exists, err = m.Get(k11)
if !exists {
fmt.Println("XMap.Get key: [", k11, "] not found")
}
// -------------------
// 调用扩展的Map函数使用方法(可以获得更多定制性和更高性能)
// -------------------
fmt.Println("\n--[ XMap NewMapEx() API example]--")
// 生成KV数据
var (
k22 = "name"
v22 = "heiyeluren"
)
// 生成一个 map[string]string 数据结构,默认大小256个元素,占用了75%后进行map扩容(这个初始化函数可以获得更好性能,看个人使用场景)
m1, err := xmap.NewMapEx(mm, xds.String, xds.String, uintptr(256), 0.75)
// set数据
m1.Set(k22, v22)
// get数据
ret, exists, err = m1.Get(k22)
fmt.Println("XMap.Get key: [", k22, "] , value: [", ret, "]")
// -------------------
// 遍历所有map数据
// -------------------
fmt.Println("\n--[ XMap ForEach all Key ]--")
// 写入数据
err = m.Set("k1", 1)
err = m.Set("k2", 2)
err = m.Set("k3", 3)
err = m.Set("k4", 4)
err = m.Set("k5", 5)
//全局变量可以在匿名函数中访问(如果需要使用外部变量,可以像这样)
gi := 1
fmt.Printf("for each itam start, gi: [%s] \n", gi)
// 遍历xmap中所有元素
m.Each(func(key, val interface{}) error {
//针对每个KV进行操作,比如打印出来
fmt.Printf("for each XMap all key:[%s] value:[%s] \n", key, val)
//外部变量使用操作
gi++
return nil
})
fmt.Printf("for each itam done, gi: [%s] \n", gi)
//读取map长度
len := m.Len()
fmt.Printf("\nMap length(size): [%s] \n", len)
}
// TestHashMap testing
// -----------------------------------
// 把Xmap当做普通hashmap来使用
// 说明:Key/Value 都必须是 []byte
// -----------------------------------
func TestHashMap(mm xmm.XMemory) {
fmt.Println("\n\n===== XMap X(eXtensible) Raw Map (HashMap) example ======\n")
hm, err := xmap.NewHashMap(mm)
if err != nil {
panic("call NewHashMap() fail")
}
var (
k1 string = "name"
v1 string = "heiyeluren"
k2 string = "id"
v2 uint32 = 9527
)
// 新增Key
fmt.Println("\n--[ Raw Map Set Key ]--")
err = hm.Set([]byte(k1), []byte(v1))
if err != nil {
panic("xmap.Set fail")
}
fmt.Println("Xmap.Set key: [", k1, "] success")
err = hm.Set([]byte(k2), []byte(cast.ToString(v2)))
if err != nil {
panic("xmap.Set fail")
}
fmt.Println("Xmap.Set key: [", k2, "] success")
// 读取Key
fmt.Println("\n--[ Raw Map Get Key ]--")
s1, exists, err := hm.Get([]byte(k1))
if err != nil {
panic("xmap.Get fail")
}
fmt.Println("Xmap.Get key: [", k1, "], value: [", cast.ToString(s1), "]")
s2, exists, err := hm.Get([]byte(k2))
if err != nil {
panic("xmap.Get fail")
}
fmt.Println("Xmap.Get key: [", k2, "], value: [", cast.ToString(s2), "]")
// 删除Key
fmt.Println("\n--[ Raw Map Remove Key ]--")
err = hm.Remove([]byte(k1))
if err != nil {
panic("xmap.Remove fail")
}
fmt.Println("Xmap.Remove key: [", k1, "]")
s1, exists, err = hm.Get([]byte(k1))
// fmt.Println(s1, exists, err)
if !exists {
fmt.Println("Xmap.Get key: [", k1, "] Not Found")
}
s2, exists, err = hm.Get([]byte(k2))
if err != nil {
panic("xmap.Get fail")
}
fmt.Println("Xmap.Get key: [", k2, "], value: [", cast.ToString(s2), "]")
err = hm.Remove([]byte(k2))
if err != nil {
panic("xmap.Remove fail")
}
fmt.Println("Xmap.Remove key: [", k2, "]")
s2, exists, err = hm.Get([]byte(k2))
// fmt.Println(s1, exists, err)
if !exists {
fmt.Println("Xmap.Get key: [", k2, "] Not Found")
}
s1, exists, err = hm.Get([]byte(k1))
// fmt.Println(s1, exists, err)
if !exists {
fmt.Println("Xmap.Get key: [", k1, "] Not Found")
}
//--------------------
// 遍历RawMap
//--------------------
fmt.Println("\n--[ Raw Map for each all Key ]--")
hm1, err := xmap.NewHashMap(mm)
// 写入数据
hm1.Set([]byte("K1"), []byte("V1"))
hm1.Set([]byte("K2"), []byte("V2"))
hm1.Set([]byte("K3"), []byte("V3"))
hm1.Set([]byte("K4"), []byte("V4"))
//hm1.Each(func(key, val []byte)(error) {
// fmt.Println("for each raw map key:[", key, "], val[", val, "]")
//})
//全局变量可以在匿名函数中访问(如果需要使用外部变量,可以像这样)
gi := 1
fmt.Printf("for each itam start, gi: [%s] \n", gi)
// 遍历xmap中所有元素
hm1.Each(func(key, val []byte) error {
//针对每个KV进行操作,比如打印出来
fmt.Printf("for each XMap all key:[%s] value:[%s] \n", key, val)
//外部变量使用操作
gi++
return nil
})
//读取map长度
len := hm1.Len()
fmt.Printf("\nMap length(size): [%s] \n", len)
}
// xmap测试代码
func main() {
f := &xmm.Factory{}
mm, err := f.CreateMemory(0.75)
if err != nil {
panic("xmm.CreateConcurrentHashMapMemory fail")
}
fmt.Println("\n===== XMap X(eXtensible) Map example ======\n")
// var NotFound = errors.New("not found")
// 把Xmap当做普通map来使用
TestMap(mm)
// 把Xmap当做普通hashmap来使用
TestHashMap(mm)
fmt.Println("\nXmap test case done.\n\n")
}