mirror of
https://github.com/status-im/go-waku.git
synced 2025-02-10 12:36:35 +00:00
* feat: update lightpush API to make pubSubTopic optional as per autosharding * Extract contentFilter and subscriptions out of filter to reuse in relay (#779) * chore: extract contentFilter outside filter package * chore: move subscription outside of filter so that it can be modified and reused for relay * Feat: filter select peer for sharding (#783) * update selectPeer to support pubsubTopic based selection
71 lines
2.3 KiB
Go
71 lines
2.3 KiB
Go
package peer_exchange
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/libp2p/go-libp2p/core/host"
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
|
"github.com/waku-org/go-waku/waku/v2/peermanager"
|
|
"github.com/waku-org/go-waku/waku/v2/utils"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type PeerExchangeParameters struct {
|
|
host host.Host
|
|
selectedPeer peer.ID
|
|
pm *peermanager.PeerManager
|
|
log *zap.Logger
|
|
}
|
|
|
|
type PeerExchangeOption func(*PeerExchangeParameters)
|
|
|
|
// WithPeer is an option used to specify the peerID to push a waku message to
|
|
func WithPeer(p peer.ID) PeerExchangeOption {
|
|
return func(params *PeerExchangeParameters) {
|
|
params.selectedPeer = p
|
|
}
|
|
}
|
|
|
|
// WithAutomaticPeerSelection is an option used to randomly select a peer from the peer store
|
|
// to obtains peers from. If a list of specific peers is passed, the peer will be chosen
|
|
// from that list assuming it supports the chosen protocol, otherwise it will chose a peer
|
|
// from the node peerstore
|
|
func WithAutomaticPeerSelection(fromThesePeers ...peer.ID) PeerExchangeOption {
|
|
return func(params *PeerExchangeParameters) {
|
|
var p peer.ID
|
|
var err error
|
|
if params.pm == nil {
|
|
p, err = utils.SelectPeer(params.host, PeerExchangeID_v20alpha1, fromThesePeers, params.log)
|
|
} else {
|
|
p, err = params.pm.SelectPeer(PeerExchangeID_v20alpha1, "", fromThesePeers...)
|
|
}
|
|
if err == nil {
|
|
params.selectedPeer = p
|
|
} else {
|
|
params.log.Info("selecting peer", zap.Error(err))
|
|
}
|
|
}
|
|
}
|
|
|
|
// WithFastestPeerSelection is an option used to select a peer from the peer store
|
|
// with the lowest ping. If a list of specific peers is passed, the peer will be chosen
|
|
// from that list assuming it supports the chosen protocol, otherwise it will chose a peer
|
|
// from the node peerstore
|
|
func WithFastestPeerSelection(ctx context.Context, fromThesePeers ...peer.ID) PeerExchangeOption {
|
|
return func(params *PeerExchangeParameters) {
|
|
p, err := utils.SelectPeerWithLowestRTT(ctx, params.host, PeerExchangeID_v20alpha1, fromThesePeers, params.log)
|
|
if err == nil {
|
|
params.selectedPeer = p
|
|
} else {
|
|
params.log.Info("selecting peer", zap.Error(err))
|
|
}
|
|
}
|
|
}
|
|
|
|
// DefaultOptions are the default options to be used when using the lightpush protocol
|
|
func DefaultOptions(host host.Host) []PeerExchangeOption {
|
|
return []PeerExchangeOption{
|
|
WithAutomaticPeerSelection(),
|
|
}
|
|
}
|