prometheus/chunks/chunk.go

82 lines
1.6 KiB
Go
Raw Normal View History

2016-11-15 01:33:34 -08:00
package chunks
import (
"encoding/binary"
"errors"
"fmt"
)
// Encoding is the identifier for a chunk encoding
type Encoding uint8
func (e Encoding) String() string {
switch e {
case EncNone:
return "none"
case EncXOR:
return "XOR"
}
return "<unknown>"
}
// The different available chunk encodings.
const (
EncNone Encoding = iota
EncXOR
)
var (
// ErrChunkFull is returned if the remaining size of a chunk cannot
// fit the appended data.
ErrChunkFull = errors.New("chunk full")
)
// Chunk holds a sequence of sample pairs that can be iterated over and appended to.
type Chunk interface {
Bytes() []byte
2016-12-09 11:45:46 -08:00
Encoding() Encoding
Appender() (Appender, error)
2016-11-15 01:33:34 -08:00
Iterator() Iterator
}
2016-12-09 11:45:46 -08:00
// FromData returns a chunk from a byte slice of chunk data.
func FromData(e Encoding, d []byte) (Chunk, error) {
2016-11-15 01:33:34 -08:00
switch e {
case EncXOR:
return &XORChunk{
b: &bstream{count: 8},
2016-12-09 11:45:46 -08:00
num: binary.LittleEndian.Uint16(d),
}, nil
2016-11-15 01:33:34 -08:00
}
return nil, fmt.Errorf("unknown chunk encoding: %d", e)
}
// Iterator provides iterating access over sample pairs in chunks.
2016-11-15 01:33:34 -08:00
type Iterator interface {
StreamingIterator
2016-11-15 01:33:34 -08:00
// Seek(t int64) bool
// SeekBefore(t int64) bool
// Next() bool
// Values() (int64, float64)
// Err() error
2016-11-15 01:33:34 -08:00
}
// Appender adds sample pairs to a chunk.
type Appender interface {
Append(int64, float64) error
2016-11-15 01:33:34 -08:00
}
// StreamingIterator is a simple iterator that can only get the next value.
type StreamingIterator interface {
Values() (int64, float64)
Err() error
Next() bool
2016-11-15 01:33:34 -08:00
}
// fancyIterator wraps a StreamingIterator and implements a regular
// Iterator with it.
type fancyIterator struct {
StreamingIterator
2016-11-15 01:33:34 -08:00
}