mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-10 07:58:22 -05:00
56 lines
1.6 KiB
Go
56 lines
1.6 KiB
Go
package stateutil
|
|
|
|
import (
|
|
"sync"
|
|
|
|
coreutils "github.com/OffchainLabs/prysm/v7/beacon-chain/core/transition/stateutils"
|
|
fieldparams "github.com/OffchainLabs/prysm/v7/config/fieldparams"
|
|
"github.com/OffchainLabs/prysm/v7/consensus-types/primitives"
|
|
ethpb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
// ValidatorMapHandler is a container to hold the map and a reference tracker for how many
|
|
// states shared this.
|
|
type ValidatorMapHandler struct {
|
|
valIdxMap map[[fieldparams.BLSPubkeyLength]byte]primitives.ValidatorIndex
|
|
mapRef *Reference
|
|
*sync.RWMutex
|
|
}
|
|
|
|
// NewValMapHandler returns a new validator map handler.
|
|
func NewValMapHandler(vals []*ethpb.Validator) *ValidatorMapHandler {
|
|
return &ValidatorMapHandler{
|
|
valIdxMap: coreutils.ValidatorIndexMap(vals),
|
|
mapRef: &Reference{refs: 1},
|
|
RWMutex: new(sync.RWMutex),
|
|
}
|
|
}
|
|
|
|
// AddRef copies the whole map and returns a map handler with the copied map.
|
|
func (v *ValidatorMapHandler) AddRef() {
|
|
v.mapRef.AddRef()
|
|
}
|
|
|
|
// IsNil returns true if the underlying validator index map is nil.
|
|
func (v *ValidatorMapHandler) IsNil() bool {
|
|
return v.mapRef == nil || v.valIdxMap == nil
|
|
}
|
|
|
|
// Get the validator index using the corresponding public key.
|
|
func (v *ValidatorMapHandler) Get(key [fieldparams.BLSPubkeyLength]byte) (primitives.ValidatorIndex, bool) {
|
|
v.RLock()
|
|
defer v.RUnlock()
|
|
idx, ok := v.valIdxMap[key]
|
|
if !ok {
|
|
return 0, false
|
|
}
|
|
return idx, true
|
|
}
|
|
|
|
// Set the validator index using the corresponding public key.
|
|
func (v *ValidatorMapHandler) Set(key [fieldparams.BLSPubkeyLength]byte, index primitives.ValidatorIndex) {
|
|
v.Lock()
|
|
defer v.Unlock()
|
|
v.valIdxMap[key] = index
|
|
}
|