volga 0.9.0

Easy & Fast Web Framework for Rust
Documentation
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
//! HTTP Body utilities

use crate::{
    ByteStream,
    error::{BoxError, Error},
};
use bytes::Bytes;
use futures_util::{TryStream, TryStreamExt};
use hyper::body::Frame;
use pin_project_lite::pin_project;
use serde::Serialize;
use tokio::fs::File;
use tokio_util::io::ReaderStream;

use http_body_util::{BodyDataStream, BodyExt, Empty, Full, Limited, StreamBody};

use std::{
    borrow::Cow,
    pin::Pin,
    task::{Context, Poll},
};

pub use hyper::body::{Body, Incoming, SizeHint};

/// A boxed body
pub type BoxBody = http_body_util::combinators::BoxBody<Bytes, Error>;

/// A boxed body that is !Sync
pub type UnsyncBoxBody = http_body_util::combinators::UnsyncBoxBody<Bytes, Error>;

/// Represents a [`ByteStream`] of [`HttpBody`]
pub type HttpBodyStream = ByteStream<BodyDataStream<HttpBody>>;

mod into_body;

pin_project! {
    /// Represents a response/request body
    pub struct HttpBody {
        #[pin]
        inner: InnerBody
    }
}

pin_project! {
    #[project = InnerBodyProj]
    pub(crate) enum InnerBody {
        Empty {
            #[pin]
            inner: Empty<Bytes>
        },
        Full {
            #[pin]
            inner: Full<Bytes>
        },
        Incoming {
            #[pin]
            inner: Incoming
        },
        Limited {
            #[pin]
            inner: Limited<Incoming>
        },
        Boxed {
            #[pin]
            inner: UnsyncBoxBody
        },
        BoxedLimited {
            #[pin]
            inner: Limited<UnsyncBoxBody>
        },
        FullLimited {
            #[pin]
            inner: Limited<Full<Bytes>>
        },
    }
}

impl Body for HttpBody {
    type Data = Bytes;
    type Error = Error;

    #[inline]
    fn poll_frame(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
    ) -> Poll<Option<Result<Frame<Self::Data>, Self::Error>>> {
        match self.project().inner.project() {
            InnerBodyProj::Empty { inner } => inner.poll_frame(cx).map_err(Error::client_error),
            InnerBodyProj::Full { inner } => inner.poll_frame(cx).map_err(Error::client_error),
            InnerBodyProj::Incoming { inner } => inner.poll_frame(cx).map_err(Error::client_error),
            InnerBodyProj::Limited { inner } => inner.poll_frame(cx).map_err(Error::client_error),
            InnerBodyProj::BoxedLimited { inner } => {
                inner.poll_frame(cx).map_err(Error::client_error)
            }
            InnerBodyProj::Boxed { inner } => inner.poll_frame(cx),
            InnerBodyProj::FullLimited { inner } => {
                inner.poll_frame(cx).map_err(Error::client_error)
            }
        }
    }

    #[inline]
    fn is_end_stream(&self) -> bool {
        match &self.inner {
            InnerBody::Empty { inner } => inner.is_end_stream(),
            InnerBody::Full { inner } => inner.is_end_stream(),
            InnerBody::Incoming { inner } => inner.is_end_stream(),
            InnerBody::Limited { inner } => inner.is_end_stream(),
            InnerBody::BoxedLimited { inner } => inner.is_end_stream(),
            InnerBody::Boxed { inner } => inner.is_end_stream(),
            InnerBody::FullLimited { inner } => inner.is_end_stream(),
        }
    }

    #[inline]
    fn size_hint(&self) -> SizeHint {
        match &self.inner {
            InnerBody::Empty { inner } => inner.size_hint(),
            InnerBody::Full { inner } => inner.size_hint(),
            InnerBody::Incoming { inner } => inner.size_hint(),
            InnerBody::Limited { inner } => inner.size_hint(),
            InnerBody::BoxedLimited { inner } => inner.size_hint(),
            InnerBody::Boxed { inner } => inner.size_hint(),
            InnerBody::FullLimited { inner } => inner.size_hint(),
        }
    }
}

impl HttpBody {
    /// Creates a new [`HttpBody`]
    #[inline]
    pub fn new(inner: UnsyncBoxBody) -> Self {
        Self {
            inner: InnerBody::Boxed { inner },
        }
    }

    /// Create a new [`HttpBody`] from the incoming request stream
    #[inline]
    pub(crate) fn incoming(inner: Incoming) -> Self {
        Self {
            inner: InnerBody::Incoming { inner },
        }
    }

