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-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-07-13 06:11:02 +03:00
|
|
|
sw, err := c.newScanWriter(wr, msg, s.key, s.output, s.precision, s.glob, false, 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 {
|
|
|
|
if sw.output == outputCount && len(sw.wheres) == 0 && sw.globEverything == true {
|
2016-07-13 07:59:36 +03:00
|
|
|
count := sw.col.Count() - int(s.cursor)
|
2016-03-05 02:08:16 +03:00
|
|
|
if count < 0 {
|
|
|
|
count = 0
|
|
|
|
}
|
|
|
|
sw.count = uint64(count)
|
|
|
|
} else {
|
2016-07-13 07:51:01 +03:00
|
|
|
g := glob.Parse(sw.globPattern, s.desc)
|
2016-07-12 22:18:16 +03:00
|
|
|
if g.Limits[0] == "" && g.Limits[1] == "" {
|
2016-07-13 07:59:36 +03:00
|
|
|
s.cursor = sw.col.Scan(s.cursor, s.desc,
|
2016-07-12 22:18:16 +03:00
|
|
|
func(id string, o geojson.Object, fields []float64) bool {
|
2017-01-10 19:49:48 +03:00
|
|
|
return sw.writeObject(ScanWriterParams{
|
|
|
|
id: id,
|
|
|
|
o: o,
|
|
|
|
fields: fields,
|
|
|
|
})
|
2016-07-12 22:18:16 +03:00
|
|
|
},
|
|
|
|
)
|
2016-03-05 02:08:16 +03:00
|
|
|
} else {
|
2016-07-12 22:18:16 +03:00
|
|
|
s.cursor = sw.col.ScanRange(
|
2016-07-13 07:59:36 +03:00
|
|
|
s.cursor, 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 {
|
2017-01-10 19:49:48 +03:00
|
|
|
return sw.writeObject(ScanWriterParams{
|
|
|
|
id: id,
|
|
|
|
o: o,
|
|
|
|
fields: fields,
|
|
|
|
})
|
2016-07-10 23:23:50 +03:00
|
|
|
},
|
|
|
|
)
|
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
|
|
|
}
|