2019-08-16 17:13:04 +00:00
|
|
|
package p2p
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
|
2021-09-21 19:59:25 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
2022-04-29 14:32:11 +00:00
|
|
|
types "github.com/prysmaticlabs/prysm/consensus-types/primitives"
|
2021-08-27 01:34:20 +00:00
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
2021-05-17 18:32:04 +00:00
|
|
|
"google.golang.org/protobuf/proto"
|
2019-08-16 17:13:04 +00:00
|
|
|
)
|
|
|
|
|
2021-08-27 01:34:20 +00:00
|
|
|
// gossipTopicMappings represent the protocol ID to protobuf message type map for easy
|
2019-08-16 17:13:04 +00:00
|
|
|
// lookup.
|
2021-08-27 01:34:20 +00:00
|
|
|
var gossipTopicMappings = map[string]proto.Message{
|
2021-12-07 17:52:39 +00:00
|
|
|
BlockSubnetTopicFormat: ðpb.SignedBeaconBlock{},
|
|
|
|
AttestationSubnetTopicFormat: ðpb.Attestation{},
|
|
|
|
ExitSubnetTopicFormat: ðpb.SignedVoluntaryExit{},
|
|
|
|
ProposerSlashingSubnetTopicFormat: ðpb.ProposerSlashing{},
|
|
|
|
AttesterSlashingSubnetTopicFormat: ðpb.AttesterSlashing{},
|
|
|
|
AggregateAndProofSubnetTopicFormat: ðpb.SignedAggregateAttestationAndProof{},
|
2021-08-27 01:34:20 +00:00
|
|
|
SyncContributionAndProofSubnetTopicFormat: ðpb.SignedContributionAndProof{},
|
|
|
|
SyncCommitteeSubnetTopicFormat: ðpb.SyncCommitteeMessage{},
|
|
|
|
}
|
|
|
|
|
|
|
|
// GossipTopicMappings is a function to return the assigned data type
|
|
|
|
// versioned by epoch.
|
|
|
|
func GossipTopicMappings(topic string, epoch types.Epoch) proto.Message {
|
2022-01-20 14:12:15 +00:00
|
|
|
if topic == BlockSubnetTopicFormat {
|
|
|
|
if epoch >= params.BeaconConfig().BellatrixForkEpoch {
|
2022-01-26 07:24:47 +00:00
|
|
|
return ðpb.SignedBeaconBlockBellatrix{}
|
2022-01-20 14:12:15 +00:00
|
|
|
}
|
|
|
|
if epoch >= params.BeaconConfig().AltairForkEpoch {
|
|
|
|
return ðpb.SignedBeaconBlockAltair{}
|
|
|
|
}
|
2021-08-27 01:34:20 +00:00
|
|
|
}
|
|
|
|
return gossipTopicMappings[topic]
|
|
|
|
}
|
|
|
|
|
|
|
|
// AllTopics returns all topics stored in our
|
|
|
|
// gossip mapping.
|
|
|
|
func AllTopics() []string {
|
2021-09-24 17:42:16 +00:00
|
|
|
var topics []string
|
2021-08-27 01:34:20 +00:00
|
|
|
for k := range gossipTopicMappings {
|
|
|
|
topics = append(topics, k)
|
|
|
|
}
|
|
|
|
return topics
|
2019-08-16 17:13:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GossipTypeMapping is the inverse of GossipTopicMappings so that an arbitrary protobuf message
|
|
|
|
// can be mapped to a protocol ID string.
|
2021-08-27 01:34:20 +00:00
|
|
|
var GossipTypeMapping = make(map[reflect.Type]string, len(gossipTopicMappings))
|
2019-08-16 17:13:04 +00:00
|
|
|
|
|
|
|
func init() {
|
2021-08-27 01:34:20 +00:00
|
|
|
for k, v := range gossipTopicMappings {
|
2019-08-16 17:13:04 +00:00
|
|
|
GossipTypeMapping[reflect.TypeOf(v)] = k
|
|
|
|
}
|
2022-05-13 18:20:39 +00:00
|
|
|
// Specially handle Altair objects.
|
2021-08-27 01:34:20 +00:00
|
|
|
GossipTypeMapping[reflect.TypeOf(ðpb.SignedBeaconBlockAltair{})] = BlockSubnetTopicFormat
|
2022-05-13 18:20:39 +00:00
|
|
|
// Specially handle Bellatrix objects.
|
2022-01-26 07:24:47 +00:00
|
|
|
GossipTypeMapping[reflect.TypeOf(ðpb.SignedBeaconBlockBellatrix{})] = BlockSubnetTopicFormat
|
2022-05-13 18:20:39 +00:00
|
|
|
GossipTypeMapping[reflect.TypeOf(ðpb.SignedBlindedBeaconBlockBellatrix{})] = BlockSubnetTopicFormat
|
2019-08-16 17:13:04 +00:00
|
|
|
}
|