storj/cmd/statreceiver/copy.go

174 lines
4.7 KiB
Go
Raw Normal View History

2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package main
import (
"fmt"
"log"
"time"
2019-01-01 09:41:27 +00:00
"github.com/zeebo/errs"
)
// PacketCopier sends the same packet to multiple destinations
type PacketCopier struct {
2019-01-01 09:41:27 +00:00
dest []PacketDest
}
// NewPacketCopier creates a packet copier that sends the same packets to
// the provided different destinations
2019-01-01 09:41:27 +00:00
func NewPacketCopier(dest ...PacketDest) *PacketCopier {
return &PacketCopier{dest: dest}
}
// Packet implements the PacketDest interface
func (p *PacketCopier) Packet(data []byte, ts time.Time) (ferr error) {
2019-01-01 09:41:27 +00:00
var errlist errs.Group
for _, dest := range p.dest {
errlist.Add(dest.Packet(data, ts))
}
2019-01-01 09:41:27 +00:00
return errlist.Err()
}
// MetricCopier sends the same metric to multiple destinations
type MetricCopier struct {
2019-01-01 09:41:27 +00:00
dest []MetricDest
}
// NewMetricCopier creates a metric copier that sends the same metrics to
// the provided different destinations
2019-01-01 09:41:27 +00:00
func NewMetricCopier(dest ...MetricDest) *MetricCopier {
return &MetricCopier{dest: dest}
}
// Metric implements the MetricDest interface
func (m *MetricCopier) Metric(application, instance string,
key []byte, val float64, ts time.Time) (ferr error) {
2019-01-01 09:41:27 +00:00
var errlist errs.Group
for _, dest := range m.dest {
errlist.Add(dest.Metric(application, instance, key, val, ts))
}
2019-01-01 09:41:27 +00:00
return errlist.Err()
}
// Packet represents a single packet
type Packet struct {
Data []byte
TS time.Time
}
// PacketBuffer is a packet buffer. It has a given buffer size and allows
// packets to buffer in memory to deal with potentially variable processing
// speeds. PacketBuffers drop packets if the buffer is full.
type PacketBuffer struct {
ch chan Packet
}
// NewPacketBuffer makes a packet buffer with a buffer size of bufsize
func NewPacketBuffer(p PacketDest, bufsize int) *PacketBuffer {
ch := make(chan Packet, bufsize)
go func() {
for pkt := range ch {
err := p.Packet(pkt.Data, pkt.TS)
if err != nil {
log.Printf("failed delivering buffered packet: %v", err)
}
}
}()
return &PacketBuffer{ch: ch}
}
// Packet implements the PacketDest interface
func (p *PacketBuffer) Packet(data []byte, ts time.Time) error {
select {
case p.ch <- Packet{Data: data, TS: ts}:
return nil
default:
return fmt.Errorf("packet buffer overrun")
}
}
// Metric represents a single metric
type Metric struct {
Application string
Instance string
Key []byte
Val float64
TS time.Time
}
// MetricBuffer is a metric buffer. It has a given buffer size and allows
// metrics to buffer in memory to deal with potentially variable processing
// speeds. MetricBuffers drop metrics if the buffer is full.
type MetricBuffer struct {
ch chan Metric
}
// NewMetricBuffer makes a metric buffer with a buffer size of bufsize
func NewMetricBuffer(p MetricDest, bufsize int) *MetricBuffer {
ch := make(chan Metric, bufsize)
go func() {
for pkt := range ch {
err := p.Metric(pkt.Application, pkt.Instance, pkt.Key, pkt.Val, pkt.TS)
if err != nil {
log.Printf("failed delivering buffered metric: %v", err)
}
}
}()
return &MetricBuffer{ch: ch}
}
// Metric implements the MetricDest interface
func (p *MetricBuffer) Metric(application, instance string, key []byte,
val float64, ts time.Time) error {
select {
case p.ch <- Metric{
Application: application,
Instance: instance,
Key: key,
Val: val,
TS: ts}:
return nil
default:
return fmt.Errorf("metric buffer overrun")
}
}
// PacketBufPrep prepares a packet destination for a packet buffer.
// By default, packet memory is reused, which would cause data race conditions
// when a buffer is also used. PacketBufPrep copies the memory to make sure
// there are no data races
type PacketBufPrep struct {
2019-01-01 09:41:27 +00:00
dest PacketDest
}
// NewPacketBufPrep creates a PacketBufPrep
2019-01-01 09:41:27 +00:00
func NewPacketBufPrep(dest PacketDest) *PacketBufPrep {
return &PacketBufPrep{dest: dest}
}
// Packet implements the PacketDest interface
func (p *PacketBufPrep) Packet(data []byte, ts time.Time) error {
2019-01-01 09:41:27 +00:00
return p.dest.Packet(append([]byte(nil), data...), ts)
}
// MetricBufPrep prepares a metric destination for a metric buffer.
// By default, metric key memory is reused, which would cause data race
// conditions when a buffer is also used. MetricBufPrep copies the memory to
// make sure there are no data races
type MetricBufPrep struct {
2019-01-01 09:41:27 +00:00
dest MetricDest
}
// NewMetricBufPrep creates a MetricBufPrep
2019-01-01 09:41:27 +00:00
func NewMetricBufPrep(dest MetricDest) *MetricBufPrep {
return &MetricBufPrep{dest: dest}
}
// Metric implements the MetricDest interface
func (p *MetricBufPrep) Metric(application, instance string, key []byte,
val float64, ts time.Time) error {
2019-01-01 09:41:27 +00:00
return p.dest.Metric(application, instance, append([]byte(nil), key...), val, ts)
}