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
2019-01-09 23:52:30 +01:00
import "github.com/lbryio/lbry.go/extras/errors"
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][]byte
}
// 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) {
if m.blobs == nil {
m.blobs = make(map[string][]byte)
}
_, ok := m.blobs[hash]
return ok, nil
}
// Get returns the blob byte slice if present and errors if the blob is not found.
2018-02-07 21:21:20 +01:00
func (m *MemoryBlobStore) Get(hash string) ([]byte, error) {
if m.blobs == nil {
m.blobs = make(map[string][]byte)
}
blob, ok := m.blobs[hash]
if !ok {
return []byte{}, errors.Err(ErrBlobNotFound)
}
return blob, nil
}
// Put stores the blob in memory
2018-02-07 21:21:20 +01:00
func (m *MemoryBlobStore) Put(hash string, blob []byte) error {
if m.blobs == nil {
m.blobs = make(map[string][]byte)
}
m.blobs[hash] = blob
return nil
}
// PutSD stores the sd blob in memory
2018-02-07 21:21:20 +01:00
func (m *MemoryBlobStore) PutSD(hash string, blob []byte) error {
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][]byte {
return m.blobs
}