forked from CovenantSQL/CovenantSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blocknode.go
142 lines (123 loc) · 3.21 KB
/
blocknode.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
/*
* Copyright 2018 The CovenantSQL Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package blockproducer
import (
"sync/atomic"
"github.com/CovenantSQL/CovenantSQL/crypto/hash"
"github.com/CovenantSQL/CovenantSQL/types"
)
type blockNode struct {
parent *blockNode
// Extra fields
count uint32
height uint32
// Cached fields for quick reference
hash hash.Hash
txCount int
block atomic.Value
}
func newBlockNode(h uint32, b *types.BPBlock, p *blockNode) (node *blockNode) {
node = &blockNode{
parent: p,
count: func() uint32 {
if p != nil {
return p.count + 1
}
return 0
}(),
height: h,
hash: b.SignedHeader.DataHash,
txCount: len(b.Transactions),
}
node.block.Store(b)
return
}
// newNonCacheBlockNode returns a block node without the *types.BPBlock cached.
func newNonCacheBlockNode(h uint32, b *types.BPBlock, p *blockNode) (node *blockNode) {
node = newBlockNode(h, b, p)
node.clear()
return
}
func (n *blockNode) load() *types.BPBlock {
return n.block.Load().(*types.BPBlock)
}
func (n *blockNode) clear() {
n.block.Store((*types.BPBlock)(nil))
}
// fetchNodeList returns the block node list within range [from, n.count] from node head n.
func (n *blockNode) fetchNodeList(from uint32) (bl []*blockNode) {
if n.count < from {
return
}
bl = make([]*blockNode, n.count-from+1)
var iter = n
for i := len(bl) - 1; i >= 0; i-- {
bl[i] = iter
iter = iter.parent
}
return
}
func (n *blockNode) ancestor(h uint32) *blockNode {
if h > n.height {
return nil
}
ancestor := n
for ancestor != nil && ancestor.height > h {
ancestor = ancestor.parent
}
if ancestor != nil && ancestor.height != h {
ancestor = nil
}
return ancestor
}
func (n *blockNode) ancestorByCount(c uint32) *blockNode {
if c > n.count {
return nil
}
ancestor := n
for ancestor != nil && ancestor.count != c {
ancestor = ancestor.parent
}
return ancestor
}
// lastIrreversible returns the last irreversible block node with the given confirmations
// from head n. Especially, the block at count 0, also known as the genesis block,
// is irreversible.
func (n *blockNode) lastIrreversible(confirm uint32) (irr *blockNode) {
var count uint32
if n.count > confirm {
count = n.count - confirm
}
for irr = n; irr.count > count; irr = irr.parent {
}
return
}
func (n *blockNode) hasAncestor(anc *blockNode) bool {
var match = n.ancestorByCount(anc.count)
return match != nil && match.hash == anc.hash
}
func (n *blockNode) hasAncestorWithMinCount(
blockHash hash.Hash, minCount uint32) (match *blockNode, ok bool,
) {
for match = n; match != nil && match.count >= minCount; match = match.parent {
if match.hash.IsEqual(&blockHash) {
ok = true
return
}
}
match = nil
return
}