mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 13:16:42 +00:00
Created separate uncached version of database.go for bzz
This commit is contained in:
parent
7aa3ff6ae5
commit
6746fbd06c
2 changed files with 95 additions and 3 deletions
93
bzz/database.go
Normal file
93
bzz/database.go
Normal file
|
|
@ -0,0 +1,93 @@
|
||||||
|
package bzz
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/ethereum/go-ethereum/common"
|
||||||
|
"github.com/ethereum/go-ethereum/compression/rle"
|
||||||
|
"github.com/syndtr/goleveldb/leveldb"
|
||||||
|
"github.com/syndtr/goleveldb/leveldb/iterator"
|
||||||
|
"github.com/syndtr/goleveldb/leveldb/opt"
|
||||||
|
)
|
||||||
|
|
||||||
|
const openFileLimit = 128
|
||||||
|
|
||||||
|
type LDBDatabase struct {
|
||||||
|
db *leveldb.DB
|
||||||
|
comp bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewLDBDatabase(file string) (*LDBDatabase, error) {
|
||||||
|
// Open the db
|
||||||
|
db, err := leveldb.OpenFile(file, &opt.Options{OpenFilesCacheCapacity: openFileLimit})
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
database := &LDBDatabase{db: db, comp: true}
|
||||||
|
|
||||||
|
return database, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *LDBDatabase) Put(key []byte, value []byte) {
|
||||||
|
if self.comp {
|
||||||
|
value = rle.Compress(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
err := self.db.Put(key, value, nil)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error put", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *LDBDatabase) Get(key []byte) ([]byte, error) {
|
||||||
|
dat, err := self.db.Get(key, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.comp {
|
||||||
|
return rle.Decompress(dat)
|
||||||
|
}
|
||||||
|
|
||||||
|
return dat, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *LDBDatabase) Delete(key []byte) error {
|
||||||
|
return self.db.Delete(key, nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *LDBDatabase) LastKnownTD() []byte {
|
||||||
|
data, _ := self.Get([]byte("LTD"))
|
||||||
|
|
||||||
|
if len(data) == 0 {
|
||||||
|
data = []byte{0x0}
|
||||||
|
}
|
||||||
|
|
||||||
|
return data
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *LDBDatabase) NewIterator() iterator.Iterator {
|
||||||
|
return self.db.NewIterator(nil, nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *LDBDatabase) Write(batch *leveldb.Batch) error {
|
||||||
|
return self.db.Write(batch, nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *LDBDatabase) Close() {
|
||||||
|
// Close the leveldb database
|
||||||
|
self.db.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *LDBDatabase) Print() {
|
||||||
|
iter := self.db.NewIterator(nil, nil)
|
||||||
|
for iter.Next() {
|
||||||
|
key := iter.Key()
|
||||||
|
value := iter.Value()
|
||||||
|
|
||||||
|
fmt.Printf("%x(%d): ", key, len(key))
|
||||||
|
node := common.NewValueFromBytes(value)
|
||||||
|
fmt.Printf("%v\n", node)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -8,7 +8,6 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/ethdb"
|
|
||||||
"github.com/ethereum/go-ethereum/rlp"
|
"github.com/ethereum/go-ethereum/rlp"
|
||||||
"github.com/syndtr/goleveldb/leveldb"
|
"github.com/syndtr/goleveldb/leveldb"
|
||||||
)
|
)
|
||||||
|
|
@ -32,7 +31,7 @@ type gcItem struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type dbStore struct {
|
type dbStore struct {
|
||||||
db *ethdb.LDBDatabase
|
db *LDBDatabase
|
||||||
|
|
||||||
// this should be stored in db, accessed transactionally
|
// this should be stored in db, accessed transactionally
|
||||||
entryCnt, accessCnt, dataIdx, capacity uint64
|
entryCnt, accessCnt, dataIdx, capacity uint64
|
||||||
|
|
@ -381,7 +380,7 @@ func newDbStore(path string) (s *dbStore, err error) {
|
||||||
|
|
||||||
s = new(dbStore)
|
s = new(dbStore)
|
||||||
|
|
||||||
s.db, err = ethdb.NewLDBDatabase(path)
|
s.db, err = NewLDBDatabase(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue