Struct libp2p::gossipsub::Behaviour

pub struct Behaviour<D = IdentityTransform, F = AllowAllSubscriptionFilter> { /* private fields */ }
Available on crate feature gossipsub only.
Expand description

Network behaviour that handles the gossipsub protocol.

NOTE: Initialisation requires a MessageAuthenticity and Config instance. If message signing is disabled, the ValidationMode in the config should be adjusted to an appropriate level to accept unsigned messages.

The DataTransform trait allows applications to optionally add extra encoding/decoding functionality to the underlying messages. This is intended for custom compression algorithms.

The TopicSubscriptionFilter allows applications to implement specific filters on topics to prevent unwanted messages being propagated and evaluated.

Implementations§

§

impl<D, F> Behaviour<D, F>

pub fn new( privacy: MessageAuthenticity, config: Config ) -> Result<Behaviour<D, F>, &'static str>

Creates a Gossipsub Behaviour struct given a set of parameters specified via a Config. This has no subscription filter and uses no compression.

pub fn new_with_metrics( privacy: MessageAuthenticity, config: Config, metrics_registry: &mut Registry, metrics_config: Config ) -> Result<Behaviour<D, F>, &'static str>

Creates a Gossipsub Behaviour struct given a set of parameters specified via a Config. This has no subscription filter and uses no compression. Metrics can be evaluated by passing a reference to a Registry.

§

impl<D, F> Behaviour<D, F>

pub fn new_with_subscription_filter( privacy: MessageAuthenticity, config: Config, metrics: Option<(&mut Registry, Config)>, subscription_filter: F ) -> Result<Behaviour<D, F>, &'static str>

Creates a Gossipsub Behaviour struct given a set of parameters specified via a Config and a custom subscription filter.

§

impl<D, F> Behaviour<D, F>

pub fn new_with_transform( privacy: MessageAuthenticity, config: Config, metrics: Option<(&mut Registry, Config)>, data_transform: D ) -> Result<Behaviour<D, F>, &'static str>

Creates a Gossipsub Behaviour struct given a set of parameters specified via a Config and a custom data transform.

§

impl<D, F> Behaviour<D, F>

pub fn new_with_subscription_filter_and_transform( privacy: MessageAuthenticity, config: Config, metrics: Option<(&mut Registry, Config)>, subscription_filter: F, data_transform: D ) -> Result<Behaviour<D, F>, &'static str>

Creates a Gossipsub Behaviour struct given a set of parameters specified via a Config and a custom subscription filter and data transform.

§

impl<D, F> Behaviour<D, F>
where D: DataTransform + Send + 'static, F: TopicSubscriptionFilter + Send + 'static,

pub fn topics(&self) -> impl Iterator<Item = &TopicHash>

Lists the hashes of the topics we are currently subscribed to.

pub fn mesh_peers( &self, topic_hash: &TopicHash ) -> impl Iterator<Item = &PeerId>

Lists all mesh peers for a certain topic hash.

pub fn all_mesh_peers(&self) -> impl Iterator<Item = &PeerId>

pub fn all_peers(&self) -> impl Iterator<Item = (&PeerId, Vec<&TopicHash>)>

Lists all known peers and their associated subscribed topics.

pub fn peer_protocol(&self) -> impl Iterator<Item = (&PeerId, &PeerKind)>

Lists all known peers and their associated protocol.

pub fn peer_score(&self, peer_id: &PeerId) -> Option<f64>

Returns the gossipsub score for a given peer, if one exists.

pub fn subscribe<H>( &mut self, topic: &Topic<H> ) -> Result<bool, SubscriptionError>
where H: Hasher,

Subscribe to a topic.

Returns [Ok(true)] if the subscription worked. Returns [Ok(false)] if we were already subscribed.

pub fn unsubscribe<H>(&mut self, topic: &Topic<H>) -> Result<bool, PublishError>
where H: Hasher,

Unsubscribes from a topic.

Returns [Ok(true)] if we were subscribed to this topic.

pub fn publish( &mut self, topic: impl Into<TopicHash>, data: impl Into<Vec<u8>> ) -> Result<MessageId, PublishError>

Publishes a message with multiple topics to the network.

pub fn report_message_validation_result( &mut self, msg_id: &MessageId, propagation_source: &PeerId, acceptance: MessageAcceptance ) -> Result<bool, PublishError>

This function should be called when Config::validate_messages() is true after the message got validated by the caller. Messages are stored in the [‘Memcache’] and validation is expected to be fast enough that the messages should still exist in the cache. There are three possible validation outcomes and the outcome is given in acceptance.

If acceptance = MessageAcceptance::Accept the message will get propagated to the network. The propagation_source parameter indicates who the message was received by and will not be forwarded back to that peer.

If acceptance = MessageAcceptance::Reject the message will be deleted from the memcache and the P₄ penalty will be applied to the propagation_source. If acceptance = MessageAcceptance::Ignore the message will be deleted from the memcache but no P₄ penalty will be applied.

This function will return true if the message was found in the cache and false if was not in the cache anymore.

This should only be called once per message.

