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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
//! IO //! //! This module contains a number of functions for working with //! `AsyncRead` and `AsyncWrite` types, including the //! `AsyncReadExt` and `AsyncWriteExt` traits which add methods //! to the `AsyncRead` and `AsyncWrite` types. use std::vec::Vec; pub use futures_io::{AsyncRead, AsyncWrite, IoVec}; // Temporarily removed until AsyncBufRead is implemented // pub use io::lines::{lines, Lines}; // pub use io::read_until::{read_until, ReadUntil}; // mod lines; // mod read_until; mod allow_std; pub use self::allow_std::AllowStdIo; mod copy_into; pub use self::copy_into::CopyInto; mod flush; pub use self::flush::Flush; mod read; pub use self::read::Read; mod read_exact; pub use self::read_exact::ReadExact; mod read_to_end; pub use self::read_to_end::ReadToEnd; mod close; pub use self::close::Close; mod split; pub use self::split::{ReadHalf, WriteHalf}; mod window; pub use self::window::Window; mod write_all; pub use self::write_all::WriteAll; /// An extension trait which adds utility methods to `AsyncRead` types. pub trait AsyncReadExt: AsyncRead { /// Creates a future which copies all the bytes from one object to another. /// /// The returned future will copy all the bytes read from this `AsyncRead` 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. /// /// # Examples /// /// ``` /// #![feature(async_await, await_macro, futures_api)] /// # futures::executor::block_on(async { /// use futures::io::AsyncReadExt; /// use std::io::Cursor; /// /// let mut reader = Cursor::new([1, 2, 3, 4]); /// let mut writer = Cursor::new([0u8; 5]); /// /// let bytes = await!(reader.copy_into(&mut writer))?; /// /// assert_eq!(bytes, 4); /// assert_eq!(writer.into_inner(), [1, 2, 3, 4, 0]); /// # Ok::<(), Box<std::error::Error>>(()) }).unwrap(); /// ``` fn copy_into<'a, W>( &'a mut self, writer: &'a mut W, ) -> CopyInto<'a, Self, W> where W: AsyncWrite, { CopyInto::new(self, writer) } /// Tries to read some bytes directly into the given `buf` in asynchronous /// manner, returning a future type. /// /// The returned future will resolve to the number of bytes read once the read /// operation is completed. /// /// # Examples /// /// ``` /// #![feature(async_await, await_macro, futures_api)] /// # futures::executor::block_on(async { /// use futures::io::AsyncReadExt; /// use std::io::Cursor; /// /// let mut reader = Cursor::new([1, 2, 3, 4]); /// let mut output = [0u8; 5]; /// /// let bytes = await!(reader.read(&mut output[..]))?; /// /// // This is only guaranteed to be 4 because `&[u8]` is a synchronous /// // reader. In a real system you could get anywhere from 1 to /// // `output.len()` bytes in a single read. /// assert_eq!(bytes, 4); /// assert_eq!(output, [1, 2, 3, 4, 0]); /// # Ok::<(), Box<std::error::Error>>(()) }).unwrap(); /// ``` fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> Read<'a, Self> { Read::new(self, buf) } /// Creates a future which will read exactly enough bytes to fill `buf`, /// returning an error if end of file (EOF) is hit sooner. /// /// The returned future will resolve once the read operation is completed. /// /// In the case of an error the buffer and the object will be discarded, with /// the error yielded. /// /// # Examples /// /// ``` /// #![feature(async_await, await_macro, futures_api)] /// # futures::executor::block_on(async { /// use futures::io::AsyncReadExt; /// use std::io::Cursor; /// /// let mut reader = Cursor::new([1, 2, 3, 4]); /// let mut output = [0u8; 4]; /// /// await!(reader.read_exact(&mut output))?; /// /// assert_eq!(output, [1, 2, 3, 4]); /// # Ok::<(), Box<std::error::Error>>(()) }).unwrap(); /// ``` /// /// ## EOF is hit before `buf` is filled /// /// ``` /// #![feature(async_await, await_macro, futures_api)] /// # futures::executor::block_on(async { /// use futures::io::AsyncReadExt; /// use std::io::{self, Cursor}; /// /// let mut reader = Cursor::new([1, 2, 3, 4]); /// let mut output = [0u8; 5]; /// /// let result = await!(reader.read_exact(&mut output)); /// /// assert_eq!(result.unwrap_err().kind(), io::ErrorKind::UnexpectedEof); /// # }); /// ``` fn read_exact<'a>( &'a mut self, buf: &'a mut [u8], ) -> ReadExact<'a, Self> { ReadExact::new(self, buf) } /// Creates a future which will read all the bytes from this `AsyncRead`. /// /// # Examples /// /// ``` /// #![feature(async_await, await_macro, futures_api)] /// # futures::executor::block_on(async { /// use futures::io::AsyncReadExt; /// use std::io::Cursor; /// /// let mut reader = Cursor::new([1, 2, 3, 4]); /// let mut output = Vec::with_capacity(4); /// /// await!(reader.read_to_end(&mut output))?; /// /// assert_eq!(output, vec![1, 2, 3, 4]); /// # Ok::<(), Box<std::error::Error>>(()) }).unwrap(); /// ``` fn read_to_end<'a>( &'a mut self, buf: &'a mut Vec<u8>, ) -> ReadToEnd<'a, Self> { ReadToEnd::new(self, buf) } /// Helper method for splitting this read/write object into two halves. /// /// The two halves returned implement the `AsyncRead` and `AsyncWrite` /// traits, respectively. /// /// # Examples /// /// ``` /// #![feature(async_await, await_macro, futures_api)] /// # futures::executor::block_on(async { /// use futures::io::AsyncReadExt; /// use std::io::Cursor; /// /// // Note that for `Cursor` the read and write halves share a single /// // seek position. This may or may not be true for other types that /// // implement both `AsyncRead` and `AsyncWrite`. /// /// let mut reader = Cursor::new([1, 2, 3, 4]); /// let mut buffer = Cursor::new([0, 0, 0, 0, 5, 6, 7, 8]); /// let mut writer = Cursor::new([0u8; 5]); /// /// { /// let (mut buffer_reader, mut buffer_writer) = (&mut buffer).split(); /// await!(reader.copy_into(&mut buffer_writer))?; /// await!(buffer_reader.copy_into(&mut writer))?; /// } /// /// assert_eq!(buffer.into_inner(), [1, 2, 3, 4, 5, 6, 7, 8]); /// assert_eq!(writer.into_inner(), [5, 6, 7, 8, 0]); /// # Ok::<(), Box<std::error::Error>>(()) }).unwrap(); /// ``` fn split(self) -> (ReadHalf<Self>, WriteHalf<Self>) where Self: AsyncWrite + Sized, { split::split(self) } } impl<R: AsyncRead + ?Sized> AsyncReadExt for R {} /// An extension trait which adds utility methods to `AsyncWrite` types. pub trait AsyncWriteExt: AsyncWrite { /// Creates a future which will entirely flush this `AsyncWrite`. /// /// # Examples /// /// ``` /// #![feature(async_await, await_macro, futures_api)] /// # futures::executor::block_on(async { /// use futures::io::{AllowStdIo, AsyncWriteExt}; /// use std::io::{BufWriter, Cursor}; /// /// let mut output = [0u8; 5]; /// /// { /// let mut writer = Cursor::new(&mut output[..]); /// let mut buffered = AllowStdIo::new(BufWriter::new(writer)); /// await!(buffered.write_all(&[1, 2]))?; /// await!(buffered.write_all(&[3, 4]))?; /// await!(buffered.flush())?; /// } /// /// assert_eq!(output, [1, 2, 3, 4, 0]); /// # Ok::<(), Box<std::error::Error>>(()) }).unwrap(); /// ``` fn flush(&mut self) -> Flush<'_, Self> { Flush::new(self) } /// Creates a future which will entirely close this `AsyncWrite`. fn close(&mut self) -> Close<'_, Self> { Close::new(self) } /// Write data into this object. /// /// Creates a future that will write the entire contents of the buffer `buf` into /// this `AsyncWrite`. /// /// The returned future will not complete until all the data has been written. /// /// # Examples /// /// ``` /// #![feature(async_await, await_macro, futures_api)] /// # futures::executor::block_on(async { /// use futures::io::AsyncWriteExt; /// use std::io::Cursor; /// /// let mut writer = Cursor::new([0u8; 5]); /// /// await!(writer.write_all(&[1, 2, 3, 4]))?; /// /// assert_eq!(writer.into_inner(), [1, 2, 3, 4, 0]); /// # Ok::<(), Box<std::error::Error>>(()) }).unwrap(); /// ``` fn write_all<'a>(&'a mut self, buf: &'a [u8]) -> WriteAll<'a, Self> { WriteAll::new(self, buf) } } impl<W: AsyncWrite + ?Sized> AsyncWriteExt for W {}