[][src]Trait libp2p_core::transport::Transport

pub trait Transport {
    type Output;
    type Error: Error;
    type Listener: Stream<Item = Result<ListenerEvent<Self::ListenerUpgrade, Self::Error>, Self::Error>>;
    type ListenerUpgrade: Future<Output = Result<Self::Output, Self::Error>>;
    type Dial: Future<Output = Result<Self::Output, Self::Error>>;
    fn listen_on(
        self,
        addr: Multiaddr
    ) -> Result<Self::Listener, TransportError<Self::Error>>
    where
        Self: Sized
;
fn dial(
        self,
        addr: Multiaddr
    ) -> Result<Self::Dial, TransportError<Self::Error>>
    where
        Self: Sized
; fn boxed(self) -> Boxed<Self::Output, Self::Error>
    where
        Self: Sized + Clone + Send + Sync + 'static,
        Self::Dial: Send + 'static,
        Self::Listener: Send + 'static,
        Self::ListenerUpgrade: Send + 'static
, { ... }
fn map<F, O>(self, f: F) -> Map<Self, F>
    where
        Self: Sized,
        F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone
, { ... }
fn map_err<F, E>(self, f: F) -> MapErr<Self, F>
    where
        Self: Sized,
        F: FnOnce(Self::Error) -> E + Clone
, { ... }
fn or_transport<U>(self, other: U) -> OrTransport<Self, U>
    where
        Self: Sized,
        U: Transport,
        <U as Transport>::Error: 'static
, { ... }
fn and_then<C, F, O>(self, f: C) -> AndThen<Self, C>
    where
        Self: Sized,
        C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
        F: TryFuture<Ok = O>,
        <F as TryFuture>::Error: Error + 'static
, { ... }
fn timeout(self, timeout: Duration) -> TransportTimeout<Self>
    where
        Self: Sized
, { ... }
fn outbound_timeout(self, timeout: Duration) -> TransportTimeout<Self>
    where
        Self: Sized
, { ... }
fn inbound_timeout(self, timeout: Duration) -> TransportTimeout<Self>
    where
        Self: Sized
, { ... }
fn upgrade(self, version: Version) -> Builder<Self>
    where
        Self: Sized,
        Self::Error: 'static
, { ... } }

A transport provides connection-oriented communication between two peers through ordered streams of data (i.e. connections).

Connections are established either by listening or dialing on a Transport. A peer that obtains a connection by listening is often referred to as the listener and the peer that initiated the connection through dialing as the dialer, in contrast to the traditional roles of server and client.

Most transports also provide a form of reliable delivery on the established connections but the precise semantics of these guarantees depend on the specific transport.

This trait is implemented for concrete connection-oriented transport protocols like TCP or Unix Domain Sockets, but also on wrappers that add additional functionality to the dialing or listening process (e.g. name resolution via the DNS).

Additional protocols can be layered on top of the connections established by a Transport through an upgrade mechanism that is initiated via upgrade.

Note: The methods of this trait use self and not &self or &mut self. In other words, listening or dialing consumes the transport object. This has been designed so that you would implement this trait on &Foo or &mut Foo instead of directly on Foo.

Associated Types

type Output

The result of a connection setup process, including protocol upgrades.

Typically the output contains at least a handle to a data stream (i.e. a connection or a substream multiplexer on top of a connection) that provides APIs for sending and receiving data through the connection.

type Error: Error

An error that occurred during connection setup.

type Listener: Stream<Item = Result<ListenerEvent<Self::ListenerUpgrade, Self::Error>, Self::Error>>

A stream of Outputs for inbound connections.

An item should be produced whenever a connection is received at the lowest level of the transport stack. The item must be a ListenerUpgrade future that resolves to an Output value once all protocol upgrades have been applied.

If this stream produces an error, it is considered fatal and the listener is killed. It is possible to report non-fatal errors by producing a ListenerEvent::Error.

type ListenerUpgrade: Future<Output = Result<Self::Output, Self::Error>>