pub fn add_explicit_peer(&mut self, peer_id: &PeerId)

Adds a new peer to the list of explicitly connected peers.

pub fn remove_explicit_peer(&mut self, peer_id: &PeerId)

This removes the peer from explicitly connected peers, note that this does not disconnect the peer.

pub fn blacklist_peer(&mut self, peer_id: &PeerId)

Blacklists a peer. All messages from this peer will be rejected and any message that was created by this peer will be rejected.

pub fn remove_blacklisted_peer(&mut self, peer_id: &PeerId)

Removes a peer from the blacklist if it has previously been blacklisted.

pub fn with_peer_score( &mut self, params: PeerScoreParams, threshold: PeerScoreThresholds ) -> Result<(), String>

Activates the peer scoring system with the given parameters. This will reset all scores if there was already another peer scoring system activated. Returns an error if the params are not valid or if they got already set.

pub fn with_peer_score_and_message_delivery_time_callback( &mut self, params: PeerScoreParams, threshold: PeerScoreThresholds, callback: Option<fn(_: &PeerId, _: &TopicHash, _: f64)> ) -> Result<(), String>

Activates the peer scoring system with the given parameters and a message delivery time callback. Returns an error if the parameters got already set.

pub fn set_topic_params<H>( &mut self, topic: Topic<H>, params: TopicScoreParams ) -> Result<(), &'static str>
where H: Hasher,

Sets scoring parameters for a topic.

The Self::with_peer_score() must first be called to initialise peer scoring.

pub fn get_topic_params<H>(&self, topic: &Topic<H>) -> Option<&TopicScoreParams>
where H: Hasher,

Returns a scoring parameters for a topic if existent.

pub fn set_application_score( &mut self, peer_id: &PeerId, new_score: f64 ) -> bool

Sets the application specific score for a peer. Returns true if scoring is active and the peer is connected or if the score of the peer is not yet expired, false otherwise.

Trait Implementations§

§

impl<C, F> Debug for Behaviour<C, F>

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<C, F> NetworkBehaviour for Behaviour<C, F>
where C: Send + 'static + DataTransform, F: Send + 'static + TopicSubscriptionFilter,

§

type ConnectionHandler = Handler

Handler for all the protocols the network behaviour supports.
§

type ToSwarm = Event

Event generated by the NetworkBehaviour and that the swarm will report back.
§

fn handle_established_inbound_connection( &mut self, _: ConnectionId, _: PeerId, _: &Multiaddr, _: &Multiaddr ) -> Result<<Behaviour<C, F> as NetworkBehaviour>::ConnectionHandler, ConnectionDenied>

Callback that is invoked for every established inbound connection. Read more
§

fn handle_established_outbound_connection( &mut self, _: ConnectionId, _: PeerId, _: &Multiaddr, _: Endpoint ) -> Result<<Behaviour<C, F> as NetworkBehaviour>::ConnectionHandler, ConnectionDenied>

Callback that is invoked for every established outbound connection. Read more
§

fn on_connection_handler_event( &mut self, propagation_source: PeerId, _connection_id: ConnectionId, handler_event: <<Behaviour<C, F> as NetworkBehaviour>::ConnectionHandler as ConnectionHandler>::ToBehaviour )

Informs the behaviour about an event generated by the ConnectionHandler dedicated to the peer identified by peer_id. for the behaviour. Read more
§

fn poll( &mut self, cx: &mut Context<'_> ) -> Poll<ToSwarm<<Behaviour<C, F> as NetworkBehaviour>::ToSwarm, <<Behaviour<C, F> as NetworkBehaviour>::ConnectionHandler as ConnectionHandler>::FromBehaviour>>

Polls for things that swarm should do. Read more
§

fn on_swarm_event(&mut self, event: FromSwarm<'_>)

Informs the behaviour about an event from the Swarm.
§

fn handle_pending_inbound_connection( &mut self, _connection_id: ConnectionId, _local_addr: &Multiaddr, _remote_addr: &Multiaddr ) -> Result<(), ConnectionDenied>

Callback that is invoked for every new inbound connection. Read more
§

fn handle_pending_outbound_connection( &mut self, _connection_id: ConnectionId, _maybe_peer: Option<PeerId>, _addresses: &[Multiaddr], _effective_role: Endpoint ) -> Result<Vec<Multiaddr>, ConnectionDenied>

Callback that is invoked for every outbound connection attempt. Read more

Auto Trait Implementations§

§

impl<D, F> Freeze for Behaviour<D, F>
where F: Freeze, D: Freeze,

§

impl<D = IdentityTransform, F = AllowAllSubscriptionFilter> !RefUnwindSafe for Behaviour<D, F>

§

impl<D, F> Send for Behaviour<D, F>
where F: Send, D: Send,

§

impl<D, F> Sync for Behaviour<D, F>
where F: Sync, D: Sync,

§

impl<D, F> Unpin for Behaviour<D, F>
where F: Unpin, D: Unpin,

§

impl<D = IdentityTransform, F = AllowAllSubscriptionFilter> !UnwindSafe for Behaviour<D, F>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more