Skip to content

Commit

Permalink
Implement FromRequest for BytesMut (#2583)
Browse files Browse the repository at this point in the history
Co-authored-by: Yann Simon <yann.simon@commercetools.com>
  • Loading branch information
jplatte and yanns committed Sep 20, 2024
1 parent 69fac0a commit 352b7cf
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion axum-core/src/extract/request_parts.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use super::{rejection::*, FromRequest, FromRequestParts, Request};
use crate::{body::Body, RequestExt};
use async_trait::async_trait;
use bytes::Bytes;
use bytes::{BufMut, Bytes, BytesMut};
use http::{request::Parts, Extensions, HeaderMap, Method, Uri, Version};
use http_body_util::BodyExt;
use std::convert::Infallible;
Expand Down Expand Up @@ -71,6 +71,37 @@ where
}
}

#[async_trait]
impl<S> FromRequest<S> for BytesMut
where
S: Send + Sync,
{
type Rejection = BytesRejection;

async fn from_request(req: Request, _: &S) -> Result<Self, Self::Rejection> {
let mut body = req.into_limited_body();
let mut bytes = BytesMut::new();
body_to_bytes_mut(&mut body, &mut bytes).await?;
Ok(bytes)
}
}

async fn body_to_bytes_mut(body: &mut Body, bytes: &mut BytesMut) -> Result<(), BytesRejection> {
while let Some(frame) = body
.frame()
.await
.transpose()
.map_err(FailedToBufferBody::from_err)?
{
let Ok(data) = frame.into_data() else {
return Ok(());
};
bytes.put(data);
}

Ok(())
}

#[async_trait]
impl<S> FromRequest<S> for Bytes
where
Expand Down

0 comments on commit 352b7cf

Please sign in to comment.