use crate::AsyncBufRead; use futures_core::ready; use std::future::Future; use std::io; use std::mem; use std::pin::Pin; use std::task::{Context, Poll}; /// Future for the [`read_until`](crate::io::AsyncBufReadExt::read_until) method. #[derive(Debug)] #[must_use = "futures do nothing unless you `.await` or poll them"] pub struct ReadUntil<'a, R: ?Sized + Unpin> { reader: &'a mut R, byte: u8, buf: &'a mut Vec, read: usize, } impl Unpin for ReadUntil<'_, R> {} pub(crate) fn read_until<'a, R>( reader: &'a mut R, byte: u8, buf: &'a mut Vec, ) -> ReadUntil<'a, R> where R: AsyncBufRead + ?Sized + Unpin, { ReadUntil { reader, byte, buf, read: 0, } } pub(super) fn read_until_internal( mut reader: Pin<&mut R>, cx: &mut Context<'_>, byte: u8, buf: &mut Vec, read: &mut usize, ) -> Poll> { loop { let (done, used) = { let available = ready!(reader.as_mut().poll_fill_buf(cx))?; if let Some(i) = memchr::memchr(byte, available) { buf.extend_from_slice(&available[..=i]); (true, i + 1) } else { buf.extend_from_slice(available); (false, available.len()) } }; reader.as_mut().consume(used); *read += used; if done || used == 0 { return Poll::Ready(Ok(mem::replace(read, 0))); } } } impl Future for ReadUntil<'_, R> { type Output = io::Result; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let Self { reader, byte, buf, read, } = &mut *self; read_until_internal(Pin::new(reader), cx, *byte, buf, read) } }