    /// Create a new limited [`HttpBody`] from the incoming request stream
    #[inline]
    pub(crate) fn limited(inner: HttpBody, limit: usize) -> Self {
        match inner.inner {
            InnerBody::Incoming { inner } => Self {
                inner: InnerBody::Limited {
                    inner: Limited::new(inner, limit),
                },
            },
            InnerBody::Empty { inner } => Self {
                inner: InnerBody::Empty { inner },
            },
            InnerBody::Full { inner } => Self {
                inner: InnerBody::FullLimited {
                    inner: Limited::new(inner, limit),
                },
            },
            InnerBody::Limited { inner } => Self {
                inner: InnerBody::Limited { inner },
            },
            InnerBody::BoxedLimited { inner } => Self {
                inner: InnerBody::BoxedLimited { inner },
            },
            InnerBody::Boxed { inner } => Self {
                inner: InnerBody::BoxedLimited {
                    inner: Limited::new(inner, limit),
                },
            },
            InnerBody::FullLimited { inner } => Self {
                inner: InnerBody::FullLimited { inner },
            },
        }
    }

    /// Wraps the `inner` into [`HttpBody`] as boxed trait object
    #[allow(dead_code)]
    pub(crate) fn boxed<B>(inner: B) -> Self
    where
        B: Body<Data = Bytes, Error = Error> + Send + 'static,
    {
        let inner = inner.boxed_unsync();
        Self {
            inner: InnerBody::Boxed { inner },
        }
    }

    /// Consumes the [`HttpBody`] and returns the body as a boxed trait object
    #[inline]
    pub fn into_boxed(self) -> UnsyncBoxBody {
        match self.inner {
            InnerBody::Boxed { inner } => inner,
            InnerBody::Empty { inner } => inner.map_err(Error::client_error).boxed_unsync(),
            InnerBody::Full { inner } => inner.map_err(Error::client_error).boxed_unsync(),
            InnerBody::FullLimited { inner } => inner.map_err(Error::client_error).boxed_unsync(),
            InnerBody::BoxedLimited { inner } => inner.map_err(Error::client_error).boxed_unsync(),
            InnerBody::Limited { inner } => inner.map_err(Error::client_error).boxed_unsync(),
            InnerBody::Incoming { inner } => inner.map_err(Error::client_error).boxed_unsync(),
        }
    }

    /// Convert this body into a boxed representation.
    #[inline]
    pub fn into_boxed_http_body(self) -> Self {
        match self.inner {
            InnerBody::Boxed { .. } => self,
            _ => Self::new(self.into_boxed()),
        }
    }

    /// Consumes this [`HttpBody`] into [`BodyDataStream`]
    #[inline]
    pub fn into_data_stream(self) -> BodyDataStream<HttpBody> {
        BodyExt::into_data_stream(self)
    }

    /// Consumes the [`HttpBody`] and returns the body as a boxed trait object that is !Sync.
    #[inline]
    pub fn into_boxed_unsync(self) -> UnsyncBoxBody {
        self.boxed_unsync()
    }

    /// Creates a new [`HttpBody`] from any string object.
    /// There is no allocating or copying.
    #[inline]
    pub fn text<S>(s: S) -> Self
    where
        S: Into<Cow<'static, str>>,
    {
        match s.into() {
            Cow::Borrowed(st) => Self::from_static_text(st),
            Cow::Owned(owned) => Self::full(owned),
        }
    }

    /// Creates a new [`HttpBody`] from a static slice of bytes.
    /// There is no allocating or copying.
    #[inline(always)]
    pub fn from_static(s: &'static [u8]) -> Self {
        Self::full(Bytes::from_static(s))
    }

    /// Creates a new [`HttpBody`] from a static str.
    /// There is no allocating or copying.
    #[inline(always)]
    pub fn from_static_text(s: &'static str) -> Self {
        Self::from_static(s.as_bytes())
    }

    /// Creates a new [`HttpBody`] from `&str` object
    /// by copying it without `String` or `Box<str>` allocation.
    #[inline(always)]
    pub fn text_ref(s: &str) -> Self {
        Self::from_slice(s.as_bytes())
    }

    /// Creates a new [`HttpBody`] from a slice of bytes
    /// by copying it without `Vec<u8>` or `Box<[u8]>` allocation.
    #[inline(always)]
    pub fn from_slice(s: &[u8]) -> Self {
        Self::full(Bytes::copy_from_slice(s))
    }

    /// Creates a new [`HttpBody`] from JSON object
    #[inline]
    pub fn json<T: Serialize>(content: T) -> Result<HttpBody, Error> {
        let content = serde_json::to_vec(&content)?;
        Ok(Self {
            inner: InnerBody::Full {
                inner: Full::from(content),
            },
        })
    }

    /// Creates a new [`HttpBody`] from a Form Data object
    #[inline]
    pub fn form<T: Serialize>(content: T) -> Result<HttpBody, Error> {
        let content = serde_urlencoded::to_string(&content)?;
        Ok(Self {
            inner: InnerBody::Full {
                inner: Full::from(content),
            },
        })
    }

    /// Creates a new [`HttpBody`] from an object that is convertable to a byte array
    #[inline]
    pub fn full<T: Into<Bytes>>(chunk: T) -> HttpBody {
        Self {
            inner: InnerBody::Full {
                inner: Full::new(chunk.into()),
            },
        }
    }

    /// Creates an empty [`HttpBody`]
    #[inline]
    pub fn empty() -> HttpBody {
        Self {
            inner: InnerBody::Empty {
                inner: Empty::<Bytes>::new(),
            },
        }
    }

