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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
// Copyright 2019-2021 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.
//! Utilities for handling async code.
use std::pin::Pin;
use std::sync::Arc;
use std::task::{Context, Poll};
use futures_util::{Future, Stream, StreamExt};
use pin_project::pin_project;
use tokio::sync::{watch, OwnedSemaphorePermit, Semaphore, TryAcquireError};
use tokio::time::Interval;
use tokio_stream::wrappers::BroadcastStream;
/// Create channel to determine whether
/// the server shall continue to run or not.
pub fn stop_channel() -> (StopHandle, ServerHandle) {
let (tx, rx) = tokio::sync::watch::channel(());
(StopHandle::new(rx), ServerHandle::new(tx))
}
/// Represent a stop handle which is a wrapper over a `multi-consumer receiver`
/// and cloning [`StopHandle`] will get a separate instance of the underlying receiver.
#[derive(Debug, Clone)]
pub struct StopHandle(watch::Receiver<()>);
impl StopHandle {
/// Create a new stop handle.
pub(crate) fn new(rx: watch::Receiver<()>) -> Self {
Self(rx)
}
/// A future that resolves when server has been stopped
/// it consumes the stop handle.
pub async fn shutdown(mut self) {
let _ = self.0.changed().await;
}
}
/// Error when the server has already been stopped.
#[derive(Debug, Copy, Clone, thiserror::Error)]
#[error("The server is already stopped")]
pub struct AlreadyStoppedError;
/// Server handle.
///
/// When all [`StopHandle`]'s have been `dropped` or `stop` has been called
/// the server will be stopped.
#[derive(Debug, Clone)]
pub struct ServerHandle(Arc<watch::Sender<()>>);
impl ServerHandle {
/// Create a new server handle.
pub(crate) fn new(tx: watch::Sender<()>) -> Self {
Self(Arc::new(tx))
}
/// Tell the server to stop without waiting for the server to stop.
pub fn stop(&self) -> Result<(), AlreadyStoppedError> {
self.0.send(()).map_err(|_| AlreadyStoppedError)
}
/// Wait for the server to stop.
pub async fn stopped(self) {
self.0.closed().await
}
/// Check if the server has been stopped.
pub fn is_stopped(&self) -> bool {
self.0.is_closed()
}
}
/// Limits the number of connections.
#[derive(Clone, Debug)]
pub struct ConnectionGuard {
inner: Arc<Semaphore>,
max: usize,
}
impl ConnectionGuard {
/// Create a new connection guard.
pub fn new(limit: usize) -> Self {
Self { inner: Arc::new(Semaphore::new(limit)), max: limit }
}
/// Acquire a connection permit.
pub fn try_acquire(&self) -> Option<ConnectionPermit> {
match self.inner.clone().try_acquire_owned() {
Ok(guard) => Some(guard),
Err(TryAcquireError::Closed) => unreachable!("Semaphore::Close is never called and can't be closed; qed"),
Err(TryAcquireError::NoPermits) => None,
}
}
/// Get the number of available connection slots.
pub fn available_connections(&self) -> usize {
self.inner.available_permits()
}
/// Get the maximum number of connections.
pub fn max_connections(&self) -> usize {
self.max
}
}
/// Connection permit.
pub type ConnectionPermit = OwnedSemaphorePermit;
#[pin_project]
pub(crate) struct IntervalStream(#[pin] Option<tokio_stream::wrappers::IntervalStream>);
impl IntervalStream {
/// Creates a stream which never returns any elements.
pub(crate) fn pending() -> Self {
Self(None)
}
/// Creates a stream which produces elements with interval of `period`.
pub(crate) fn new(interval: Interval) -> Self {
Self(Some(tokio_stream::wrappers::IntervalStream::new(interval)))
}
}
impl Stream for IntervalStream {
type Item = tokio::time::Instant;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
if let Some(mut stream) = self.project().0.as_pin_mut() {
stream.poll_next_unpin(cx)
} else {
// NOTE: this will not be woken up again and it's by design
// to be a pending stream that never returns.
Poll::Pending
}
}
}
#[derive(Debug, Clone)]
pub(crate) struct SessionClose(tokio::sync::broadcast::Sender<()>);
impl SessionClose {
pub(crate) fn close(self) {
let _ = self.0.send(());
}
pub(crate) fn closed(&self) -> SessionClosedFuture {
SessionClosedFuture(BroadcastStream::new(self.0.subscribe()))
}
}
/// A future that resolves when the connection has been closed.
#[derive(Debug)]
pub struct SessionClosedFuture(BroadcastStream<()>);
impl Future for SessionClosedFuture {
type Output = ();
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
match self.0.poll_next_unpin(cx) {
Poll::Pending => Poll::Pending,
// Only message is only sent and
// ignore can't keep up errors.
Poll::Ready(_) => Poll::Ready(()),
}
}
}
pub(crate) fn session_close() -> (SessionClose, SessionClosedFuture) {
// SessionClosedFuture is closed after one message has been recevied
// and max one message is handled then it's closed.
let (tx, rx) = tokio::sync::broadcast::channel(1);
(SessionClose(tx), SessionClosedFuture(BroadcastStream::new(rx)))
}