-
Notifications
You must be signed in to change notification settings - Fork 672
/
builder.go
172 lines (144 loc) · 4.07 KB
/
builder.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
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package builder
import (
"context"
"errors"
"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/snow/consensus/snowman"
"github.com/ava-labs/avalanchego/utils/set"
"github.com/ava-labs/avalanchego/utils/timer/mockable"
"github.com/ava-labs/avalanchego/utils/units"
"github.com/ava-labs/avalanchego/vms/avm/block"
"github.com/ava-labs/avalanchego/vms/avm/state"
"github.com/ava-labs/avalanchego/vms/avm/txs"
"github.com/ava-labs/avalanchego/vms/avm/txs/mempool"
blockexecutor "github.com/ava-labs/avalanchego/vms/avm/block/executor"
txexecutor "github.com/ava-labs/avalanchego/vms/avm/txs/executor"
)
// targetBlockSize is the max block size we aim to produce
const targetBlockSize = 128 * units.KiB
var (
_ Builder = (*builder)(nil)
ErrNoTransactions = errors.New("no transactions")
)
type Builder interface {
// BuildBlock can be called to attempt to create a new block
BuildBlock(context.Context) (snowman.Block, error)
}
// builder implements a simple builder to convert txs into valid blocks
type builder struct {
backend *txexecutor.Backend
manager blockexecutor.Manager
clk *mockable.Clock
// Pool of all txs that may be able to be added
mempool mempool.Mempool
}
func New(
backend *txexecutor.Backend,
manager blockexecutor.Manager,
clk *mockable.Clock,
mempool mempool.Mempool,
) Builder {
return &builder{
backend: backend,
manager: manager,
clk: clk,
mempool: mempool,
}
}
// BuildBlock builds a block to be added to consensus.
func (b *builder) BuildBlock(context.Context) (snowman.Block, error) {
defer b.mempool.RequestBuildBlock()
ctx := b.backend.Ctx
ctx.Log.Debug("starting to attempt to build a block")
// Get the block to build on top of and retrieve the new block's context.
preferredID := b.manager.Preferred()
preferred, err := b.manager.GetStatelessBlock(preferredID)
if err != nil {
return nil, err
}
preferredHeight := preferred.Height()
preferredTimestamp := preferred.Timestamp()
nextHeight := preferredHeight + 1
nextTimestamp := b.clk.Time() // [timestamp] = max(now, parentTime)
if preferredTimestamp.After(nextTimestamp) {
nextTimestamp = preferredTimestamp
}
stateDiff, err := state.NewDiff(preferredID, b.manager)
if err != nil {
return nil, err
}
var (
blockTxs []*txs.Tx
inputs set.Set[ids.ID]
remainingSize = targetBlockSize
)
for {
tx, exists := b.mempool.Peek()
// Invariant: [mempool.MaxTxSize] < [targetBlockSize]. This guarantees
// that we will only stop building a block once there are no
// transactions in the mempool or the block is at least
// [targetBlockSize - mempool.MaxTxSize] bytes full.
if !exists || len(tx.Bytes()) > remainingSize {
break
}
b.mempool.Remove(tx)
// Invariant: [tx] has already been syntactically verified.
txDiff, err := state.NewDiffOn(stateDiff)
if err != nil {
return nil, err
}
err = tx.Unsigned.Visit(&txexecutor.SemanticVerifier{
Backend: b.backend,
State: txDiff,
Tx: tx,
})
if err != nil {
txID := tx.ID()
b.mempool.MarkDropped(txID, err)
continue
}
executor := &txexecutor.Executor{
Codec: b.backend.Codec,
State: txDiff,
Tx: tx,
}
err = tx.Unsigned.Visit(executor)
if err != nil {
txID := tx.ID()
b.mempool.MarkDropped(txID, err)
continue
}
if inputs.Overlaps(executor.Inputs) {
txID := tx.ID()
b.mempool.MarkDropped(txID, blockexecutor.ErrConflictingBlockTxs)
continue
}
err = b.manager.VerifyUniqueInputs(preferredID, inputs)
if err != nil {
txID := tx.ID()
b.mempool.MarkDropped(txID, err)
continue
}
inputs.Union(executor.Inputs)
txDiff.AddTx(tx)
txDiff.Apply(stateDiff)
remainingSize -= len(tx.Bytes())
blockTxs = append(blockTxs, tx)
}
if len(blockTxs) == 0 {
return nil, ErrNoTransactions
}
statelessBlk, err := block.NewStandardBlock(
preferredID,
nextHeight,
nextTimestamp,
blockTxs,
b.backend.Codec,
)
if err != nil {
return nil, err
}
return b.manager.NewBlock(statelessBlk), nil
}