forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 4
/
storage.go
210 lines (178 loc) · 5.53 KB
/
storage.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
204
205
206
207
208
209
210
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package state
import (
"errors"
"github.com/MetalBlockchain/metalgo/database"
"github.com/MetalBlockchain/metalgo/ids"
"github.com/MetalBlockchain/metalgo/utils/math"
"github.com/MetalBlockchain/metalgo/vms/platformvm/warp"
)
var (
errWrongNonce = errors.New("wrong nonce")
errInsufficientBalance = errors.New("insufficient balance")
)
/*
* VMDB
* |-- initializedKey -> nil
* |-. blocks
* | |-- lastAcceptedKey -> blockID
* | |-- height -> blockID
* | '-- blockID -> block bytes
* |-. addresses
* | '-- addressID -> nonce
* | '-- addressID + chainID -> balance
* |-. chains
* | |-- chainID -> balance
* | '-- chainID + loanID -> nil
* '-. message
* '-- txID -> message bytes
*/
// Chain state
func IsInitialized(db database.KeyValueReader) (bool, error) {
return db.Has(initializedKey)
}
func SetInitialized(db database.KeyValueWriter) error {
return db.Put(initializedKey, nil)
}
// Block state
func GetLastAccepted(db database.KeyValueReader) (ids.ID, error) {
return database.GetID(db, blockPrefix)
}
func SetLastAccepted(db database.KeyValueWriter, blkID ids.ID) error {
return database.PutID(db, blockPrefix, blkID)
}
func GetBlockIDByHeight(db database.KeyValueReader, height uint64) (ids.ID, error) {
key := Flatten(blockPrefix, database.PackUInt64(height))
return database.GetID(db, key)
}
func GetBlock(db database.KeyValueReader, blkID ids.ID) ([]byte, error) {
key := Flatten(blockPrefix, blkID[:])
return db.Get(key)
}
func AddBlock(db database.KeyValueWriter, height uint64, blkID ids.ID, blk []byte) error {
heightToIDKey := Flatten(blockPrefix, database.PackUInt64(height))
if err := database.PutID(db, heightToIDKey, blkID); err != nil {
return err
}
idToBlockKey := Flatten(blockPrefix, blkID[:])
return db.Put(idToBlockKey, blk)
}
// Address state
func GetNonce(db database.KeyValueReader, address ids.ShortID) (uint64, error) {
key := Flatten(addressPrefix, address[:])
nonce, err := database.GetUInt64(db, key)
if errors.Is(err, database.ErrNotFound) {
return 0, nil
}
return nonce, err
}
func SetNonce(db database.KeyValueWriter, address ids.ShortID, nonce uint64) error {
key := Flatten(addressPrefix, address[:])
return database.PutUInt64(db, key, nonce)
}
func IncrementNonce(db database.KeyValueReaderWriter, address ids.ShortID, nonce uint64) error {
expectedNonce, err := GetNonce(db, address)
if err != nil {
return err
}
if nonce != expectedNonce {
return errWrongNonce
}
return SetNonce(db, address, nonce+1)
}
func GetBalance(db database.KeyValueReader, address ids.ShortID, chainID ids.ID) (uint64, error) {
key := Flatten(addressPrefix, address[:], chainID[:])
balance, err := database.GetUInt64(db, key)
if errors.Is(err, database.ErrNotFound) {
return 0, nil
}
return balance, err
}
func SetBalance(db database.KeyValueWriterDeleter, address ids.ShortID, chainID ids.ID, balance uint64) error {
key := Flatten(addressPrefix, address[:], chainID[:])
if balance == 0 {
return db.Delete(key)
}
return database.PutUInt64(db, key, balance)
}
func DecreaseBalance(db database.KeyValueReaderWriterDeleter, address ids.ShortID, chainID ids.ID, amount uint64) error {
balance, err := GetBalance(db, address, chainID)
if err != nil {
return err
}
if balance < amount {
return errInsufficientBalance
}
return SetBalance(db, address, chainID, balance-amount)
}
func IncreaseBalance(db database.KeyValueReaderWriterDeleter, address ids.ShortID, chainID ids.ID, amount uint64) error {
balance, err := GetBalance(db, address, chainID)
if err != nil {
return err
}
balance, err = math.Add64(balance, amount)
if err != nil {
return err
}
return SetBalance(db, address, chainID, balance)
}
// Chain state
func HasLoanID(db database.KeyValueReader, chainID ids.ID, loanID ids.ID) (bool, error) {
key := Flatten(chainPrefix, chainID[:], loanID[:])
return db.Has(key)
}
func AddLoanID(db database.KeyValueWriter, chainID ids.ID, loanID ids.ID) error {
key := Flatten(chainPrefix, chainID[:], loanID[:])
return db.Put(key, nil)
}
func GetLoan(db database.KeyValueReader, chainID ids.ID) (uint64, error) {
key := Flatten(chainPrefix, chainID[:])
balance, err := database.GetUInt64(db, key)
if errors.Is(err, database.ErrNotFound) {
return 0, nil
}
return balance, err
}
func SetLoan(db database.KeyValueWriterDeleter, chainID ids.ID, balance uint64) error {
key := Flatten(chainPrefix, chainID[:])
if balance == 0 {
return db.Delete(key)
}
return database.PutUInt64(db, key, balance)
}
func DecreaseLoan(db database.KeyValueReaderWriterDeleter, chainID ids.ID, amount uint64) error {
balance, err := GetLoan(db, chainID)
if err != nil {
return err
}
if balance < amount {
return errInsufficientBalance
}
return SetLoan(db, chainID, balance-amount)
}
func IncreaseLoan(db database.KeyValueReaderWriterDeleter, chainID ids.ID, amount uint64) error {
balance, err := GetLoan(db, chainID)
if err != nil {
return err
}
balance, err = math.Add64(balance, amount)
if err != nil {
return err
}
return SetLoan(db, chainID, balance)
}
// Message state
func GetMessage(db database.KeyValueReader, txID ids.ID) (*warp.UnsignedMessage, error) {
key := Flatten(messagePrefix, txID[:])
bytes, err := db.Get(key)
if err != nil {
return nil, err
}
return warp.ParseUnsignedMessage(bytes)
}
func SetMessage(db database.KeyValueWriter, txID ids.ID, message *warp.UnsignedMessage) error {
key := Flatten(messagePrefix, txID[:])
bytes := message.Bytes()
return db.Put(key, bytes)
}