1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
// Copyright 2018 Parity Technologies (UK) Ltd. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. use crate::PeerId; use std::{task::Context, task::Poll}; use super::{Connected, SubstreamEndpoint}; /// The interface of a connection handler. /// /// Each handler is responsible for a single connection. pub trait ConnectionHandler { /// The inbound type of events used to notify the handler through the `Network`. /// /// See also [`EstablishedConnection::notify_handler`](super::EstablishedConnection::notify_handler) /// and [`ConnectionHandler::inject_event`]. type InEvent; /// The outbound type of events that the handler emits to the `Network` /// through [`ConnectionHandler::poll`]. /// /// See also [`NetworkEvent::ConnectionEvent`](crate::network::NetworkEvent::ConnectionEvent). type OutEvent; /// The type of errors that the handler can produce when polled by the `Network`. type Error; /// The type of the substream containing the data. type Substream; /// Information about a substream. Can be sent to the handler through a `SubstreamEndpoint`, /// and will be passed back in `inject_substream` or `inject_outbound_closed`. type OutboundOpenInfo; /// Sends a new substream to the handler. /// /// The handler is responsible for upgrading the substream to whatever protocol it wants. /// /// # Panic /// /// Implementations are allowed to panic in the case of dialing if the `user_data` in /// `endpoint` doesn't correspond to what was returned earlier when polling, or is used /// multiple times. fn inject_substream(&mut self, substream: Self::Substream, endpoint: SubstreamEndpoint<Self::OutboundOpenInfo>); /// Notifies the handler of an event. fn inject_event(&mut self, event: Self::InEvent); /// Polls the handler for events. /// /// Returning an error will close the connection to the remote. fn poll(&mut self, cx: &mut Context) -> Poll<Result<ConnectionHandlerEvent<Self::OutboundOpenInfo, Self::OutEvent>, Self::Error>>; } /// Prototype for a `ConnectionHandler`. pub trait IntoConnectionHandler<TConnInfo = PeerId> { /// The node handler. type Handler: ConnectionHandler; /// Builds the node handler. /// /// The implementation is given a `Connected` value that holds information about /// the newly established connection for which a handler should be created. fn into_handler(self, connected: &Connected<TConnInfo>) -> Self::Handler; } impl<T, TConnInfo> IntoConnectionHandler<TConnInfo> for T where T: ConnectionHandler { type Handler = Self; fn into_handler(self, _: &Connected<TConnInfo>) -> Self { self } } /// Event produced by a handler. #[derive(Debug, Copy, Clone, PartialEq, Eq)] pub enum ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> { /// Require a new outbound substream to be opened with the remote. OutboundSubstreamRequest(TOutboundOpenInfo), /// Other event. Custom(TCustom), } /// Event produced by a handler. impl<TOutboundOpenInfo, TCustom> ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> { /// If this is `OutboundSubstreamRequest`, maps the content to something else. pub fn map_outbound_open_info<F, I>(self, map: F) -> ConnectionHandlerEvent<I, TCustom> where F: FnOnce(TOutboundOpenInfo) -> I { match self { ConnectionHandlerEvent::OutboundSubstreamRequest(val) => { ConnectionHandlerEvent::OutboundSubstreamRequest(map(val)) }, ConnectionHandlerEvent::Custom(val) => ConnectionHandlerEvent::Custom(val), } } /// If this is `Custom`, maps the content to something else. pub fn map_custom<F, I>(self, map: F) -> ConnectionHandlerEvent<TOutboundOpenInfo, I> where F: FnOnce(TCustom) -> I { match self { ConnectionHandlerEvent::OutboundSubstreamRequest(val) => { ConnectionHandlerEvent::OutboundSubstreamRequest(val) }, ConnectionHandlerEvent::Custom(val) => ConnectionHandlerEvent::Custom(map(val)), } } }