Dont unnecessarily clone the entire response in http server

This commit is contained in:
Filip Tibell 2025-04-28 11:56:59 +02:00
parent 37da9a39ec
commit b41980d6e1
No known key found for this signature in database
3 changed files with 25 additions and 3 deletions

View file

@ -99,7 +99,7 @@ async fn handle_request(
let config = ResponseConfig::from_lua_multi(thread_res, &lua)?;
let response = Response::try_from(config)?;
Ok(response.as_full())
Ok(response.into_full())
}
async fn handle_websocket(

View file

@ -105,9 +105,10 @@ impl Request {
}
/**
Returns the inner `hyper` request with its body
Clones the inner `hyper` request with its body
type modified to `Full<Bytes>` for sending.
*/
#[allow(dead_code)]
pub fn as_full(&self) -> HyperRequest<Full<Bytes>> {
let mut builder = HyperRequest::builder()
.version(self.inner.version())
@ -122,6 +123,16 @@ impl Request {
let body = Full::new(self.inner.body().clone());
builder.body(body).expect("request was valid")
}
/**
Takes the inner `hyper` request with its body
type modified to `Full<Bytes>` for sending.
*/
#[allow(dead_code)]
pub fn into_full(self) -> HyperRequest<Full<Bytes>> {
let (parts, body) = self.inner.into_parts();
HyperRequest::from_parts(parts, Full::new(body))
}
}
impl TryFrom<RequestConfig> for Request {

View file

@ -75,9 +75,10 @@ impl Response {
}
/**
Returns the inner `hyper` response with its body
Clones the inner `hyper` response with its body
type modified to `Full<Bytes>` for sending.
*/
#[allow(dead_code)]
pub fn as_full(&self) -> HyperResponse<Full<Bytes>> {
let mut builder = HyperResponse::builder()
.version(self.inner.version())
@ -91,6 +92,16 @@ impl Response {
let body = Full::new(self.inner.body().clone());
builder.body(body).expect("request was valid")
}
/**
Takes the inner `hyper` response with its body
type modified to `Full<Bytes>` for sending.
*/
#[allow(dead_code)]
pub fn into_full(self) -> HyperResponse<Full<Bytes>> {
let (parts, body) = self.inner.into_parts();
HyperResponse::from_parts(parts, Full::new(body))
}
}
impl TryFrom<ResponseConfig> for Response {