tile38/controller/scan.go

74 lines
1.8 KiB
Go
Raw Normal View History

2016-03-05 02:08:16 +03:00
package controller
import (
"bytes"
"time"
2016-03-29 00:16:21 +03:00
"github.com/tidwall/resp"
2016-07-10 23:23:50 +03:00
"github.com/tidwall/tile38/controller/collection"
2016-07-12 22:18:16 +03:00
"github.com/tidwall/tile38/controller/glob"
2016-03-29 00:16:21 +03:00
"github.com/tidwall/tile38/controller/server"
2016-03-05 02:08:16 +03:00
"github.com/tidwall/tile38/geojson"
)
2016-03-29 00:16:21 +03:00
func cmdScanArgs(vs []resp.Value) (s liveFenceSwitches, err error) {
if vs, s.searchScanBaseTokens, err = parseSearchScanBaseTokens("scan", vs); err != nil {
2016-03-05 02:08:16 +03:00
return
}
2016-03-29 00:16:21 +03:00
if len(vs) != 0 {
2016-03-05 02:08:16 +03:00
err = errInvalidNumberOfArguments
return
}
return
}
2016-03-29 00:16:21 +03:00
func (c *Controller) cmdScan(msg *server.Message) (res string, err error) {
2016-03-05 02:08:16 +03:00
start := time.Now()
2016-03-29 00:16:21 +03:00
vs := msg.Values[1:]
2016-03-05 02:08:16 +03:00
wr := &bytes.Buffer{}
2016-03-29 00:16:21 +03:00
s, err := cmdScanArgs(vs)
2016-03-05 02:08:16 +03:00
if err != nil {
2016-03-29 00:16:21 +03:00
return "", err
2016-03-05 02:08:16 +03:00
}
2016-03-29 00:16:21 +03:00
sw, err := c.newScanWriter(wr, msg, s.key, s.output, s.precision, s.glob, s.limit, s.wheres, s.nofields)
2016-03-05 02:08:16 +03:00
if err != nil {
2016-03-29 00:16:21 +03:00
return "", err
2016-03-05 02:08:16 +03:00
}
2016-03-29 00:16:21 +03:00
if msg.OutputType == server.JSON {
wr.WriteString(`{"ok":true`)
2016-03-05 02:08:16 +03:00
}
sw.writeHead()
if sw.col != nil {
2016-07-10 23:23:50 +03:00
stype := collection.TypeAll
2016-03-05 02:08:16 +03:00
if sw.output == outputCount && len(sw.wheres) == 0 && sw.globEverything == true {
2016-07-10 23:23:50 +03:00
count := sw.col.Count(stype) - int(s.cursor)
2016-03-05 02:08:16 +03:00
if count < 0 {
count = 0
}
sw.count = uint64(count)
} else {
2016-07-12 22:18:16 +03:00
g := glob.Parse(sw.glob, s.desc)
if g.Limits[0] == "" && g.Limits[1] == "" {
s.cursor = sw.col.Scan(s.cursor, stype, s.desc,
func(id string, o geojson.Object, fields []float64) bool {
return sw.writeObject(id, o, fields, false)
},
)
2016-03-05 02:08:16 +03:00
} else {
2016-07-12 22:18:16 +03:00
s.cursor = sw.col.ScanRange(
s.cursor, stype, g.Limits[0], g.Limits[1], s.desc,
2016-07-10 23:23:50 +03:00
func(id string, o geojson.Object, fields []float64) bool {
return sw.writeObject(id, o, fields, false)
},
)
2016-03-05 02:08:16 +03:00
}
}
}
sw.writeFoot(s.cursor)
2016-03-29 00:16:21 +03:00
if msg.OutputType == server.JSON {
wr.WriteString(`,"elapsed":"` + time.Now().Sub(start).String() + "\"}")
}
return string(wr.Bytes()), nil
2016-03-05 02:08:16 +03:00
}