398 lines
13 KiB
Go
398 lines
13 KiB
Go
// Copyright 2021 Dolthub, Inc.
|
|
//
|
|
// 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 prolly
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/dolthub/dolt/go/store/hash"
|
|
"github.com/dolthub/dolt/go/store/prolly/message"
|
|
"github.com/dolthub/dolt/go/store/prolly/tree"
|
|
"github.com/dolthub/dolt/go/store/val"
|
|
)
|
|
|
|
const (
|
|
defaultMaxPending = 64 * 1024
|
|
)
|
|
|
|
// MutableMap is an ordered collection of val.Tuple backed by a Prolly Tree.
|
|
// Writes to the map are queued in a skip.List and periodically flushed when
|
|
// the maximum number of pending writes is exceeded.
|
|
|
|
type GenericMutableMap[MapType MapInterface, TreeMap tree.MapInterface[val.Tuple, val.Tuple, *val.TupleDesc]] struct {
|
|
flusher MutableMapFlusher[MapType, TreeMap]
|
|
// tuples contains the primary Prolly Tree and skip.List for this map.
|
|
tuples tree.MutableMap[val.Tuple, val.Tuple, *val.TupleDesc, TreeMap]
|
|
// stash, if not nil, contains a previous checkpoint of this map.
|
|
// stashes are created when a MutableMap has been check-pointed, but
|
|
// the number of in-memory pending writes exceeds, maxPending.
|
|
// In this case we stash a copy MutableMap containing the checkpoint,
|
|
// flush the pending writes and continue accumulating
|
|
stash *tree.MutableMap[val.Tuple, val.Tuple, *val.TupleDesc, TreeMap]
|
|
// keyDesc and valDesc are tuples descriptors for the map.
|
|
keyDesc *val.TupleDesc
|
|
valDesc *val.TupleDesc
|
|
// buffer size
|
|
maxPending int
|
|
}
|
|
|
|
type MutableMap = GenericMutableMap[Map, tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc]]
|
|
|
|
// MapInterface materializes all pending and applied mutations in the GenericMutableMap, producing the resulting MapInterface.
|
|
func (mut *GenericMutableMap[M, T]) MapInterface(ctx context.Context) (MapInterface, error) {
|
|
return mut.Map(ctx)
|
|
}
|
|
|
|
// Map materializes all pending and applied mutations in the GenericMutableMap, producing the specific MapInterface implementation
|
|
// that the struct has been specialized with.
|
|
func (mut *GenericMutableMap[M, T]) Map(ctx context.Context) (M, error) {
|
|
return mut.flusher.Map(ctx, mut)
|
|
}
|
|
|
|
func (mut *GenericMutableMap[M, T]) VisitGCRoots(ctx context.Context, roots func(hash.Hash) bool) error {
|
|
// flushPending in order to ensure that our tuples.Static root
|
|
// is a chunk which includes all of the reachable chunks for
|
|
// our edits, including chunked internal values like text,
|
|
// json and geometry.
|
|
err := mut.flushPending(ctx, true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
roots(mut.tuples.Static.GetRoot().HashOf())
|
|
if mut.stash != nil {
|
|
roots(mut.stash.Static.GetRoot().HashOf())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// newMutableMap returns a new MutableMap.
|
|
func newMutableMap(m Map) *MutableMap {
|
|
return &MutableMap{
|
|
tuples: m.tuples.Mutate(),
|
|
keyDesc: m.keyDesc,
|
|
valDesc: m.valDesc,
|
|
maxPending: defaultMaxPending,
|
|
flusher: ProllyFlusher{},
|
|
}
|
|
}
|
|
|
|
// newMutableMapWithDescriptors returns a new MutableMap with the key and value TupleDescriptors overridden to the
|
|
// values specified in |kd| and |vd|. This is useful if you are rewriting the data in a map to change its schema.
|
|
func newMutableMapWithDescriptors(m Map, kd, vd *val.TupleDesc) *MutableMap {
|
|
return &MutableMap{
|
|
tuples: m.tuples.Mutate(),
|
|
keyDesc: kd,
|
|
valDesc: vd,
|
|
maxPending: defaultMaxPending,
|
|
flusher: ProllyFlusher{},
|
|
}
|
|
}
|
|
|
|
func (mut *GenericMutableMap[M, T]) flushWithSerializer(ctx context.Context, s message.Serializer) (T, error) {
|
|
return mut.flusher.ApplyMutationsWithSerializer(ctx, s, mut)
|
|
}
|
|
|
|
// WithMaxPending returns a MutableMap with a new pending buffer size.
|
|
func (mut *GenericMutableMap[M, T]) WithMaxPending(max int) *GenericMutableMap[M, T] {
|
|
ret := *mut
|
|
ret.maxPending = max
|
|
return &ret
|
|
}
|
|
|
|
// NodeStore returns the map's NodeStore
|
|
func (mut *GenericMutableMap[M, T]) NodeStore() tree.NodeStore {
|
|
return mut.tuples.Static.GetNodeStore()
|
|
}
|
|
|
|
// Put adds the Tuple pair |key|, |value| to the MutableMap.
|
|
func (mut *GenericMutableMap[M, T]) Put(ctx context.Context, key, value val.Tuple) error {
|
|
if err := mut.tuples.Put(ctx, key, value); err != nil {
|
|
return err
|
|
}
|
|
if mut.tuples.Edits.Count() > mut.maxPending {
|
|
return mut.flushPending(ctx, false)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Delete deletes the pair keyed by |key| from the MutableMap.
|
|
func (mut *GenericMutableMap[M, T]) Delete(ctx context.Context, key val.Tuple) error {
|
|
return mut.tuples.Delete(ctx, key)
|
|
}
|
|
|
|
// Get fetches the Tuple pair keyed by |key|, if it exists, and passes it to |cb|.
|
|
// If the |key| is not present in the MutableMap, a nil Tuple pair is passed to |cb|.
|
|
func (mut *GenericMutableMap[M, T]) Get(ctx context.Context, key val.Tuple, cb tree.KeyValueFn[val.Tuple, val.Tuple]) (err error) {
|
|
return mut.tuples.Get(ctx, key, cb)
|
|
}
|
|
|
|
func (mut *GenericMutableMap[M, T]) GetPrefix(ctx context.Context, key val.Tuple, prefixDesc *val.TupleDesc, cb tree.KeyValueFn[val.Tuple, val.Tuple]) (err error) {
|
|
return mut.tuples.GetPrefix(ctx, key, prefixDesc, cb)
|
|
}
|
|
|
|
// Has returns true if |key| is present in the MutableMap.
|
|
func (mut *GenericMutableMap[M, T]) Has(ctx context.Context, key val.Tuple) (ok bool, err error) {
|
|
return mut.tuples.Has(ctx, key)
|
|
}
|
|
|
|
// HasPrefix returns true if a key with a matching prefix to |key| is present in the MutableMap.
|
|
func (mut *GenericMutableMap[M, T]) HasPrefix(ctx context.Context, key val.Tuple, prefixDesc *val.TupleDesc) (ok bool, err error) {
|
|
return mut.tuples.HasPrefix(ctx, key, prefixDesc)
|
|
}
|
|
|
|
// Checkpoint records a checkpoint that can be reverted to.
|
|
func (mut *GenericMutableMap[M, T]) Checkpoint(context.Context) error {
|
|
// discard previous stash, if one exists
|
|
mut.stash = nil
|
|
mut.tuples.Edits.Checkpoint()
|
|
return nil
|
|
}
|
|
|
|
// Revert discards writes made since the last checkpoint.
|
|
func (mut *GenericMutableMap[M, T]) Revert(ctx context.Context) {
|
|
// if we've accumulated a large number of writes
|
|
// since we check-pointed, our last checkpoint
|
|
// may be stashed in a separate tree.MutableMap
|
|
if mut.stash != nil {
|
|
mut.tuples = *mut.stash
|
|
return
|
|
}
|
|
mut.tuples.Edits.Revert(ctx)
|
|
}
|
|
|
|
func (mut *GenericMutableMap[M, T]) flushPending(ctx context.Context, deep bool) error {
|
|
stash := mut.stash
|
|
// if our in-memory edit set contains a checkpoint, we
|
|
// must stash a copy of |mut.tuples| we can revert to.
|
|
if mut.tuples.Edits.HasCheckpoint() {
|
|
cp := mut.tuples.Copy()
|
|
cp.Edits.Revert(ctx)
|
|
if deep {
|
|
// deep is used by online GC. In order to
|
|
// ensure that all internal chunk pointers in
|
|
// all reachable cached edits get visited by
|
|
// GC, we flush the checkpointed edits to
|
|
// storage as well.
|
|
//
|
|
// TODO: Because of the way apply mutations is
|
|
// currently coupled with GenericMutableMap,
|
|
// we construct this temporary generic mutable
|
|
// map to make the call we want to. This could
|
|
// be better if we could flush the map with a
|
|
// more straightforward call which passed
|
|
// along the dependencies.
|
|
tmpGMM := &GenericMutableMap[M, T]{
|
|
keyDesc: mut.keyDesc,
|
|
valDesc: mut.valDesc,
|
|
flusher: mut.flusher,
|
|
tuples: cp,
|
|
stash: nil,
|
|
maxPending: mut.maxPending,
|
|
}
|
|
err := tmpGMM.flushPending(ctx, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
stash = &tmpGMM.tuples
|
|
} else {
|
|
stash = &cp
|
|
}
|
|
}
|
|
serializer := mut.flusher.GetDefaultSerializer(ctx, mut)
|
|
sm, err := mut.flusher.ApplyMutationsWithSerializer(ctx, serializer, mut)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
mut.tuples.Static = sm
|
|
mut.tuples.Edits.Truncate() // reuse skip list
|
|
mut.stash = stash
|
|
return nil
|
|
}
|
|
|
|
// IterAll returns a mutableMapIter that iterates over the entire MutableMap.
|
|
func (mut *GenericMutableMap[M, T]) IterAll(ctx context.Context) (MapIter, error) {
|
|
rng := Range{Fields: nil, Desc: mut.keyDesc}
|
|
return mut.IterRange(ctx, rng)
|
|
}
|
|
|
|
// IterKeyRange iterates over a physical key range defined by |start| and
|
|
// |stop|. If |start| and/or |stop| is nil, the range will be open
|
|
// towards that end.
|
|
func (mut *GenericMutableMap[M, T]) IterKeyRange(ctx context.Context, start, stop val.Tuple) (MapIter, error) {
|
|
return mut.tuples.Static.IterKeyRange(ctx, start, stop)
|
|
}
|
|
|
|
// IterRange returns a MapIter that iterates over a Range.
|
|
func (mut *GenericMutableMap[M, T]) IterRange(ctx context.Context, rng Range) (MapIter, error) {
|
|
treeIter, err := treeIterFromRange(ctx, mut.tuples.Static.GetRoot(), mut.tuples.Static.GetNodeStore(), rng)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
memIter, err := memIterFromRange(ctx, mut.tuples.Edits, rng)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
iter := &mutableMapIter[val.Tuple, val.Tuple, *val.TupleDesc]{
|
|
memory: memIter,
|
|
prolly: treeIter,
|
|
order: rng.Desc,
|
|
}
|
|
|
|
return filteredIter{iter: iter, rng: rng}, err
|
|
}
|
|
|
|
// HasEdits returns true when the MutableMap has performed at least one Put or Delete operation. This does not indicate
|
|
// whether the materialized map contains different values to the contained unedited map.
|
|
func (mut *GenericMutableMap[M, T]) HasEdits() bool {
|
|
return mut.tuples.Edits.Count() > 0
|
|
}
|
|
|
|
// Descriptors returns the key and value val.TupleDesc.
|
|
func (mut *GenericMutableMap[M, T]) Descriptors() (*val.TupleDesc, *val.TupleDesc) {
|
|
return mut.keyDesc, mut.valDesc
|
|
}
|
|
|
|
type tupleIter struct {
|
|
tuples []val.Tuple
|
|
}
|
|
|
|
var _ TupleIter = &tupleIter{}
|
|
|
|
func (s *tupleIter) Next(context.Context) (k, v val.Tuple) {
|
|
if len(s.tuples) > 0 {
|
|
k, v = s.tuples[0], s.tuples[1]
|
|
s.tuples = s.tuples[2:]
|
|
}
|
|
return
|
|
}
|
|
|
|
// mutationIter wraps a TupleIter as a MutationIter.
|
|
type mutationIter struct {
|
|
iter TupleIter
|
|
}
|
|
|
|
var _ tree.MutationIter = mutationIter{}
|
|
|
|
func (m mutationIter) NextMutation(ctx context.Context) (mutation tree.Mutation) {
|
|
k, v := m.iter.Next(ctx)
|
|
return tree.Mutation{
|
|
Key: tree.Item(k),
|
|
Value: tree.Item(v),
|
|
}
|
|
}
|
|
|
|
func (m mutationIter) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func debugFormat(ctx context.Context, m *MutableMap) (string, error) {
|
|
kd, vd := m.keyDesc, m.valDesc
|
|
|
|
editIter := m.tuples.Edits.IterAtStart()
|
|
iter, err := m.tuples.Static.IterAll(ctx)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
var sb strings.Builder
|
|
sb.WriteString("Mutable Map {\n")
|
|
|
|
c := strconv.Itoa(m.tuples.Edits.Count())
|
|
sb.WriteString("\tedits (count: " + c + ") {\n")
|
|
for {
|
|
k, v := editIter.Current()
|
|
if k == nil {
|
|
break
|
|
}
|
|
sb.WriteString("\t\t")
|
|
sb.WriteString(kd.Format(ctx, k))
|
|
sb.WriteString(": ")
|
|
sb.WriteString(vd.Format(ctx, v))
|
|
sb.WriteString(",\n")
|
|
editIter.Advance()
|
|
}
|
|
sb.WriteString("\t},\n")
|
|
|
|
ci, err := m.tuples.Static.Count()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
c = strconv.Itoa(ci)
|
|
sb.WriteString("\tTree (count: " + c + ") {\n")
|
|
for {
|
|
k, v, err := iter.Next(ctx)
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
sb.WriteString("\t\t")
|
|
sb.WriteString(kd.Format(ctx, k))
|
|
sb.WriteString(": ")
|
|
sb.WriteString(vd.Format(ctx, v))
|
|
sb.WriteString(",\n")
|
|
}
|
|
sb.WriteString("\t}\n}\n")
|
|
return sb.String(), nil
|
|
}
|
|
|
|
type ProllyFlusher struct{}
|
|
|
|
func (f ProllyFlusher) GetDefaultSerializer(ctx context.Context, mut *GenericMutableMap[Map, tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc]]) message.Serializer {
|
|
return message.NewProllyMapSerializer(mut.valDesc, mut.NodeStore().Pool())
|
|
}
|
|
|
|
func (f ProllyFlusher) Map(ctx context.Context, mut *GenericMutableMap[Map, tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc]]) (Map, error) {
|
|
s := f.GetDefaultSerializer(ctx, mut)
|
|
treeMap, err := f.ApplyMutationsWithSerializer(ctx, s, mut)
|
|
if err != nil {
|
|
return Map{}, err
|
|
}
|
|
return Map{
|
|
tuples: treeMap,
|
|
keyDesc: mut.keyDesc,
|
|
valDesc: mut.valDesc,
|
|
}, nil
|
|
}
|
|
|
|
var _ MutableMapFlusher[Map, tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc]] = ProllyFlusher{}
|
|
|
|
func (f ProllyFlusher) ApplyMutations(ctx context.Context, m *GenericMutableMap[Map, tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc]]) (tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc], error) {
|
|
serializer := message.NewProllyMapSerializer(m.valDesc, m.NodeStore().Pool())
|
|
return f.ApplyMutationsWithSerializer(ctx, serializer, m)
|
|
}
|
|
|
|
func (f ProllyFlusher) ApplyMutationsWithSerializer(
|
|
ctx context.Context,
|
|
serializer message.Serializer,
|
|
m *GenericMutableMap[Map, tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc]],
|
|
) (tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc], error) {
|
|
newRoot, err := tree.ApplyMutations(ctx, m.NodeStore(), m.tuples.Static.GetRoot(), m.keyDesc, serializer, m.tuples.Mutations())
|
|
if err != nil {
|
|
return tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc]{}, err
|
|
}
|
|
return tree.StaticMap[val.Tuple, val.Tuple, *val.TupleDesc]{
|
|
Root: newRoot,
|
|
NodeStore: m.NodeStore(),
|
|
Order: m.keyDesc,
|
|
}, nil
|
|
}
|