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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
use std::io::IoSliceMut; use std::mem; use std::pin::Pin; use std::str; use cfg_if::cfg_if; use futures::io::AsyncRead; use crate::future::Future; use crate::io; use crate::task::{Context, Poll}; cfg_if! { if #[cfg(feature = "docs")] { #[doc(hidden)] pub struct ImplFuture<'a, T>(std::marker::PhantomData<&'a T>); macro_rules! ret { ($a:lifetime, $f:tt, $o:ty) => (ImplFuture<$a, $o>); } } else { macro_rules! ret { ($a:lifetime, $f:tt, $o:ty) => ($f<$a, Self>); } } } /// Allows reading from a byte stream. /// /// This trait is an async version of [`std::io::Read`]. /// /// While it is currently not possible to implement this trait directly, it gets implemented /// automatically for all types that implement [`futures::io::AsyncRead`]. /// /// [`std::io::Read`]: https://doc.rust-lang.org/std/io/trait.Read.html /// [`futures::io::AsyncRead`]: /// https://docs/futures-preview/0.3.0-alpha.17/futures/io/trait.AsyncRead.html pub trait Read { /// Reads some bytes from the byte stream. /// /// Returns the number of bytes read from the start of the buffer. /// /// If the return value is `Ok(n)`, then it must be guaranteed that `0 <= n <= buf.len()`. A /// nonzero `n` value indicates that the buffer has been filled in with `n` bytes of data. If /// `n` is `0`, then it can indicate one of two scenarios: /// /// 1. This reader has reached its "end of file" and will likely no longer be able to produce /// bytes. Note that this does not mean that the reader will always no longer be able to /// produce bytes. /// 2. The buffer specified was 0 bytes in length. /// /// # Examples /// /// ```no_run /// # #![feature(async_await)] /// # fn main() -> std::io::Result<()> { async_std::task::block_on(async { /// # /// use async_std::fs::File; /// use async_std::prelude::*; /// /// let mut f = File::open("a.txt").await?; /// /// let mut buf = vec![0; 1024]; /// let n = f.read(&mut buf).await?; /// # /// # Ok(()) }) } /// ``` fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> ret!('a, ReadFuture, io::Result<usize>) where Self: Unpin; /// Like [`read`], except that it reads into a slice of buffers. /// /// Data is copied to fill each buffer in order, with the final buffer written to possibly /// being only partially filled. This method must behave as a single call to [`read`] with the /// buffers concatenated would. /// /// The default implementation calls [`read`] with either the first nonempty buffer provided, /// or an empty one if none exists. /// /// [`read`]: #tymethod.read fn read_vectored<'a>( &'a mut self, bufs: &'a mut [IoSliceMut<'a>], ) -> ret!('a, ReadVectoredFuture, io::Result<usize>) where Self: Unpin, { ReadVectoredFuture { reader: self, bufs } } /// Reads all bytes from the byte stream. /// /// All bytes read from this stream will be appended to the specified buffer `buf`. This /// function will continuously call [`read`] to append more data to `buf` until [`read`] /// returns either `Ok(0)` or an error. /// /// If successful, this function will return the total number of bytes read. /// /// [`read`]: #tymethod.read /// /// # Examples /// /// ```no_run /// # #![feature(async_await)] /// # fn main() -> std::io::Result<()> { async_std::task::block_on(async { /// # /// use async_std::fs::File; /// use async_std::prelude::*; /// /// let mut f = File::open("a.txt").await?; /// /// let mut buf = Vec::new(); /// f.read_to_end(&mut buf).await?; /// # /// # Ok(()) }) } /// ``` fn read_to_end<'a>( &'a mut self, buf: &'a mut Vec<u8>, ) -> ret!('a, ReadToEndFuture, io::Result<usize>) where Self: Unpin, { let start_len = buf.len(); ReadToEndFuture { reader: self, buf, start_len, } } /// Reads all bytes from the byte stream and appends them into a string. /// /// If successful, this function will return the number of bytes read. /// /// If the data in this stream is not valid UTF-8 then an error will be returned and `buf` will /// be left unmodified. /// /// # Examples /// /// ```no_run /// # #![feature(async_await)] /// # fn main() -> std::io::Result<()> { async_std::task::block_on(async { /// # /// use async_std::fs::File; /// use async_std::prelude::*; /// /// let mut f = File::open("a.txt").await?; /// /// let mut buf = String::new(); /// f.read_to_string(&mut buf).await?; /// # /// # Ok(()) }) } /// ``` fn read_to_string<'a>( &'a mut self, buf: &'a mut String, ) -> ret!('a, ReadToStringFuture, io::Result<usize>) where Self: Unpin, { let start_len = buf.len(); ReadToStringFuture { reader: self, bytes: unsafe { mem::replace(buf.as_mut_vec(), Vec::new()) }, buf, start_len, } } /// Reads the exact number of bytes required to fill `buf`. /// /// This function reads as many bytes as necessary to completely fill the specified buffer /// `buf`. /// /// No guarantees are provided about the contents of `buf` when this function is called, /// implementations cannot rely on any property of the contents of `buf` being true. It is /// recommended that implementations only write data to `buf` instead of reading its contents. /// /// If this function encounters an "end of file" before completely filling the buffer, it /// returns an error of the kind [`ErrorKind::UnexpectedEof`]. The contents of `buf` are /// unspecified in this case. /// /// If any other read error is encountered then this function immediately returns. The contents /// of `buf` are unspecified in this case. /// /// If this function returns an error, it is unspecified how many bytes it has read, but it /// will never read more than would be necessary to completely fill the buffer. /// /// [`ErrorKind::UnexpectedEof`]: enum.ErrorKind.html#variant.UnexpectedEof /// /// # Examples /// /// ```no_run /// # #![feature(async_await)] /// # fn main() -> std::io::Result<()> { async_std::task::block_on(async { /// # /// use async_std::fs::File; /// use async_std::prelude::*; /// /// let mut f = File::open("a.txt").await?; /// /// let mut buf = vec![0; 10]; /// f.read_exact(&mut buf).await?; /// # /// # Ok(()) }) } /// ``` fn read_exact<'a>(&'a mut self, buf: &'a mut [u8]) -> ret!('a, ReadExactFuture, io::Result<()>) where Self: Unpin, { ReadExactFuture { reader: self, buf } } } impl<T: AsyncRead + Unpin + ?Sized> Read for T { fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> ret!('a, ReadFuture, io::Result<usize>) { ReadFuture { reader: self, buf } } } #[doc(hidden)] #[allow(missing_debug_implementations)] pub struct ReadFuture<'a, T: Unpin + ?Sized> { reader: &'a mut T, buf: &'a mut [u8], } impl<T: AsyncRead + Unpin + ?Sized> Future for ReadFuture<'_, T> { type Output = io::Result<usize>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { let Self { reader, buf } = &mut *self; Pin::new(reader).poll_read(cx, buf) } } #[doc(hidden)] #[allow(missing_debug_implementations)] pub struct ReadVectoredFuture<'a, T: Unpin + ?Sized> { reader: &'a mut T, bufs: &'a mut [IoSliceMut<'a>], } impl<T: AsyncRead + Unpin + ?Sized> Future for ReadVectoredFuture<'_, T> { type Output = io::Result<usize>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { let Self { reader, bufs } = &mut *self; Pin::new(reader).poll_read_vectored(cx, bufs) } } #[doc(hidden)] #[allow(missing_debug_implementations)] pub struct ReadToEndFuture<'a, T: Unpin + ?Sized> { reader: &'a mut T, buf: &'a mut Vec<u8>, start_len: usize, } impl<T: AsyncRead + Unpin + ?Sized> Future for ReadToEndFuture<'_, T> { type Output = io::Result<usize>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { let Self { reader, buf, start_len, } = &mut *self; read_to_end_internal(Pin::new(reader), cx, buf, *start_len) } } #[doc(hidden)] #[allow(missing_debug_implementations)] pub struct ReadToStringFuture<'a, T: Unpin + ?Sized> { reader: &'a mut T, buf: &'a mut String, bytes: Vec<u8>, start_len: usize, } impl<T: AsyncRead + Unpin + ?Sized> Future for ReadToStringFuture<'_, T> { type Output = io::Result<usize>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { let Self { reader, buf, bytes, start_len, } = &mut *self; let reader = Pin::new(reader); let ret = futures::ready!(read_to_end_internal(reader, cx, bytes, *start_len)); if str::from_utf8(&bytes).is_err() { Poll::Ready(ret.and_then(|_| { Err(io::Error::new( io::ErrorKind::InvalidData, "stream did not contain valid UTF-8", )) })) } else { debug_assert!(buf.is_empty()); // Safety: `bytes` is a valid UTF-8 because `str::from_utf8` returned `Ok`. mem::swap(unsafe { buf.as_mut_vec() }, bytes); Poll::Ready(ret) } } } #[doc(hidden)] #[allow(missing_debug_implementations)] pub struct ReadExactFuture<'a, T: Unpin + ?Sized> { reader: &'a mut T, buf: &'a mut [u8], } impl<T: AsyncRead + Unpin + ?Sized> Future for ReadExactFuture<'_, T> { type Output = io::Result<()>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { let Self { reader, buf } = &mut *self; while !buf.is_empty() { let n = futures::ready!(Pin::new(&mut *reader).poll_read(cx, buf))?; let (_, rest) = mem::replace(buf, &mut []).split_at_mut(n); *buf = rest; if n == 0 { return Poll::Ready(Err(io::ErrorKind::UnexpectedEof.into())); } } Poll::Ready(Ok(())) } } // This uses an adaptive system to extend the vector when it fills. We want to // avoid paying to allocate and zero a huge chunk of memory if the reader only // has 4 bytes while still making large reads if the reader does have a ton // of data to return. Simply tacking on an extra DEFAULT_BUF_SIZE space every // time is 4,500 times (!) slower than this if the reader has a very small // amount of data to return. // // Because we're extending the buffer with uninitialized data for trusted // readers, we need to make sure to truncate that if any of this panics. pub fn read_to_end_internal<R: AsyncRead + ?Sized>( mut rd: Pin<&mut R>, cx: &mut Context<'_>, buf: &mut Vec<u8>, start_len: usize, ) -> Poll<io::Result<usize>> { struct Guard<'a> { buf: &'a mut Vec<u8>, len: usize, } impl Drop for Guard<'_> { fn drop(&mut self) { unsafe { self.buf.set_len(self.len); } } } let mut g = Guard { len: buf.len(), buf, }; let ret; loop { if g.len == g.buf.len() { unsafe { g.buf.reserve(32); let capacity = g.buf.capacity(); g.buf.set_len(capacity); rd.initializer().initialize(&mut g.buf[g.len..]); } } match futures::ready!(rd.as_mut().poll_read(cx, &mut g.buf[g.len..])) { Ok(0) => { ret = Poll::Ready(Ok(g.len - start_len)); break; } Ok(n) => g.len += n, Err(e) => { ret = Poll::Ready(Err(e)); break; } } } ret }