mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 07:37:20 +00:00
Implement the binary tree as specified in [eip-7864](https://eips.ethereum.org/EIPS/eip-7864). This will gradually replace verkle trees in the codebase. This is only running the tests and will not be executed in production, but will help me rebase some of my work, so that it doesn't bitrot as much. --------- Signed-off-by: Guillaume Ballet Co-authored-by: Parithosh Jayanthi <parithosh.jayanthi@ethereum.org> Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
72 lines
2.7 KiB
Go
72 lines
2.7 KiB
Go
// Copyright 2022 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 trie
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
"github.com/ethereum/go-ethereum/triedb/database"
|
|
)
|
|
|
|
// Reader is a wrapper of the underlying database reader. It's not safe
|
|
// for concurrent usage.
|
|
type Reader struct {
|
|
owner common.Hash
|
|
reader database.NodeReader
|
|
banned map[string]struct{} // Marker to prevent node from being accessed, for tests
|
|
}
|
|
|
|
// NewReader initializes the trie reader with the given database reader.
|
|
func NewReader(stateRoot, owner common.Hash, db database.NodeDatabase) (*Reader, error) {
|
|
if stateRoot == (common.Hash{}) || stateRoot == types.EmptyRootHash {
|
|
return &Reader{owner: owner}, nil
|
|
}
|
|
reader, err := db.NodeReader(stateRoot)
|
|
if err != nil {
|
|
return nil, &MissingNodeError{Owner: owner, NodeHash: stateRoot, err: err}
|
|
}
|
|
return &Reader{owner: owner, reader: reader}, nil
|
|
}
|
|
|
|
// newEmptyReader initializes the pure in-memory reader. All read operations
|
|
// should be forbidden and returns the MissingNodeError.
|
|
func newEmptyReader() *Reader {
|
|
return &Reader{}
|
|
}
|
|
|
|
// Node retrieves the rlp-encoded trie node with the provided trie node
|
|
// information. An MissingNodeError will be returned in case the node is
|
|
// not found or any error is encountered.
|
|
//
|
|
// Don't modify the returned byte slice since it's not deep-copied and
|
|
// still be referenced by database.
|
|
func (r *Reader) Node(path []byte, hash common.Hash) ([]byte, error) {
|
|
// Perform the logics in tests for preventing trie node access.
|
|
if r.banned != nil {
|
|
if _, ok := r.banned[string(path)]; ok {
|
|
return nil, &MissingNodeError{Owner: r.owner, NodeHash: hash, Path: path}
|
|
}
|
|
}
|
|
if r.reader == nil {
|
|
return nil, &MissingNodeError{Owner: r.owner, NodeHash: hash, Path: path}
|
|
}
|
|
blob, err := r.reader.Node(r.owner, path, hash)
|
|
if err != nil || len(blob) == 0 {
|
|
return nil, &MissingNodeError{Owner: r.owner, NodeHash: hash, Path: path, err: err}
|
|
}
|
|
return blob, nil
|
|
}
|