|
|
@ -2,8 +2,10 @@ package storage
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
import (
|
|
|
|
"math/rand"
|
|
|
|
"math/rand"
|
|
|
|
|
|
|
|
"sort"
|
|
|
|
"testing"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"github.com/fabxc/tsdb/labels"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
@ -121,3 +123,59 @@ func TestBufferedSeriesIterator(t *testing.T) {
|
|
|
|
|
|
|
|
|
|
|
|
require.False(t, it.Next(), "next succeeded unexpectedly")
|
|
|
|
require.False(t, it.Next(), "next succeeded unexpectedly")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type mockSeriesIterator struct {
|
|
|
|
|
|
|
|
seek func(int64) bool
|
|
|
|
|
|
|
|
values func() (int64, float64)
|
|
|
|
|
|
|
|
next func() bool
|
|
|
|
|
|
|
|
err func() error
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *mockSeriesIterator) Seek(t int64) bool { return m.seek(t) }
|
|
|
|
|
|
|
|
func (m *mockSeriesIterator) Values() (int64, float64) { return m.values() }
|
|
|
|
|
|
|
|
func (m *mockSeriesIterator) Next() bool { return m.next() }
|
|
|
|
|
|
|
|
func (m *mockSeriesIterator) Err() error { return m.err() }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type mockSeries struct {
|
|
|
|
|
|
|
|
labels func() labels.Labels
|
|
|
|
|
|
|
|
iterator func() SeriesIterator
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *mockSeries) Labels() labels.Labels { return m.labels() }
|
|
|
|
|
|
|
|
func (m *mockSeries) Iterator() SeriesIterator { return m.iterator() }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type listSeriesIterator struct {
|
|
|
|
|
|
|
|
list []sample
|
|
|
|
|
|
|
|
idx int
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func newListSeriesIterator(list []sample) *listSeriesIterator {
|
|
|
|
|
|
|
|
return &listSeriesIterator{list: list, idx: -1}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (it *listSeriesIterator) Values() (int64, float64) {
|
|
|
|
|
|
|
|
s := it.list[it.idx]
|
|
|
|
|
|
|
|
return s.t, s.v
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (it *listSeriesIterator) Next() bool {
|
|
|
|
|
|
|
|
it.idx++
|
|
|
|
|
|
|
|
return it.idx < len(it.list)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (it *listSeriesIterator) Seek(t int64) bool {
|
|
|
|
|
|
|
|
if it.idx == -1 {
|
|
|
|
|
|
|
|
it.idx = 0
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do binary search between current position and end.
|
|
|
|
|
|
|
|
it.idx = sort.Search(len(it.list)-it.idx, func(i int) bool {
|
|
|
|
|
|
|
|
s := it.list[i+it.idx]
|
|
|
|
|
|
|
|
return s.t >= t
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return it.idx < len(it.list)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (it *listSeriesIterator) Err() error {
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|