summaryrefslogtreecommitdiffstats
path: root/tokio/src/io/util/async_read_ext.rs
blob: faac42d93f8166b4ef9a0fd791e4431f24af1fe9 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
use crate::io::util::chain::{chain, Chain};
use crate::io::util::copy::{copy, Copy};
use crate::io::util::read::{read, Read};
use crate::io::util::read_exact::{read_exact, ReadExact};
use crate::io::util::read_to_end::{read_to_end, ReadToEnd};
use crate::io::util::read_to_string::{read_to_string, ReadToString};
use crate::io::util::take::{take, Take};
use crate::io::{AsyncRead, AsyncWrite};

cfg_io_util! {
    /// An extension trait which adds utility methods to `AsyncRead` types.
    pub trait AsyncReadExt: AsyncRead {
        /// Creates an adaptor which will chain this stream with another.
        ///
        /// The returned `AsyncRead` instance will first read all bytes from this object
        /// until EOF is encountered. Afterwards the output is equivalent to the
        /// output of `next`.
        fn chain<R>(self, next: R) -> Chain<Self, R>
        where
            Self: Sized,
            R: AsyncRead,
        {
            chain(self, next)
        }

        /// Copy all data from `self` into the provided `AsyncWrite`.
        ///
        /// The returned future will copy all the bytes read from `reader` into the
        /// `writer` specified.  This future will only complete once the `reader`
        /// has hit EOF and all bytes have been written to and flushed from the
        /// `writer` provided.
        ///
        /// On success the number of bytes is returned and the `reader` and `writer`
        /// are consumed. On error the error is returned and the I/O objects are
        /// consumed as well.
        fn copy<'a, W>(&'a mut self, dst: &'a mut W) -> Copy<'a, Self, W>
        where
            Self: Unpin,
            W: AsyncWrite + Unpin + ?Sized,
        {
            copy(self, dst)
        }

        /// Read data into the provided buffer.
        ///
        /// The returned future will resolve to the number of bytes read once the
        /// read operation is completed.
        fn read<'a>(&'a mut self, dst: &'a mut [u8]) -> Read<'a, Self>
        where
            Self: Unpin,
        {
            read(self, dst)
        }

        /// Read exactly the amount of data needed to fill the provided buffer.
        fn read_exact<'a>(&'a mut self, dst: &'a mut [u8]) -> ReadExact<'a, Self>
        where
            Self: Unpin,
        {
            read_exact(self, dst)
        }

        /// Read all bytes until EOF in this source, placing them into `dst`.
        ///
        /// On success the total number of bytes read is returned.
        fn read_to_end<'a>(&'a mut self, dst: &'a mut Vec<u8>) -> ReadToEnd<'a, Self>
        where
            Self: Unpin,
        {
            read_to_end(self, dst)
        }

        /// Read all bytes until EOF in this source, placing them into `dst`.
        ///
        /// On success the total number of bytes read is returned.
        fn read_to_string<'a>(&'a mut self, dst: &'a mut String) -> ReadToString<'a, Self>
        where
            Self: Unpin,
        {
            read_to_string(self, dst)
        }

        /// Creates an AsyncRead adapter which will read at most `limit` bytes
        /// from the underlying reader.
        fn take(self, limit: u64) -> Take<Self>
        where
            Self: Sized,
        {
            take(self, limit)
        }
    }
}

impl<R: AsyncRead + ?Sized> AsyncReadExt for R {}