ledisdb/cmd/ledis-cli/main.go

171 lines
3.2 KiB
Go
Raw Normal View History

2014-06-21 18:12:37 +04:00
package main
import (
"flag"
"fmt"
"github.com/siddontang/ledisdb/client/go/ledis"
2014-07-02 06:13:34 +04:00
"regexp"
"strconv"
2014-06-21 18:12:37 +04:00
"strings"
)
var ip = flag.String("h", "127.0.0.1", "ledisdb server ip (default 127.0.0.1)")
var port = flag.Int("p", 6380, "ledisdb server port (default 6380)")
var socket = flag.String("s", "", "ledisdb server socket, overwrite ip and port")
2014-07-17 08:06:07 +04:00
var dbn = flag.Int("n", 0, "ledisdb database number(default 0)")
2014-06-21 18:12:37 +04:00
func main() {
flag.Parse()
cfg := new(ledis.Config)
if len(*socket) > 0 {
cfg.Addr = *socket
} else {
cfg.Addr = fmt.Sprintf("%s:%d", *ip, *port)
}
cfg.MaxIdleConns = 1
c := ledis.NewClient(cfg)
2014-07-22 12:37:34 +04:00
sendSelect(c, *dbn)
2014-07-22 15:54:17 +04:00
SetCompletionHandler(completionHandler)
2014-07-01 06:34:45 +04:00
setHistoryCapacity(100)
2014-06-21 18:12:37 +04:00
2014-07-02 06:13:34 +04:00
reg, _ := regexp.Compile(`'.*?'|".*?"|\S+`)
prompt := ""
2014-06-21 18:12:37 +04:00
for {
2014-07-22 12:37:34 +04:00
if *dbn > 0 && *dbn < 16 {
2014-07-17 08:06:07 +04:00
prompt = fmt.Sprintf("%s[%d]>", cfg.Addr, *dbn)
} else {
prompt = fmt.Sprintf("%s>", cfg.Addr)
}
cmd, err := line(prompt)
2014-07-01 06:34:45 +04:00
if err != nil {
fmt.Printf("%s\n", err.Error())
return
}
2014-06-21 18:12:37 +04:00
2014-07-02 06:13:34 +04:00
cmds := reg.FindAllString(cmd, -1)
2014-06-21 18:12:37 +04:00
if len(cmds) == 0 {
continue
} else {
2014-07-01 06:34:45 +04:00
addHistory(cmd)
2014-06-21 18:12:37 +04:00
args := make([]interface{}, len(cmds[1:]))
2014-07-18 08:20:25 +04:00
2014-06-21 18:12:37 +04:00
for i := range args {
2014-07-01 12:23:44 +04:00
args[i] = strings.Trim(string(cmds[1+i]), "\"'")
2014-06-21 18:12:37 +04:00
}
2014-07-17 08:06:07 +04:00
2014-07-18 08:20:25 +04:00
cmd := cmds[0]
if strings.ToLower(cmd) == "help" || cmd == "?" {
printHelp(cmds)
2014-06-21 18:12:37 +04:00
} else {
2014-07-22 12:37:34 +04:00
if len(cmds) == 2 && strings.ToLower(cmds[0]) == "select" {
if db, _ := strconv.Atoi(cmds[1]); db < 16 && db >= 0 {
*dbn = db
}
}
2014-07-18 08:20:25 +04:00
r, err := c.Do(cmds[0], args...)
if err != nil {
fmt.Printf("%s", err.Error())
} else {
printReply(cmd, r)
}
fmt.Printf("\n")
2014-06-21 18:12:37 +04:00
}
}
}
}
2014-06-25 10:22:31 +04:00
func printReply(cmd string, reply interface{}) {
2014-06-21 18:12:37 +04:00
switch reply := reply.(type) {
case int64:
fmt.Printf("(integer) %d", reply)
case string:
2014-06-25 10:22:31 +04:00
fmt.Printf("%s", reply)
2014-06-21 18:12:37 +04:00
case []byte:
2014-07-16 22:18:53 +04:00
fmt.Printf("%q", reply)
2014-06-21 18:12:37 +04:00
case nil:
2014-06-25 10:22:31 +04:00
fmt.Printf("(nil)")
2014-06-21 18:12:37 +04:00
case ledis.Error:
fmt.Printf("%s", string(reply))
case []interface{}:
for i, v := range reply {
2014-06-22 06:21:53 +04:00
fmt.Printf("%d) ", i+1)
2014-06-21 18:12:37 +04:00
if v == nil {
fmt.Printf("(nil)")
} else {
fmt.Printf("%q", v)
}
2014-06-22 06:21:53 +04:00
if i != len(reply)-1 {
fmt.Printf("\n")
}
2014-06-21 18:12:37 +04:00
}
default:
fmt.Printf("invalid ledis reply")
}
}
2014-07-18 08:20:25 +04:00
func printGenericHelp() {
msg :=
`ledis-cli
Type: "help <command>" for help on <command>
`
fmt.Println(msg)
}
func printCommandHelp(arr []string) {
fmt.Println()
fmt.Printf("\t%s %s \n", arr[0], arr[1])
fmt.Printf("\tGroup: %s \n", arr[2])
fmt.Println()
}
func printHelp(cmds []string) {
args := cmds[1:]
if len(args) == 0 {
printGenericHelp()
} else if len(args) > 1 {
fmt.Println()
} else {
cmd := strings.ToUpper(args[0])
for i := 0; i < len(helpCommands); i++ {
if helpCommands[i][0] == cmd {
printCommandHelp(helpCommands[i])
}
}
}
}
2014-07-22 12:37:34 +04:00
func sendSelect(client *ledis.Client, index int) {
if index > 16 || index < 0 {
index = 0
fmt.Println("index out of range, should less than 16")
}
_, err := client.Do("select", index)
if err != nil {
fmt.Println("index out of range, should less than 16")
}
}
2014-07-22 15:54:17 +04:00
func completionHandler(in string) []string {
var keyWords []string
for _, i := range helpCommands {
if strings.HasPrefix(i[0], strings.ToUpper(in)) {
keyWords = append(keyWords, i[0])
}
}
return keyWords
}