mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-31 11:41:21 +00:00
154 lines
4.0 KiB
Rust
154 lines
4.0 KiB
Rust
// 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::upgrade::{InboundUpgrade, OutboundUpgrade, UpgradeInfo};
|
|
use futures::future;
|
|
|
|
/// Wraps around a `InboundUpgrade` or `OutboundUpgrade` and makes it possible
|
|
/// to enable or disable the upgrade.
|
|
#[inline]
|
|
pub fn toggleable<U>(upgrade: U) -> Toggleable<U> {
|
|
Toggleable {
|
|
inner: upgrade,
|
|
enabled: true,
|
|
}
|
|
}
|
|
|
|
/// See `toggleable`.
|
|
#[derive(Debug, Copy, Clone)]
|
|
pub struct Toggleable<U> {
|
|
inner: U,
|
|
enabled: bool,
|
|
}
|
|
|
|
impl<U> Toggleable<U> {
|
|
/// Toggles the upgrade.
|
|
#[inline]
|
|
pub fn toggle(&mut self) {
|
|
self.enabled = !self.enabled;
|
|
}
|
|
|
|
/// Returns true if the upgrade is enabled.
|
|
#[inline]
|
|
pub fn enabled(&self) -> bool {
|
|
self.enabled
|
|
}
|
|
|
|
/// Enables the upgrade.
|
|
#[inline]
|
|
pub fn enable(&mut self) {
|
|
self.enabled = true;
|
|
}
|
|
|
|
/// Disables the upgrade.
|
|
#[inline]
|
|
pub fn disable(&mut self) {
|
|
self.enabled = false;
|
|
}
|
|
}
|
|
|
|
impl<U> UpgradeInfo for Toggleable<U>
|
|
where
|
|
U: UpgradeInfo
|
|
{
|
|
type UpgradeId = U::UpgradeId;
|
|
type NamesIter = ToggleableIter<U::NamesIter>;
|
|
|
|
#[inline]
|
|
fn protocol_names(&self) -> Self::NamesIter {
|
|
ToggleableIter {
|
|
inner: self.inner.protocol_names(),
|
|
enabled: self.enabled,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<C, U> InboundUpgrade<C> for Toggleable<U>
|
|
where
|
|
U: InboundUpgrade<C>
|
|
{
|
|
type Output = U::Output;
|
|
type Error = U::Error;
|
|
type Future = future::Either<future::Empty<Self::Output, Self::Error>, U::Future>;
|
|
|
|
#[inline]
|
|
fn upgrade_inbound(self, socket: C, id: Self::UpgradeId) -> Self::Future {
|
|
if self.enabled {
|
|
future::Either::B(self.inner.upgrade_inbound(socket, id))
|
|
} else {
|
|
future::Either::A(future::empty())
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<C, U> OutboundUpgrade<C> for Toggleable<U>
|
|
where
|
|
U: OutboundUpgrade<C>
|
|
{
|
|
type Output = U::Output;
|
|
type Error = U::Error;
|
|
type Future = future::Either<future::Empty<Self::Output, Self::Error>, U::Future>;
|
|
|
|
#[inline]
|
|
fn upgrade_outbound(self, socket: C, id: Self::UpgradeId) -> Self::Future {
|
|
if self.enabled {
|
|
future::Either::B(self.inner.upgrade_outbound(socket, id))
|
|
} else {
|
|
future::Either::A(future::empty())
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Iterator that is toggleable.
|
|
#[derive(Debug, Clone)]
|
|
pub struct ToggleableIter<I> {
|
|
inner: I,
|
|
// It is expected that `enabled` doesn't change once the iterator has been created.
|
|
enabled: bool,
|
|
}
|
|
|
|
impl<I> Iterator for ToggleableIter<I>
|
|
where I: Iterator
|
|
{
|
|
type Item = I::Item;
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
if self.enabled {
|
|
self.inner.next()
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
|
if self.enabled {
|
|
self.inner.size_hint()
|
|
} else {
|
|
(0, Some(0))
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<I> ExactSizeIterator for ToggleableIter<I>
|
|
where
|
|
I: ExactSizeIterator
|
|
{}
|
|
|