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
#![forbid(unsafe_code)]
#![deny(
    missing_copy_implementations,
    missing_crate_level_docs,
    missing_debug_implementations,
    missing_docs,
    nonstandard_style,
    unused_qualifications
)]

//! This crate provides the common interface for server-side tls
//! acceptors, abstracting over various implementations

pub use async_trait::async_trait;
pub use futures_io::{AsyncRead, AsyncWrite};
use std::convert::Infallible;

/// This trait provides the common interface for server-side tls
/// acceptors, abstracting over various implementations.
///
/// The only implementation provided by this crate is `()`, which is
/// a noop acceptor, and passes through the `Input` type.
///
/// Implementing this trait looks like:
/// ```rust,ignore
/// #[async_trait]
/// impl<Input> Acceptor<Input> for my_tls_impl::Acceptor
/// where
///     Input: AsyncRead + AsyncWrite + Send + Sync + Unpin + 'static,
/// {
///     type Output = my_tls_impl::TlsStream<Input>;
///     type Error = my_tls_impl::Error;
///     async fn accept(&self, input: Input) -> Result<Self::Output, Self::Error> {
///         self.accept(input).await
///     }
/// }
/// ```
#[async_trait]
pub trait Acceptor<Input>: Clone + Send + Sync + 'static
where
    Input: AsyncRead + AsyncWrite + Send + Sync + Unpin + 'static,
{
    /// The stream type. For example, TlsStream<Input>
    type Output: AsyncRead + AsyncWrite + Send + Sync + Unpin + 'static;

    /// An error type that [`Acceptor::accept`] may return
    type Error: std::fmt::Debug + Send + Sync;

    /// Transform an Input (`AsyncRead + AsyncWrite + Send + Sync + Unpin + 'static`) into Self::Output
    ///
    /// Async trait signature:
    /// ```rust,ignore
    /// async fn accept(&self, input: Input) -> Result<Self::Output, Self::Error>;
    /// ```
    async fn accept(&self, input: Input) -> Result<Self::Output, Self::Error>;
}

#[async_trait]
impl<Input> Acceptor<Input> for ()
where
    Input: AsyncRead + AsyncWrite + Send + Sync + Unpin + 'static,
{
    type Output = Input;
    type Error = Infallible;
    async fn accept(&self, input: Input) -> Result<Self::Output, Self::Error> {
        Ok(input)
    }
}