    /// Creates a new [`HttpBody`] from [`File`] stream
    #[inline]
    pub fn file(content: File) -> HttpBody {
        let reader_stream = ReaderStream::new(content);
        Self::stream(reader_stream)
    }

    /// Creates a new [`HttpBody`] from a `Stream<Item = Bytes>`.
    #[inline]
    pub fn stream_bytes<S>(stream: S) -> HttpBody
    where
        S: futures_util::Stream<Item = Bytes> + Send + 'static,
    {
        use futures_util::StreamExt;

        Self::stream(stream.map(Ok::<_, Error>))
    }

    /// Creates a new [`HttpBody`] from stream
    #[inline]
    pub fn stream<S>(stream: S) -> HttpBody
    where
        S: TryStream + Send + 'static,
        S::Ok: Into<Bytes>,
        S::Error: Into<BoxError>,
    {
        let stream_body = StreamBody::new(
            stream
                .map_err(Error::client_error)
                .map_ok(|msg| Frame::data(msg.into())),
        );
        Self {
            inner: InnerBody::Boxed {
                inner: stream_body.boxed_unsync(),
            },
        }
    }
}

#[cfg(test)]
mod tests {
    use crate::HttpBody;
    use http_body_util::BodyExt;
    use hyper::body::Body;
    use serde::{Serialize, Serializer};
    use std::borrow::Cow;

    struct FailStruct;

    impl Serialize for FailStruct {
        fn serialize<S>(&self, _serializer: S) -> Result<S::Ok, S::Error>
        where
            S: Serializer,
        {
            Err(serde::ser::Error::custom("oops..."))
        }
    }

    #[tokio::test]
    async fn it_returns_err_if_body_limit_exceeded() {
        let body = HttpBody::full("Hello, World!").into_boxed_http_body();
        let body = HttpBody::limited(body, 5);

        let collected = body.collect().await;

        assert!(collected.is_err());
    }

    #[tokio::test]
    async fn it_returns_ok_if_body_within_limit() {
        let body = HttpBody::full("Hello, World!");
        let body = HttpBody::limited(body, 100);

        let collected = body.collect().await;

        assert!(collected.is_ok());
    }

    #[tokio::test]
    async fn it_returns_error_body_if_unable_to_serialize_json() {
        let content = FailStruct;
        let body = HttpBody::json(content);

        assert!(body.is_err());
    }

    #[tokio::test]
    async fn it_returns_error_body_if_unable_to_serialize_form() {
        let content = FailStruct;
        let body = HttpBody::form(content);

        assert!(body.is_err());
    }

    #[tokio::test]
    async fn it_returns_empty_body() {
        let body = HttpBody::empty();

        let collected = body.collect().await;
        assert!(collected.is_ok());

        let size = collected.unwrap().size_hint();
        assert_eq!(size.lower(), 0);
        assert_eq!(size.upper(), None)
    }

    #[tokio::test]
    async fn it_works_with_static_str() {
        let body = HttpBody::from_static_text("Hello, World!");

        let collected = body.collect().await;

        assert_eq!(
            String::from_utf8(collected.unwrap().to_bytes().into()).unwrap(),
            "Hello, World!"
        );
    }

    #[tokio::test]
    async fn it_works_with_static_bytes() {
        let body = HttpBody::from_static(b"Hello, World!");

        let collected = body.collect().await;

        assert_eq!(
            String::from_utf8(collected.unwrap().to_bytes().into()).unwrap(),
            "Hello, World!"
        );
    }

    #[tokio::test]
    async fn it_works_with_string() {
        let body = HttpBody::text(String::from("Hello, World!"));

        let collected = body.collect().await;

        assert_eq!(
            String::from_utf8(collected.unwrap().to_bytes().into()).unwrap(),
            "Hello, World!"
        );
    }

    #[tokio::test]
    async fn it_works_with_static_str_to_text() {
        let body = HttpBody::text("Hello, World!");

        let collected = body.collect().await;

        assert_eq!(
            String::from_utf8(collected.unwrap().to_bytes().into()).unwrap(),
            "Hello, World!"
        );
    }

    #[tokio::test]
    async fn it_works_with_cow() {
        let body = HttpBody::text(Cow::<'static, str>::Borrowed("Hello, World!"));

        let collected = body.collect().await;

        assert_eq!(
            String::from_utf8(collected.unwrap().to_bytes().into()).unwrap(),
            "Hello, World!"
        );
    }

    #[tokio::test]
    async fn it_works_with_str() {
        let string = String::from("Hello, World!");
        let body = HttpBody::text_ref(string.as_str());

        let collected = body.collect().await;

        assert_eq!(
            String::from_utf8(collected.unwrap().to_bytes().into()).unwrap(),
            "Hello, World!"
        );
    }

    #[tokio::test]
    async fn it_works_with_slice() {
        let string = String::from("Hello, World!");
        let body = HttpBody::from_slice(string.as_bytes());

        let collected = body.collect().await;

        assert_eq!(
            String::from_utf8(collected.unwrap().to_bytes().into()).unwrap(),
            "Hello, World!"
        );
    }
}