2018-10-12 02:45:19 -07:00
|
|
|
// Copyright 2017 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package tsdb
|
|
|
|
|
|
|
|
import (
|
2020-07-31 08:03:02 -07:00
|
|
|
"github.com/pkg/errors"
|
2020-10-22 02:00:08 -07:00
|
|
|
|
2021-11-08 06:23:17 -08:00
|
|
|
"github.com/prometheus/prometheus/model/labels"
|
2021-11-06 03:10:04 -07:00
|
|
|
"github.com/prometheus/prometheus/storage"
|
2019-08-13 01:34:14 -07:00
|
|
|
"github.com/prometheus/prometheus/tsdb/chunkenc"
|
|
|
|
"github.com/prometheus/prometheus/tsdb/chunks"
|
2019-09-19 02:15:41 -07:00
|
|
|
"github.com/prometheus/prometheus/tsdb/tombstones"
|
2018-10-12 02:45:19 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
type mockIndexWriter struct {
|
2020-07-31 08:03:02 -07:00
|
|
|
seriesChunks []series
|
2018-10-12 02:45:19 -07:00
|
|
|
}
|
|
|
|
|
2020-07-31 08:03:02 -07:00
|
|
|
func copyChunk(c chunkenc.Chunk) (chunkenc.Chunk, error) {
|
|
|
|
b := c.Bytes()
|
|
|
|
nb := make([]byte, len(b))
|
|
|
|
copy(nb, b)
|
|
|
|
return chunkenc.FromData(c.Encoding(), nb)
|
|
|
|
}
|
2018-10-12 02:45:19 -07:00
|
|
|
|
2020-07-31 08:03:02 -07:00
|
|
|
func (mockIndexWriter) AddSymbol(string) error { return nil }
|
2021-11-06 03:10:04 -07:00
|
|
|
func (m *mockIndexWriter) AddSeries(_ storage.SeriesRef, l labels.Labels, chks ...chunks.Meta) error {
|
2020-07-31 08:03:02 -07:00
|
|
|
// Copy chunks as their bytes are pooled.
|
|
|
|
chksNew := make([]chunks.Meta, len(chks))
|
|
|
|
for i, chk := range chks {
|
|
|
|
c, err := copyChunk(chk.Chunk)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "mockIndexWriter: copy chunk")
|
2018-10-12 02:45:19 -07:00
|
|
|
}
|
2020-07-31 08:03:02 -07:00
|
|
|
chksNew[i] = chunks.Meta{MaxTime: chk.MaxTime, MinTime: chk.MinTime, Chunk: c}
|
2018-10-12 02:45:19 -07:00
|
|
|
}
|
2020-07-31 08:03:02 -07:00
|
|
|
|
|
|
|
// We don't combine multiple same series together, by design as `AddSeries` requires full series to be saved.
|
|
|
|
m.seriesChunks = append(m.seriesChunks, series{l: l, chunks: chksNew})
|
2018-10-12 02:45:19 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-31 08:03:02 -07:00
|
|
|
func (mockIndexWriter) WriteLabelIndex([]string, []string) error { return nil }
|
|
|
|
func (mockIndexWriter) Close() error { return nil }
|
2018-10-12 02:45:19 -07:00
|
|
|
|
|
|
|
type mockBReader struct {
|
2019-02-14 05:29:41 -08:00
|
|
|
ir IndexReader
|
|
|
|
cr ChunkReader
|
|
|
|
mint int64
|
|
|
|
maxt int64
|
2018-10-12 02:45:19 -07:00
|
|
|
}
|
|
|
|
|
2020-03-25 12:13:47 -07:00
|
|
|
func (r *mockBReader) Index() (IndexReader, error) { return r.ir, nil }
|
|
|
|
func (r *mockBReader) Chunks() (ChunkReader, error) { return r.cr, nil }
|
2019-09-19 02:15:41 -07:00
|
|
|
func (r *mockBReader) Tombstones() (tombstones.Reader, error) {
|
|
|
|
return tombstones.NewMemTombstones(), nil
|
|
|
|
}
|
|
|
|
func (r *mockBReader) Meta() BlockMeta { return BlockMeta{MinTime: r.mint, MaxTime: r.maxt} }
|
2020-10-12 14:15:40 -07:00
|
|
|
func (r *mockBReader) Size() int64 { return 0 }
|