forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 4
/
set.go
435 lines (350 loc) · 10.6 KB
/
set.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
// Copyright (C) 2019-2022, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package validators
import (
"errors"
"fmt"
"strings"
"sync"
"github.com/MetalBlockchain/metalgo/ids"
"github.com/MetalBlockchain/metalgo/utils/crypto/bls"
"github.com/MetalBlockchain/metalgo/utils/formatting"
"github.com/MetalBlockchain/metalgo/utils/math"
"github.com/MetalBlockchain/metalgo/utils/sampler"
"github.com/MetalBlockchain/metalgo/utils/set"
)
var (
_ Set = (*vdrSet)(nil)
errZeroWeight = errors.New("weight must be non-zero")
errDuplicateValidator = errors.New("duplicate validator")
errMissingValidator = errors.New("missing validator")
)
// Set of validators that can be sampled
type Set interface {
formatting.PrefixedStringer
// Add a new staker to the set.
// Returns an error if:
// - [weight] is 0
// - [nodeID] is already in the validator set
// - the total weight of the validator set would overflow uint64
// If an error is returned, the set will be unmodified.
Add(nodeID ids.NodeID, pk *bls.PublicKey, txID ids.ID, weight uint64) error
// AddWeight to an existing staker.
// Returns an error if:
// - [weight] is 0
// - [nodeID] is not already in the validator set
// - the total weight of the validator set would overflow uint64
// If an error is returned, the set will be unmodified.
AddWeight(nodeID ids.NodeID, weight uint64) error
// GetWeight retrieves the validator weight from the set.
GetWeight(ids.NodeID) uint64
// Get returns the validator tied to the specified ID.
Get(ids.NodeID) (*Validator, bool)
// SubsetWeight returns the sum of the weights of the validators.
SubsetWeight(set.Set[ids.NodeID]) uint64
// RemoveWeight from a staker. If the staker's weight becomes 0, the staker
// will be removed from the validator set.
// Returns an error if:
// - [weight] is 0
// - [nodeID] is not already in the validator set
// - the weight of the validator would become negative
// If an error is returned, the set will be unmodified.
RemoveWeight(nodeID ids.NodeID, weight uint64) error
// Contains returns true if there is a validator with the specified ID
// currently in the set.
Contains(ids.NodeID) bool
// Len returns the number of validators currently in the set.
Len() int
// List all the validators in this group
List() []*Validator
// Weight returns the cumulative weight of all validators in the set.
Weight() uint64
// Sample returns a collection of validatorIDs, potentially with duplicates.
// If sampling the requested size isn't possible, an error will be returned.
Sample(size int) ([]ids.NodeID, error)
// When a validator's weight changes, or a validator is added/removed,
// this listener is called.
RegisterCallbackListener(SetCallbackListener)
}
type SetCallbackListener interface {
OnValidatorAdded(validatorID ids.NodeID, pk *bls.PublicKey, txID ids.ID, weight uint64)
OnValidatorRemoved(validatorID ids.NodeID, weight uint64)
OnValidatorWeightChanged(validatorID ids.NodeID, oldWeight, newWeight uint64)
}
// NewSet returns a new, empty set of validators.
func NewSet() Set {
return &vdrSet{
vdrs: make(map[ids.NodeID]*Validator),
sampler: sampler.NewWeightedWithoutReplacement(),
}
}
// NewBestSet returns a new, empty set of validators.
func NewBestSet(expectedSampleSize int) Set {
return &vdrSet{
vdrs: make(map[ids.NodeID]*Validator),
sampler: sampler.NewBestWeightedWithoutReplacement(expectedSampleSize),
}
}
type vdrSet struct {
lock sync.RWMutex
vdrs map[ids.NodeID]*Validator
vdrSlice []*Validator
weights []uint64
totalWeight uint64
samplerInitialized bool
sampler sampler.WeightedWithoutReplacement
callbackListeners []SetCallbackListener
}
func (s *vdrSet) Add(nodeID ids.NodeID, pk *bls.PublicKey, txID ids.ID, weight uint64) error {
if weight == 0 {
return errZeroWeight
}
s.lock.Lock()
defer s.lock.Unlock()
return s.add(nodeID, pk, txID, weight)
}
func (s *vdrSet) add(nodeID ids.NodeID, pk *bls.PublicKey, txID ids.ID, weight uint64) error {
_, nodeExists := s.vdrs[nodeID]
if nodeExists {
return errDuplicateValidator
}
// We first calculate the new total weight of the set, as this guarantees
// that none of the following operations can overflow.
newTotalWeight, err := math.Add64(s.totalWeight, weight)
if err != nil {
return err
}
vdr := &Validator{
NodeID: nodeID,
PublicKey: pk,
TxID: txID,
Weight: weight,
index: len(s.vdrSlice),
}
s.vdrs[nodeID] = vdr
s.vdrSlice = append(s.vdrSlice, vdr)
s.weights = append(s.weights, weight)
s.totalWeight = newTotalWeight
s.samplerInitialized = false
s.callValidatorAddedCallbacks(nodeID, pk, txID, weight)
return nil
}
func (s *vdrSet) AddWeight(nodeID ids.NodeID, weight uint64) error {
if weight == 0 {
return errZeroWeight
}
s.lock.Lock()
defer s.lock.Unlock()
return s.addWeight(nodeID, weight)
}
func (s *vdrSet) addWeight(nodeID ids.NodeID, weight uint64) error {
vdr, nodeExists := s.vdrs[nodeID]
if !nodeExists {
return errMissingValidator
}
// We first calculate the new total weight of the set, as this guarantees
// that none of the following operations can overflow.
newTotalWeight, err := math.Add64(s.totalWeight, weight)
if err != nil {
return err
}
oldWeight := vdr.Weight
vdr.Weight += weight
s.weights[vdr.index] += weight
s.totalWeight = newTotalWeight
s.samplerInitialized = false
s.callWeightChangeCallbacks(nodeID, oldWeight, vdr.Weight)
return nil
}
func (s *vdrSet) GetWeight(nodeID ids.NodeID) uint64 {
s.lock.RLock()
defer s.lock.RUnlock()
return s.getWeight(nodeID)
}
func (s *vdrSet) getWeight(nodeID ids.NodeID) uint64 {
if vdr, ok := s.vdrs[nodeID]; ok {
return vdr.Weight
}
return 0
}
func (s *vdrSet) SubsetWeight(subset set.Set[ids.NodeID]) uint64 {
s.lock.RLock()
defer s.lock.RUnlock()
return s.subsetWeight(subset)
}
func (s *vdrSet) subsetWeight(subset set.Set[ids.NodeID]) uint64 {
var totalWeight uint64
for nodeID := range subset {
// Because [totalWeight] will be <= [s.totalWeight], we are guaranteed
// this will not overflow.
totalWeight += s.getWeight(nodeID)
}
return totalWeight
}
func (s *vdrSet) RemoveWeight(nodeID ids.NodeID, weight uint64) error {
if weight == 0 {
return errZeroWeight
}
s.lock.Lock()
defer s.lock.Unlock()
return s.removeWeight(nodeID, weight)
}
func (s *vdrSet) removeWeight(nodeID ids.NodeID, weight uint64) error {
vdr, ok := s.vdrs[nodeID]
if !ok {
return errMissingValidator
}
oldWeight := vdr.Weight
// We first calculate the new weight of the validator, as this guarantees
// that none of the following operations can underflow.
newWeight, err := math.Sub(oldWeight, weight)
if err != nil {
return err
}
if newWeight == 0 {
// Get the last element
lastIndex := len(s.vdrSlice) - 1
vdrToSwap := s.vdrSlice[lastIndex]
// Move element at last index --> index of removed validator
vdrToSwap.index = vdr.index
s.vdrSlice[vdr.index] = vdrToSwap
s.weights[vdr.index] = vdrToSwap.Weight
// Remove validator
delete(s.vdrs, nodeID)
s.vdrSlice[lastIndex] = nil
s.vdrSlice = s.vdrSlice[:lastIndex]
s.weights = s.weights[:lastIndex]
s.callValidatorRemovedCallbacks(nodeID, oldWeight)
} else {
vdr.Weight = newWeight
s.weights[vdr.index] = newWeight
s.callWeightChangeCallbacks(nodeID, oldWeight, newWeight)
}
s.totalWeight -= weight
s.samplerInitialized = false
return nil
}
func (s *vdrSet) Get(nodeID ids.NodeID) (*Validator, bool) {
s.lock.RLock()
defer s.lock.RUnlock()
return s.get(nodeID)
}
func (s *vdrSet) get(nodeID ids.NodeID) (*Validator, bool) {
vdr, ok := s.vdrs[nodeID]
if !ok {
return nil, false
}
copiedVdr := *vdr
return &copiedVdr, true
}
func (s *vdrSet) Contains(nodeID ids.NodeID) bool {
s.lock.RLock()
defer s.lock.RUnlock()
return s.contains(nodeID)
}
func (s *vdrSet) contains(nodeID ids.NodeID) bool {
_, contains := s.vdrs[nodeID]
return contains
}
func (s *vdrSet) Len() int {
s.lock.RLock()
defer s.lock.RUnlock()
return s.len()
}
func (s *vdrSet) len() int {
return len(s.vdrSlice)
}
func (s *vdrSet) List() []*Validator {
s.lock.RLock()
defer s.lock.RUnlock()
return s.list()
}
func (s *vdrSet) list() []*Validator {
list := make([]*Validator, len(s.vdrSlice))
for i, vdr := range s.vdrSlice {
copiedVdr := *vdr
list[i] = &copiedVdr
}
return list
}
func (s *vdrSet) Sample(size int) ([]ids.NodeID, error) {
if size == 0 {
return nil, nil
}
s.lock.Lock()
defer s.lock.Unlock()
return s.sample(size)
}
func (s *vdrSet) sample(size int) ([]ids.NodeID, error) {
if !s.samplerInitialized {
if err := s.sampler.Initialize(s.weights); err != nil {
return nil, err
}
s.samplerInitialized = true
}
indices, err := s.sampler.Sample(size)
if err != nil {
return nil, err
}
list := make([]ids.NodeID, size)
for i, index := range indices {
list[i] = s.vdrSlice[index].NodeID
}
return list, nil
}
func (s *vdrSet) Weight() uint64 {
s.lock.RLock()
defer s.lock.RUnlock()
return s.totalWeight
}
func (s *vdrSet) String() string {
return s.PrefixedString("")
}
func (s *vdrSet) PrefixedString(prefix string) string {
s.lock.RLock()
defer s.lock.RUnlock()
return s.prefixedString(prefix)
}
func (s *vdrSet) prefixedString(prefix string) string {
sb := strings.Builder{}
sb.WriteString(fmt.Sprintf("Validator Set: (Size = %d, Weight = %d)",
len(s.vdrSlice),
s.totalWeight,
))
format := fmt.Sprintf("\n%s Validator[%s]: %%33s, %%d", prefix, formatting.IntFormat(len(s.vdrSlice)-1))
for i, vdr := range s.vdrSlice {
sb.WriteString(fmt.Sprintf(
format,
i,
vdr.NodeID,
vdr.Weight,
))
}
return sb.String()
}
func (s *vdrSet) RegisterCallbackListener(callbackListener SetCallbackListener) {
s.lock.Lock()
defer s.lock.Unlock()
s.callbackListeners = append(s.callbackListeners, callbackListener)
for _, vdr := range s.vdrSlice {
callbackListener.OnValidatorAdded(vdr.NodeID, vdr.PublicKey, vdr.TxID, vdr.Weight)
}
}
// Assumes [s.lock] is held
func (s *vdrSet) callWeightChangeCallbacks(node ids.NodeID, oldWeight, newWeight uint64) {
for _, callbackListener := range s.callbackListeners {
callbackListener.OnValidatorWeightChanged(node, oldWeight, newWeight)
}
}
// Assumes [s.lock] is held
func (s *vdrSet) callValidatorAddedCallbacks(node ids.NodeID, pk *bls.PublicKey, txID ids.ID, weight uint64) {
for _, callbackListener := range s.callbackListeners {
callbackListener.OnValidatorAdded(node, pk, txID, weight)
}
}
// Assumes [s.lock] is held
func (s *vdrSet) callValidatorRemovedCallbacks(node ids.NodeID, weight uint64) {
for _, callbackListener := range s.callbackListeners {
callbackListener.OnValidatorRemoved(node, weight)
}
}