chronograf/multistore/protoboards.go

57 lines
1.4 KiB
Go

package multistore
import (
"context"
"github.com/influxdata/chronograf"
)
// Protoboards is a ProtoboardsStore that contains multiple ProtoboardsStores
// The All method will return the set of all Protoboards.
// Each method will be tried against the Stores slice serially.
type Protoboards struct {
Stores []chronograf.ProtoboardsStore
}
// All returns the set of all protoboards
func (s *Protoboards) All(ctx context.Context) ([]chronograf.Protoboard, error) {
all := []chronograf.Protoboard{}
protoboardSet := map[string]chronograf.Protoboard{}
ok := false
var err error
for _, store := range s.Stores {
var protoboards []chronograf.Protoboard
protoboards, err = store.All(ctx)
if err != nil {
// Try to load as many protoboards as possible
continue
}
ok = true
for _, l := range protoboards {
// Enforce that the protoboard has a unique ID
// If the protoboard has been seen before then skip
if _, okay := protoboardSet[l.ID]; !okay {
protoboardSet[l.ID] = l
all = append(all, l)
}
}
}
if !ok {
return nil, err
}
return all, nil
}
// Get retrieves protoboard if `ID` exists. Searches through each store sequentially until success.
func (s *Protoboards) Get(ctx context.Context, ID string) (chronograf.Protoboard, error) {
var err error
for _, store := range s.Stores {
var l chronograf.Protoboard
l, err = store.Get(ctx, ID)
if err == nil {
return l, nil
}
}
return chronograf.Protoboard{}, err
}