aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/state/dbstore.go
diff options
context:
space:
mode:
authorAnton Evangelatov <anton.evangelatov@gmail.com>2018-11-21 21:36:56 +0800
committerGitHub <noreply@github.com>2018-11-21 21:36:56 +0800
commit4c181e4fb98bb88503cccd6147026b6c2b7b56f6 (patch)
tree48fa84c1fafd579b6df86e3585ed903b461e4734 /swarm/state/dbstore.go
parent3fd87f219342ca97a6595263a2aa28bec65fee04 (diff)
downloadgo-tangerine-4c181e4fb98bb88503cccd6147026b6c2b7b56f6.tar
go-tangerine-4c181e4fb98bb88503cccd6147026b6c2b7b56f6.tar.gz
go-tangerine-4c181e4fb98bb88503cccd6147026b6c2b7b56f6.tar.bz2
go-tangerine-4c181e4fb98bb88503cccd6147026b6c2b7b56f6.tar.lz
go-tangerine-4c181e4fb98bb88503cccd6147026b6c2b7b56f6.tar.xz
go-tangerine-4c181e4fb98bb88503cccd6147026b6c2b7b56f6.tar.zst
go-tangerine-4c181e4fb98bb88503cccd6147026b6c2b7b56f6.zip
swarm/state: refactor InmemoryStore (#18143)
Diffstat (limited to 'swarm/state/dbstore.go')
-rw-r--r--swarm/state/dbstore.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/swarm/state/dbstore.go b/swarm/state/dbstore.go
index b0aa92e27..fc5dd8f7c 100644
--- a/swarm/state/dbstore.go
+++ b/swarm/state/dbstore.go
@@ -22,6 +22,7 @@ import (
"errors"
"github.com/syndtr/goleveldb/leveldb"
+ "github.com/syndtr/goleveldb/leveldb/storage"
)
// ErrNotFound is returned when no results are returned from the database
@@ -30,6 +31,15 @@ var ErrNotFound = errors.New("ErrorNotFound")
// ErrInvalidArgument is returned when the argument type does not match the expected type
var ErrInvalidArgument = errors.New("ErrorInvalidArgument")
+// Store defines methods required to get, set, delete values for different keys
+// and close the underlying resources.
+type Store interface {
+ Get(key string, i interface{}) (err error)
+ Put(key string, i interface{}) (err error)
+ Delete(key string) (err error)
+ Close() error
+}
+
// DBStore uses LevelDB to store values.
type DBStore struct {
db *leveldb.DB
@@ -46,6 +56,17 @@ func NewDBStore(path string) (s *DBStore, err error) {
}, nil
}
+// NewInmemoryStore returns a new instance of DBStore. To be used only in tests and simulations.
+func NewInmemoryStore() *DBStore {
+ db, err := leveldb.Open(storage.NewMemStorage(), nil)
+ if err != nil {
+ panic(err)
+ }
+ return &DBStore{
+ db: db,
+ }
+}
+
// Get retrieves a persisted value for a specific key. If there is no results
// ErrNotFound is returned. The provided parameter should be either a byte slice or
// a struct that implements the encoding.BinaryUnmarshaler interface