-
Notifications
You must be signed in to change notification settings - Fork 5
/
cmd.go
460 lines (439 loc) · 9.93 KB
/
cmd.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
package main
import (
"fmt"
"math"
"reflect"
"sort"
"strconv"
"strings"
bolt "go.etcd.io/bbolt"
"github.com/gobwas/glob"
)
func del(args ...string) (res interface{}, err error) {
argsLen := len(args)
if argsLen == 0 {
return nil, fmt.Errorf("wrong number of arguments for '%s' command", "del")
}
found := false
err = DB.Update(func(tx *bolt.Tx) error {
if argsLen == 1 {
err = tx.DeleteBucket([]byte(args[0]))
if err == nil {
found = true
} else if err == bolt.ErrBucketNotFound {
return nil
}
return err
}
b := tx.Bucket([]byte(args[0]))
if b == nil {
return nil
}
for i := 1; i < argsLen-1; i++ {
b = b.Bucket([]byte(args[i]))
if b == nil {
return nil
}
}
key := []byte(args[argsLen-1])
err = b.DeleteBucket(key)
if err == nil {
found = true
} else if err == bolt.ErrBucketNotFound || err == bolt.ErrIncompatibleValue {
value := b.Get(key)
if value == nil {
return nil
}
found = true
return b.Delete(key)
}
return err
})
if err != nil {
return nil, err
}
return found, nil
}
func delGlob(args ...string) (res interface{}, err error) {
argsLen := len(args)
if argsLen == 0 {
return nil, fmt.Errorf("wrong number of arguments for '%s' command", "delglob")
}
count := 0
// Only one glob pattern is suppored
pattern, err := glob.Compile(args[len(args)-1])
if err != nil {
return nil, err
}
err = DB.Update(func(tx *bolt.Tx) error {
if argsLen == 1 {
c := tx.Cursor()
for k, _ := c.First(); k != nil; k, _ = c.Next() {
if pattern.Match(string(k)) {
err = tx.DeleteBucket(k)
if err != nil {
return err
}
count++
}
}
} else {
b := tx.Bucket([]byte(args[0]))
if b == nil {
return nil
}
for i := 1; i < argsLen-1; i++ {
b = b.Bucket([]byte(args[i]))
if b == nil {
return nil
}
}
c := b.Cursor()
for k, _ := c.First(); k != nil; k, _ = c.Next() {
if pattern.Match(string(k)) {
err = b.Delete(k)
if err == bolt.ErrIncompatibleValue {
err = b.DeleteBucket(k)
}
if err != nil {
return err
}
count++
}
}
}
return nil
})
return count, nil
}
func exists(args ...string) (res interface{}, err error) {
argsLen := len(args)
if argsLen < 1 {
return nil, fmt.Errorf("wrong number of arguments for '%s' command", "exists")
}
var b *bolt.Bucket
found := false
err = DB.View(func(tx *bolt.Tx) error {
b = tx.Bucket([]byte(args[0]))
if b == nil {
return nil
}
if argsLen == 1 {
found = true
return nil
}
for i := 1; i < argsLen-1; i++ {
b = b.Bucket([]byte(args[i]))
if b == nil {
return nil
}
}
lastWord := []byte(args[argsLen-1])
if b.Bucket(lastWord) == nil && b.Get(lastWord) == nil {
return nil
}
found = true
return nil
})
if err != nil {
return nil, err
}
return found, nil
}
func get(args ...string) (res interface{}, err error) {
argsLen := len(args)
if argsLen < 2 {
return nil, fmt.Errorf("wrong number of arguments for '%s' command", "get")
}
err = DB.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(args[0]))
if b == nil {
return nil
}
i := 1
for ; i < argsLen-1; i++ {
b = b.Bucket([]byte(args[i]))
if b == nil {
return nil
}
}
res = b.Get([]byte(args[i]))
return nil
})
if err != nil {
return nil, err
}
if res == nil {
res = ""
}
return
}
func set(args ...string) (res interface{}, err error) {
argsLen := len(args)
if argsLen < 3 {
return nil, fmt.Errorf("wrong number of arguments for '%s' command", "set")
}
err = DB.Update(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(args[0]))
if b == nil {
b, err = tx.CreateBucket([]byte(args[0]))
if err != nil {
return err
}
}
for i := 1; i < argsLen-2; i++ {
subb := b.Bucket([]byte(args[i]))
if subb == nil {
subb, err = b.CreateBucket([]byte(args[i]))
if err != nil {
return err
}
}
b = subb
}
return b.Put([]byte(args[argsLen-2]), []byte(args[argsLen-1]))
})
if err != nil {
return nil, err
}
return true, nil
}
func buckets(args ...string) (res interface{}, err error) {
argsLen := len(args)
if argsLen < 1 {
return nil, fmt.Errorf("wrong number of arguments for '%s' command", "buckets")
}
pattern, err := glob.Compile(args[argsLen-1])
if err != nil {
return
}
res = []string{}
err = DB.View(func(tx *bolt.Tx) error {
if argsLen > 1 {
b := tx.Bucket([]byte(args[0]))
if b == nil {
return nil
}
for i := 1; i < argsLen-1; i++ {
b = b.Bucket([]byte(args[i]))
if b == nil {
return nil
}
}
b.ForEach(func(k, v []byte) error {
name := string(k)
if pattern.Match(name) && b.Bucket(k) != nil {
res = append(res.([]string), name)
}
return nil
})
} else {
tx.ForEach(func(bname []byte, b *bolt.Bucket) error {
name := string(bname)
if pattern.Match(name) {
res = append(res.([]string), name)
}
return nil
})
}
return nil
})
if err != nil {
return nil, err
}
return
}
func keys(args ...string) (res interface{}, err error) {
argsLen := len(args)
if len(args) < 2 {
return nil, fmt.Errorf("wrong number of arguments for '%s' command", "keys")
}
pattern, err := glob.Compile(args[argsLen-1])
if err != nil {
return
}
res = []string{}
err = DB.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(args[0]))
if b == nil {
return nil
}
for i := 1; i < argsLen-1; i++ {
b = b.Bucket([]byte(args[i]))
if b == nil {
return nil
}
}
b.ForEach(func(k, v []byte) error {
key := string(k)
if pattern.Match(key) && b.Bucket(k) == nil {
res = append(res.([]string), key)
}
return nil
})
return nil
})
if err != nil {
return nil, err
}
return
}
func keyvalues(args ...string) (res interface{}, err error) {
argsLen := len(args)
if argsLen < 2 {
return nil, fmt.Errorf("wrong number of arguments for '%s' command", "keyvalues")
}
pattern, err := glob.Compile(args[argsLen-1])
if err != nil {
return
}
res = map[string]interface{}{}
err = DB.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(args[0]))
if b == nil {
return nil
}
for i := 1; i < argsLen-1; i++ {
b = b.Bucket([]byte(args[i]))
if b == nil {
return nil
}
}
b.ForEach(func(k, v []byte) error {
key := string(k)
if pattern.Match(key) && b.Bucket(k) == nil {
res.(map[string]interface{})[key] = string(v)
}
return nil
})
return nil
})
if err != nil {
return nil, err
}
return
}
func stats(_ ...string) (res interface{}, err error) {
info := map[string]interface{}{}
stat := DB.Stats()
val := reflect.ValueOf(stat)
for i := 0; i < val.NumField(); i++ {
valField := val.Field(i)
typeField := val.Type().Field(i)
if typeField.Type.Name() == "int" {
info[typeField.Name] = valField.Int()
}
}
val = reflect.ValueOf(stat.TxStats)
info["TxStats"] = map[string]interface{}{}
for i := 0; i < val.NumField(); i++ {
valField := val.Field(i)
typeField := val.Type().Field(i)
if typeField.Type.Name() == "int" || typeField.Type.Name() == "Duration" {
info["TxStats"].(map[string]interface{})[typeField.Name] = valField.Int()
}
}
return info, nil
}
type HelpOutput string
func help(args ...string) (res interface{}, err error) {
if len(args) == 0 {
cmds := []string{}
for k, _ := range CmdHelp {
cmds = append(cmds, k)
}
sort.Strings(cmds)
return HelpOutput(fmt.Sprintf("Commands: %s", strings.Join(cmds, ", "))), nil
}
h, found := CmdHelp[strings.ToLower(args[0])]
if !found {
return HelpOutput(fmt.Sprintf("Invalid command: %s", args[0])), nil
}
return HelpOutput(fmt.Sprintf("Command: %s %s\n\n%s\n", args[0], h[0], h[1])), nil
}
type cmd func(...string) (interface{}, error)
// CmdMap holds the relation between command name and its implement function
var CmdMap = map[string]cmd{
"del": del,
"delglob": delGlob,
"exists": exists,
"get": get,
"help": help,
"set": set,
"buckets": buckets,
"keys": keys,
"keyvalues": keyvalues,
"stats": stats,
}
// Format ["o1", "o2"] to string
// 1) "o1"\n
// 2) "o2"
func formatListToStr(list []string) string {
paddingNum := strconv.Itoa(int(math.Log10(float64(len(list)))) + 1)
padded := make([]string, len(list))
for i, data := range list {
padded[i] = fmt.Sprintf("%"+paddingNum+`d) "%s"`, i+1, data)
}
return strings.Join(padded, "\n")
}
// Format {"a": "10", "b": "20", "c": {"c1": 30}} to string
// a) "10"\n
// b) "20"\n
// c)\n
// c1) "30"
func formatMapToStr(collection map[string]interface{}, prefix string) string {
formatted := make([]string, len(collection))
keys := make([]string, len(collection))
i := 0
for k := range collection {
keys[i] = k
i++
}
sort.Strings(keys)
for i, k := range keys {
switch v := collection[k].(type) {
case int64:
formatted[i] = fmt.Sprintf(`%s%s) %v`, prefix, k, v)
case string:
formatted[i] = fmt.Sprintf(`%s%s) "%s"`, prefix, k, v)
case map[string]interface{}:
nestedMap := formatMapToStr(v, prefix+" ")
formatted[i] = fmt.Sprintf("%s%s)\n%s", prefix, k, nestedMap)
}
i++
}
return strings.Join(formatted, "\n")
}
// ExecCmdInCli run given cmd with args, return formatted string according to cmd result.
func ExecCmdInCli(cmd string, args ...string) string {
f, ok := CmdMap[strings.ToLower(cmd)]
if !ok {
return fmt.Sprintf("ERR unknown command '%s'", cmd)
}
// keep the case unchanged so that we could distinguish
// uppercase key from lowercase key.
res, err := f(args...)
if err != nil {
return fmt.Sprintf("ERR %v", err)
}
switch res := res.(type) {
case bool:
return strconv.FormatBool(res)
case []byte:
return fmt.Sprintf("\"%s\"", string(res))
case string:
return fmt.Sprintf("\"%s\"", res)
case []string:
return formatListToStr(res)
case map[string]interface{}:
return formatMapToStr(res, "")
case int:
return strconv.Itoa(res)
case HelpOutput:
return fmt.Sprintf("%s", res)
default:
panic(fmt.Sprintf(
"The type of result returns from command '%s' with args %v is unsupported",
cmd, args))
}
}