-
Notifications
You must be signed in to change notification settings - Fork 330
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[db] KvWithVersion to handle both versioned and non-versioned namespace #4518
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,9 @@ | |
package db | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/iotexproject/iotex-core/v2/db/batch" | ||
"github.com/iotexproject/iotex-core/v2/pkg/lifecycle" | ||
) | ||
|
||
|
@@ -47,4 +50,86 @@ type ( | |
// SetVersion sets the version, and returns a KVStore to call Put()/Get() | ||
SetVersion(uint64) KVStore | ||
} | ||
|
||
// KvWithVersion wraps the versioned DB implementation with a certain version | ||
KvWithVersion struct { | ||
db VersionedDB | ||
version uint64 // the current version | ||
vns []Namespace // versioned namespace | ||
} | ||
) | ||
|
||
// Option sets an option | ||
type Option func(*KvWithVersion) | ||
|
||
// VersionedNamespaceOption pass in versioned namespaces | ||
func VersionedNamespaceOption(ns ...Namespace) Option { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. comment There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added |
||
return func(k *KvWithVersion) { | ||
k.vns = ns | ||
} | ||
} | ||
|
||
// NewKVStoreWithVersion implements a KVStore that can handle both versioned | ||
// and non-versioned namespace | ||
func NewKVStoreWithVersion(cfg Config, opts ...Option) *KvWithVersion { | ||
kv := KvWithVersion{} | ||
for _, opt := range opts { | ||
opt(&kv) | ||
} | ||
var dbOpts []BoltDBVersionedOption | ||
if len(kv.vns) > 0 { | ||
dbOpts = append(dbOpts, VnsOption(kv.vns...)) | ||
} | ||
kv.db = NewBoltDBVersioned(cfg, dbOpts...) | ||
return &kv | ||
} | ||
|
||
// Start starts the DB | ||
func (b *KvWithVersion) Start(ctx context.Context) error { | ||
return b.db.Start(ctx) | ||
} | ||
|
||
// Stop stops the DB | ||
func (b *KvWithVersion) Stop(ctx context.Context) error { | ||
return b.db.Stop(ctx) | ||
} | ||
|
||
// Put writes a <key, value> record | ||
func (b *KvWithVersion) Put(ns string, key, value []byte) error { | ||
return b.db.Put(b.version, ns, key, value) | ||
} | ||
|
||
// Get retrieves a key's value | ||
func (b *KvWithVersion) Get(ns string, key []byte) ([]byte, error) { | ||
return b.db.Get(b.version, ns, key) | ||
} | ||
|
||
// Delete deletes a key | ||
func (b *KvWithVersion) Delete(ns string, key []byte) error { | ||
return b.db.Delete(b.version, ns, key) | ||
} | ||
|
||
// Filter returns <k, v> pair in a bucket that meet the condition | ||
func (b *KvWithVersion) Filter(ns string, cond Condition, minKey, maxKey []byte) ([][]byte, [][]byte, error) { | ||
return b.db.Filter(b.version, ns, cond, minKey, maxKey) | ||
} | ||
|
||
// WriteBatch commits a batch | ||
func (b *KvWithVersion) WriteBatch(kvsb batch.KVStoreBatch) error { | ||
return b.db.CommitBatch(b.version, kvsb) | ||
} | ||
|
||
// Version returns the key's most recent version | ||
func (b *KvWithVersion) Version(ns string, key []byte) (uint64, error) { | ||
return b.db.Version(ns, key) | ||
} | ||
|
||
// SetVersion sets the version, and returns a KVStore to call Put()/Get() | ||
func (b *KvWithVersion) SetVersion(v uint64) KVStore { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
kv := KvWithVersion{ | ||
db: b.db, | ||
version: v, | ||
vns: b.vns, | ||
} | ||
return &kv | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's the value of this struct