A pending Output for an inbound connection, obtained from the Listener stream.

After a connection has been accepted by the transport, it may need to go through asynchronous post-processing (i.e. protocol upgrade negotiations). Such post-processing should not block the Listener from producing the next connection, hence further connection setup proceeds asynchronously. Once a ListenerUpgrade future resolves it yields the Output of the connection setup process.

type Dial: Future<Output = Result<Self::Output, Self::Error>>

A pending Output for an outbound connection, obtained from dialing.

Loading content...

Required methods

fn listen_on(
    self,
    addr: Multiaddr
) -> Result<Self::Listener, TransportError<Self::Error>> where
    Self: Sized

Listens on the given Multiaddr, producing a stream of pending, inbound connections and addresses this transport is listening on (cf. ListenerEvent).

Returning an error from the stream is considered fatal. The listener can also report non-fatal errors by producing a ListenerEvent::Error.

fn dial(
    self,
    addr: Multiaddr
) -> Result<Self::Dial, TransportError<Self::Error>> where
    Self: Sized

Dials the given Multiaddr, returning a future for a pending outbound connection.

If TransportError::MultiaddrNotSupported is returned, it may be desirable to try an alternative Transport, if available.

Loading content...

Provided methods

fn boxed(self) -> Boxed<Self::Output, Self::Error> where
    Self: Sized + Clone + Send + Sync + 'static,
    Self::Dial: Send + 'static,
    Self::Listener: Send + 'static,
    Self::ListenerUpgrade: Send + 'static, 

Turns the transport into an abstract boxed (i.e. heap-allocated) transport.

fn map<F, O>(self, f: F) -> Map<Self, F> where
    Self: Sized,
    F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone

Applies a function on the connections created by the transport.

fn map_err<F, E>(self, f: F) -> MapErr<Self, F> where
    Self: Sized,
    F: FnOnce(Self::Error) -> E + Clone

Applies a function on the errors generated by the futures of the transport.

fn or_transport<U>(self, other: U) -> OrTransport<Self, U> where
    Self: Sized,
    U: Transport,
    <U as Transport>::Error: 'static, 

Adds a fallback transport that is used when encountering errors while establishing inbound or outbound connections.

The returned transport will act like self, except that if listen_on or dial return an error then other will be tried.

fn and_then<C, F, O>(self, f: C) -> AndThen<Self, C> where
    Self: Sized,
    C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
    F: TryFuture<Ok = O>,
    <F as TryFuture>::Error: Error + 'static, 

Applies a function producing an asynchronous result to every connection created by this transport.

This function can be used for ad-hoc protocol upgrades or for processing or adapting the output for following configurations.

For the high-level transport upgrade procedure, see Transport::upgrade.

fn timeout(self, timeout: Duration) -> TransportTimeout<Self> where
    Self: Sized

Adds a timeout to the connection setup (including upgrades) for all inbound and outbound connections established through the transport.

fn outbound_timeout(self, timeout: Duration) -> TransportTimeout<Self> where
    Self: Sized

Adds a timeout to the connection setup (including upgrades) for all outbound connections established through the transport.

fn inbound_timeout(self, timeout: Duration) -> TransportTimeout<Self> where
    Self: Sized

Adds a timeout to the connection setup (including upgrades) for all inbound connections established through the transport.

fn upgrade(self, version: Version) -> Builder<Self> where
    Self: Sized,
    Self::Error: 'static, 

Begins a series of protocol upgrades via an upgrade::Builder.

Loading content...

Implementors

impl Transport for MemoryTransport[src]

type Output = Channel<Vec<u8>>

type Error = MemoryTransportError

type Listener = Listener

type ListenerUpgrade = Ready<Result<Self::Output, Self::Error>>

type Dial = DialFuture

impl<A, B> Transport for EitherTransport<A, B> where
    B: Transport,
    A: Transport
[src]

type Output = EitherOutput<A::Output, B::Output>

type Error = EitherError<A::Error, B::Error>

type Listener = EitherListenStream<A::Listener, B::Listener>

