reflector.go/store/memory.go

55 lines
1.3 KiB
Go
Raw Normal View History

2018-02-07 21:21:20 +01:00
package store
import (
2019-11-14 01:11:35 +01:00
"github.com/lbryio/lbry.go/v2/extras/errors"
"github.com/lbryio/lbry.go/v2/stream"
)
2018-02-07 21:21:20 +01:00
// MemoryBlobStore is an in memory only blob store with no persistence.
2018-02-07 21:21:20 +01:00
type MemoryBlobStore struct {
blobs map[string]stream.Blob
}
func NewMemoryBlobStore() *MemoryBlobStore {
return &MemoryBlobStore{
blobs: make(map[string]stream.Blob),
}
2018-02-07 21:21:20 +01:00
}
// Has returns T/F if the blob is currently stored. It will never error.
2018-02-07 21:21:20 +01:00
func (m *MemoryBlobStore) Has(hash string) (bool, error) {
_, ok := m.blobs[hash]
return ok, nil
}
// Get returns the blob byte slice if present and errors if the blob is not found.
func (m *MemoryBlobStore) Get(hash string) (stream.Blob, error) {
2018-02-07 21:21:20 +01:00
blob, ok := m.blobs[hash]
if !ok {
return nil, errors.Err(ErrBlobNotFound)
2018-02-07 21:21:20 +01:00
}
return blob, nil
}
// Put stores the blob in memory
func (m *MemoryBlobStore) Put(hash string, blob stream.Blob) error {
2018-02-07 21:21:20 +01:00
m.blobs[hash] = blob
return nil
}
// PutSD stores the sd blob in memory
func (m *MemoryBlobStore) PutSD(hash string, blob stream.Blob) error {
2018-02-07 21:21:20 +01:00
return m.Put(hash, blob)
}
2018-09-11 13:41:29 +02:00
// Delete deletes the blob from the store
func (m *MemoryBlobStore) Delete(hash string) error {
delete(m.blobs, hash)
return nil
}
2019-01-29 20:42:45 +01:00
// Debug returns the blobs in memory. It's useful for testing and debugging.
func (m *MemoryBlobStore) Debug() map[string]stream.Blob {
2019-01-29 20:42:45 +01:00
return m.blobs
}