-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutxo.go
203 lines (177 loc) · 4.72 KB
/
utxo.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
package main
import (
"bytes"
"encoding/gob"
"errors"
"fmt"
bolt "go.etcd.io/bbolt"
)
type UTxO struct {
Value uint64
Path TxOPath
}
// A slice of unspent transaction outputs
type UTxOs []*UTxO
func (utxos *UTxOs) Serialize() []byte {
buf := bytes.Buffer{}
encoder := gob.NewEncoder(&buf)
err := encoder.Encode(utxos)
if err != nil {
panic(err)
}
return buf.Bytes()
}
func (utxos *UTxOs) Balance() uint64 {
var balance uint64
for _, uTxO := range *utxos {
balance += uTxO.Value
}
return balance
}
type UTxOMap struct {
Map map[AccountId]*UTxOs
utxoBucket *bolt.Bucket
}
func NewUTxOMap(t *bolt.Tx) *UTxOMap {
if !t.Writable() {
panic("Can't create UTxO map from readonly transaction")
}
utxoBucket := t.Bucket([]byte(utxoBucketName))
if utxoBucket == nil {
panic("UTxO bucket not found!")
}
return &UTxOMap{
Map: make(map[AccountId]*UTxOs),
utxoBucket: utxoBucket,
}
}
// Reads a user from the db into the map, overriding the current map value
// Returns an error if the user can not be found
func (utxoMap *UTxOMap) readUserFromDB(user AccountId) error {
raw := utxoMap.utxoBucket.Get(user[:])
if raw == nil {
return errors.New(fmt.Sprintf("User '%x' not found in UTxO bucket", user))
}
utxos := UTxOsDeserialize(raw)
utxoMap.Map[user] = utxos
return nil
}
func (utxoMap *UTxOMap) Get(user AccountId) *UTxOs {
// Check for cache hit
utxos := utxoMap.Map[user]
if utxos != nil {
return utxos
} else {
if err := utxoMap.readUserFromDB(user); err != nil {
// User is new (not present in memory or in db)
utxoMap.Map[user] = &UTxOs{}
}
return utxoMap.Map[user]
}
}
func (utxoMap *UTxOMap) Set(user AccountId, utxos UTxOs) {
utxoMap.Map[user] = &utxos
}
// Removes the outputs spent by a transaction from the map
func (utxoMap *UTxOMap) RemoveOutputsForInputs(tx *Tx) {
for _, in := range tx.Inputs {
// The list of outputs by the sender
sendersOutputs := *utxoMap.Get(in.From)
// Find index of the transaction output with matching path
removeOutputIdx := -1
for outIdx, output := range sendersOutputs {
if output.Path.BlockHash == in.Output.BlockHash &&
output.Path.TxIdx == in.Output.TxIdx &&
output.Path.OutputIdx == in.Output.OutputIdx {
removeOutputIdx = outIdx
break
}
}
// If there is no matching output the transaction would be invalid!
if removeOutputIdx == -1 {
panic("Did not find matching output for input in UTxO generation")
} else {
// Remove the spent output
sendersOutputs[removeOutputIdx] = sendersOutputs[len(sendersOutputs)-1]
utxoMap.Set(in.From, sendersOutputs[:len(sendersOutputs)-1])
}
}
}
func (utxoMap *UTxOMap) AddOutputs(tx *Tx, txIdx uint32, blockHash SHA256Sum) {
for outIdx, out := range tx.Outputs {
utxos := append(*utxoMap.Get(out.To), &UTxO{
Value: out.Value,
Path: TxOPath{
BlockHash: blockHash,
TxIdx: txIdx,
OutputIdx: uint32(outIdx),
},
})
utxoMap.Set(out.To, utxos)
}
}
// Writes all values of the map back to the database
func (utxoMap *UTxOMap) Persist() {
for owner, UTxOs := range utxoMap.Map {
utxoMap.utxoBucket.Put(owner[:], UTxOs.Serialize())
}
}
// (Re)creates the UTxO-Set by iterating over the entire blockchain
func (bc *Blockchain) GenerateUTxO() {
// Empty the UTxO bucket
if err := recreateBucket(bc.db, utxoBucketName); err != nil {
panic(err)
}
bc.db.Update(func(t *bolt.Tx) error {
chainBucket := t.Bucket([]byte(chainBucketName))
utxoMap := NewUTxOMap(t)
currBlockHash := bc.latestBlock
var currBlock *Block
for currBlockHash != nullHash {
currBlock = BlockDeserialize(chainBucket.Get(currBlockHash[:]))
for txIdx, tx := range currBlock.Transactions {
utxoMap.RemoveOutputsForInputs(tx)
utxoMap.AddOutputs(tx, uint32(txIdx), currBlockHash)
}
currBlockHash = currBlock.LastBlockHash
}
utxoMap.Persist()
return nil
})
}
// Changes the UTxO-Set by applying the transactions in a given block to it
func (bc *Blockchain) UpdateUTxOSet(block *Block) {
bc.db.Update(func(t *bolt.Tx) error {
utxoMap := NewUTxOMap(t)
for txIdx, tx := range block.Transactions {
utxoMap.RemoveOutputsForInputs(tx)
utxoMap.AddOutputs(tx, uint32(txIdx), block.PoW.Hash)
}
utxoMap.Persist()
return nil
})
}
func UTxOsDeserialize(rawUTxOs []byte) *UTxOs {
var utxos UTxOs
buf := bytes.Buffer{}
buf.Write(rawUTxOs)
decoder := gob.NewDecoder(&buf)
err := decoder.Decode(&utxos)
if err != nil {
panic(err)
}
return &utxos
}
func (bc *Blockchain) GetUTxOsForUser(user AccountId) *UTxOs {
var rawUTxOs []byte
bc.db.View(func(t *bolt.Tx) error {
utxoBucket := t.Bucket([]byte(utxoBucketName))
rawUTxOs = utxoBucket.Get(user[:])
return nil
})
if rawUTxOs != nil {
return UTxOsDeserialize(rawUTxOs)
} else {
return &UTxOs{}
}
}