tihu_native/
http.rs

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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
use async_trait::async_trait;
use bytes::Bytes;
use bytes::BytesMut;
use futures::Stream;
use futures::StreamExt;
use futures::TryStreamExt;
use headers::Cookie;
use headers::HeaderMapExt;
use http_body_util::BodyExt;
use hyper::body::Frame;
use hyper::body::Incoming;
use hyper::{Request, Response};
use pin_project::pin_project;
use std::any::Any;
use std::any::TypeId;
use std::borrow::Cow;
use std::collections::HashMap;
use std::fmt::{Debug, Formatter};
use std::net::SocketAddr;
use std::pin::Pin;
use std::task::Context;
use std::task::Poll;
use sync_wrapper::SyncStream;
use tihu::LightString;

pub type BoxBody = http_body_util::combinators::BoxBody<Bytes, anyhow::Error>;

/// A body object for requests and responses.
#[derive(Default)]
#[pin_project]
pub struct Body(#[pin] pub(crate) BoxBody);

impl From<Body> for BoxBody {
    #[inline]
    fn from(body: Body) -> Self {
        body.0
    }
}

impl From<BoxBody> for Body {
    #[inline]
    fn from(body: BoxBody) -> Self {
        Body(body)
    }
}

impl Debug for Body {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Body").finish()
    }
}

impl From<&'static [u8]> for Body {
    #[inline]
    fn from(data: &'static [u8]) -> Self {
        Self(BoxBody::new(
            http_body_util::Full::new(data.into()).map_err::<_, anyhow::Error>(|_| unreachable!()),
        ))
    }
}

impl From<&'static str> for Body {
    #[inline]
    fn from(data: &'static str) -> Self {
        Self(BoxBody::new(
            http_body_util::Full::new(data.into()).map_err::<_, anyhow::Error>(|_| unreachable!()),
        ))
    }
}

impl From<Bytes> for Body {
    #[inline]
    fn from(data: Bytes) -> Self {
        Self(
            http_body_util::Full::new(data)
                .map_err::<_, anyhow::Error>(|_| unreachable!())
                .boxed(),
        )
    }
}

impl From<Vec<u8>> for Body {
    #[inline]
    fn from(data: Vec<u8>) -> Self {
        Self(
            http_body_util::Full::new(data.into())
                .map_err::<_, anyhow::Error>(|_| unreachable!())
                .boxed(),
        )
    }
}

impl From<Cow<'static, [u8]>> for Body {
    #[inline]
    fn from(data: Cow<'static, [u8]>) -> Self {
        Self(
            http_body_util::Full::from(data)
                .map_err::<_, anyhow::Error>(|_| unreachable!())
                .boxed(),
        )
    }
}

impl From<String> for Body {
    #[inline]
    fn from(data: String) -> Self {
        data.into_bytes().into()
    }
}

impl From<LightString> for Body {
    #[inline]
    fn from(data: LightString) -> Self {
        match data {
            LightString::Arc(data) => Body::from(data.to_string()),
            LightString::Static(data) => Body::from(data),
        }
    }
}

impl From<()> for Body {
    #[inline]
    fn from(_: ()) -> Self {
        Body::empty()
    }
}

impl Body {
    /// Create a body object from [`Bytes`].
    #[inline]
    pub fn from_bytes(data: Bytes) -> Self {
        data.into()
    }

    /// Create a body object from [`String`].
    #[inline]
    pub fn from_string(data: String) -> Self {
        data.into()
    }

    /// Create a body object from bytes stream.
    pub fn from_bytes_stream<S, O, E>(stream: S) -> Self
    where
        S: Stream<Item = Result<O, E>> + Send + 'static,
        O: Into<Bytes> + 'static,
        E: Into<anyhow::Error> + 'static,
    {
        Self(BoxBody::new(http_body_util::StreamBody::new(
            SyncStream::new(
                stream
                    .map_ok(|data| Frame::data(data.into()))
                    .map_err(Into::into),
            ),
        )))
    }

    /// Create a body object from [`Vec<u8>`].
    #[inline]
    pub fn from_vec(data: Vec<u8>) -> Self {
        data.into()
    }

