-
Notifications
You must be signed in to change notification settings - Fork 178
/
forest.go
188 lines (171 loc) · 6.32 KB
/
forest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package flattener
import (
"bytes"
"encoding/hex"
"fmt"
"github.com/onflow/flow-go/ledger"
"github.com/onflow/flow-go/ledger/common/encoding"
"github.com/onflow/flow-go/ledger/common/hash"
"github.com/onflow/flow-go/ledger/complete/mtrie"
"github.com/onflow/flow-go/ledger/complete/mtrie/node"
"github.com/onflow/flow-go/ledger/complete/mtrie/trie"
)
// FlattenedForest represents an Forest as a flattened data structure.
// Specifically it consists of :
// * a list of storable nodes, where references to nodes are replaced by index in the slice
// * and a list of storable tries, each referencing their respective root node by index.
// 0 is a special index, meaning nil, but is included in this list for ease of use
// and removing would make it necessary to constantly add/subtract indexes
//
// As an important property, the nodes are listed in an order which satisfies
// Descendents-First-Relationship. The Descendents-First-Relationship has the
// following important property:
// When re-building the Trie from the sequence of nodes, one can build the trie on the fly,
// as for each node, the children have been previously encountered.
type FlattenedForest struct {
Nodes []*StorableNode
Tries []*StorableTrie
}
// node2indexMap maps a node pointer to the node index in the serialization
type node2indexMap map[*node.Node]uint64
// FlattenForest returns forest FlattenedForest, which contains all nodes and tries of the Forest.
func FlattenForest(f *mtrie.Forest) (*FlattenedForest, error) {
tries, err := f.GetTries()
if err != nil {
return nil, fmt.Errorf("cannot get cached tries root hashes: %w", err)
}
storableTries := make([]*StorableTrie, 0, len(tries))
storableNodes := []*StorableNode{nil} // 0th element is nil
// assign unique value to every node
allNodes := make(node2indexMap)
allNodes[nil] = 0 // 0th element is nil
counter := uint64(1) // start from 1, as 0 marks nil
for _, t := range tries {
for itr := NewNodeIterator(t); itr.Next(); {
n := itr.Value()
// if node not in map
if _, has := allNodes[n]; !has {
allNodes[n] = counter
counter++
storableNode, err := toStorableNode(n, allNodes)
if err != nil {
return nil, fmt.Errorf("failed to construct storable node: %w", err)
}
storableNodes = append(storableNodes, storableNode)
}
}
//fix root nodes indices
// since we indexed all nodes, root must be present
storableTrie, err := toStorableTrie(t, allNodes)
if err != nil {
return nil, fmt.Errorf("failed to construct storable trie: %w", err)
}
storableTries = append(storableTries, storableTrie)
}
return &FlattenedForest{
Nodes: storableNodes,
Tries: storableTries,
}, nil
}
func toStorableNode(node *node.Node, indexForNode node2indexMap) (*StorableNode, error) {
leftIndex, found := indexForNode[node.LeftChild()]
if !found {
hash := node.LeftChild().Hash()
return nil, fmt.Errorf("internal error: missing node with hash %s", hex.EncodeToString(hash[:]))
}
rightIndex, found := indexForNode[node.RightChild()]
if !found {
hash := node.RightChild().Hash()
return nil, fmt.Errorf("internal error: missing node with hash %s", hex.EncodeToString(hash[:]))
}
hash := node.Hash()
// if node is a leaf, path is a slice of 32 bytes, otherwise path is nil
var path []byte
if node.IsLeaf() {
temp := *node.Path()
path = temp[:]
}
storableNode := &StorableNode{
LIndex: leftIndex,
RIndex: rightIndex,
Height: uint16(node.Height()),
Path: path,
EncPayload: encoding.EncodePayload(node.Payload()),
HashValue: hash[:],
MaxDepth: node.MaxDepth(),
RegCount: node.RegCount(),
}
return storableNode, nil
}
func toStorableTrie(mtrie *trie.MTrie, indexForNode node2indexMap) (*StorableTrie, error) {
rootIndex, found := indexForNode[mtrie.RootNode()]
if !found {
hash := mtrie.RootNode().Hash()
return nil, fmt.Errorf("internal error: missing node with hash %s", hex.EncodeToString(hash[:]))
}
hash := mtrie.RootHash()
storableTrie := &StorableTrie{
RootIndex: rootIndex,
RootHash: hash[:],
}
return storableTrie, nil
}
// RebuildTries construct a forest from a storable FlattenedForest
func RebuildTries(flatForest *FlattenedForest) ([]*trie.MTrie, error) {
tries := make([]*trie.MTrie, 0, len(flatForest.Tries))
nodes, err := RebuildNodes(flatForest.Nodes)
if err != nil {
return nil, fmt.Errorf("reconstructing nodes from storables failed: %w", err)
}
//restore tries
for _, storableTrie := range flatForest.Tries {
mtrie, err := trie.NewMTrie(nodes[storableTrie.RootIndex])
if err != nil {
return nil, fmt.Errorf("restoring trie failed: %w", err)
}
rootHash := mtrie.RootHash()
if !bytes.Equal(storableTrie.RootHash, rootHash[:]) {
return nil, fmt.Errorf("restoring trie failed: roothash doesn't match")
}
tries = append(tries, mtrie)
}
return tries, nil
}
// RebuildNodes generates a list of Nodes from a sequence of StorableNodes.
// The sequence must obey the DESCENDANTS-FIRST-RELATIONSHIP
func RebuildNodes(storableNodes []*StorableNode) ([]*node.Node, error) {
nodes := make([]*node.Node, 0, len(storableNodes))
for i, snode := range storableNodes {
if snode == nil {
nodes = append(nodes, nil)
continue
}
if (snode.LIndex >= uint64(i)) || (snode.RIndex >= uint64(i)) {
return nil, fmt.Errorf("sequence of StorableNodes does not satisfy Descendents-First-Relationship")
}
if len(snode.Path) > 0 {
path, err := ledger.ToPath(snode.Path)
if err != nil {
return nil, fmt.Errorf("failed to decode a path of a storableNode %w", err)
}
payload, err := encoding.DecodePayload(snode.EncPayload)
if err != nil {
return nil, fmt.Errorf("failed to decode a payload for an storableNode %w", err)
}
nodeHash, err := hash.ToHash(snode.HashValue)
if err != nil {
return nil, fmt.Errorf("failed to decode a hash of a storableNode %w", err)
}
node := node.NewNode(int(snode.Height), nodes[snode.LIndex], nodes[snode.RIndex], path, payload, nodeHash, snode.MaxDepth, snode.RegCount)
nodes = append(nodes, node)
continue
}
nodeHash, err := hash.ToHash(snode.HashValue)
if err != nil {
return nil, fmt.Errorf("failed to decode a hash of a storableNode %w", err)
}
node := node.NewNode(int(snode.Height), nodes[snode.LIndex], nodes[snode.RIndex], ledger.DummyPath, nil, nodeHash, snode.MaxDepth, snode.RegCount)
nodes = append(nodes, node)
}
return nodes, nil
}