mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
109 lines
2.3 KiB
Go
109 lines
2.3 KiB
Go
|
package blossomsub
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/libp2p/go-libp2p/core/host"
|
||
|
"github.com/libp2p/go-libp2p/core/peer"
|
||
|
"github.com/libp2p/go-libp2p/core/protocol"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
FloodSubID = protocol.ID("/floodsub/1.0.0")
|
||
|
FloodSubBitmaskSearchSize = 5
|
||
|
)
|
||
|
|
||
|
// NewFloodsubWithProtocols returns a new floodsub-enabled PubSub objecting using the protocols specified in ps.
|
||
|
func NewFloodsubWithProtocols(ctx context.Context, h host.Host, ps []protocol.ID, opts ...Option) (*PubSub, error) {
|
||
|
rt := &FloodSubRouter{
|
||
|
protocols: ps,
|
||
|
}
|
||
|
return NewPubSub(ctx, h, rt, opts...)
|
||
|
}
|
||
|
|
||
|
// NewFloodSub returns a new PubSub object using the FloodSubRouter.
|
||
|
func NewFloodSub(ctx context.Context, h host.Host, opts ...Option) (*PubSub, error) {
|
||
|
return NewFloodsubWithProtocols(ctx, h, []protocol.ID{FloodSubID}, opts...)
|
||
|
}
|
||
|
|
||
|
type FloodSubRouter struct {
|
||
|
p *PubSub
|
||
|
protocols []protocol.ID
|
||
|
tracer *pubsubTracer
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) Protocols() []protocol.ID {
|
||
|
return fs.protocols
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) Attach(p *PubSub) {
|
||
|
fs.p = p
|
||
|
fs.tracer = p.tracer
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) AddPeer(p peer.ID, proto protocol.ID) {
|
||
|
fs.tracer.AddPeer(p, proto)
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) RemovePeer(p peer.ID) {
|
||
|
fs.tracer.RemovePeer(p)
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) EnoughPeers(bitmask []byte, suggested int) bool {
|
||
|
// check all peers in the bitmask
|
||
|
tmap, ok := fs.p.bitmasks[string(bitmask)]
|
||
|
if !ok {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
if suggested == 0 {
|
||
|
suggested = FloodSubBitmaskSearchSize
|
||
|
}
|
||
|
|
||
|
if len(tmap) >= suggested {
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) AcceptFrom(peer.ID) AcceptStatus {
|
||
|
return AcceptAll
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) HandleRPC(rpc *RPC) {}
|
||
|
|
||
|
func (fs *FloodSubRouter) Publish(msg *Message) {
|
||
|
from := msg.ReceivedFrom
|
||
|
bitmask := msg.GetBitmask()
|
||
|
|
||
|
out := rpcWithMessages(msg.Message)
|
||
|
for pid := range fs.p.bitmasks[string(bitmask)] {
|
||
|
if pid == from || pid == peer.ID(msg.GetFrom()) {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
mch, ok := fs.p.peers[pid]
|
||
|
if !ok {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
select {
|
||
|
case mch <- out:
|
||
|
fs.tracer.SendRPC(out, pid)
|
||
|
default:
|
||
|
log.Infof("dropping message to peer %s: queue full", pid)
|
||
|
fs.tracer.DropRPC(out, pid)
|
||
|
// Drop it. The peer is too slow.
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) Join(bitmask []byte) {
|
||
|
fs.tracer.Join(bitmask)
|
||
|
}
|
||
|
|
||
|
func (fs *FloodSubRouter) Leave(bitmask []byte) {
|
||
|
fs.tracer.Leave(bitmask)
|
||
|
}
|