    /// Create an empty body.
    #[inline]
    pub fn empty() -> Self {
        Self(
            http_body_util::Empty::new()
                .map_err::<_, anyhow::Error>(|_| unreachable!())
                .boxed(),
        )
    }

    #[inline]
    pub fn into_inner(self) -> BoxBody {
        self.0
    }
}

impl hyper::body::Body for Body {
    type Data = Bytes;
    type Error = anyhow::Error;
    fn poll_frame(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
    ) -> Poll<Option<Result<Frame<Self::Data>, Self::Error>>> {
        let this = self.project();
        hyper::body::Body::poll_frame(this.0, cx)
    }
}

pub fn body_to_stream<B>(
    mut body: B,
) -> impl Stream<Item = Result<hyper::body::Frame<Bytes>, anyhow::Error>>
where
    B: hyper::body::Body<Data = Bytes, Error = anyhow::Error> + Unpin,
{
    futures::stream::poll_fn(
        move |cx| -> std::task::Poll<Option<Result<hyper::body::Frame<Bytes>, anyhow::Error>>> {
            hyper::body::Body::poll_frame(std::pin::Pin::new(&mut body), cx)
        },
    )
}

pub async fn read_body<B>(body: B) -> Result<Bytes, anyhow::Error>
where
    B: hyper::body::Body<Data = Bytes, Error = anyhow::Error> + Unpin,
{
    let mut bytes = BytesMut::new();
    let mut stream = body_to_stream(body);
    while let Some(frame) = stream.next().await {
        let frame = frame?;
        if let Some(frame) = frame.data_ref() {
            bytes.extend_from_slice(frame);
        }
    }
    return Ok(bytes.into());
}

#[async_trait]
pub trait HttpHandler: Sync + Send + 'static {
    fn namespace(&self) -> &[&'static str];
    async fn handle(
        &self,
        request: Request<Incoming>,
        remote_addr: SocketAddr,
        data_cache: &mut HttpDataCache,
        prefix: Option<&str>,
    ) -> Result<Response<BoxBody>, anyhow::Error>;
}

#[async_trait]
pub trait HttpAuthorizer: Sync + Send + 'static {
    async fn authorize(
        &self,
        request: &Request<Incoming>,
        remote_addr: SocketAddr,
        data_cache: &mut HttpDataCache,
        prefix: Option<&str>,
    ) -> Result<bool, anyhow::Error>;
}

#[async_trait]
pub trait HttpData: Sync + Send + 'static {
    async fn try_extract(
        request: &Request<Incoming>,
        remote_addr: SocketAddr,
        data_cache: &mut HttpDataCache,
    ) -> Result<Self, anyhow::Error>
    where
        Self: Sized;
}

#[derive(Default)]
pub struct HttpDataCache {
    data_map: HashMap<TypeId, Box<dyn Any + Sync + Send>>,
}

impl HttpDataCache {
    pub fn new() -> Self {
        Default::default()
    }
}

impl HttpDataCache {
    pub async fn try_get<T>(
        &mut self,
        request: &Request<Incoming>,
        remote_addr: SocketAddr,
    ) -> Result<&T, anyhow::Error>
    where
        T: HttpData,
    {
        let type_id = TypeId::of::<T>();
        let exist = self.data_map.get(&type_id).is_some();
        if !exist {
            let data = T::try_extract(request, remote_addr, self).await?;
            self.data_map.insert(type_id, Box::new(data));
        }
        let data = self
            .data_map
            .get(&type_id)
            .ok_or_else(|| LightString::from_static("Data is empty!"))?;
        let data = data
            .downcast_ref::<T>()
            .ok_or_else(|| LightString::from_static("Data not match the type!"))?;
        return Ok(data);
    }
}

#[async_trait]
impl HttpData for Option<Cookie> {
    async fn try_extract(
        request: &Request<Incoming>,
        _remote_addr: SocketAddr,
        _data_cache: &mut HttpDataCache,
    ) -> Result<Self, anyhow::Error> {
        let cookie = request.headers().typed_get::<Cookie>();
        return Ok(cookie);
    }
}