From de356c1f12d9aae98bd5eb259eaf341838c1dba9 Mon Sep 17 00:00:00 2001 From: asonix Date: Thu, 22 Feb 2024 16:15:32 -0600 Subject: [PATCH] Remove MessageBody impl --- src/bytes_stream.rs | 61 ++++++++++----------------------------------- 1 file changed, 13 insertions(+), 48 deletions(-) diff --git a/src/bytes_stream.rs b/src/bytes_stream.rs index cc5e1e1..9c62b5a 100644 --- a/src/bytes_stream.rs +++ b/src/bytes_stream.rs @@ -1,7 +1,4 @@ -use actix_web::{ - body::MessageBody, - web::{Bytes, BytesMut}, -}; +use actix_web::web::Bytes; use futures_core::Stream; use std::{ collections::{vec_deque::IntoIter, VecDeque}, @@ -56,20 +53,6 @@ impl BytesStream { self.total_len > 0 } - fn into_bytes(mut self) -> Bytes { - if self.inner.len() == 1 { - return self.inner.pop_front().expect("Exactly one"); - } - - let mut buf = BytesMut::with_capacity(self.total_len); - - for bytes in self.inner { - buf.extend_from_slice(&bytes); - } - - buf.freeze() - } - pub(crate) fn into_reader(self) -> BytesReader { BytesReader { index: 0, @@ -78,12 +61,12 @@ impl BytesStream { } pub(crate) fn into_io_stream(self) -> IoStream { - IoStream { stream: self } + IoStream { inner: self.inner } } } pub(crate) struct IoStream { - stream: BytesStream, + inner: VecDeque, } pub(crate) struct BytesReader { @@ -100,45 +83,27 @@ impl IntoIterator for BytesStream { } } -impl MessageBody for BytesStream { - type Error = std::io::Error; - - fn size(&self) -> actix_web::body::BodySize { - if let Ok(len) = self.len().try_into() { - actix_web::body::BodySize::Sized(len) - } else { - actix_web::body::BodySize::None - } - } - - fn poll_next( - self: Pin<&mut Self>, - _: &mut Context<'_>, - ) -> Poll>> { - Poll::Ready(self.get_mut().inner.pop_front().map(Ok)) - } - - fn try_into_bytes(self) -> Result - where - Self: Sized, - { - Ok(self.into_bytes()) - } -} - impl Stream for BytesStream { type Item = Result; fn poll_next(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll> { Poll::Ready(self.get_mut().inner.pop_front().map(Ok)) } + + fn size_hint(&self) -> (usize, Option) { + (self.inner.len(), Some(self.inner.len())) + } } impl Stream for IoStream { type Item = std::io::Result; - fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { - MessageBody::poll_next(Pin::new(&mut self.get_mut().stream), cx) + fn poll_next(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll> { + Poll::Ready(self.get_mut().inner.pop_front().map(Ok)) + } + + fn size_hint(&self) -> (usize, Option) { + (self.inner.len(), Some(self.inner.len())) } }