erigon-pulse/core/state/dump.go
ledgerwatch c187d80152
Preparations for computing root without modifying the trie (#172)
Preparations for computing root without modifying the trie
2019-11-15 22:48:49 +00:00

191 lines
6.0 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 state
import (
"encoding/binary"
"encoding/json"
"fmt"
"github.com/ledgerwatch/turbo-geth/common"
"github.com/ledgerwatch/turbo-geth/common/dbutils"
"github.com/ledgerwatch/turbo-geth/common/hexutil"
"github.com/ledgerwatch/turbo-geth/core/types/accounts"
)
// DumpAccount represents an account in the state
type DumpAccount struct {
Balance string `json:"balance"`
Nonce uint64 `json:"nonce"`
Root string `json:"root"`
CodeHash string `json:"codeHash"`
Code string `json:"code,omitempty"`
Storage map[string]string `json:"storage,omitempty"`
StorageSize *uint64 `json:",omitempty"`
Address *common.Address `json:"address,omitempty"` // Address only present in iterative (line-by-line) mode
SecureKey hexutil.Bytes `json:"key,omitempty"` // If we don't have address, we can output the key
}
// Dump represents the full dump in a collected format, as one large map
type Dump struct {
Root string `json:"root"`
Accounts map[common.Address]DumpAccount `json:"accounts"`
}
// iterativeDump is a 'collector'-implementation which dump output line-by-line iteratively
type iterativeDump json.Encoder
// Collector interface which the state trie calls during iteration
type collector interface {
onRoot(common.Hash)
onAccount(common.Address, DumpAccount)
}
func (self *Dump) onRoot(root common.Hash) {
self.Root = fmt.Sprintf("%x", root)
}
func (self *Dump) onAccount(addr common.Address, account DumpAccount) {
self.Accounts[addr] = account
}
func (self iterativeDump) onAccount(addr common.Address, account DumpAccount) {
dumpAccount := &DumpAccount{
Balance: account.Balance,
Nonce: account.Nonce,
Root: account.Root,
CodeHash: account.CodeHash,
Code: account.Code,
Storage: account.Storage,
SecureKey: account.SecureKey,
Address: nil,
}
if addr != (common.Address{}) {
dumpAccount.Address = &addr
}
(*json.Encoder)(&self).Encode(dumpAccount)
}
func (self iterativeDump) onRoot(root common.Hash) {
(*json.Encoder)(&self).Encode(struct {
Root common.Hash `json:"root"`
}{root})
}
func (tds *TrieDbState) dump(c collector, excludeCode, excludeStorage, excludeMissingPreimages bool) {
emptyAddress := (common.Address{})
missingPreimages := 0
c.onRoot(tds.t.Hash())
var acc accounts.Account
var prefix [32]byte
err := tds.db.Walk(dbutils.AccountsBucket, prefix[:], 0, func(k, v []byte) (bool, error) {
addr := common.BytesToAddress(tds.GetKey(k))
var err error
if err = acc.DecodeForStorage(v); err != nil {
return false, err
}
var code []byte
if !acc.IsEmptyCodeHash() {
if code, err = tds.db.Get(dbutils.CodeBucket, acc.CodeHash[:]); err != nil {
return false, err
}
}
account := DumpAccount{
Balance: acc.Balance.String(),
Nonce: acc.Nonce,
Root: common.Bytes2Hex(acc.Root[:]),
CodeHash: common.Bytes2Hex(acc.CodeHash[:]),
Storage: make(map[string]string),
}
if emptyAddress == addr {
// Preimage missing
missingPreimages++
if excludeMissingPreimages {
return true, nil
}
account.SecureKey = common.CopyBytes(k)
}
if !excludeCode {
account.Code = common.Bytes2Hex(code)
}
if acc.HasStorageSize {
var storageSize = acc.StorageSize
account.StorageSize = &storageSize
}
buf := make([]byte, binary.MaxVarintLen64)
binary.PutUvarint(buf, acc.GetIncarnation())
addrHash, err := tds.HashAddress(addr, false)
if err != nil {
return false, err
}
err = tds.db.Walk(dbutils.StorageBucket, dbutils.GenerateStoragePrefix(addrHash, acc.GetIncarnation()), uint(common.HashLength*8+IncarnationLength), func(ks, vs []byte) (bool, error) {
key := tds.GetKey(ks[common.HashLength+IncarnationLength:]) //remove account address and version from composite key
if !excludeStorage {
account.Storage[common.BytesToHash(key).String()] = common.Bytes2Hex(vs)
}
return true, nil
})
if err != nil {
return false, err
}
c.onAccount(addr, account)
return true, nil
})
if err != nil {
panic(err)
}
}
// RawDump returns the entire state an a single large object
func (tds *TrieDbState) RawDump(excludeCode, excludeStorage, excludeMissingPreimages bool) Dump {
dump := &Dump{
Accounts: make(map[common.Address]DumpAccount),
}
tds.dump(dump, excludeCode, excludeStorage, excludeMissingPreimages)
return *dump
}
func (tds *TrieDbState) DefaultRawDump() Dump {
return tds.RawDump(false, false, false)
}
// DefaultDump returns a JSON string representing the state with the default params
func (tds *TrieDbState) DefaultDump() []byte {
return tds.Dump(false, false, false)
}
// Dump returns a JSON string representing the entire state as a single json-object
func (tds *TrieDbState) Dump(excludeCode, excludeStorage, excludeMissingPreimages bool) []byte {
dump := tds.RawDump(excludeCode, excludeStorage, excludeMissingPreimages)
json, err := json.MarshalIndent(dump, "", " ")
if err != nil {
fmt.Println("dump err", err)
}
return json
}
// IterativeDump dumps out accounts as json-objects, delimited by linebreaks on stdout
func (tds *TrieDbState) IterativeDump(excludeCode, excludeStorage, excludeMissingPreimages bool, output *json.Encoder) {
tds.dump(iterativeDump(*output), excludeCode, excludeStorage, excludeMissingPreimages)
}