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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
use crate::{AsyncServiceWrapper, ClassicServiceWrapper};

/// AsyncLayerExt adds a method to _any_ [`tower_layer::Layer`] that
/// wraps it in an [AsyncLayer] so that it can be used within a [`tower_async_layer::Layer`] environment.
///
/// [`tower_layer::Layer`]: https://docs.rs/tower-layer/*/tower_layer/trait.Layer.html
/// [`tower_async_layer::Layer`]: https://docs.rs/tower-async-layer/*/tower_async_layer/trait.Layer.html
pub trait AsyncLayerExt<S>: tower_layer::Layer<S> {
    /// Wrap a [`tower_layer::Layer`],
    /// so that it can be used within a [`tower_async_layer::Layer`] environment.
    ///
    /// [`tower_layer::Layer`]: https://docs.rs/tower-layer/*/tower_layer/trait.Layer.html
    /// [`tower_async_layer::Layer`]: https://docs.rs/tower-async-layer/*/tower_async_layer/trait.Layer.html
    fn into_async(self) -> AsyncLayer<Self, S>
    where
        Self: Sized,
    {
        AsyncLayer::new(self)
    }
}

impl<L, S> AsyncLayerExt<S> for L where L: tower_layer::Layer<S> + Sized {}

impl<L, S> From<L> for AsyncLayer<L, S>
where
    L: tower_layer::Layer<S>,
{
    fn from(inner: L) -> Self {
        Self::new(inner)
    }
}

/// A wrapper around a [`tower_layer::Layer`] that implements
/// [`tower_async_layer::Layer`] and is the type returned
/// by [AsyncLayerExt::into_async].
///
/// [`tower_layer::Layer`]: https://docs.rs/tower-layer/*/tower_layer/trait.Layer.html
/// [`tower_async_layer::Layer`]: https://docs.rs/tower-async-layer/*/tower_async_layer/trait.Layer.html
pub struct AsyncLayer<L, S> {
    inner: L,
    _marker: std::marker::PhantomData<S>,
}

impl<L, S> std::fmt::Debug for AsyncLayer<L, S>
where
    L: std::fmt::Debug,
{
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("AsyncLayer")
            .field("inner", &self.inner)
            .finish()
    }
}

impl<L, S> Clone for AsyncLayer<L, S>
where
    L: Clone,
{
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            _marker: std::marker::PhantomData,
        }
    }
}

impl<L, S> AsyncLayer<L, S> {
    /// Create a new [AsyncLayer] wrapping `inner`.
    pub fn new(inner: L) -> Self {
        Self {
            inner,
            _marker: std::marker::PhantomData,
        }
    }
}

impl<L, S> tower_async_layer::Layer<S> for AsyncLayer<L, S>
where
    L: tower_layer::Layer<ClassicServiceWrapper<S>>,
{
    type Service =
        AsyncServiceWrapper<<L as tower_layer::Layer<ClassicServiceWrapper<S>>>::Service>;

    #[inline]
    fn layer(&self, service: S) -> Self::Service {
        let service = ClassicServiceWrapper::new(service);
        let service = self.inner.layer(service);
        AsyncServiceWrapper::new(service)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    use pin_project_lite::pin_project;
    use std::convert::Infallible;
    use tower_async::ServiceExt;

    #[derive(Debug)]
    struct DelayService<S> {
        inner: S,
        delay: std::time::Duration,
    }

    impl<S> DelayService<S> {
        fn new(inner: S, delay: std::time::Duration) -> Self {
            Self { inner, delay }
        }
    }

    impl<S, Request> tower_service::Service<Request> for DelayService<S>
    where
        S: tower_service::Service<Request>,
    {
        type Response = S::Response;
        type Error = S::Error;
        type Future = DelayFuture<tokio::time::Sleep, S::Future>;

        fn poll_ready(
            &mut self,
            _: &mut std::task::Context<'_>,
        ) -> std::task::Poll<Result<(), Self::Error>> {
            std::task::Poll::Ready(Ok(()))
        }

        fn call(&mut self, request: Request) -> Self::Future {
            DelayFuture::new(tokio::time::sleep(self.delay), self.inner.call(request))
        }
    }

    enum DelayFutureState {
        Delaying,
        Serving,
    }

    pin_project! {
        struct DelayFuture<T, U> {
            state: DelayFutureState,
            #[pin]
            delay: T,
            #[pin]
            serve: U,
        }
    }

    impl<T, U> DelayFuture<T, U> {
        fn new(delay: T, serve: U) -> Self {
            Self {
                state: DelayFutureState::Delaying,
                delay,
                serve,
            }
        }
    }

    impl<T, U> std::future::Future for DelayFuture<T, U>
    where
        T: std::future::Future,
        U: std::future::Future,
    {
        type Output = U::Output;

        fn poll(
            self: std::pin::Pin<&mut Self>,
            cx: &mut std::task::Context<'_>,
        ) -> std::task::Poll<Self::Output> {
            let this = self.project();
            match this.state {
                DelayFutureState::Delaying => {
                    let _ = futures_core::ready!(this.delay.poll(cx));
                    *this.state = DelayFutureState::Serving;
                    this.serve.poll(cx)
                }
                DelayFutureState::Serving => this.serve.poll(cx),
            }
        }
    }

    #[derive(Debug)]
    struct DelayLayer {
        delay: std::time::Duration,
    }

    impl DelayLayer {
        fn new(delay: std::time::Duration) -> Self {
            Self { delay }
        }
    }

    impl<S> tower_layer::Layer<S> for DelayLayer {
        type Service = DelayService<S>;

        fn layer(&self, service: S) -> Self::Service {
            DelayService::new(service, self.delay)
        }
    }

    #[derive(Debug)]
    struct AsyncEchoService;

    impl<Request> tower_async_service::Service<Request> for AsyncEchoService {
        type Response = Request;
        type Error = Infallible;

        async fn call(&self, req: Request) -> Result<Self::Response, Self::Error> {
            Ok(req)
        }
    }

    /// Test that a classic Tower layer can be used in an async tower builder.
    /// While this is not the normal use case of this crate, it might as well be supported
    /// for those cases where one _has_ to use a classic layer in an async tower envirioment,
    /// because for example the functionality was not yet ported to an async trait version.
    #[tokio::test]
    async fn test_async_layer_in_async_tower_builder() {
        let service = tower_async::ServiceBuilder::new()
            .timeout(std::time::Duration::from_millis(200))
            .layer(DelayLayer::new(std::time::Duration::from_millis(100)).into_async())
            .service(AsyncEchoService);

        let response = service.oneshot("hello").await.unwrap();
        assert_eq!(response, "hello");
    }
}