490 lines
11 KiB
Go
490 lines
11 KiB
Go
// Copyright 2019 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.
|
|
//
|
|
// This file incorporates work covered by the following copyright and
|
|
// permission notice:
|
|
//
|
|
// Copyright 2016 Attic Labs, Inc. All rights reserved.
|
|
// Licensed under the Apache License, version 2.0:
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
package chunks
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/dolthub/dolt/go/store/constants"
|
|
"github.com/dolthub/dolt/go/store/d"
|
|
"github.com/dolthub/dolt/go/store/hash"
|
|
)
|
|
|
|
// MemoryStorage provides a "persistent" storage layer to back multiple
|
|
// MemoryStoreViews. A MemoryStorage instance holds the ground truth for the
|
|
// root and set of chunks that are visible to all MemoryStoreViews vended by
|
|
// NewView(), allowing them to implement the transaction-style semantics that
|
|
// ChunkStore requires.
|
|
type MemoryStorage struct {
|
|
data map[hash.Hash]Chunk
|
|
version string
|
|
mu sync.RWMutex
|
|
rootHash hash.Hash
|
|
}
|
|
|
|
// NewView vends a MemoryStoreView backed by this MemoryStorage. It's
|
|
// initialized with the currently "persisted" root.
|
|
func (ms *MemoryStorage) NewView() ChunkStore {
|
|
version := ms.version
|
|
if version == "" {
|
|
version = constants.FormatDoltString
|
|
}
|
|
v := &MemoryStoreView{storage: ms, rootHash: ms.rootHash, version: version}
|
|
v.gcCond = sync.NewCond(&v.mu)
|
|
|
|
return v
|
|
}
|
|
|
|
// NewViewWithFormat makes a MemoryStoreView with a specific NomsBinFormat.
|
|
func (ms *MemoryStorage) NewViewWithFormat(nbf string) ChunkStore {
|
|
v := &MemoryStoreView{storage: ms, rootHash: ms.rootHash, version: nbf}
|
|
v.gcCond = sync.NewCond(&v.mu)
|
|
return v
|
|
}
|
|
|
|
// NewViewWithDefaultFormat vends a MemoryStoreView backed by this MemoryStorage. It's
|
|
// initialized with the currently "persisted" root. Uses the default format.
|
|
func (ms *MemoryStorage) NewViewWithDefaultFormat() ChunkStore {
|
|
v := &MemoryStoreView{storage: ms, rootHash: ms.rootHash, version: constants.FormatDefaultString}
|
|
v.gcCond = sync.NewCond(&v.mu)
|
|
return v
|
|
}
|
|
|
|
// Get retrieves the Chunk with the Hash h, returning EmptyChunk if it's not
|
|
// present.
|
|
func (ms *MemoryStorage) Get(ctx context.Context, h hash.Hash) (Chunk, error) {
|
|
if err := ctx.Err(); err != nil {
|
|
return Chunk{}, err
|
|
}
|
|
ms.mu.RLock()
|
|
defer ms.mu.RUnlock()
|
|
if c, ok := ms.data[h]; ok {
|
|
return c, nil
|
|
}
|
|
return EmptyChunk, nil
|
|
}
|
|
|
|
// Has returns true if the Chunk with the Hash h is present in ms.data, false
|
|
// if not.
|
|
func (ms *MemoryStorage) Has(ctx context.Context, r hash.Hash) (bool, error) {
|
|
ms.mu.RLock()
|
|
defer ms.mu.RUnlock()
|
|
_, ok := ms.data[r]
|
|
return ok, nil
|
|
}
|
|
|
|
// Len returns the number of Chunks in ms.data.
|
|
func (ms *MemoryStorage) Len() int {
|
|
ms.mu.RLock()
|
|
defer ms.mu.RUnlock()
|
|
return len(ms.data)
|
|
}
|
|
|
|
// Root returns the currently "persisted" root hash of this in-memory store.
|
|
func (ms *MemoryStorage) Root(ctx context.Context) hash.Hash {
|
|
ms.mu.RLock()
|
|
defer ms.mu.RUnlock()
|
|
return ms.rootHash
|
|
}
|
|
|
|
// Update checks the "persisted" root against last and, iff it matches,
|
|
// updates the root to current, adds all of novel to ms.data, and returns
|
|
// true. Otherwise returns false.
|
|
func (ms *MemoryStorage) Update(current, last hash.Hash, novel map[hash.Hash]Chunk) bool {
|
|
ms.mu.Lock()
|
|
defer ms.mu.Unlock()
|
|
if last != ms.rootHash {
|
|
return false
|
|
}
|
|
if ms.data == nil {
|
|
ms.data = map[hash.Hash]Chunk{}
|
|
}
|
|
for h, c := range novel {
|
|
ms.data[h] = c
|
|
}
|
|
ms.rootHash = current
|
|
return true
|
|
}
|
|
|
|
// MemoryStoreView is an in-memory implementation of store.ChunkStore. Useful
|
|
// mainly for tests.
|
|
// The proper way to get one:
|
|
// storage := &MemoryStorage{}
|
|
// ms := storage.NewView()
|
|
type MemoryStoreView struct {
|
|
pending map[hash.Hash]Chunk
|
|
pendingRefs hash.HashSet
|
|
gcCond *sync.Cond
|
|
keeperFunc func(hash.Hash) bool
|
|
storage *MemoryStorage
|
|
version string
|
|
mu sync.RWMutex
|
|
rootHash hash.Hash
|
|
isGC bool
|
|
}
|
|
|
|
var _ ChunkStore = &MemoryStoreView{}
|
|
var _ ChunkStoreGarbageCollector = &MemoryStoreView{}
|
|
|
|
func (ms *MemoryStoreView) Get(ctx context.Context, h hash.Hash) (Chunk, error) {
|
|
ms.mu.RLock()
|
|
defer ms.mu.RUnlock()
|
|
if c, ok := ms.pending[h]; ok {
|
|
return c, nil
|
|
}
|
|
return ms.storage.Get(ctx, h)
|
|
}
|
|
|
|
func (ms *MemoryStoreView) GetMany(ctx context.Context, hashes hash.HashSet, found func(context.Context, *Chunk)) error {
|
|
for h := range hashes {
|
|
c, err := ms.Get(ctx, h)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !c.IsEmpty() {
|
|
found(ctx, &c)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Has(ctx context.Context, h hash.Hash) (bool, error) {
|
|
ms.mu.RLock()
|
|
defer ms.mu.RUnlock()
|
|
if _, ok := ms.pending[h]; ok {
|
|
return true, nil
|
|
}
|
|
return ms.storage.Has(ctx, h)
|
|
}
|
|
|
|
func (ms *MemoryStoreView) HasMany(ctx context.Context, hashes hash.HashSet) (hash.HashSet, error) {
|
|
absent := hash.HashSet{}
|
|
for h := range hashes {
|
|
exists, err := ms.Has(ctx, h)
|
|
if err != nil {
|
|
return nil, err
|
|
} else if !exists {
|
|
absent.Insert(h)
|
|
}
|
|
}
|
|
return absent, nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Version() string {
|
|
return ms.version
|
|
}
|
|
|
|
func (ms *MemoryStoreView) AccessMode() ExclusiveAccessMode {
|
|
return ExclusiveAccessMode_Shared
|
|
}
|
|
|
|
func (ms *MemoryStoreView) errorIfDangling(ctx context.Context, addrs hash.HashSet) error {
|
|
absent := hash.NewHashSet()
|
|
for h := range addrs {
|
|
if _, ok := ms.pending[h]; ok {
|
|
continue
|
|
}
|
|
ok, err := ms.storage.Has(ctx, h)
|
|
if err != nil {
|
|
return err
|
|
} else if !ok {
|
|
absent.Insert(h)
|
|
}
|
|
}
|
|
if absent.Size() != 0 {
|
|
return fmt.Errorf("Found dangling references to %s", absent.String())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Put(ctx context.Context, c Chunk, getAddrs InsertAddrsCurry) error {
|
|
if err := ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
addrs := hash.NewHashSet()
|
|
err := getAddrs(c)(ctx, addrs, NoopPendingRefExists)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ms.mu.Lock()
|
|
defer ms.mu.Unlock()
|
|
|
|
if ms.keeperFunc != nil {
|
|
if ms.keeperFunc(c.Hash()) {
|
|
ms.waitForGC()
|
|
}
|
|
}
|
|
|
|
if ms.pendingRefs == nil {
|
|
ms.pendingRefs = addrs
|
|
} else {
|
|
ms.pendingRefs.InsertAll(addrs)
|
|
}
|
|
|
|
if ms.pending == nil {
|
|
ms.pending = map[hash.Hash]Chunk{}
|
|
}
|
|
ms.pending[c.Hash()] = c
|
|
|
|
return nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Len() int {
|
|
ms.mu.RLock()
|
|
defer ms.mu.RUnlock()
|
|
return len(ms.pending) + ms.storage.Len()
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Rebase(ctx context.Context) error {
|
|
ms.mu.Lock()
|
|
defer ms.mu.Unlock()
|
|
ms.rootHash = ms.storage.Root(ctx)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Root(ctx context.Context) (hash.Hash, error) {
|
|
ms.mu.RLock()
|
|
defer ms.mu.RUnlock()
|
|
return ms.rootHash, nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) waitForGC() {
|
|
for ms.isGC {
|
|
ms.gcCond.Wait()
|
|
}
|
|
}
|
|
|
|
func (ms *MemoryStoreView) transitionToGC(keeperFunc func(hash.Hash) bool) error {
|
|
ms.mu.Lock()
|
|
defer ms.mu.Unlock()
|
|
if ms.isGC == true {
|
|
return errors.New("gc already in progress")
|
|
}
|
|
ms.isGC = true
|
|
ms.keeperFunc = keeperFunc
|
|
ms.gcCond.Broadcast()
|
|
return nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) transitionToNoGC() {
|
|
ms.mu.Lock()
|
|
defer ms.mu.Unlock()
|
|
if !ms.isGC {
|
|
panic("attempt to toggle GC to false when GC is not true")
|
|
}
|
|
ms.isGC = false
|
|
ms.keeperFunc = nil
|
|
ms.gcCond.Broadcast()
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Commit(ctx context.Context, current, last hash.Hash) (bool, error) {
|
|
ms.mu.Lock()
|
|
defer ms.mu.Unlock()
|
|
|
|
if ms.keeperFunc != nil {
|
|
if ms.keeperFunc(current) {
|
|
ms.waitForGC()
|
|
}
|
|
}
|
|
|
|
if last != ms.rootHash {
|
|
return false, nil
|
|
}
|
|
|
|
if err := ms.errorIfDangling(ctx, ms.pendingRefs); err != nil {
|
|
return false, err
|
|
}
|
|
|
|
success := ms.storage.Update(current, last, ms.pending)
|
|
if success {
|
|
ms.pending = nil
|
|
ms.pendingRefs = nil
|
|
}
|
|
ms.rootHash = ms.storage.Root(ctx)
|
|
return success, nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) BeginGC(_ context.Context, keeper func(hash.Hash) bool, _ GCMode) error {
|
|
return ms.transitionToGC(keeper)
|
|
}
|
|
|
|
func (ms *MemoryStoreView) EndGC(_ GCMode) {
|
|
ms.transitionToNoGC()
|
|
}
|
|
|
|
type msvGcFinalizer struct {
|
|
ms *MemoryStoreView
|
|
keepers map[hash.Hash]Chunk
|
|
}
|
|
|
|
func (mgcf msvGcFinalizer) AddChunksToStore(ctx context.Context) (HasManyFunc, error) {
|
|
panic("unsupported")
|
|
}
|
|
|
|
func (mgcf msvGcFinalizer) SwapChunksInStore(ctx context.Context) error {
|
|
mgcf.ms.mu.Lock()
|
|
defer mgcf.ms.mu.Unlock()
|
|
mgcf.ms.storage = &MemoryStorage{rootHash: mgcf.ms.rootHash, data: mgcf.keepers}
|
|
mgcf.ms.pending = map[hash.Hash]Chunk{}
|
|
return nil
|
|
}
|
|
|
|
func (mgcf msvGcFinalizer) Close() error {
|
|
return nil
|
|
}
|
|
|
|
type msvMarkAndSweeper struct {
|
|
ms *MemoryStoreView
|
|
|
|
getAddrs GetAddrs
|
|
filter HasManyFunc
|
|
|
|
keepers map[hash.Hash]Chunk
|
|
}
|
|
|
|
func (i *msvMarkAndSweeper) SaveHashes(ctx context.Context, hashes hash.HashSet) error {
|
|
newAddrs := hashes.Copy()
|
|
for {
|
|
for h := range i.keepers {
|
|
delete(newAddrs, h)
|
|
}
|
|
filtered, err := i.filter(ctx, newAddrs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(filtered) == 0 {
|
|
break
|
|
}
|
|
newAddrs = make(hash.HashSet)
|
|
for h := range filtered {
|
|
c, err := i.ms.Get(ctx, h)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
i.keepers[h] = c
|
|
err = i.getAddrs(c, func(a hash.Hash) error {
|
|
newAddrs.Insert(a)
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (i *msvMarkAndSweeper) Finalize(context.Context) (GCFinalizer, error) {
|
|
return msvGcFinalizer{i.ms, i.keepers}, nil
|
|
}
|
|
|
|
func (i *msvMarkAndSweeper) Close(context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) MarkAndSweepChunks(ctx context.Context, getAddrs GetAddrs, filter HasManyFunc, dest ChunkStore, _ GCConfig, incrementalUpdateManifest bool) (MarkAndSweeper, error) {
|
|
if dest != ms {
|
|
panic("unsupported")
|
|
}
|
|
|
|
ms.mu.Lock()
|
|
if !ms.isGC {
|
|
panic("MarkAndSweepChunks called without BeginGC")
|
|
}
|
|
ms.mu.Unlock()
|
|
|
|
return &msvMarkAndSweeper{
|
|
ms: ms,
|
|
getAddrs: getAddrs,
|
|
filter: filter,
|
|
keepers: make(map[hash.Hash]Chunk),
|
|
}, nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Count(_ context.Context) (uint32, error) {
|
|
return uint32(len(ms.pending)), nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) IterateAllChunks(_ context.Context, _ func(Chunk)) error {
|
|
panic("runtime error: GetChunkHashes should never be called on the MemoryStoreView")
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Stats() interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) StatsSummary() string {
|
|
return "Unsupported"
|
|
}
|
|
|
|
func (ms *MemoryStoreView) PersistGhostHashes(ctx context.Context, refs hash.HashSet) error {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func (ms *MemoryStoreView) Teardown(ctx context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
type memoryStoreFactory struct {
|
|
stores map[string]*MemoryStorage
|
|
mu *sync.Mutex
|
|
}
|
|
|
|
func NewMemoryStoreFactory() *memoryStoreFactory {
|
|
return &memoryStoreFactory{map[string]*MemoryStorage{}, &sync.Mutex{}}
|
|
}
|
|
|
|
func (f *memoryStoreFactory) CreateStoreFromCache(ctx context.Context, ns string) ChunkStore {
|
|
return f.CreateStore(ctx, ns)
|
|
}
|
|
|
|
func (f *memoryStoreFactory) CreateStore(ctx context.Context, ns string) ChunkStore {
|
|
f.mu.Lock()
|
|
defer f.mu.Unlock()
|
|
|
|
if f.stores == nil {
|
|
d.Panic("Cannot use memoryStoreFactory after Shutter().")
|
|
}
|
|
if ms, present := f.stores[ns]; present {
|
|
return ms.NewView()
|
|
}
|
|
f.stores[ns] = &MemoryStorage{}
|
|
return f.stores[ns].NewView()
|
|
}
|
|
|
|
func (f *memoryStoreFactory) Shutter() {
|
|
f.stores = nil
|
|
}
|