199 lines
4.1 KiB
Go
199 lines
4.1 KiB
Go
package talkgroups
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"sync"
|
|
"time"
|
|
|
|
"dynatron.me/x/stillbox/pkg/database"
|
|
|
|
"dynatron.me/x/stillbox/internal/ruletime"
|
|
"dynatron.me/x/stillbox/internal/trending"
|
|
|
|
"github.com/jackc/pgx/v5"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type tgMap map[ID]Talkgroup
|
|
|
|
type Store interface {
|
|
// TG retrieves a Talkgroup from the Store.
|
|
TG(ctx context.Context, tg ID) (Talkgroup, error)
|
|
|
|
// SystemName retrieves a system name from the store. It returns the record and whether one was found.
|
|
SystemName(ctx context.Context, id int) (string, bool)
|
|
|
|
// ApplyAlertRules applies the score's talkgroup alert rules to the call occurring at t and returns the weighted score.
|
|
ApplyAlertRules(score trending.Score[ID], t time.Time, coversOpts ...ruletime.CoversOption) float64
|
|
|
|
// Hint hints the Store that the provided talkgroups will be asked for.
|
|
Hint(ctx context.Context, tgs []ID) error
|
|
|
|
// Load loads the provided packed talkgroup IDs into the Store.
|
|
Load(ctx context.Context, tgs []int64) error
|
|
|
|
// Invalidate invalidates any caching in the Store.
|
|
Invalidate()
|
|
}
|
|
|
|
type CtxStoreKeyT string
|
|
|
|
const CtxStoreKey CtxStoreKeyT = "store"
|
|
|
|
func CtxWithStore(ctx context.Context, s Store) context.Context {
|
|
return context.WithValue(ctx, CtxStoreKey, s)
|
|
}
|
|
|
|
func StoreFrom(ctx context.Context) Store {
|
|
s, ok := ctx.Value(CtxStoreKey).(Store)
|
|
if !ok {
|
|
return NewCache()
|
|
}
|
|
|
|
return s
|
|
}
|
|
|
|
func (t *cache) Invalidate() {
|
|
t.Lock()
|
|
defer t.Unlock()
|
|
clear(t.tgs)
|
|
clear(t.systems)
|
|
t.AlertConfig.Invalidate()
|
|
}
|
|
|
|
type cache struct {
|
|
sync.RWMutex
|
|
AlertConfig
|
|
tgs tgMap
|
|
systems map[int32]string
|
|
}
|
|
|
|
// NewCache returns a new cache Store.
|
|
func NewCache() Store {
|
|
tgc := &cache{
|
|
tgs: make(tgMap),
|
|
systems: make(map[int32]string),
|
|
AlertConfig: NewAlertConfig(),
|
|
}
|
|
|
|
return tgc
|
|
}
|
|
|
|
func (t *cache) Hint(ctx context.Context, tgs []ID) error {
|
|
t.RLock()
|
|
var toLoad []int64
|
|
if len(t.tgs) > len(tgs)/2 { // TODO: instrument this
|
|
for _, tg := range tgs {
|
|
_, ok := t.tgs[tg]
|
|
if !ok {
|
|
toLoad = append(toLoad, tg.Pack())
|
|
}
|
|
}
|
|
|
|
} else {
|
|
toLoad = make([]int64, 0, len(tgs))
|
|
for _, g := range tgs {
|
|
toLoad = append(toLoad, g.Pack())
|
|
}
|
|
}
|
|
|
|
if len(toLoad) > 0 {
|
|
t.RUnlock()
|
|
return t.Load(ctx, toLoad)
|
|
}
|
|
|
|
t.RUnlock()
|
|
return nil
|
|
}
|
|
|
|
func (t *cache) add(rec Talkgroup) error {
|
|
t.Lock()
|
|
defer t.Unlock()
|
|
|
|
tg := TG(rec.System.ID, int(rec.Talkgroup.Tgid))
|
|
t.tgs[tg] = rec
|
|
t.systems[int32(rec.System.ID)] = rec.System.Name
|
|
|
|
return t.AlertConfig.UnmarshalTGRules(tg, rec.Talkgroup.AlertConfig)
|
|
}
|
|
|
|
func rowToTalkgroup(r database.GetTalkgroupWithLearnedByPackedIDsRow) Talkgroup {
|
|
return Talkgroup{
|
|
Talkgroup: r.Talkgroup,
|
|
System: r.System,
|
|
Learned: r.Learned,
|
|
}
|
|
}
|
|
|
|
func (t *cache) Load(ctx context.Context, tgs []int64) error {
|
|
tgRecords, err := database.FromCtx(ctx).GetTalkgroupWithLearnedByPackedIDs(ctx, tgs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, rec := range tgRecords {
|
|
err := t.add(rowToTalkgroup(rec))
|
|
|
|
if err != nil {
|
|
log.Error().Err(err).Msg("add alert config fail")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
var ErrNotFound = errors.New("talkgroup not found")
|
|
|
|
func (t *cache) TG(ctx context.Context, tg ID) (Talkgroup, error) {
|
|
t.RLock()
|
|
rec, has := t.tgs[tg]
|
|
t.RUnlock()
|
|
|
|
if has {
|
|
return rec, nil
|
|
}
|
|
|
|
recs, err := database.FromCtx(ctx).GetTalkgroupWithLearnedByPackedIDs(ctx, []int64{tg.Pack()})
|
|
switch err {
|
|
case nil:
|
|
case pgx.ErrNoRows:
|
|
return Talkgroup{}, ErrNotFound
|
|
default:
|
|
log.Error().Err(err).Msg("TG() cache add db get")
|
|
return Talkgroup{}, errors.Join(ErrNotFound, err)
|
|
}
|
|
|
|
if len(recs) < 1 {
|
|
return Talkgroup{}, ErrNotFound
|
|
}
|
|
|
|
err = t.add(rowToTalkgroup(recs[0]))
|
|
if err != nil {
|
|
log.Error().Err(err).Msg("TG() cache add")
|
|
return rowToTalkgroup(recs[0]), errors.Join(ErrNotFound, err)
|
|
}
|
|
|
|
return rowToTalkgroup(recs[0]), nil
|
|
}
|
|
|
|
func (t *cache) SystemName(ctx context.Context, id int) (name string, has bool) {
|
|
t.RLock()
|
|
n, has := t.systems[int32(id)]
|
|
t.RUnlock()
|
|
|
|
if !has {
|
|
sys, err := database.FromCtx(ctx).GetSystemName(ctx, id)
|
|
if err != nil {
|
|
return "", false
|
|
}
|
|
|
|
t.Lock()
|
|
t.systems[int32(id)] = sys
|
|
t.Unlock()
|
|
|
|
return sys, true
|
|
}
|
|
|
|
return n, has
|
|
}
|