prysm-pulse/beacon-chain/operations/synccommittee/contribution.go
terencechain d17996f8b0
Update to V4 🚀 (#12134)
* Update V3 from V4

* Fix build v3 -> v4

* Update ssz

* Update beacon_chain.pb.go

* Fix formatter import

* Update update-mockgen.sh comment to v4

* Fix conflicts. Pass build and tests

* Fix test
2023-03-17 18:52:56 +00:00

91 lines
2.7 KiB
Go

package synccommittee
import (
"strconv"
"github.com/pkg/errors"
"github.com/prysmaticlabs/prysm/v4/consensus-types/primitives"
"github.com/prysmaticlabs/prysm/v4/container/queue"
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
)
// To give two slots tolerance for objects that arrive earlier.
// This account for previous slot, current slot, two future slots.
const syncCommitteeMaxQueueSize = 4
// SaveSyncCommitteeContribution saves a sync committee contribution in to a priority queue.
// The priority queue is capped at syncCommitteeMaxQueueSize contributions.
func (s *Store) SaveSyncCommitteeContribution(cont *ethpb.SyncCommitteeContribution) error {
if cont == nil {
return errNilContribution
}
s.contributionLock.Lock()
defer s.contributionLock.Unlock()
item, err := s.contributionCache.PopByKey(syncCommitteeKey(cont.Slot))
if err != nil {
return err
}
copied := ethpb.CopySyncCommitteeContribution(cont)
// Contributions exist in the queue. Append instead of insert new.
if item != nil {
contributions, ok := item.Value.([]*ethpb.SyncCommitteeContribution)
if !ok {
return errors.New("not typed []ethpb.SyncCommitteeContribution")
}
contributions = append(contributions, copied)
savedSyncCommitteeContributionTotal.Inc()
return s.contributionCache.Push(&queue.Item{
Key: syncCommitteeKey(cont.Slot),
Value: contributions,
Priority: int64(cont.Slot),
})
}
// Contribution does not exist. Insert new.
if err := s.contributionCache.Push(&queue.Item{
Key: syncCommitteeKey(cont.Slot),
Value: []*ethpb.SyncCommitteeContribution{copied},
Priority: int64(cont.Slot),
}); err != nil {
return err
}
savedSyncCommitteeContributionTotal.Inc()
// Trim contributions in queue down to syncCommitteeMaxQueueSize.
if s.contributionCache.Len() > syncCommitteeMaxQueueSize {
if _, err := s.contributionCache.Pop(); err != nil {
return err
}
}
return nil
}
// SyncCommitteeContributions returns sync committee contributions by slot from the priority queue.
// Upon retrieval, the contribution is removed from the queue.
func (s *Store) SyncCommitteeContributions(slot primitives.Slot) ([]*ethpb.SyncCommitteeContribution, error) {
s.contributionLock.RLock()
defer s.contributionLock.RUnlock()
item := s.contributionCache.RetrieveByKey(syncCommitteeKey(slot))
if item == nil {
return []*ethpb.SyncCommitteeContribution{}, nil
}
contributions, ok := item.Value.([]*ethpb.SyncCommitteeContribution)
if !ok {
return nil, errors.New("not typed []ethpb.SyncCommitteeContribution")
}
return contributions, nil
}
func syncCommitteeKey(slot primitives.Slot) string {
return strconv.FormatUint(uint64(slot), 10)
}