Skip to content

Commit

Permalink
trie: clean up iterator constructors
Browse files Browse the repository at this point in the history
Make it so each iterator has exactly one public constructor:

- NodeIterators can be created through a method.
- Iterators can be created through NewIterator on any NodeIterator.
  • Loading branch information
fjl committed Apr 25, 2017
1 parent f958d7d commit a13e920
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 31 deletions.
5 changes: 3 additions & 2 deletions core/state/dump.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (

"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/trie"
)

type DumpAccount struct {
Expand All @@ -44,7 +45,7 @@ func (self *StateDB) RawDump() Dump {
Accounts: make(map[string]DumpAccount),
}

it := self.trie.Iterator()
it := trie.NewIterator(self.trie.NodeIterator())
for it.Next() {
addr := self.trie.GetKey(it.Key)
var data Account
Expand All @@ -61,7 +62,7 @@ func (self *StateDB) RawDump() Dump {
Code: common.Bytes2Hex(obj.Code(self.db)),
Storage: make(map[string]string),
}
storageIt := obj.getTrie(self.db).Iterator()
storageIt := trie.NewIterator(obj.getTrie(self.db).NodeIterator())
for storageIt.Next() {
account.Storage[common.Bytes2Hex(self.trie.GetKey(storageIt.Key))] = common.Bytes2Hex(storageIt.Value)
}
Expand Down
2 changes: 1 addition & 1 deletion core/state/iterator.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func (it *NodeIterator) step() error {
if err != nil {
return err
}
it.dataIt = trie.NewNodeIterator(dataTrie)
it.dataIt = dataTrie.NodeIterator()
if !it.dataIt.Next(true) {
it.dataIt = nil
}
Expand Down
2 changes: 1 addition & 1 deletion core/state/statedb.go
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ func (db *StateDB) ForEachStorage(addr common.Address, cb func(key, value common
cb(h, value)
}

it := so.getTrie(db.db).Iterator()
it := trie.NewIterator(so.getTrie(db.db).NodeIterator())
for it.Next() {
// ignore cached values
key := common.BytesToHash(db.trie.GetKey(it.Key))
Expand Down
15 changes: 4 additions & 11 deletions trie/iterator.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,8 @@ type Iterator struct {
Value []byte // Current data value on which the iterator is positioned on
}

// NewIterator creates a new key-value iterator.
func NewIterator(trie *Trie) *Iterator {
return &Iterator{
nodeIt: NewNodeIterator(trie),
}
}

// FromNodeIterator creates a new key-value iterator from a node iterator
func NewIteratorFromNodeIterator(it NodeIterator) *Iterator {
// NewIterator creates a new key-value iterator from a node iterator
func NewIterator(it NodeIterator) *Iterator {
return &Iterator{
nodeIt: it,
}
Expand Down Expand Up @@ -99,8 +92,8 @@ type nodeIterator struct {
path []byte // Path to the current node
}

// NewNodeIterator creates an post-order trie iterator.
func NewNodeIterator(trie *Trie) NodeIterator {
// newNodeIterator creates an post-order trie iterator.
func newNodeIterator(trie *Trie) NodeIterator {
if trie.Hash() == emptyState {
return new(nodeIterator)
}
Expand Down
14 changes: 7 additions & 7 deletions trie/iterator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func TestIterator(t *testing.T) {
trie.Commit()

found := make(map[string]string)
it := NewIterator(trie)
it := NewIterator(trie.NodeIterator())
for it.Next() {
found[string(it.Key)] = string(it.Value)
}
Expand Down Expand Up @@ -72,7 +72,7 @@ func TestIteratorLargeData(t *testing.T) {
vals[string(value2.k)] = value2
}

it := NewIterator(trie)
it := NewIterator(trie.NodeIterator())
for it.Next() {
vals[string(it.Key)].t = true
}
Expand All @@ -99,7 +99,7 @@ func TestNodeIteratorCoverage(t *testing.T) {

// Gather all the node hashes found by the iterator
hashes := make(map[common.Hash]struct{})
for it := NewNodeIterator(trie); it.Next(true); {
for it := trie.NodeIterator(); it.Next(true); {
if it.Hash() != (common.Hash{}) {
hashes[it.Hash()] = struct{}{}
}
Expand Down Expand Up @@ -154,8 +154,8 @@ func TestDifferenceIterator(t *testing.T) {
trieb.Commit()

found := make(map[string]string)
di, _ := NewDifferenceIterator(NewNodeIterator(triea), NewNodeIterator(trieb))
it := NewIteratorFromNodeIterator(di)
di, _ := NewDifferenceIterator(triea.NodeIterator(), trieb.NodeIterator())
it := NewIterator(di)
for it.Next() {
found[string(it.Key)] = string(it.Value)
}
Expand Down Expand Up @@ -189,8 +189,8 @@ func TestUnionIterator(t *testing.T) {
}
trieb.Commit()

di, _ := NewUnionIterator([]NodeIterator{NewNodeIterator(triea), NewNodeIterator(trieb)})
it := NewIteratorFromNodeIterator(di)
di, _ := NewUnionIterator([]NodeIterator{triea.NodeIterator(), trieb.NodeIterator()})
it := NewIterator(di)

all := []struct{ k, v string }{
{"aardvark", "c"},
Expand Down
6 changes: 1 addition & 5 deletions trie/secure_trie.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,8 @@ func (t *SecureTrie) Root() []byte {
return t.trie.Root()
}

func (t *SecureTrie) Iterator() *Iterator {
return t.trie.Iterator()
}

func (t *SecureTrie) NodeIterator() NodeIterator {
return NewNodeIterator(&t.trie)
return t.trie.NodeIterator()
}

// CommitTo writes all nodes and the secure hash pre-images to the given database.
Expand Down
2 changes: 1 addition & 1 deletion trie/sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func checkTrieConsistency(db Database, root common.Hash) error {
if err != nil {
return nil // // Consider a non existent state consistent
}
it := NewNodeIterator(trie)
it := trie.NodeIterator()
for it.Next(true) {
}
return it.Error()
Expand Down
4 changes: 2 additions & 2 deletions trie/trie.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ func New(root common.Hash, db Database) (*Trie, error) {
}

// Iterator returns an iterator over all mappings in the trie.
func (t *Trie) Iterator() *Iterator {
return NewIterator(t)
func (t *Trie) NodeIterator() NodeIterator {
return newNodeIterator(t)
}

// Get returns the value for key stored in the trie.
Expand Down
2 changes: 1 addition & 1 deletion trie/trie_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ func runRandTest(rt randTest) bool {
tr = newtr
case opItercheckhash:
checktr, _ := New(common.Hash{}, nil)
it := tr.Iterator()
it := NewIterator(tr.NodeIterator())
for it.Next() {
checktr.Update(it.Key, it.Value)
}
Expand Down

0 comments on commit a13e920

Please sign in to comment.