tile38/internal/server/fence.go

459 lines
11 KiB
Go
Raw Normal View History

package server
2016-03-19 17:16:19 +03:00
import (
2016-10-03 21:37:16 +03:00
"math"
"sort"
2016-05-23 23:01:42 +03:00
"strconv"
2016-12-28 21:16:28 +03:00
"time"
2016-03-19 17:16:19 +03:00
"github.com/tidwall/geojson"
2019-01-06 20:23:57 +03:00
"github.com/tidwall/geojson/geo"
"github.com/tidwall/geojson/geometry"
"github.com/tidwall/gjson"
"github.com/tidwall/tile38/internal/glob"
2016-03-19 17:16:19 +03:00
)
2016-04-03 05:16:36 +03:00
// FenceMatch executes a fence match returns back json messages for fence detection.
2018-11-24 01:53:33 +03:00
func FenceMatch(hookName string, sw *scanWriter, fence *liveFenceSwitches, metas []FenceMeta, details *commandDetails) []string {
msgs := fenceMatch(hookName, sw, fence, metas, details)
if len(fence.accept) == 0 {
return msgs
}
2018-08-14 03:05:30 +03:00
nmsgs := make([]string, 0, len(msgs))
for _, msg := range msgs {
2018-08-14 03:05:30 +03:00
if fence.accept[gjson.Get(msg, "command").String()] {
nmsgs = append(nmsgs, msg)
}
}
return nmsgs
}
func appendHookDetails(b []byte, hookName string, metas []FenceMeta) []byte {
if len(hookName) > 0 {
b = append(b, `,"hook":`...)
b = appendJSONString(b, hookName)
}
if len(metas) > 0 {
b = append(b, `,"meta":{`...)
for i, meta := range metas {
if i > 0 {
b = append(b, ',')
}
b = appendJSONString(b, meta.Name)
b = append(b, ':')
b = appendJSONString(b, meta.Value)
}
b = append(b, '}')
}
return b
}
func objIsSpatial(obj geojson.Object) bool {
_, ok := obj.(geojson.Spatial)
return ok
}
func hookJSONString(hookName string, metas []FenceMeta) string {
return string(appendHookDetails(nil, hookName, metas))
}
2018-08-14 20:48:28 +03:00
func fenceMatch(
hookName string, sw *scanWriter, fence *liveFenceSwitches,
2018-11-24 01:53:33 +03:00
metas []FenceMeta, details *commandDetails,
2018-08-14 20:48:28 +03:00
) []string {
2016-03-19 17:16:19 +03:00
if details.command == "drop" {
2018-08-14 03:05:30 +03:00
return []string{
`{"command":"drop"` + hookJSONString(hookName, metas) +
`,"key":` + jsonString(details.key) +
2018-08-14 03:05:30 +03:00
`,"time":` + jsonTimeFormat(details.timestamp) + `}`,
}
2016-03-19 17:16:19 +03:00
}
2016-12-28 21:16:28 +03:00
if len(fence.glob) > 0 && !(len(fence.glob) == 1 && fence.glob[0] == '*') {
match, _ := glob.Match(fence.glob, details.id)
if !match {
return nil
}
2016-03-19 17:16:19 +03:00
}
if details.obj == nil || !objIsSpatial(details.obj) {
2016-03-19 17:16:19 +03:00
return nil
}
2016-12-28 21:16:28 +03:00
if details.command == "fset" {
sw.mu.Lock()
nofields := sw.nofields
sw.mu.Unlock()
if nofields {
return nil
}
}
if details.command == "del" {
2018-08-14 03:05:30 +03:00
return []string{
2018-08-14 20:48:28 +03:00
`{"command":"del"` + hookJSONString(hookName, metas) +
`,"key":` + jsonString(details.key) +
2018-08-14 20:48:28 +03:00
`,"id":` + jsonString(details.id) +
2018-08-14 03:05:30 +03:00
`,"time":` + jsonTimeFormat(details.timestamp) + `}`,
}
2016-03-19 17:16:19 +03:00
}
2018-08-14 20:48:28 +03:00
var roamNearbys, roamFaraways []roamMatch
2017-10-05 18:20:40 +03:00
var detect = "outside"
2016-03-19 17:16:19 +03:00
if fence != nil {
2016-05-23 23:01:42 +03:00
if fence.roam.on {
if details.command == "set" {
2018-08-14 20:48:28 +03:00
roamNearbys, roamFaraways =
fenceMatchRoam(sw.s, fence, details.id,
details.oldObj, details.obj)
if len(roamNearbys) == 0 && len(roamFaraways) == 0 {
return nil
}
2016-04-02 17:20:30 +03:00
}
2016-05-23 23:01:42 +03:00
detect = "roam"
2016-03-19 17:16:19 +03:00
} else {
2016-05-23 23:01:42 +03:00
// not using roaming
match1 := fenceMatchObject(fence, details.oldObj)
match2 := fenceMatchObject(fence, details.obj)
if match1 && match2 {
detect = "inside"
} else if match1 && !match2 {
detect = "exit"
} else if !match1 && match2 {
detect = "enter"
if details.command == "fset" {
detect = "inside"
}
} else {
if details.command != "fset" {
// Maybe the old object and new object create a line that crosses the fence.
// Must detect for that possibility.
if details.oldObj != nil {
ls := geojson.NewLineString(geometry.NewLine(
[]geometry.Point{
details.oldObj.Center(),
details.obj.Center(),
2018-10-22 05:08:56 +03:00
}, nil))
2016-05-23 23:01:42 +03:00
temp := false
if fence.cmd == "within" {
// because we are testing if the line croses the area we need to use
// "intersects" instead of "within".
fence.cmd = "intersects"
temp = true
}
if fenceMatchObject(fence, ls) {
detect = "cross"
}
if temp {
fence.cmd = "within"
}
2016-04-02 17:20:30 +03:00
}
2016-03-19 17:16:19 +03:00
}
}
}
}
2016-12-28 21:16:28 +03:00
2016-04-02 17:20:30 +03:00
if details.fmap == nil {
2016-03-19 17:16:19 +03:00
return nil
}
2017-02-24 16:03:11 +03:00
for {
if fence.detect != nil && !fence.detect[detect] {
if detect == "enter" {
detect = "inside"
continue
}
if detect == "exit" {
detect = "outside"
continue
}
return nil
}
break
2016-12-28 21:16:28 +03:00
}
2016-04-03 00:13:20 +03:00
sw.mu.Lock()
2017-02-24 16:25:50 +03:00
var distance float64
2019-04-23 21:16:55 +03:00
if fence.distance && fence.obj != nil {
distance = details.obj.Distance(fence.obj)
2017-02-24 16:25:50 +03:00
}
2016-04-02 17:20:30 +03:00
sw.fmap = details.fmap
2016-03-19 17:16:19 +03:00
sw.fullFields = true
sw.msg.OutputType = JSON
2017-01-10 19:49:48 +03:00
sw.writeObject(ScanWriterParams{
id: details.id,
o: details.obj,
fields: details.fields,
noLock: true,
distance: distance,
distOutput: fence.distance,
2017-01-10 19:49:48 +03:00
})
2017-02-08 14:16:54 +03:00
2016-03-19 17:16:19 +03:00
if sw.wr.Len() == 0 {
2016-04-03 00:13:20 +03:00
sw.mu.Unlock()
2016-03-19 17:16:19 +03:00
return nil
}
2016-05-23 23:01:42 +03:00
2018-08-14 03:05:30 +03:00
res := sw.wr.String()
2016-03-19 17:16:19 +03:00
sw.wr.Reset()
if len(res) > 0 && res[0] == ',' {
2016-05-23 23:40:08 +03:00
res = res[1:]
}
2016-03-19 17:16:19 +03:00
if sw.output == outputIDs {
2018-08-14 03:05:30 +03:00
res = `{"id":` + string(res) + `}`
2016-03-19 17:16:19 +03:00
}
2016-04-03 00:13:20 +03:00
sw.mu.Unlock()
if fence.groups == nil {
fence.groups = make(map[string]string)
}
groupkey := details.key + ":" + details.id
var group string
var ok bool
if detect == "enter" {
group = bsonID()
fence.groups[groupkey] = group
} else if detect == "cross" {
group = bsonID()
delete(fence.groups, groupkey)
} else {
group, ok = fence.groups[groupkey]
if !ok {
group = bsonID()
fence.groups[groupkey] = group
}
}
2018-08-14 03:05:30 +03:00
var msgs []string
2016-04-01 22:46:39 +03:00
if fence.detect == nil || fence.detect[detect] {
2017-02-12 17:06:56 +03:00
if len(res) > 0 && res[0] == '{' {
2018-08-14 03:05:30 +03:00
msgs = append(msgs, makemsg(details.command, group, detect,
hookName, metas, details.key, details.timestamp, res[1:]))
2017-02-12 17:06:56 +03:00
} else {
2018-08-14 03:05:30 +03:00
msgs = append(msgs, string(res))
2016-04-01 22:46:39 +03:00
}
2016-03-19 17:16:19 +03:00
}
switch detect {
case "enter":
2016-04-01 22:46:39 +03:00
if fence.detect == nil || fence.detect["inside"] {
msgs = append(msgs, makemsg(details.command, group, "inside", hookName, metas, details.key, details.timestamp, res[1:]))
2016-04-01 22:46:39 +03:00
}
2016-03-19 17:16:19 +03:00
case "exit", "cross":
2016-04-01 22:46:39 +03:00
if fence.detect == nil || fence.detect["outside"] {
msgs = append(msgs, makemsg(details.command, group, "outside", hookName, metas, details.key, details.timestamp, res[1:]))
2016-04-01 22:46:39 +03:00
}
2016-05-23 23:01:42 +03:00
case "roam":
if len(msgs) > 0 {
2018-08-14 03:05:30 +03:00
var nmsgs []string
for _, msg := range msgs {
cmd := gjson.Get(msg, "command")
if cmd.Exists() && cmd.String() != "set" {
nmsgs = append(nmsgs, msg)
}
}
2018-08-14 20:48:28 +03:00
for i := range roamNearbys {
nmsg := extendRoamMessage(sw, fence,
"nearby", msgs[0], roamNearbys[i])
nmsgs = append(nmsgs, string(nmsg))
}
for i := range roamFaraways {
nmsg := extendRoamMessage(sw, fence,
"faraway", msgs[0], roamFaraways[i])
2018-08-14 03:05:30 +03:00
nmsgs = append(nmsgs, string(nmsg))
2016-05-23 23:01:42 +03:00
}
msgs = nmsgs
}
2016-03-19 17:16:19 +03:00
}
return msgs
}
2018-08-14 20:48:28 +03:00
func extendRoamMessage(
sw *scanWriter, fence *liveFenceSwitches,
kind string, baseMsg string, match roamMatch,
) string {
// hack off the last '}'
nmsg := []byte(baseMsg[:len(baseMsg)-1])
nmsg = append(nmsg, `,"`+kind+`":{"key":`...)
nmsg = appendJSONString(nmsg, fence.roam.key)
nmsg = append(nmsg, `,"id":`...)
nmsg = appendJSONString(nmsg, match.id)
nmsg = append(nmsg, `,"object":`...)
nmsg = match.obj.AppendJSON(nmsg)
2018-08-14 20:48:28 +03:00
nmsg = append(nmsg, `,"meters":`...)
nmsg = strconv.AppendFloat(nmsg,
math.Floor(match.meters*1000)/1000, 'f', -1, 64)
if fence.roam.scan != "" {
nmsg = append(nmsg, `,"scan":[`...)
col := sw.s.getCol(fence.roam.key)
2018-08-14 20:48:28 +03:00
if col != nil {
obj, _, ok := col.Get(match.id)
if ok {
nmsg = append(nmsg, `{"id":`...)
nmsg = appendJSONString(nmsg, match.id)
nmsg = append(nmsg, `,"self":true,"object":`...)
nmsg = obj.AppendJSON(nmsg)
nmsg = append(nmsg, '}')
2018-08-14 20:48:28 +03:00
}
pattern := match.id + fence.roam.scan
iterator := func(
oid string, o geojson.Object, fields []float64,
) bool {
if oid == match.id {
return true
}
if matched, _ := glob.Match(pattern, oid); matched {
nmsg = append(nmsg, `,{"id":`...)
nmsg = appendJSONString(nmsg, oid)
nmsg = append(nmsg, `,"object":`...)
nmsg = o.AppendJSON(nmsg)
nmsg = append(nmsg, '}')
2018-08-14 20:48:28 +03:00
}
return true
}
g := glob.Parse(pattern, false)
if g.Limits[0] == "" && g.Limits[1] == "" {
2019-04-24 15:09:41 +03:00
col.Scan(false, nil, nil, iterator)
2018-08-14 20:48:28 +03:00
} else {
col.ScanRange(g.Limits[0], g.Limits[1],
2019-04-24 15:09:41 +03:00
false, nil, nil, iterator)
2018-08-14 20:48:28 +03:00
}
}
nmsg = append(nmsg, ']')
}
nmsg = append(nmsg, '}')
// re-add the last '}'
nmsg = append(nmsg, '}')
return string(nmsg)
}
2018-08-14 03:05:30 +03:00
func makemsg(
command, group, detect, hookName string,
metas []FenceMeta, key string, t time.Time, tail string,
) string {
var buf []byte
buf = append(append(buf, `{"command":"`...), command...)
buf = append(append(buf, `","group":"`...), group...)
buf = append(append(buf, `","detect":"`...), detect...)
buf = append(buf, '"')
buf = appendHookDetails(buf, hookName, metas)
2016-12-28 21:16:28 +03:00
buf = appendJSONString(append(buf, `,"key":`...), key)
buf = appendJSONTimeFormat(append(buf, `,"time":`...), t)
buf = append(append(buf, ','), tail...)
2018-08-14 03:05:30 +03:00
return string(buf)
}
2016-03-19 17:16:19 +03:00
func fenceMatchObject(fence *liveFenceSwitches, obj geojson.Object) bool {
gobj, _ := obj.(geojson.Object)
if gobj == nil {
2016-03-19 17:16:19 +03:00
return false
}
2016-05-23 23:01:42 +03:00
if fence.roam.on {
// we need to check this object against
return false
}
switch fence.cmd {
case "nearby":
// nearby is an INTERSECT on a Circle
return gobj.Intersects(fence.obj)
case "within":
return gobj.Within(fence.obj)
case "intersects":
return gobj.Intersects(fence.obj)
2016-03-19 17:16:19 +03:00
}
return false
}
2016-05-23 23:01:42 +03:00
func fenceMatchNearbys(
s *Server, fence *liveFenceSwitches,
id string, obj geojson.Object,
) (nearbys []roamMatch) {
if obj == nil {
return nil
}
col := s.getCol(fence.roam.key)
2016-05-23 23:01:42 +03:00
if col == nil {
return nil
2016-05-23 23:01:42 +03:00
}
2019-01-06 20:23:57 +03:00
center := obj.Center()
minLat, minLon, maxLat, maxLon :=
geo.RectFromCenter(center.Y, center.X, fence.roam.meters)
rect := geometry.Rect{
Min: geometry.Point{X: minLon, Y: minLat},
Max: geometry.Point{X: maxLon, Y: maxLat},
}
2019-04-24 15:09:41 +03:00
col.Intersects(geojson.NewRect(rect), 0, nil, nil, func(
id2 string, obj2 geojson.Object, fields []float64,
) bool {
if s.hasExpired(fence.roam.key, id2) {
return true // skip expired
}
var idMatch bool
if id2 == id {
return true // skip self
}
meters := obj.Distance(obj2)
if meters > fence.roam.meters {
return true // skip outside radius
}
if fence.roam.pattern {
idMatch, _ = glob.Match(fence.roam.id, id2)
} else {
idMatch = fence.roam.id == id2
}
if !idMatch {
return true // skip non-id match
}
match := roamMatch{
id: id2,
obj: obj2,
meters: obj.Distance(obj2),
}
nearbys = append(nearbys, match)
return true
})
return nearbys
}
2018-08-23 02:26:27 +03:00
func fenceMatchRoam(
s *Server, fence *liveFenceSwitches,
id string, old, obj geojson.Object,
) (nearbys, faraways []roamMatch) {
oldNearbys := fenceMatchNearbys(s, fence, id, old)
newNearbys := fenceMatchNearbys(s, fence, id, obj)
// Go through all matching objects in new-nearbys and old-nearbys.
for i := 0; i < len(oldNearbys); i++ {
var match bool
var j int
for ; j < len(newNearbys); j++ {
if newNearbys[j].id == oldNearbys[i].id {
match = true
break
2018-08-14 20:48:28 +03:00
}
}
if match {
// dwelling, more from old-nearbys
oldNearbys[i] = oldNearbys[len(oldNearbys)-1]
oldNearbys = oldNearbys[:len(oldNearbys)-1]
2020-03-25 22:47:55 +03:00
i--
if fence.nodwell {
// no dwelling allowed, remove from both lists
newNearbys[j] = newNearbys[len(newNearbys)-1]
newNearbys = newNearbys[:len(newNearbys)-1]
}
2018-08-14 20:48:28 +03:00
}
}
faraways, nearbys = oldNearbys, newNearbys
2020-03-25 23:01:11 +03:00
// ensure the faraways distances are to the new object
for i := 0; i < len(faraways); i++ {
faraways[i].meters = faraways[i].obj.Distance(obj)
}
2020-03-25 23:01:11 +03:00
sortRoamMatches(faraways)
sortRoamMatches(nearbys)
return nearbys, faraways
2016-05-23 23:01:42 +03:00
}
2020-03-25 23:01:11 +03:00
// sortRoamMatches stable sorts roam matches
func sortRoamMatches(matches []roamMatch) {
sort.Slice(matches, func(i, j int) bool {
if matches[i].meters < matches[j].meters {
return true
}
if matches[i].meters > matches[j].meters {
return false
}
return matches[i].id < matches[j].id
})
}