1use crate::io::{AsyncBufRead, AsyncRead, ReadBuf};
23use pin_project_lite::pin_project;
4use std::convert::TryFrom;
5use std::pin::Pin;
6use std::task::{ready, Context, Poll};
7use std::{cmp, io};
89pin_project! {
10/// Stream for the [`take`](super::AsyncReadExt::take) method.
11#[derive(Debug)]
12 #[must_use = "streams do nothing unless you `.await` or poll them"]
13 #[cfg_attr(docsrs, doc(cfg(feature = "io-util")))]
14pub struct Take<R> {
15#[pin]
16inner: R,
17// Add '_' to avoid conflicts with `limit` method.
18limit_: u64,
19 }
20}
2122pub(super) fn take<R: AsyncRead>(inner: R, limit: u64) -> Take<R> {
23 Take {
24 inner,
25 limit_: limit,
26 }
27}
2829impl<R: AsyncRead> Take<R> {
30/// Returns the remaining number of bytes that can be
31 /// read before this instance will return EOF.
32 ///
33 /// # Note
34 ///
35 /// This instance may reach `EOF` after reading fewer bytes than indicated by
36 /// this method if the underlying [`AsyncRead`] instance reaches EOF.
37pub fn limit(&self) -> u64 {
38self.limit_
39 }
4041/// Sets the number of bytes that can be read before this instance will
42 /// return EOF. This is the same as constructing a new `Take` instance, so
43 /// the amount of bytes read and the previous limit value don't matter when
44 /// calling this method.
45pub fn set_limit(&mut self, limit: u64) {
46self.limit_ = limit;
47 }
4849/// Gets a reference to the underlying reader.
50pub fn get_ref(&self) -> &R {
51&self.inner
52 }
5354/// Gets a mutable reference to the underlying reader.
55 ///
56 /// Care should be taken to avoid modifying the internal I/O state of the
57 /// underlying reader as doing so may corrupt the internal limit of this
58 /// `Take`.
59pub fn get_mut(&mut self) -> &mut R {
60&mut self.inner
61 }
6263/// Gets a pinned mutable reference to the underlying reader.
64 ///
65 /// Care should be taken to avoid modifying the internal I/O state of the
66 /// underlying reader as doing so may corrupt the internal limit of this
67 /// `Take`.
68pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut R> {
69self.project().inner
70 }
7172/// Consumes the `Take`, returning the wrapped reader.
73pub fn into_inner(self) -> R {
74self.inner
75 }
76}
7778impl<R: AsyncRead> AsyncRead for Take<R> {
79fn poll_read(
80self: Pin<&mut Self>,
81 cx: &mut Context<'_>,
82 buf: &mut ReadBuf<'_>,
83 ) -> Poll<Result<(), io::Error>> {
84if self.limit_ == 0 {
85return Poll::Ready(Ok(()));
86 }
8788let me = self.project();
89let mut b = buf.take(usize::try_from(*me.limit_).unwrap_or(usize::MAX));
9091let buf_ptr = b.filled().as_ptr();
92ready!(me.inner.poll_read(cx, &mut b))?;
93assert_eq!(b.filled().as_ptr(), buf_ptr);
9495let n = b.filled().len();
9697// We need to update the original ReadBuf
98unsafe {
99 buf.assume_init(n);
100 }
101 buf.advance(n);
102*me.limit_ -= n as u64;
103 Poll::Ready(Ok(()))
104 }
105}
106107impl<R: AsyncBufRead> AsyncBufRead for Take<R> {
108fn poll_fill_buf(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<&[u8]>> {
109let me = self.project();
110111// Don't call into inner reader at all at EOF because it may still block
112if *me.limit_ == 0 {
113return Poll::Ready(Ok(&[]));
114 }
115116let buf = ready!(me.inner.poll_fill_buf(cx)?);
117let cap = cmp::min(buf.len() as u64, *me.limit_) as usize;
118 Poll::Ready(Ok(&buf[..cap]))
119 }
120121fn consume(self: Pin<&mut Self>, amt: usize) {
122let me = self.project();
123// Don't let callers reset the limit by passing an overlarge value
124let amt = cmp::min(amt as u64, *me.limit_) as usize;
125*me.limit_ -= amt as u64;
126 me.inner.consume(amt);
127 }
128}
129130#[cfg(test)]
131mod tests {
132use super::*;
133134#[test]
135fn assert_unpin() {
136crate::is_unpin::<Take<()>>();
137 }
138}