mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
172 lines
5.0 KiB
Go
172 lines
5.0 KiB
Go
package managedstream
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
|
"github.com/grafana/grafana-plugin-sdk-go/data"
|
|
"github.com/grafana/grafana-plugin-sdk-go/live"
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/util"
|
|
)
|
|
|
|
var (
|
|
logger = log.New("live.managed_stream")
|
|
)
|
|
|
|
// Runner keeps ManagedStream per streamID.
|
|
type Runner struct {
|
|
mu sync.RWMutex
|
|
streams map[string]*ManagedStream
|
|
publisher models.ChannelPublisher
|
|
}
|
|
|
|
// NewRunner creates new Runner.
|
|
func NewRunner(publisher models.ChannelPublisher) *Runner {
|
|
return &Runner{
|
|
publisher: publisher,
|
|
streams: map[string]*ManagedStream{},
|
|
}
|
|
}
|
|
|
|
// Streams returns a map of active managed streams (per streamID).
|
|
func (r *Runner) Streams() map[string]*ManagedStream {
|
|
r.mu.RLock()
|
|
defer r.mu.RUnlock()
|
|
streams := make(map[string]*ManagedStream, len(r.streams))
|
|
for k, v := range r.streams {
|
|
streams[k] = v
|
|
}
|
|
return streams
|
|
}
|
|
|
|
// GetOrCreateStream -- for now this will create new manager for each key.
|
|
// Eventually, the stream behavior will need to be configured explicitly
|
|
func (r *Runner) GetOrCreateStream(streamID string) (*ManagedStream, error) {
|
|
r.mu.Lock()
|
|
defer r.mu.Unlock()
|
|
s, ok := r.streams[streamID]
|
|
if !ok {
|
|
s = NewManagedStream(streamID, r.publisher)
|
|
r.streams[streamID] = s
|
|
}
|
|
return s, nil
|
|
}
|
|
|
|
// ManagedStream holds the state of a managed stream.
|
|
type ManagedStream struct {
|
|
mu sync.RWMutex
|
|
id string
|
|
start time.Time
|
|
last map[string]json.RawMessage
|
|
publisher models.ChannelPublisher
|
|
}
|
|
|
|
// NewManagedStream creates new ManagedStream.
|
|
func NewManagedStream(id string, publisher models.ChannelPublisher) *ManagedStream {
|
|
return &ManagedStream{
|
|
id: id,
|
|
start: time.Now(),
|
|
last: map[string]json.RawMessage{},
|
|
publisher: publisher,
|
|
}
|
|
}
|
|
|
|
// ListChannels returns info for the UI about this stream.
|
|
func (s *ManagedStream) ListChannels(prefix string) []util.DynMap {
|
|
s.mu.RLock()
|
|
defer s.mu.RUnlock()
|
|
|
|
info := make([]util.DynMap, 0, len(s.last))
|
|
for k, v := range s.last {
|
|
ch := util.DynMap{}
|
|
ch["channel"] = prefix + k
|
|
ch["data"] = v
|
|
info = append(info, ch)
|
|
}
|
|
return info
|
|
}
|
|
|
|
// Push sends frame to the stream and saves it for later retrieval by subscribers.
|
|
// unstableSchema flag can be set to disable schema caching for a path.
|
|
func (s *ManagedStream) Push(path string, frame *data.Frame, unstableSchema bool) error {
|
|
// Keep schema + data for last packet.
|
|
frameJSON, err := data.FrameToJSON(frame, true, true)
|
|
if err != nil {
|
|
logger.Error("Error marshaling frame with Schema", "error", err)
|
|
return err
|
|
}
|
|
|
|
if !unstableSchema {
|
|
// If schema is stable we can safely cache it, and only send values if
|
|
// stream already has schema cached.
|
|
s.mu.Lock()
|
|
_, exists := s.last[path]
|
|
s.last[path] = frameJSON
|
|
s.mu.Unlock()
|
|
|
|
// When the packet already exits, only send the data.
|
|
// TODO: maybe a good idea would be MarshalJSON function of
|
|
// frame to keep Schema JSON and Values JSON in frame object
|
|
// to avoid encoding twice.
|
|
if exists {
|
|
frameJSON, err = data.FrameToJSON(frame, false, true)
|
|
if err != nil {
|
|
logger.Error("Error marshaling Frame to JSON", "error", err)
|
|
return err
|
|
}
|
|
}
|
|
} else {
|
|
// For unstable schema we always need to send everything to a connection.
|
|
// And we don't want to cache schema for unstable case. But we still need to
|
|
// set path to a map to make stream visible in UI stream select widget.
|
|
s.mu.Lock()
|
|
s.last[path] = nil
|
|
s.mu.Unlock()
|
|
}
|
|
// The channel this will be posted into.
|
|
channel := live.Channel{Scope: live.ScopeStream, Namespace: s.id, Path: path}.String()
|
|
logger.Debug("Publish data to channel", "channel", channel, "dataLength", len(frameJSON))
|
|
return s.publisher(channel, frameJSON)
|
|
}
|
|
|
|
// getLastPacket retrieves schema for a channel.
|
|
func (s *ManagedStream) getLastPacket(path string) (json.RawMessage, bool) {
|
|
s.mu.RLock()
|
|
defer s.mu.RUnlock()
|
|
schema, ok := s.last[path]
|
|
return schema, ok && schema != nil
|
|
}
|
|
|
|
func (s *ManagedStream) GetHandlerForPath(_ string) (models.ChannelHandler, error) {
|
|
return s, nil
|
|
}
|
|
|
|
func (s *ManagedStream) OnSubscribe(_ context.Context, _ *models.SignedInUser, e models.SubscribeEvent) (models.SubscribeReply, backend.SubscribeStreamStatus, error) {
|
|
reply := models.SubscribeReply{}
|
|
packet, ok := s.getLastPacket(e.Path)
|
|
if ok {
|
|
reply.Data = packet
|
|
}
|
|
return reply, backend.SubscribeStreamStatusOK, nil
|
|
}
|
|
|
|
func (s *ManagedStream) OnPublish(_ context.Context, _ *models.SignedInUser, evt models.PublishEvent) (models.PublishReply, backend.PublishStreamStatus, error) {
|
|
var frame data.Frame
|
|
err := json.Unmarshal(evt.Data, &frame)
|
|
if err != nil {
|
|
// Stream scope only deals with data frames.
|
|
return models.PublishReply{}, 0, err
|
|
}
|
|
err = s.Push(evt.Path, &frame, true)
|
|
if err != nil {
|
|
// Stream scope only deals with data frames.
|
|
return models.PublishReply{}, 0, err
|
|
}
|
|
return models.PublishReply{}, backend.PublishStreamStatusOK, nil
|
|
}
|