type ListenerUpgrade = EitherFuture<A::ListenerUpgrade, B::ListenerUpgrade>

type Dial = EitherFuture<A::Dial, B::Dial>

impl<A, B> Transport for OrTransport<A, B> where
    B: Transport,
    A: Transport
[src]

type Output = EitherOutput<A::Output, B::Output>

type Error = EitherError<A::Error, B::Error>

type Listener = EitherListenStream<A::Listener, B::Listener>

type ListenerUpgrade = EitherFuture<A::ListenerUpgrade, B::ListenerUpgrade>

type Dial = EitherFuture<A::Dial, B::Dial>

impl<InnerTrans> Transport for TransportTimeout<InnerTrans> where
    InnerTrans: Transport,
    InnerTrans::Error: 'static, 
[src]

type Output = InnerTrans::Output

type Error = TransportTimeoutError<InnerTrans::Error>

type Listener = TimeoutListener<InnerTrans::Listener>

type ListenerUpgrade = Timeout<InnerTrans::ListenerUpgrade>

type Dial = Timeout<InnerTrans::Dial>

impl<O, E> Transport for Boxed<O, E> where
    E: Error
[src]

type Output = O

type Error = E

type Listener = Listener<O, E>

type ListenerUpgrade = ListenerUpgrade<O, E>

type Dial = Dial<O, E>

impl<T> Transport for OptionalTransport<T> where
    T: Transport
[src]

type Output = T::Output

type Error = T::Error

type Listener = T::Listener

type ListenerUpgrade = T::ListenerUpgrade

type Dial = T::Dial

impl<T, C, D, U, I, E> Transport for Upgrade<T, U> where
    T: Transport<Output = (I, C)>,
    T::Error: 'static,
    C: AsyncRead + AsyncWrite + Unpin,
    U: InboundUpgrade<Negotiated<C>, Output = D, Error = E>,
    U: OutboundUpgrade<Negotiated<C>, Output = D, Error = E> + Clone,
    E: Error + 'static, 
[src]

type Output = (I, D)

type Error = TransportUpgradeError<T::Error, E>

type Listener = ListenerStream<T::Listener, U>

type ListenerUpgrade = ListenerUpgradeFuture<T::ListenerUpgrade, U, I, C>

type Dial = DialUpgradeFuture<T::Dial, U, I, C>

impl<T, C, F, O> Transport for AndThen<T, C> where
    T: Transport,
    C: FnOnce(T::Output, ConnectedPoint) -> F + Clone,
    F: TryFuture<Ok = O>,
    F::Error: Error
[src]

type Output = O

type Error = EitherError<T::Error, F::Error>

type Listener = AndThenStream<T::Listener, C>

type ListenerUpgrade = AndThenFuture<T::ListenerUpgrade, C, F>

type Dial = AndThenFuture<T::Dial, C, F>

impl<T, F, D> Transport for Map<T, F> where
    T: Transport,
    F: FnOnce(T::Output, ConnectedPoint) -> D + Clone
[src]

type Output = D

type Error = T::Error

type Listener = MapStream<T::Listener, F>

type ListenerUpgrade = MapFuture<T::ListenerUpgrade, F>

type Dial = MapFuture<T::Dial, F>

impl<T, F, TErr> Transport for MapErr<T, F> where
    T: Transport,
    F: FnOnce(T::Error) -> TErr + Clone,
    TErr: Error
[src]

type Output = T::Output

type Error = TErr

type Listener = MapErrListener<T, F>

type ListenerUpgrade = MapErrListenerUpgrade<T, F>

type Dial = MapErrDial<T, F>

impl<TOut> Transport for DummyTransport<TOut>[src]

type Output = TOut

type Error = Error

type Listener = Pending<Result<ListenerEvent<Self::ListenerUpgrade, Self::Error>, Self::Error>>

type ListenerUpgrade = Pending<Result<Self::Output, Error>>

type Dial = Pending<Result<Self::Output, Error>>

Loading content...