2020-03-24 02:12:55 +00:00
|
|
|
package ethdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type KV interface {
|
|
|
|
View(ctx context.Context, f func(tx Tx) error) (err error)
|
|
|
|
Update(ctx context.Context, f func(tx Tx) error) (err error)
|
2020-04-04 07:18:10 +00:00
|
|
|
Close()
|
|
|
|
|
|
|
|
Begin(ctx context.Context, writable bool) (Tx, error)
|
2020-03-24 02:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Tx interface {
|
|
|
|
Bucket(name []byte) Bucket
|
2020-04-04 07:18:10 +00:00
|
|
|
|
|
|
|
Commit(ctx context.Context) error
|
|
|
|
Rollback() error
|
2020-03-24 02:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Bucket interface {
|
|
|
|
Get(key []byte) (val []byte, err error)
|
|
|
|
Put(key []byte, value []byte) error
|
|
|
|
Delete(key []byte) error
|
|
|
|
Cursor() Cursor
|
|
|
|
}
|
|
|
|
|
|
|
|
type Cursor interface {
|
|
|
|
Prefix(v []byte) Cursor
|
|
|
|
MatchBits(uint) Cursor
|
|
|
|
Prefetch(v uint) Cursor
|
|
|
|
NoValues() NoValuesCursor
|
|
|
|
|
|
|
|
First() ([]byte, []byte, error)
|
|
|
|
Seek(seek []byte) ([]byte, []byte, error)
|
|
|
|
Next() ([]byte, []byte, error)
|
|
|
|
Walk(walker func(k, v []byte) (bool, error)) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type NoValuesCursor interface {
|
2020-04-04 07:18:10 +00:00
|
|
|
First() ([]byte, uint32, error)
|
|
|
|
Seek(seek []byte) ([]byte, uint32, error)
|
|
|
|
Next() ([]byte, uint32, error)
|
|
|
|
Walk(walker func(k []byte, vSize uint32) (bool, error)) error
|
2020-03-24 02:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DbProvider uint8
|
|
|
|
|
|
|
|
const (
|
|
|
|
Bolt DbProvider = iota
|
|
|
|
Badger
|
|
|
|
Remote
|
|
|
|
)
|