2014-05-16 11:03:23 +04:00
|
|
|
package server
|
2014-05-02 13:08:20 +04:00
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
import (
|
|
|
|
"fmt"
|
2014-05-20 04:41:24 +04:00
|
|
|
"github.com/siddontang/ledisdb/ledis"
|
|
|
|
"strconv"
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
"strings"
|
|
|
|
)
|
2014-05-02 13:08:20 +04:00
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
type CommandFunc func(c *client) error
|
2014-05-02 13:08:20 +04:00
|
|
|
|
|
|
|
var regCmds = map[string]CommandFunc{}
|
2014-05-03 10:55:12 +04:00
|
|
|
|
|
|
|
func register(name string, f CommandFunc) {
|
|
|
|
if _, ok := regCmds[strings.ToLower(name)]; ok {
|
|
|
|
panic(fmt.Sprintf("%s has been registered", name))
|
|
|
|
}
|
|
|
|
|
|
|
|
regCmds[name] = f
|
|
|
|
}
|
|
|
|
|
|
|
|
func pingCommand(c *client) error {
|
2014-07-31 10:38:20 +04:00
|
|
|
c.resp.writeStatus(PONG)
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func echoCommand(c *client) error {
|
|
|
|
if len(c.args) != 1 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
2014-07-31 10:38:20 +04:00
|
|
|
c.resp.writeBulk(c.args[0])
|
2014-05-03 10:55:12 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-05-20 04:41:24 +04:00
|
|
|
func selectCommand(c *client) error {
|
|
|
|
if len(c.args) != 1 {
|
|
|
|
return ErrCmdParams
|
|
|
|
}
|
|
|
|
|
|
|
|
if index, err := strconv.Atoi(ledis.String(c.args[0])); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
if db, err := c.ldb.Select(index); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
c.db = db
|
2014-07-31 10:38:20 +04:00
|
|
|
c.resp.writeStatus(OK)
|
2014-05-20 04:41:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-05-03 10:55:12 +04:00
|
|
|
func init() {
|
|
|
|
register("ping", pingCommand)
|
|
|
|
register("echo", echoCommand)
|
2014-05-20 04:41:24 +04:00
|
|
|
register("select", selectCommand)
|
2014-05-03 10:55:12 +04:00
|
|
|
}
|