erigon-pulse/ethdb/memory_database.go
Alex Sharov 965d1101f4
Intermediate hash phase 4 (#396)
* another way to check if account has storage

* cleanup

* v0 of walk by db version

* save progress, to switch to another task. Put tombstone is still not correct.

* place tombstone only if exists something to hide

* db-based implementation

* db-based implementation

* db-based implementation

* fix prop check

* improve prop check logic

* Need custom logic to skip subtree for account and storage buckets because storage bucket has incarnation in key

* rebase to master

* remove all tombstones when account deleted

* remove all tombstones when account deleted

* added db integrity check

* don't rely on account.Root because it valid only about last incarnation

* remove all tombstones when account deleted

* dial with incarnation in MultiWalk2

* dial with incarnation in MultiWalk2

* when fixedbytes=40 resolver did compare cacheKey with storageKey without removing incarnation

* rebase to master

* rebase to master

Co-authored-by: alex.sharov <alex.sharov@lazada.com>
2020-03-20 11:30:14 +00:00

102 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(),
}
}