-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
148 lines (135 loc) · 2.99 KB
/
main.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
package main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"log"
"os"
"strings"
prompt "github.com/c-bata/go-prompt"
)
var dbPath = flag.String("db_path", "./badger", "badger db path")
var suggestions = []prompt.Suggest{
{Text: "keys", Description: "list keys by key prefix"},
{Text: "count", Description: "count keys by key prefix"},
{Text: "get", Description: "get key value"},
{Text: "set", Description: "set value"},
{Text: "del", Description: "delete key"},
{Text: "batch-del", Description: "batch delete by key prefix"},
{Text: "exit", Description: "exit the program"},
{Text: "help", Description: "help info"},
}
func completer(in prompt.Document) []prompt.Suggest {
w := in.GetWordBeforeCursor()
if w == "" {
return []prompt.Suggest{}
}
return prompt.FilterHasPrefix(suggestions, w, true)
}
func pretty(data []byte) (string, error) {
out := new(bytes.Buffer)
if err := json.Indent(out, data, "", " "); err != nil {
return "", err
}
return out.String(), nil
}
func executor(in string) {
in = strings.TrimSpace(in)
blocks := strings.SplitN(in, " ", 3)
switch blocks[0] {
case "keys":
if len(blocks) < 2 {
fmt.Println("Please input key prefix.")
return
}
if keys, err := ListKeys(blocks[1]); err != nil {
fmt.Println(err)
} else {
for _, k := range keys {
fmt.Println(k)
}
}
case "count":
if len(blocks) < 2 {
fmt.Println("Please input key prefix.")
return
}
if keys, err := ListKeys(blocks[1]); err != nil {
fmt.Println(err)
} else {
fmt.Printf("Count of '%v' is %v\n", blocks[1], len(keys))
}
case "get":
if len(blocks) < 2 {
fmt.Println("Please input a key.")
return
}
if val, err := Get(blocks[1]); err != nil {
fmt.Println(err)
} else {
if out, err := pretty(val); err != nil {
fmt.Println(string(val))
} else {
fmt.Println(out)
}
}
case "set":
if len(blocks) < 3 {
fmt.Println("Please input key and value.")
return
}
if err := Set(blocks[1], []byte(blocks[2])); err != nil {
fmt.Println(err)
} else {
fmt.Println("Set success.")
}
case "del":
if len(blocks) < 2 {
fmt.Println("Please input key prefix.")
return
}
if err := Delete(blocks[1]); err != nil {
fmt.Println(err)
} else {
fmt.Println("Delete success.")
}
case "batch-del":
if len(blocks) < 2 {
fmt.Println("Please input a key.")
return
}
if keys, err := ListKeys(blocks[1]); err != nil {
fmt.Println(err)
} else {
for _, k := range keys {
if err := Delete(k); err != nil {
fmt.Printf("Delete '%v' error: %v\n", k, err)
}
}
}
case "help":
fmt.Print("Available commands: \n\n")
for _, s := range suggestions {
fmt.Printf("%6s:\t\t%s\n\n", s.Text, s.Description)
}
case "exit":
fmt.Println("Exit!")
os.Exit(0)
}
}
func main() {
flag.Parse()
var err error
if err = InitDB(*dbPath); err != nil {
log.Fatal(err)
}
defer db.Close()
p := prompt.New(
executor,
completer,
prompt.OptionPrefix(">>> "),
prompt.OptionTitle("badger-cli"),
)
p.Run()
}