summaryrefslogtreecommitdiffstats
path: root/tokio-futures/src/io/read.rs
blob: 7a467b8dff5e8d487c97dcf4e7897320c1dc5b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use std::future::Future;
use std::io;
use std::pin::Pin;
use std::task::{self, Poll};
use tokio_io::AsyncRead;

/// A future which can be used to read bytes.
#[derive(Debug)]
pub struct Read<'a, T: ?Sized> {
    reader: &'a mut T,
    buf: &'a mut [u8],
}

// Pinning is never projected to fields
impl<'a, T: ?Sized> Unpin for Read<'a, T> {}

impl<'a, T: AsyncRead + ?Sized> Read<'a, T> {
    pub(super) fn new(reader: &'a mut T, buf: &'a mut [u8]) -> Read<'a, T> {
        Read { reader, buf }
    }
}

impl<'a, T: AsyncRead + ?Sized> Future for Read<'a, T> {
    type Output = io::Result<usize>;

    fn poll(mut self: Pin<&mut Self>, _context: &mut task::Context<'_>) -> Poll<Self::Output> {
        use crate::compat::forward::convert_poll;

        let this = &mut *self;
        convert_poll(this.reader.poll_read(this.buf))
    }
}