erigon-pulse/ethdb/memory_database.go
Alex Sharov c5ffc971c5
[WIP] Badger v2 (#378)
* badger v2 investigation

* buf pool - use native New method and avoid double checks

* db.Open prototype

* db.Tx/Bucket/Cursor prototypes

* Chained config

* Item concept added

* save changes to test on master

* make hack resumable

* Design document v0

* Cursor concept

* less brackets syntax of cursor builder

* benchmarks

* cleanup fs

* test for context cancelations

* test for context cancelations

* test for cursor.Prefix option

* add ForEachKey method

* add ForEachKey method

* add naming explanation

* experiment of non-pointers cursor/bucket

* .Bucket() and .Cursor() doesn't returns error

* .Bucket() and .Cursor() doesn't returns error

* .Bucket() and .Cursor() doesn't returns error

* remove CursorOpts concept

* more test-cases

* simplify open api

* Tx, Bucket, Cursor - now are interfaces

* Tx, Bucket, Cursor - now are interfaces

* switch to interfaces

* rebase master

Co-authored-by: alex.sharov <alex.sharov@lazada.com>
2020-03-11 11:02:37 +00:00

101 lines
2.6 KiB
Go

// Copyright 2014 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
package ethdb
import (
"github.com/ledgerwatch/bolt"
"github.com/ledgerwatch/turbo-geth/common/dbutils"
"github.com/ledgerwatch/turbo-geth/log"
)
func NewMemDatabase() *BoltDatabase {
logger := log.New("database", "in-memory")
// Open the db and recover any potential corruptions
db, errOpen := bolt.Open("in-memory", 0600, &bolt.Options{MemOnly: true})
if errOpen != nil {
panic(errOpen)
}
if err := db.Update(func(tx *bolt.Tx) error {
for _, bucket := range dbutils.Buckets {
if _, err := tx.CreateBucketIfNotExists(bucket, false); err != nil {
return err
}
}
return nil
}); err != nil {
panic(err)
}
b := &BoltDatabase{
db: db,
log: logger,
id: id(),
}
return b
}
func NewMemDatabase2() (*BoltDatabase, *bolt.DB) {
logger := log.New("database", "in-memory")
// Open the db and recover any potential corruptions
db, err := bolt.Open("in-memory", 0600, &bolt.Options{MemOnly: true})
if err != nil {
panic(err)
}
return &BoltDatabase{
db: db,
log: logger,
id: id(),
}, db
}
func (db *BoltDatabase) MemCopy() Database {
logger := log.New("database", "in-memory")
// Open the db and recover any potential corruptions
mem, err := bolt.Open("in-memory", 0600, &bolt.Options{MemOnly: true})
if err != nil {
panic(err)
}
if err := db.db.View(func(readTx *bolt.Tx) error {
return readTx.ForEach(func(name []byte, b *bolt.Bucket) error {
return mem.Update(func(writeTx *bolt.Tx) error {
newBucketToWrite, err := writeTx.CreateBucket(name, true)
if err != nil {
return err
}
return b.ForEach(func(k, v []byte) error {
if err := newBucketToWrite.Put(k, v); err != nil {
return err
}
return nil
})
})
})
}); err != nil {
panic(err)
}
return &BoltDatabase{
db: mem,
log: logger,
id: id(),
}
}