tile38/controller/controller.go

666 lines
16 KiB
Go
Raw Normal View History

2016-03-05 02:08:16 +03:00
package controller
import (
"bytes"
"crypto/rand"
"errors"
"fmt"
"io"
2016-04-01 04:20:42 +03:00
"net"
2016-03-05 02:08:16 +03:00
"os"
2016-03-30 22:58:34 +03:00
"path"
2017-09-30 04:11:05 +03:00
"path/filepath"
2016-03-29 01:50:18 +03:00
"runtime"
2016-12-23 00:52:37 +03:00
"runtime/debug"
2016-03-08 03:37:39 +03:00
"strings"
2016-03-05 02:08:16 +03:00
"sync"
"time"
2016-07-10 05:44:28 +03:00
"github.com/tidwall/btree"
2016-09-11 17:49:48 +03:00
"github.com/tidwall/buntdb"
2016-03-28 18:57:41 +03:00
"github.com/tidwall/resp"
2016-03-06 17:55:00 +03:00
"github.com/tidwall/tile38/controller/collection"
2016-09-12 05:01:24 +03:00
"github.com/tidwall/tile38/controller/endpoint"
2016-03-06 17:55:00 +03:00
"github.com/tidwall/tile38/controller/log"
"github.com/tidwall/tile38/controller/server"
2016-03-05 02:08:16 +03:00
"github.com/tidwall/tile38/core"
"github.com/tidwall/tile38/geojson"
)
2016-05-24 05:44:25 +03:00
var errOOM = errors.New("OOM command not allowed when used memory > 'maxmemory'")
2016-09-11 17:49:48 +03:00
const hookLogPrefix = "hook:log:"
2016-03-05 02:08:16 +03:00
type collectionT struct {
Key string
Collection *collection.Collection
}
type commandDetailsT struct {
command string
key, id string
field string
value float64
obj geojson.Object
fields []float64
2016-04-02 17:20:30 +03:00
fmap map[string]int
2016-03-05 02:08:16 +03:00
oldObj geojson.Object
oldFields []float64
2016-03-28 18:57:41 +03:00
updated bool
2016-04-02 17:20:30 +03:00
timestamp time.Time
parent bool // when true, only children are forwarded
pattern string // PDEL key pattern
children []*commandDetailsT // for multi actions such as "PDEL"
2016-03-05 02:08:16 +03:00
}
2016-09-12 07:25:09 +03:00
func (col *collectionT) Less(item btree.Item, ctx interface{}) bool {
2016-03-05 02:08:16 +03:00
return col.Key < item.(*collectionT).Key
}
// Controller is a tile38 controller
type Controller struct {
2017-09-30 18:00:29 +03:00
// static values
host string
port int
http bool
started time.Time
config *Config
epc *endpoint.EndpointManager
// atomics
followc aint // counter increases when follow property changes
statsTotalConns aint
statsTotalCommands aint
statsExpired aint
lastShrinkDuration aint
currentShrinkStart atime
stopBackgroundExpiring abool
stopWatchingMemory abool
stopWatchingAutoGC abool
outOfMemory abool
connsmu sync.RWMutex
conns2 map[*server.Conn]*clientConn
2016-03-05 02:08:16 +03:00
mu sync.RWMutex
f *os.File
2016-09-11 17:49:48 +03:00
qdb *buntdb.DB // hook queue log
qidx uint64 // hook queue log last idx
2016-03-30 19:32:38 +03:00
cols *btree.BTree
2016-03-05 02:08:16 +03:00
aofsz int
dir string
follows map[*bytes.Buffer]bool
fcond *sync.Cond
lstack []*commandDetailsT
lives map[*liveBuffer]bool
lcond *sync.Cond
2016-03-19 17:16:19 +03:00
fcup bool // follow caught up
fcuponce bool // follow caught up once
2016-03-19 17:16:19 +03:00
shrinking bool // aof shrinking flag
shrinklog [][]string // aof shrinking log
2016-03-19 17:16:19 +03:00
hooks map[string]*Hook // hook name
hookcols map[string]map[string]*Hook // col key
2016-04-01 04:20:42 +03:00
aofconnM map[net.Conn]bool
2016-07-15 22:22:48 +03:00
expires map[string]map[string]time.Time
exlist []exitem
2016-03-05 02:08:16 +03:00
}
// ListenAndServe starts a new tile38 server
func ListenAndServe(host string, port int, dir string, http bool) error {
return ListenAndServeEx(host, port, dir, nil, http)
}
func ListenAndServeEx(host string, port int, dir string, ln *net.Listener, http bool) error {
2016-03-05 02:08:16 +03:00
log.Infof("Server started, Tile38 version %s, git %s", core.Version, core.GitSHA)
c := &Controller{
2016-03-19 17:16:19 +03:00
host: host,
port: port,
dir: dir,
2016-07-10 05:44:28 +03:00
cols: btree.New(16, 0),
2016-03-19 17:16:19 +03:00
follows: make(map[*bytes.Buffer]bool),
fcond: sync.NewCond(&sync.Mutex{}),
lives: make(map[*liveBuffer]bool),
lcond: sync.NewCond(&sync.Mutex{}),
hooks: make(map[string]*Hook),
hookcols: make(map[string]map[string]*Hook),
2016-04-01 04:20:42 +03:00
aofconnM: make(map[net.Conn]bool),
2016-07-15 22:22:48 +03:00
expires: make(map[string]map[string]time.Time),
2016-08-26 22:54:19 +03:00
started: time.Now(),
2017-09-30 18:00:29 +03:00
conns2: make(map[*server.Conn]*clientConn),
2016-09-12 05:01:24 +03:00
epc: endpoint.NewEndpointManager(),
http: http,
2016-03-05 02:08:16 +03:00
}
if err := os.MkdirAll(dir, 0700); err != nil {
return err
}
2017-09-30 04:11:05 +03:00
var err error
c.config, err = loadConfig(filepath.Join(dir, "config"))
if err != nil {
2016-03-05 02:08:16 +03:00
return err
}
2016-09-11 17:49:48 +03:00
// load the queue before the aof
qdb, err := buntdb.Open(path.Join(dir, "queue.db"))
if err != nil {
return err
}
var qidx uint64
if err := qdb.View(func(tx *buntdb.Tx) error {
val, err := tx.Get("hook:idx")
if err != nil {
if err == buntdb.ErrNotFound {
return nil
}
return err
}
qidx = stringToUint64(val)
return nil
}); err != nil {
return err
}
err = qdb.CreateIndex("hooks", hookLogPrefix+"*", buntdb.IndexJSONCaseSensitive("hook"))
if err != nil {
return err
}
c.qdb = qdb
c.qidx = qidx
2016-03-30 22:58:34 +03:00
if err := c.migrateAOF(); err != nil {
return err
}
f, err := os.OpenFile(path.Join(dir, "appendonly.aof"), os.O_CREATE|os.O_RDWR, 0600)
2016-03-05 02:08:16 +03:00
if err != nil {
return err
}
c.f = f
if err := c.loadAOF(); err != nil {
return err
}
c.fillExpiresList()
2017-09-30 04:11:05 +03:00
if c.config.followHost() != "" {
2017-09-30 17:34:08 +03:00
go c.follow(c.config.followHost(), c.config.followPort(), c.followc.get())
2016-03-05 02:08:16 +03:00
}
defer func() {
2017-09-30 17:34:08 +03:00
c.followc.add(1) // this will force any follow communication to die
2016-03-05 02:08:16 +03:00
}()
go c.processLives()
2016-05-24 05:44:25 +03:00
go c.watchMemory()
go c.watchGC()
2016-07-15 22:22:48 +03:00
go c.backgroundExpiring()
2016-05-24 05:44:25 +03:00
defer func() {
2017-09-30 17:29:03 +03:00
c.stopBackgroundExpiring.set(true)
c.stopWatchingMemory.set(true)
c.stopWatchingAutoGC.set(true)
2016-05-24 05:44:25 +03:00
}()
2016-04-01 02:26:36 +03:00
handler := func(conn *server.Conn, msg *server.Message, rd *server.AnyReaderWriter, w io.Writer, websocket bool) error {
2017-09-30 18:00:29 +03:00
c.connsmu.RLock()
if cc, ok := c.conns2[conn]; ok {
cc.last.set(time.Now())
}
2017-09-30 18:00:29 +03:00
c.connsmu.RUnlock()
2017-09-30 17:34:08 +03:00
c.statsTotalCommands.add(1)
2016-03-28 18:57:41 +03:00
err := c.handleInputCommand(conn, msg, w)
2016-03-05 02:08:16 +03:00
if err != nil {
if err.Error() == "going live" {
2016-04-01 02:26:36 +03:00
return c.goLive(err, conn, rd, msg, websocket)
2016-03-05 02:08:16 +03:00
}
return err
}
return nil
}
2016-03-08 03:37:39 +03:00
protected := func() bool {
2016-03-08 16:11:03 +03:00
if core.ProtectedMode == "no" {
2016-03-08 03:37:39 +03:00
// --protected-mode no
return false
}
if host != "" && host != "127.0.0.1" && host != "::1" && host != "localhost" {
// -h address
return false
}
c.mu.RLock()
2017-09-30 04:11:05 +03:00
is := c.config.protectedMode() != "no" && c.config.requirePass() == ""
2016-03-08 03:37:39 +03:00
c.mu.RUnlock()
return is
}
2017-09-30 17:29:03 +03:00
2017-09-30 18:00:29 +03:00
var clientID aint
2016-08-26 22:54:19 +03:00
opened := func(conn *server.Conn) {
2017-09-30 04:11:05 +03:00
if c.config.keepAlive() > 0 {
err := conn.SetKeepAlive(
2017-09-30 04:11:05 +03:00
time.Duration(c.config.keepAlive()) * time.Second)
if err != nil {
log.Warnf("could not set keepalive for connection: %v",
conn.RemoteAddr().String())
}
}
2017-09-30 18:00:29 +03:00
cc := &clientConn{}
cc.id = clientID.add(1)
cc.opened.set(time.Now())
cc.conn = conn
c.connsmu.Lock()
c.conns2[conn] = cc
c.connsmu.Unlock()
2017-09-30 17:29:03 +03:00
c.statsTotalConns.add(1)
2016-08-26 22:54:19 +03:00
}
2017-09-30 17:29:03 +03:00
2016-08-26 22:54:19 +03:00
closed := func(conn *server.Conn) {
2017-09-30 18:00:29 +03:00
c.connsmu.Lock()
delete(c.conns2, conn)
c.connsmu.Unlock()
2016-08-26 22:54:19 +03:00
}
return server.ListenAndServe(host, port, protected, handler, opened, closed, ln, http)
2016-03-05 02:08:16 +03:00
}
func (c *Controller) watchGC() {
2017-01-19 19:00:14 +03:00
t := time.NewTicker(time.Second)
defer t.Stop()
2017-01-20 12:09:39 +03:00
s := time.Now()
for range t.C {
2017-01-19 19:00:14 +03:00
c.mu.RLock()
2017-01-20 12:09:39 +03:00
2017-09-30 17:29:03 +03:00
if c.stopWatchingAutoGC.on() {
2017-01-20 12:09:39 +03:00
c.mu.RUnlock()
return
}
2017-01-19 19:00:14 +03:00
c.mu.RUnlock()
2017-09-30 04:11:05 +03:00
if c.config.autoGC() == 0 {
2017-01-20 12:09:39 +03:00
continue
}
2017-09-30 04:11:05 +03:00
if time.Now().Sub(s) < time.Second*time.Duration(c.config.autoGC()) {
2017-01-20 12:09:39 +03:00
continue
}
2017-01-19 19:00:14 +03:00
2017-01-22 03:10:43 +03:00
var mem1, mem2 runtime.MemStats
runtime.ReadMemStats(&mem1)
log.Debugf("autogc(before): "+
"alloc: %v, heap_alloc: %v, heap_released: %v",
mem1.Alloc, mem1.HeapAlloc, mem1.HeapReleased)
2017-01-20 12:09:39 +03:00
runtime.GC()
debug.FreeOSMemory()
2017-01-22 03:10:43 +03:00
runtime.ReadMemStats(&mem2)
log.Debugf("autogc(after): "+
"alloc: %v, heap_alloc: %v, heap_released: %v",
mem2.Alloc, mem2.HeapAlloc, mem2.HeapReleased)
2017-01-20 12:09:39 +03:00
s = time.Now()
}
}
2016-05-24 05:44:25 +03:00
func (c *Controller) watchMemory() {
t := time.NewTicker(time.Second * 2)
defer t.Stop()
var mem runtime.MemStats
for range t.C {
func() {
c.mu.RLock()
2017-09-30 17:29:03 +03:00
if c.stopWatchingMemory.on() {
2016-05-24 05:44:25 +03:00
c.mu.RUnlock()
return
}
2017-09-30 17:29:03 +03:00
oom := c.outOfMemory.on()
2016-05-24 05:44:25 +03:00
c.mu.RUnlock()
2017-09-30 04:11:05 +03:00
if c.config.maxMemory() == 0 {
2016-05-24 05:44:25 +03:00
if oom {
c.mu.Lock()
2017-09-30 17:29:03 +03:00
c.outOfMemory.set(false)
2016-05-24 05:44:25 +03:00
c.mu.Unlock()
}
return
}
if oom {
runtime.GC()
}
runtime.ReadMemStats(&mem)
c.mu.Lock()
2017-09-30 17:29:03 +03:00
c.outOfMemory.set(int(mem.HeapAlloc) > c.config.maxMemory())
2016-05-24 05:44:25 +03:00
c.mu.Unlock()
}()
}
}
2016-03-05 02:08:16 +03:00
func (c *Controller) setCol(key string, col *collection.Collection) {
c.cols.ReplaceOrInsert(&collectionT{Key: key, Collection: col})
}
func (c *Controller) getCol(key string) *collection.Collection {
2016-03-30 19:32:38 +03:00
item := c.cols.Get(&collectionT{Key: key})
if item == nil {
2016-03-05 02:08:16 +03:00
return nil
}
2016-03-30 19:32:38 +03:00
return item.(*collectionT).Collection
}
func (c *Controller) scanGreaterOrEqual(key string, iterator func(key string, col *collection.Collection) bool) {
c.cols.AscendGreaterOrEqual(&collectionT{Key: key}, func(item btree.Item) bool {
col := item.(*collectionT)
return iterator(col.Key, col.Collection)
})
2016-03-05 02:08:16 +03:00
}
func (c *Controller) deleteCol(key string) *collection.Collection {
i := c.cols.Delete(&collectionT{Key: key})
if i == nil {
return nil
}
return i.(*collectionT).Collection
}
func isReservedFieldName(field string) bool {
switch field {
case "z", "lat", "lon":
return true
}
return false
}
2016-03-28 18:57:41 +03:00
func (c *Controller) handleInputCommand(conn *server.Conn, msg *server.Message, w io.Writer) error {
var words []string
for _, v := range msg.Values {
words = append(words, v.String())
2016-03-05 02:08:16 +03:00
}
start := time.Now()
2016-03-29 03:38:21 +03:00
writeOutput := func(res string) error {
switch msg.ConnType {
default:
2016-03-29 15:53:53 +03:00
err := fmt.Errorf("unsupported conn type: %v", msg.ConnType)
log.Error(err)
return err
case server.WebSocket:
return server.WriteWebSocketMessage(w, []byte(res))
case server.HTTP:
_, err := fmt.Fprintf(w, "HTTP/1.1 200 OK\r\n"+
"Connection: close\r\n"+
"Content-Length: %d\r\n"+
2016-08-26 17:31:09 +03:00
"Content-Type: application/json; charset=utf-8\r\n"+
2016-03-29 15:53:53 +03:00
"\r\n", len(res)+2)
if err != nil {
return err
}
2016-08-26 17:35:19 +03:00
_, err = io.WriteString(w, res)
if err != nil {
return err
}
_, err = io.WriteString(w, "\r\n")
2016-03-29 15:53:53 +03:00
return err
2016-03-29 03:38:21 +03:00
case server.RESP:
2016-03-29 22:29:15 +03:00
var err error
if msg.OutputType == server.JSON {
_, err = fmt.Fprintf(w, "$%d\r\n%s\r\n", len(res), res)
} else {
_, err = io.WriteString(w, res)
}
2016-03-29 03:38:21 +03:00
return err
case server.Native:
_, err := fmt.Fprintf(w, "$%d %s\r\n", len(res), res)
return err
}
}
2016-03-08 03:37:39 +03:00
// Ping. Just send back the response. No need to put through the pipeline.
2017-07-27 19:10:33 +03:00
if msg.Command == "ping" || msg.Command == "echo" {
2016-03-28 18:57:41 +03:00
switch msg.OutputType {
case server.JSON:
2017-07-27 19:10:33 +03:00
if len(msg.Values) > 1 {
return writeOutput(`{"ok":true,"` + msg.Command + `":` + jsonString(msg.Values[1].String()) + `,"elapsed":"` + time.Now().Sub(start).String() + `"}`)
}
return writeOutput(`{"ok":true,"` + msg.Command + `":"pong","elapsed":"` + time.Now().Sub(start).String() + `"}`)
2016-03-28 18:57:41 +03:00
case server.RESP:
2017-07-27 19:10:33 +03:00
if len(msg.Values) > 1 {
data, _ := msg.Values[1].MarshalRESP()
return writeOutput(string(data))
}
2016-03-29 03:38:21 +03:00
return writeOutput("+PONG\r\n")
2016-03-28 18:57:41 +03:00
}
2016-03-05 02:08:16 +03:00
return nil
}
writeErr := func(err error) error {
2016-03-28 18:57:41 +03:00
switch msg.OutputType {
case server.JSON:
2016-03-29 03:38:21 +03:00
return writeOutput(`{"ok":false,"err":` + jsonString(err.Error()) + `,"elapsed":"` + time.Now().Sub(start).String() + "\"}")
2016-03-28 18:57:41 +03:00
case server.RESP:
if err == errInvalidNumberOfArguments {
2016-03-29 03:38:21 +03:00
return writeOutput("-ERR wrong number of arguments for '" + msg.Command + "' command\r\n")
2016-03-28 18:57:41 +03:00
}
2016-04-03 05:16:36 +03:00
v, _ := resp.ErrorValue(errors.New("ERR " + err.Error())).MarshalRESP()
return writeOutput(string(v))
2016-03-05 02:08:16 +03:00
}
return nil
}
var write bool
2016-03-08 03:37:39 +03:00
2016-03-28 18:57:41 +03:00
if !conn.Authenticated || msg.Command == "auth" {
2017-09-30 04:11:05 +03:00
if c.config.requirePass() != "" {
2016-04-01 22:46:39 +03:00
password := ""
// This better be an AUTH command or the Message should contain an Auth
if msg.Command != "auth" && msg.Auth == "" {
2016-03-08 03:37:39 +03:00
// Just shut down the pipeline now. The less the client connection knows the better.
return writeErr(errors.New("authentication required"))
}
2016-04-01 22:46:39 +03:00
if msg.Auth != "" {
password = msg.Auth
} else {
if len(msg.Values) > 1 {
password = msg.Values[1].String()
}
2016-03-28 18:57:41 +03:00
}
2017-09-30 04:11:05 +03:00
if c.config.requirePass() != strings.TrimSpace(password) {
2016-03-08 03:37:39 +03:00
return writeErr(errors.New("invalid password"))
}
2016-03-08 18:35:43 +03:00
conn.Authenticated = true
2016-08-25 15:25:20 +03:00
if msg.ConnType != server.HTTP {
return writeOutput(server.OKMessage(msg, start))
}
2016-03-28 18:57:41 +03:00
} else if msg.Command == "auth" {
2016-03-08 18:35:43 +03:00
return writeErr(errors.New("invalid password"))
2016-03-08 03:37:39 +03:00
}
}
2016-03-05 02:08:16 +03:00
// choose the locking strategy
2016-03-28 18:57:41 +03:00
switch msg.Command {
2016-03-05 02:08:16 +03:00
default:
c.mu.RLock()
defer c.mu.RUnlock()
case "set", "del", "drop", "fset", "flushdb", "sethook", "pdelhook", "delhook",
"expire", "persist", "jset", "pdel":
2016-03-05 02:08:16 +03:00
// write operations
write = true
c.mu.Lock()
defer c.mu.Unlock()
2017-09-30 04:11:05 +03:00
if c.config.followHost() != "" {
2016-03-05 02:08:16 +03:00
return writeErr(errors.New("not the leader"))
}
2017-09-30 04:11:05 +03:00
if c.config.readOnly() {
2016-03-05 02:08:16 +03:00
return writeErr(errors.New("read only"))
}
case "get", "keys", "scan", "nearby", "within", "intersects", "hooks", "search",
"ttl", "bounds", "server", "info", "type", "jget":
2016-03-05 02:08:16 +03:00
// read operations
c.mu.RLock()
defer c.mu.RUnlock()
2017-09-30 04:11:05 +03:00
if c.config.followHost() != "" && !c.fcuponce {
2016-03-05 02:08:16 +03:00
return writeErr(errors.New("catching up to leader"))
}
2016-03-08 03:37:39 +03:00
case "follow", "readonly", "config":
2016-03-05 02:08:16 +03:00
// system operations
// does not write to aof, but requires a write lock.
c.mu.Lock()
defer c.mu.Unlock()
2016-03-29 22:29:15 +03:00
case "output":
// this is local connection operation. Locks not needed.
2017-07-27 19:10:33 +03:00
case "echo":
2016-03-05 02:08:16 +03:00
case "massinsert":
// dev operation
c.mu.Lock()
defer c.mu.Unlock()
case "shutdown":
// dev operation
c.mu.Lock()
defer c.mu.Unlock()
case "aofshrink":
c.mu.RLock()
defer c.mu.RUnlock()
case "client":
c.mu.Lock()
defer c.mu.Unlock()
2016-03-05 02:08:16 +03:00
}
res, d, err := c.command(msg, w, conn)
2016-03-05 02:08:16 +03:00
if err != nil {
if err.Error() == "going live" {
return err
}
return writeErr(err)
}
if write {
2016-03-28 18:57:41 +03:00
if err := c.writeAOF(resp.ArrayValue(msg.Values), &d); err != nil {
2016-03-19 17:16:19 +03:00
if _, ok := err.(errAOFHook); ok {
return writeErr(err)
}
2016-03-05 02:08:16 +03:00
log.Fatal(err)
return err
}
}
2016-03-28 18:57:41 +03:00
if res != "" {
2016-03-29 03:38:21 +03:00
if err := writeOutput(res); err != nil {
2016-03-05 02:08:16 +03:00
return err
}
}
return nil
}
func randomKey(n int) string {
b := make([]byte, n)
nn, err := rand.Read(b)
if err != nil {
panic(err)
}
if nn != n {
panic("random failed")
}
return fmt.Sprintf("%x", b)
}
func (c *Controller) reset() {
c.aofsz = 0
2016-07-10 05:44:28 +03:00
c.cols = btree.New(16, 0)
2016-03-05 02:08:16 +03:00
}
func (c *Controller) command(
msg *server.Message, w io.Writer, conn *server.Conn,
) (
res string, d commandDetailsT, err error,
) {
2016-03-28 18:57:41 +03:00
switch msg.Command {
2016-03-05 02:08:16 +03:00
default:
2016-03-28 18:57:41 +03:00
err = fmt.Errorf("unknown command '%s'", msg.Values[0])
2016-03-05 02:08:16 +03:00
case "set":
2016-03-28 18:57:41 +03:00
res, d, err = c.cmdSet(msg)
2016-03-05 02:08:16 +03:00
case "fset":
2016-03-28 18:57:41 +03:00
res, d, err = c.cmdFset(msg)
2016-03-05 02:08:16 +03:00
case "del":
2016-03-28 18:57:41 +03:00
res, d, err = c.cmdDel(msg)
case "pdel":
res, d, err = c.cmdPdel(msg)
2016-03-05 02:08:16 +03:00
case "drop":
2016-03-28 18:57:41 +03:00
res, d, err = c.cmdDrop(msg)
2016-03-05 02:08:16 +03:00
case "flushdb":
2016-03-28 18:57:41 +03:00
res, d, err = c.cmdFlushDB(msg)
2016-03-29 22:29:15 +03:00
case "sethook":
res, d, err = c.cmdSetHook(msg)
case "delhook":
res, d, err = c.cmdDelHook(msg)
2016-09-12 05:20:53 +03:00
case "pdelhook":
res, d, err = c.cmdPDelHook(msg)
2016-07-15 22:22:48 +03:00
case "expire":
res, d, err = c.cmdExpire(msg)
case "persist":
res, d, err = c.cmdPersist(msg)
case "ttl":
res, err = c.cmdTTL(msg)
2016-03-29 22:29:15 +03:00
case "hooks":
res, err = c.cmdHooks(msg)
case "shutdown":
if !core.DevMode {
err = fmt.Errorf("unknown command '%s'", msg.Values[0])
return
}
log.Fatal("shutdown requested by developer")
2016-03-30 19:32:38 +03:00
case "massinsert":
if !core.DevMode {
err = fmt.Errorf("unknown command '%s'", msg.Values[0])
return
}
res, err = c.cmdMassInsert(msg)
2016-04-01 02:26:36 +03:00
case "follow":
res, err = c.cmdFollow(msg)
2016-03-29 15:53:53 +03:00
case "readonly":
res, err = c.cmdReadOnly(msg)
2016-03-29 02:11:29 +03:00
case "stats":
res, err = c.cmdStats(msg)
2016-03-29 01:50:18 +03:00
case "server":
res, err = c.cmdServer(msg)
2016-08-26 22:54:19 +03:00
case "info":
res, err = c.cmdInfo(msg)
2016-03-29 00:16:21 +03:00
case "scan":
res, err = c.cmdScan(msg)
case "nearby":
res, err = c.cmdNearby(msg)
case "within":
res, err = c.cmdWithin(msg)
case "intersects":
res, err = c.cmdIntersects(msg)
2016-07-11 07:40:18 +03:00
case "search":
res, err = c.cmdSearch(msg)
case "bounds":
res, err = c.cmdBounds(msg)
2016-03-05 02:08:16 +03:00
case "get":
2016-03-28 18:57:41 +03:00
res, err = c.cmdGet(msg)
case "jget":
res, err = c.cmdJget(msg)
case "jset":
res, d, err = c.cmdJset(msg)
case "jdel":
res, d, err = c.cmdJdel(msg)
2016-08-26 23:42:52 +03:00
case "type":
res, err = c.cmdType(msg)
2016-03-29 01:22:30 +03:00
case "keys":
res, err = c.cmdKeys(msg)
2016-03-29 22:29:15 +03:00
case "output":
res, err = c.cmdOutput(msg)
2016-04-01 02:26:36 +03:00
case "aof":
res, err = c.cmdAOF(msg)
case "aofmd5":
res, err = c.cmdAOFMD5(msg)
2016-03-29 01:50:18 +03:00
case "gc":
2016-12-23 00:52:37 +03:00
runtime.GC()
debug.FreeOSMemory()
2016-03-30 19:32:38 +03:00
res = server.OKMessage(msg, time.Now())
case "aofshrink":
go c.aofshrink()
res = server.OKMessage(msg, time.Now())
2016-03-29 15:53:53 +03:00
case "config get":
res, err = c.cmdConfigGet(msg)
case "config set":
res, err = c.cmdConfigSet(msg)
case "config rewrite":
res, err = c.cmdConfigRewrite(msg)
case "config":
err = fmt.Errorf("unknown command '%s'", msg.Values[0])
if len(msg.Values) > 1 {
command := msg.Values[0].String() + " " + msg.Values[1].String()
msg.Values[1] = resp.StringValue(command)
msg.Values = msg.Values[1:]
msg.Command = strings.ToLower(command)
return c.command(msg, w, conn)
2016-03-29 15:53:53 +03:00
}
case "client":
res, err = c.cmdClient(msg, conn)
2016-03-05 02:08:16 +03:00
}
return
}