]> git.lizzy.rs Git - rust.git/blob - library/std/src/io/mod.rs
Rename IoSlice(Mut)::advance to advance_slice
[rust.git] / library / std / src / io / mod.rs
1 //! Traits, helpers, and type definitions for core I/O functionality.
2 //!
3 //! The `std::io` module contains a number of common things you'll need
4 //! when doing input and output. The most core part of this module is
5 //! the [`Read`] and [`Write`] traits, which provide the
6 //! most general interface for reading and writing input and output.
7 //!
8 //! # Read and Write
9 //!
10 //! Because they are traits, [`Read`] and [`Write`] are implemented by a number
11 //! of other types, and you can implement them for your types too. As such,
12 //! you'll see a few different types of I/O throughout the documentation in
13 //! this module: [`File`]s, [`TcpStream`]s, and sometimes even [`Vec<T>`]s. For
14 //! example, [`Read`] adds a [`read`][`Read::read`] method, which we can use on
15 //! [`File`]s:
16 //!
17 //! ```no_run
18 //! use std::io;
19 //! use std::io::prelude::*;
20 //! use std::fs::File;
21 //!
22 //! fn main() -> io::Result<()> {
23 //!     let mut f = File::open("foo.txt")?;
24 //!     let mut buffer = [0; 10];
25 //!
26 //!     // read up to 10 bytes
27 //!     let n = f.read(&mut buffer)?;
28 //!
29 //!     println!("The bytes: {:?}", &buffer[..n]);
30 //!     Ok(())
31 //! }
32 //! ```
33 //!
34 //! [`Read`] and [`Write`] are so important, implementors of the two traits have a
35 //! nickname: readers and writers. So you'll sometimes see 'a reader' instead
36 //! of 'a type that implements the [`Read`] trait'. Much easier!
37 //!
38 //! ## Seek and BufRead
39 //!
40 //! Beyond that, there are two important traits that are provided: [`Seek`]
41 //! and [`BufRead`]. Both of these build on top of a reader to control
42 //! how the reading happens. [`Seek`] lets you control where the next byte is
43 //! coming from:
44 //!
45 //! ```no_run
46 //! use std::io;
47 //! use std::io::prelude::*;
48 //! use std::io::SeekFrom;
49 //! use std::fs::File;
50 //!
51 //! fn main() -> io::Result<()> {
52 //!     let mut f = File::open("foo.txt")?;
53 //!     let mut buffer = [0; 10];
54 //!
55 //!     // skip to the last 10 bytes of the file
56 //!     f.seek(SeekFrom::End(-10))?;
57 //!
58 //!     // read up to 10 bytes
59 //!     let n = f.read(&mut buffer)?;
60 //!
61 //!     println!("The bytes: {:?}", &buffer[..n]);
62 //!     Ok(())
63 //! }
64 //! ```
65 //!
66 //! [`BufRead`] uses an internal buffer to provide a number of other ways to read, but
67 //! to show it off, we'll need to talk about buffers in general. Keep reading!
68 //!
69 //! ## BufReader and BufWriter
70 //!
71 //! Byte-based interfaces are unwieldy and can be inefficient, as we'd need to be
72 //! making near-constant calls to the operating system. To help with this,
73 //! `std::io` comes with two structs, [`BufReader`] and [`BufWriter`], which wrap
74 //! readers and writers. The wrapper uses a buffer, reducing the number of
75 //! calls and providing nicer methods for accessing exactly what you want.
76 //!
77 //! For example, [`BufReader`] works with the [`BufRead`] trait to add extra
78 //! methods to any reader:
79 //!
80 //! ```no_run
81 //! use std::io;
82 //! use std::io::prelude::*;
83 //! use std::io::BufReader;
84 //! use std::fs::File;
85 //!
86 //! fn main() -> io::Result<()> {
87 //!     let f = File::open("foo.txt")?;
88 //!     let mut reader = BufReader::new(f);
89 //!     let mut buffer = String::new();
90 //!
91 //!     // read a line into buffer
92 //!     reader.read_line(&mut buffer)?;
93 //!
94 //!     println!("{}", buffer);
95 //!     Ok(())
96 //! }
97 //! ```
98 //!
99 //! [`BufWriter`] doesn't add any new ways of writing; it just buffers every call
100 //! to [`write`][`Write::write`]:
101 //!
102 //! ```no_run
103 //! use std::io;
104 //! use std::io::prelude::*;
105 //! use std::io::BufWriter;
106 //! use std::fs::File;
107 //!
108 //! fn main() -> io::Result<()> {
109 //!     let f = File::create("foo.txt")?;
110 //!     {
111 //!         let mut writer = BufWriter::new(f);
112 //!
113 //!         // write a byte to the buffer
114 //!         writer.write(&[42])?;
115 //!
116 //!     } // the buffer is flushed once writer goes out of scope
117 //!
118 //!     Ok(())
119 //! }
120 //! ```
121 //!
122 //! ## Standard input and output
123 //!
124 //! A very common source of input is standard input:
125 //!
126 //! ```no_run
127 //! use std::io;
128 //!
129 //! fn main() -> io::Result<()> {
130 //!     let mut input = String::new();
131 //!
132 //!     io::stdin().read_line(&mut input)?;
133 //!
134 //!     println!("You typed: {}", input.trim());
135 //!     Ok(())
136 //! }
137 //! ```
138 //!
139 //! Note that you cannot use the [`?` operator] in functions that do not return
140 //! a [`Result<T, E>`][`Result`]. Instead, you can call [`.unwrap()`]
141 //! or `match` on the return value to catch any possible errors:
142 //!
143 //! ```no_run
144 //! use std::io;
145 //!
146 //! let mut input = String::new();
147 //!
148 //! io::stdin().read_line(&mut input).unwrap();
149 //! ```
150 //!
151 //! And a very common source of output is standard output:
152 //!
153 //! ```no_run
154 //! use std::io;
155 //! use std::io::prelude::*;
156 //!
157 //! fn main() -> io::Result<()> {
158 //!     io::stdout().write(&[42])?;
159 //!     Ok(())
160 //! }
161 //! ```
162 //!
163 //! Of course, using [`io::stdout`] directly is less common than something like
164 //! [`println!`].
165 //!
166 //! ## Iterator types
167 //!
168 //! A large number of the structures provided by `std::io` are for various
169 //! ways of iterating over I/O. For example, [`Lines`] is used to split over
170 //! lines:
171 //!
172 //! ```no_run
173 //! use std::io;
174 //! use std::io::prelude::*;
175 //! use std::io::BufReader;
176 //! use std::fs::File;
177 //!
178 //! fn main() -> io::Result<()> {
179 //!     let f = File::open("foo.txt")?;
180 //!     let reader = BufReader::new(f);
181 //!
182 //!     for line in reader.lines() {
183 //!         println!("{}", line?);
184 //!     }
185 //!     Ok(())
186 //! }
187 //! ```
188 //!
189 //! ## Functions
190 //!
191 //! There are a number of [functions][functions-list] that offer access to various
192 //! features. For example, we can use three of these functions to copy everything
193 //! from standard input to standard output:
194 //!
195 //! ```no_run
196 //! use std::io;
197 //!
198 //! fn main() -> io::Result<()> {
199 //!     io::copy(&mut io::stdin(), &mut io::stdout())?;
200 //!     Ok(())
201 //! }
202 //! ```
203 //!
204 //! [functions-list]: #functions-1
205 //!
206 //! ## io::Result
207 //!
208 //! Last, but certainly not least, is [`io::Result`]. This type is used
209 //! as the return type of many `std::io` functions that can cause an error, and
210 //! can be returned from your own functions as well. Many of the examples in this
211 //! module use the [`?` operator]:
212 //!
213 //! ```
214 //! use std::io;
215 //!
216 //! fn read_input() -> io::Result<()> {
217 //!     let mut input = String::new();
218 //!
219 //!     io::stdin().read_line(&mut input)?;
220 //!
221 //!     println!("You typed: {}", input.trim());
222 //!
223 //!     Ok(())
224 //! }
225 //! ```
226 //!
227 //! The return type of `read_input()`, [`io::Result<()>`][`io::Result`], is a very
228 //! common type for functions which don't have a 'real' return value, but do want to
229 //! return errors if they happen. In this case, the only purpose of this function is
230 //! to read the line and print it, so we use `()`.
231 //!
232 //! ## Platform-specific behavior
233 //!
234 //! Many I/O functions throughout the standard library are documented to indicate
235 //! what various library or syscalls they are delegated to. This is done to help
236 //! applications both understand what's happening under the hood as well as investigate
237 //! any possibly unclear semantics. Note, however, that this is informative, not a binding
238 //! contract. The implementation of many of these functions are subject to change over
239 //! time and may call fewer or more syscalls/library functions.
240 //!
241 //! [`File`]: crate::fs::File
242 //! [`TcpStream`]: crate::net::TcpStream
243 //! [`io::stdout`]: stdout
244 //! [`io::Result`]: self::Result
245 //! [`?` operator]: ../../book/appendix-02-operators.html
246 //! [`Result`]: crate::result::Result
247 //! [`.unwrap()`]: crate::result::Result::unwrap
248
249 #![stable(feature = "rust1", since = "1.0.0")]
250
251 #[cfg(test)]
252 mod tests;
253
254 use crate::cmp;
255 use crate::fmt;
256 use crate::mem::replace;
257 use crate::ops::{Deref, DerefMut};
258 use crate::ptr;
259 use crate::slice;
260 use crate::str;
261 use crate::sys;
262 use crate::sys_common::memchr;
263
264 #[stable(feature = "rust1", since = "1.0.0")]
265 pub use self::buffered::IntoInnerError;
266 #[stable(feature = "rust1", since = "1.0.0")]
267 pub use self::buffered::{BufReader, BufWriter, LineWriter};
268 #[stable(feature = "rust1", since = "1.0.0")]
269 pub use self::copy::copy;
270 #[stable(feature = "rust1", since = "1.0.0")]
271 pub use self::cursor::Cursor;
272 #[stable(feature = "rust1", since = "1.0.0")]
273 pub use self::error::{Error, ErrorKind, Result};
274 #[unstable(feature = "internal_output_capture", issue = "none")]
275 #[doc(no_inline, hidden)]
276 pub use self::stdio::set_output_capture;
277 #[stable(feature = "rust1", since = "1.0.0")]
278 pub use self::stdio::{stderr, stdin, stdout, Stderr, Stdin, Stdout};
279 #[stable(feature = "rust1", since = "1.0.0")]
280 pub use self::stdio::{StderrLock, StdinLock, StdoutLock};
281 #[unstable(feature = "print_internals", issue = "none")]
282 pub use self::stdio::{_eprint, _print};
283 #[stable(feature = "rust1", since = "1.0.0")]
284 pub use self::util::{empty, repeat, sink, Empty, Repeat, Sink};
285
286 mod buffered;
287 pub(crate) mod copy;
288 mod cursor;
289 mod error;
290 mod impls;
291 pub mod prelude;
292 mod stdio;
293 mod util;
294
295 const DEFAULT_BUF_SIZE: usize = crate::sys_common::io::DEFAULT_BUF_SIZE;
296
297 pub(crate) fn cleanup() {
298     stdio::cleanup()
299 }
300
301 struct Guard<'a> {
302     buf: &'a mut Vec<u8>,
303     len: usize,
304 }
305
306 impl Drop for Guard<'_> {
307     fn drop(&mut self) {
308         unsafe {
309             self.buf.set_len(self.len);
310         }
311     }
312 }
313
314 // A few methods below (read_to_string, read_line) will append data into a
315 // `String` buffer, but we need to be pretty careful when doing this. The
316 // implementation will just call `.as_mut_vec()` and then delegate to a
317 // byte-oriented reading method, but we must ensure that when returning we never
318 // leave `buf` in a state such that it contains invalid UTF-8 in its bounds.
319 //
320 // To this end, we use an RAII guard (to protect against panics) which updates
321 // the length of the string when it is dropped. This guard initially truncates
322 // the string to the prior length and only after we've validated that the
323 // new contents are valid UTF-8 do we allow it to set a longer length.
324 //
325 // The unsafety in this function is twofold:
326 //
327 // 1. We're looking at the raw bytes of `buf`, so we take on the burden of UTF-8
328 //    checks.
329 // 2. We're passing a raw buffer to the function `f`, and it is expected that
330 //    the function only *appends* bytes to the buffer. We'll get undefined
331 //    behavior if existing bytes are overwritten to have non-UTF-8 data.
332 fn append_to_string<F>(buf: &mut String, f: F) -> Result<usize>
333 where
334     F: FnOnce(&mut Vec<u8>) -> Result<usize>,
335 {
336     unsafe {
337         let mut g = Guard { len: buf.len(), buf: buf.as_mut_vec() };
338         let ret = f(g.buf);
339         if str::from_utf8(&g.buf[g.len..]).is_err() {
340             ret.and_then(|_| {
341                 Err(Error::new_const(ErrorKind::InvalidData, &"stream did not contain valid UTF-8"))
342             })
343         } else {
344             g.len = g.buf.len();
345             ret
346         }
347     }
348 }
349
350 // This uses an adaptive system to extend the vector when it fills. We want to
351 // avoid paying to allocate and zero a huge chunk of memory if the reader only
352 // has 4 bytes while still making large reads if the reader does have a ton
353 // of data to return. Simply tacking on an extra DEFAULT_BUF_SIZE space every
354 // time is 4,500 times (!) slower than a default reservation size of 32 if the
355 // reader has a very small amount of data to return.
356 //
357 // Because we're extending the buffer with uninitialized data for trusted
358 // readers, we need to make sure to truncate that if any of this panics.
359 fn read_to_end<R: Read + ?Sized>(r: &mut R, buf: &mut Vec<u8>) -> Result<usize> {
360     read_to_end_with_reservation(r, buf, |_| 32)
361 }
362
363 fn read_to_end_with_reservation<R, F>(
364     r: &mut R,
365     buf: &mut Vec<u8>,
366     mut reservation_size: F,
367 ) -> Result<usize>
368 where
369     R: Read + ?Sized,
370     F: FnMut(&R) -> usize,
371 {
372     let start_len = buf.len();
373     let mut g = Guard { len: buf.len(), buf };
374     loop {
375         if g.len == g.buf.len() {
376             unsafe {
377                 // FIXME(danielhenrymantilla): #42788
378                 //
379                 //   - This creates a (mut) reference to a slice of
380                 //     _uninitialized_ integers, which is **undefined behavior**
381                 //
382                 //   - Only the standard library gets to soundly "ignore" this,
383                 //     based on its privileged knowledge of unstable rustc
384                 //     internals;
385                 g.buf.reserve(reservation_size(r));
386                 let capacity = g.buf.capacity();
387                 g.buf.set_len(capacity);
388                 r.initializer().initialize(&mut g.buf[g.len..]);
389             }
390         }
391
392         let buf = &mut g.buf[g.len..];
393         match r.read(buf) {
394             Ok(0) => return Ok(g.len - start_len),
395             Ok(n) => {
396                 // We can't allow bogus values from read. If it is too large, the returned vec could have its length
397                 // set past its capacity, or if it overflows the vec could be shortened which could create an invalid
398                 // string if this is called via read_to_string.
399                 assert!(n <= buf.len());
400                 g.len += n;
401             }
402             Err(ref e) if e.kind() == ErrorKind::Interrupted => {}
403             Err(e) => return Err(e),
404         }
405     }
406 }
407
408 pub(crate) fn default_read_vectored<F>(read: F, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
409 where
410     F: FnOnce(&mut [u8]) -> Result<usize>,
411 {
412     let buf = bufs.iter_mut().find(|b| !b.is_empty()).map_or(&mut [][..], |b| &mut **b);
413     read(buf)
414 }
415
416 pub(crate) fn default_write_vectored<F>(write: F, bufs: &[IoSlice<'_>]) -> Result<usize>
417 where
418     F: FnOnce(&[u8]) -> Result<usize>,
419 {
420     let buf = bufs.iter().find(|b| !b.is_empty()).map_or(&[][..], |b| &**b);
421     write(buf)
422 }
423
424 pub(crate) fn default_read_exact<R: Read + ?Sized>(this: &mut R, mut buf: &mut [u8]) -> Result<()> {
425     while !buf.is_empty() {
426         match this.read(buf) {
427             Ok(0) => break,
428             Ok(n) => {
429                 let tmp = buf;
430                 buf = &mut tmp[n..];
431             }
432             Err(ref e) if e.kind() == ErrorKind::Interrupted => {}
433             Err(e) => return Err(e),
434         }
435     }
436     if !buf.is_empty() {
437         Err(Error::new_const(ErrorKind::UnexpectedEof, &"failed to fill whole buffer"))
438     } else {
439         Ok(())
440     }
441 }
442
443 /// The `Read` trait allows for reading bytes from a source.
444 ///
445 /// Implementors of the `Read` trait are called 'readers'.
446 ///
447 /// Readers are defined by one required method, [`read()`]. Each call to [`read()`]
448 /// will attempt to pull bytes from this source into a provided buffer. A
449 /// number of other methods are implemented in terms of [`read()`], giving
450 /// implementors a number of ways to read bytes while only needing to implement
451 /// a single method.
452 ///
453 /// Readers are intended to be composable with one another. Many implementors
454 /// throughout [`std::io`] take and provide types which implement the `Read`
455 /// trait.
456 ///
457 /// Please note that each call to [`read()`] may involve a system call, and
458 /// therefore, using something that implements [`BufRead`], such as
459 /// [`BufReader`], will be more efficient.
460 ///
461 /// # Examples
462 ///
463 /// [`File`]s implement `Read`:
464 ///
465 /// ```no_run
466 /// use std::io;
467 /// use std::io::prelude::*;
468 /// use std::fs::File;
469 ///
470 /// fn main() -> io::Result<()> {
471 ///     let mut f = File::open("foo.txt")?;
472 ///     let mut buffer = [0; 10];
473 ///
474 ///     // read up to 10 bytes
475 ///     f.read(&mut buffer)?;
476 ///
477 ///     let mut buffer = Vec::new();
478 ///     // read the whole file
479 ///     f.read_to_end(&mut buffer)?;
480 ///
481 ///     // read into a String, so that you don't need to do the conversion.
482 ///     let mut buffer = String::new();
483 ///     f.read_to_string(&mut buffer)?;
484 ///
485 ///     // and more! See the other methods for more details.
486 ///     Ok(())
487 /// }
488 /// ```
489 ///
490 /// Read from [`&str`] because [`&[u8]`][prim@slice] implements `Read`:
491 ///
492 /// ```no_run
493 /// # use std::io;
494 /// use std::io::prelude::*;
495 ///
496 /// fn main() -> io::Result<()> {
497 ///     let mut b = "This string will be read".as_bytes();
498 ///     let mut buffer = [0; 10];
499 ///
500 ///     // read up to 10 bytes
501 ///     b.read(&mut buffer)?;
502 ///
503 ///     // etc... it works exactly as a File does!
504 ///     Ok(())
505 /// }
506 /// ```
507 ///
508 /// [`read()`]: Read::read
509 /// [`&str`]: prim@str
510 /// [`std::io`]: self
511 /// [`File`]: crate::fs::File
512 #[stable(feature = "rust1", since = "1.0.0")]
513 #[doc(notable_trait)]
514 pub trait Read {
515     /// Pull some bytes from this source into the specified buffer, returning
516     /// how many bytes were read.
517     ///
518     /// This function does not provide any guarantees about whether it blocks
519     /// waiting for data, but if an object needs to block for a read and cannot,
520     /// it will typically signal this via an [`Err`] return value.
521     ///
522     /// If the return value of this method is [`Ok(n)`], then implementations must
523     /// guarantee that `0 <= n <= buf.len()`. A nonzero `n` value indicates
524     /// that the buffer `buf` has been filled in with `n` bytes of data from this
525     /// source. If `n` is `0`, then it can indicate one of two scenarios:
526     ///
527     /// 1. This reader has reached its "end of file" and will likely no longer
528     ///    be able to produce bytes. Note that this does not mean that the
529     ///    reader will *always* no longer be able to produce bytes. As an example,
530     ///    on Linux, this method will call the `recv` syscall for a [`TcpStream`],
531     ///    where returning zero indicates the connection was shut down correctly. While
532     ///    for [`File`], it is possible to reach the end of file and get zero as result,
533     ///    but if more data is appended to the file, future calls to `read` will return
534     ///    more data.
535     /// 2. The buffer specified was 0 bytes in length.
536     ///
537     /// It is not an error if the returned value `n` is smaller than the buffer size,
538     /// even when the reader is not at the end of the stream yet.
539     /// This may happen for example because fewer bytes are actually available right now
540     /// (e. g. being close to end-of-file) or because read() was interrupted by a signal.
541     ///
542     /// As this trait is safe to implement, callers cannot rely on `n <= buf.len()` for safety.
543     /// Extra care needs to be taken when `unsafe` functions are used to access the read bytes.
544     /// Callers have to ensure that no unchecked out-of-bounds accesses are possible even if
545     /// `n > buf.len()`.
546     ///
547     /// No guarantees are provided about the contents of `buf` when this
548     /// function is called, implementations cannot rely on any property of the
549     /// contents of `buf` being true. It is recommended that *implementations*
550     /// only write data to `buf` instead of reading its contents.
551     ///
552     /// Correspondingly, however, *callers* of this method may not assume any guarantees
553     /// about how the implementation uses `buf`. The trait is safe to implement,
554     /// so it is possible that the code that's supposed to write to the buffer might also read
555     /// from it. It is your responsibility to make sure that `buf` is initialized
556     /// before calling `read`. Calling `read` with an uninitialized `buf` (of the kind one
557     /// obtains via [`MaybeUninit<T>`]) is not safe, and can lead to undefined behavior.
558     ///
559     /// [`MaybeUninit<T>`]: crate::mem::MaybeUninit
560     ///
561     /// # Errors
562     ///
563     /// If this function encounters any form of I/O or other error, an error
564     /// variant will be returned. If an error is returned then it must be
565     /// guaranteed that no bytes were read.
566     ///
567     /// An error of the [`ErrorKind::Interrupted`] kind is non-fatal and the read
568     /// operation should be retried if there is nothing else to do.
569     ///
570     /// # Examples
571     ///
572     /// [`File`]s implement `Read`:
573     ///
574     /// [`Ok(n)`]: Ok
575     /// [`File`]: crate::fs::File
576     /// [`TcpStream`]: crate::net::TcpStream
577     ///
578     /// ```no_run
579     /// use std::io;
580     /// use std::io::prelude::*;
581     /// use std::fs::File;
582     ///
583     /// fn main() -> io::Result<()> {
584     ///     let mut f = File::open("foo.txt")?;
585     ///     let mut buffer = [0; 10];
586     ///
587     ///     // read up to 10 bytes
588     ///     let n = f.read(&mut buffer[..])?;
589     ///
590     ///     println!("The bytes: {:?}", &buffer[..n]);
591     ///     Ok(())
592     /// }
593     /// ```
594     #[stable(feature = "rust1", since = "1.0.0")]
595     fn read(&mut self, buf: &mut [u8]) -> Result<usize>;
596
597     /// Like `read`, except that it reads into a slice of buffers.
598     ///
599     /// Data is copied to fill each buffer in order, with the final buffer
600     /// written to possibly being only partially filled. This method must
601     /// behave equivalently to a single call to `read` with concatenated
602     /// buffers.
603     ///
604     /// The default implementation calls `read` with either the first nonempty
605     /// buffer provided, or an empty one if none exists.
606     #[stable(feature = "iovec", since = "1.36.0")]
607     fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize> {
608         default_read_vectored(|b| self.read(b), bufs)
609     }
610
611     /// Determines if this `Read`er has an efficient `read_vectored`
612     /// implementation.
613     ///
614     /// If a `Read`er does not override the default `read_vectored`
615     /// implementation, code using it may want to avoid the method all together
616     /// and coalesce writes into a single buffer for higher performance.
617     ///
618     /// The default implementation returns `false`.
619     #[unstable(feature = "can_vector", issue = "69941")]
620     fn is_read_vectored(&self) -> bool {
621         false
622     }
623
624     /// Determines if this `Read`er can work with buffers of uninitialized
625     /// memory.
626     ///
627     /// The default implementation returns an initializer which will zero
628     /// buffers.
629     ///
630     /// If a `Read`er guarantees that it can work properly with uninitialized
631     /// memory, it should call [`Initializer::nop()`]. See the documentation for
632     /// [`Initializer`] for details.
633     ///
634     /// The behavior of this method must be independent of the state of the
635     /// `Read`er - the method only takes `&self` so that it can be used through
636     /// trait objects.
637     ///
638     /// # Safety
639     ///
640     /// This method is unsafe because a `Read`er could otherwise return a
641     /// non-zeroing `Initializer` from another `Read` type without an `unsafe`
642     /// block.
643     #[unstable(feature = "read_initializer", issue = "42788")]
644     #[inline]
645     unsafe fn initializer(&self) -> Initializer {
646         Initializer::zeroing()
647     }
648
649     /// Read all bytes until EOF in this source, placing them into `buf`.
650     ///
651     /// All bytes read from this source will be appended to the specified buffer
652     /// `buf`. This function will continuously call [`read()`] to append more data to
653     /// `buf` until [`read()`] returns either [`Ok(0)`] or an error of
654     /// non-[`ErrorKind::Interrupted`] kind.
655     ///
656     /// If successful, this function will return the total number of bytes read.
657     ///
658     /// # Errors
659     ///
660     /// If this function encounters an error of the kind
661     /// [`ErrorKind::Interrupted`] then the error is ignored and the operation
662     /// will continue.
663     ///
664     /// If any other read error is encountered then this function immediately
665     /// returns. Any bytes which have already been read will be appended to
666     /// `buf`.
667     ///
668     /// # Examples
669     ///
670     /// [`File`]s implement `Read`:
671     ///
672     /// [`read()`]: Read::read
673     /// [`Ok(0)`]: Ok
674     /// [`File`]: crate::fs::File
675     ///
676     /// ```no_run
677     /// use std::io;
678     /// use std::io::prelude::*;
679     /// use std::fs::File;
680     ///
681     /// fn main() -> io::Result<()> {
682     ///     let mut f = File::open("foo.txt")?;
683     ///     let mut buffer = Vec::new();
684     ///
685     ///     // read the whole file
686     ///     f.read_to_end(&mut buffer)?;
687     ///     Ok(())
688     /// }
689     /// ```
690     ///
691     /// (See also the [`std::fs::read`] convenience function for reading from a
692     /// file.)
693     ///
694     /// [`std::fs::read`]: crate::fs::read
695     #[stable(feature = "rust1", since = "1.0.0")]
696     fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize> {
697         read_to_end(self, buf)
698     }
699
700     /// Read all bytes until EOF in this source, appending them to `buf`.
701     ///
702     /// If successful, this function returns the number of bytes which were read
703     /// and appended to `buf`.
704     ///
705     /// # Errors
706     ///
707     /// If the data in this stream is *not* valid UTF-8 then an error is
708     /// returned and `buf` is unchanged.
709     ///
710     /// See [`read_to_end`] for other error semantics.
711     ///
712     /// [`read_to_end`]: Read::read_to_end
713     ///
714     /// # Examples
715     ///
716     /// [`File`]s implement `Read`:
717     ///
718     /// [`File`]: crate::fs::File
719     ///
720     /// ```no_run
721     /// use std::io;
722     /// use std::io::prelude::*;
723     /// use std::fs::File;
724     ///
725     /// fn main() -> io::Result<()> {
726     ///     let mut f = File::open("foo.txt")?;
727     ///     let mut buffer = String::new();
728     ///
729     ///     f.read_to_string(&mut buffer)?;
730     ///     Ok(())
731     /// }
732     /// ```
733     ///
734     /// (See also the [`std::fs::read_to_string`] convenience function for
735     /// reading from a file.)
736     ///
737     /// [`std::fs::read_to_string`]: crate::fs::read_to_string
738     #[stable(feature = "rust1", since = "1.0.0")]
739     fn read_to_string(&mut self, buf: &mut String) -> Result<usize> {
740         // Note that we do *not* call `.read_to_end()` here. We are passing
741         // `&mut Vec<u8>` (the raw contents of `buf`) into the `read_to_end`
742         // method to fill it up. An arbitrary implementation could overwrite the
743         // entire contents of the vector, not just append to it (which is what
744         // we are expecting).
745         //
746         // To prevent extraneously checking the UTF-8-ness of the entire buffer
747         // we pass it to our hardcoded `read_to_end` implementation which we
748         // know is guaranteed to only read data into the end of the buffer.
749         append_to_string(buf, |b| read_to_end(self, b))
750     }
751
752     /// Read the exact number of bytes required to fill `buf`.
753     ///
754     /// This function reads as many bytes as necessary to completely fill the
755     /// specified buffer `buf`.
756     ///
757     /// No guarantees are provided about the contents of `buf` when this
758     /// function is called, implementations cannot rely on any property of the
759     /// contents of `buf` being true. It is recommended that implementations
760     /// only write data to `buf` instead of reading its contents. The
761     /// documentation on [`read`] has a more detailed explanation on this
762     /// subject.
763     ///
764     /// # Errors
765     ///
766     /// If this function encounters an error of the kind
767     /// [`ErrorKind::Interrupted`] then the error is ignored and the operation
768     /// will continue.
769     ///
770     /// If this function encounters an "end of file" before completely filling
771     /// the buffer, it returns an error of the kind [`ErrorKind::UnexpectedEof`].
772     /// The contents of `buf` are unspecified in this case.
773     ///
774     /// If any other read error is encountered then this function immediately
775     /// returns. The contents of `buf` are unspecified in this case.
776     ///
777     /// If this function returns an error, it is unspecified how many bytes it
778     /// has read, but it will never read more than would be necessary to
779     /// completely fill the buffer.
780     ///
781     /// # Examples
782     ///
783     /// [`File`]s implement `Read`:
784     ///
785     /// [`read`]: Read::read
786     /// [`File`]: crate::fs::File
787     ///
788     /// ```no_run
789     /// use std::io;
790     /// use std::io::prelude::*;
791     /// use std::fs::File;
792     ///
793     /// fn main() -> io::Result<()> {
794     ///     let mut f = File::open("foo.txt")?;
795     ///     let mut buffer = [0; 10];
796     ///
797     ///     // read exactly 10 bytes
798     ///     f.read_exact(&mut buffer)?;
799     ///     Ok(())
800     /// }
801     /// ```
802     #[stable(feature = "read_exact", since = "1.6.0")]
803     fn read_exact(&mut self, buf: &mut [u8]) -> Result<()> {
804         default_read_exact(self, buf)
805     }
806
807     /// Creates a "by reference" adaptor for this instance of `Read`.
808     ///
809     /// The returned adaptor also implements `Read` and will simply borrow this
810     /// current reader.
811     ///
812     /// # Examples
813     ///
814     /// [`File`]s implement `Read`:
815     ///
816     /// [`File`]: crate::fs::File
817     ///
818     /// ```no_run
819     /// use std::io;
820     /// use std::io::Read;
821     /// use std::fs::File;
822     ///
823     /// fn main() -> io::Result<()> {
824     ///     let mut f = File::open("foo.txt")?;
825     ///     let mut buffer = Vec::new();
826     ///     let mut other_buffer = Vec::new();
827     ///
828     ///     {
829     ///         let reference = f.by_ref();
830     ///
831     ///         // read at most 5 bytes
832     ///         reference.take(5).read_to_end(&mut buffer)?;
833     ///
834     ///     } // drop our &mut reference so we can use f again
835     ///
836     ///     // original file still usable, read the rest
837     ///     f.read_to_end(&mut other_buffer)?;
838     ///     Ok(())
839     /// }
840     /// ```
841     #[stable(feature = "rust1", since = "1.0.0")]
842     fn by_ref(&mut self) -> &mut Self
843     where
844         Self: Sized,
845     {
846         self
847     }
848
849     /// Transforms this `Read` instance to an [`Iterator`] over its bytes.
850     ///
851     /// The returned type implements [`Iterator`] where the `Item` is
852     /// [`Result`]`<`[`u8`]`, `[`io::Error`]`>`.
853     /// The yielded item is [`Ok`] if a byte was successfully read and [`Err`]
854     /// otherwise. EOF is mapped to returning [`None`] from this iterator.
855     ///
856     /// # Examples
857     ///
858     /// [`File`]s implement `Read`:
859     ///
860     /// [`File`]: crate::fs::File
861     /// [`Result`]: crate::result::Result
862     /// [`io::Error`]: self::Error
863     ///
864     /// ```no_run
865     /// use std::io;
866     /// use std::io::prelude::*;
867     /// use std::fs::File;
868     ///
869     /// fn main() -> io::Result<()> {
870     ///     let mut f = File::open("foo.txt")?;
871     ///
872     ///     for byte in f.bytes() {
873     ///         println!("{}", byte.unwrap());
874     ///     }
875     ///     Ok(())
876     /// }
877     /// ```
878     #[stable(feature = "rust1", since = "1.0.0")]
879     fn bytes(self) -> Bytes<Self>
880     where
881         Self: Sized,
882     {
883         Bytes { inner: self }
884     }
885
886     /// Creates an adaptor which will chain this stream with another.
887     ///
888     /// The returned `Read` instance will first read all bytes from this object
889     /// until EOF is encountered. Afterwards the output is equivalent to the
890     /// output of `next`.
891     ///
892     /// # Examples
893     ///
894     /// [`File`]s implement `Read`:
895     ///
896     /// [`File`]: crate::fs::File
897     ///
898     /// ```no_run
899     /// use std::io;
900     /// use std::io::prelude::*;
901     /// use std::fs::File;
902     ///
903     /// fn main() -> io::Result<()> {
904     ///     let mut f1 = File::open("foo.txt")?;
905     ///     let mut f2 = File::open("bar.txt")?;
906     ///
907     ///     let mut handle = f1.chain(f2);
908     ///     let mut buffer = String::new();
909     ///
910     ///     // read the value into a String. We could use any Read method here,
911     ///     // this is just one example.
912     ///     handle.read_to_string(&mut buffer)?;
913     ///     Ok(())
914     /// }
915     /// ```
916     #[stable(feature = "rust1", since = "1.0.0")]
917     fn chain<R: Read>(self, next: R) -> Chain<Self, R>
918     where
919         Self: Sized,
920     {
921         Chain { first: self, second: next, done_first: false }
922     }
923
924     /// Creates an adaptor which will read at most `limit` bytes from it.
925     ///
926     /// This function returns a new instance of `Read` which will read at most
927     /// `limit` bytes, after which it will always return EOF ([`Ok(0)`]). Any
928     /// read errors will not count towards the number of bytes read and future
929     /// calls to [`read()`] may succeed.
930     ///
931     /// # Examples
932     ///
933     /// [`File`]s implement `Read`:
934     ///
935     /// [`File`]: crate::fs::File
936     /// [`Ok(0)`]: Ok
937     /// [`read()`]: Read::read
938     ///
939     /// ```no_run
940     /// use std::io;
941     /// use std::io::prelude::*;
942     /// use std::fs::File;
943     ///
944     /// fn main() -> io::Result<()> {
945     ///     let mut f = File::open("foo.txt")?;
946     ///     let mut buffer = [0; 5];
947     ///
948     ///     // read at most five bytes
949     ///     let mut handle = f.take(5);
950     ///
951     ///     handle.read(&mut buffer)?;
952     ///     Ok(())
953     /// }
954     /// ```
955     #[stable(feature = "rust1", since = "1.0.0")]
956     fn take(self, limit: u64) -> Take<Self>
957     where
958         Self: Sized,
959     {
960         Take { inner: self, limit }
961     }
962 }
963
964 /// Read all bytes from a [reader][Read] into a new [`String`].
965 ///
966 /// This is a convenience function for [`Read::read_to_string`]. Using this
967 /// function avoids having to create a variable first and provides more type
968 /// safety since you can only get the buffer out if there were no errors. (If you
969 /// use [`Read::read_to_string`] you have to remember to check whether the read
970 /// succeeded because otherwise your buffer will be empty or only partially full.)
971 ///
972 /// # Performance
973 ///
974 /// The downside of this function's increased ease of use and type safety is
975 /// that it gives you less control over performance. For example, you can't
976 /// pre-allocate memory like you can using [`String::with_capacity`] and
977 /// [`Read::read_to_string`]. Also, you can't re-use the buffer if an error
978 /// occurs while reading.
979 ///
980 /// In many cases, this function's performance will be adequate and the ease of use
981 /// and type safety tradeoffs will be worth it. However, there are cases where you
982 /// need more control over performance, and in those cases you should definitely use
983 /// [`Read::read_to_string`] directly.
984 ///
985 /// # Errors
986 ///
987 /// This function forces you to handle errors because the output (the `String`)
988 /// is wrapped in a [`Result`]. See [`Read::read_to_string`] for the errors
989 /// that can occur. If any error occurs, you will get an [`Err`], so you
990 /// don't have to worry about your buffer being empty or partially full.
991 ///
992 /// # Examples
993 ///
994 /// ```no_run
995 /// #![feature(io_read_to_string)]
996 ///
997 /// # use std::io;
998 /// fn main() -> io::Result<()> {
999 ///     let stdin = io::read_to_string(&mut io::stdin())?;
1000 ///     println!("Stdin was:");
1001 ///     println!("{}", stdin);
1002 ///     Ok(())
1003 /// }
1004 /// ```
1005 #[unstable(feature = "io_read_to_string", issue = "80218")]
1006 pub fn read_to_string<R: Read>(reader: &mut R) -> Result<String> {
1007     let mut buf = String::new();
1008     reader.read_to_string(&mut buf)?;
1009     Ok(buf)
1010 }
1011
1012 /// A buffer type used with `Read::read_vectored`.
1013 ///
1014 /// It is semantically a wrapper around an `&mut [u8]`, but is guaranteed to be
1015 /// ABI compatible with the `iovec` type on Unix platforms and `WSABUF` on
1016 /// Windows.
1017 #[stable(feature = "iovec", since = "1.36.0")]
1018 #[repr(transparent)]
1019 pub struct IoSliceMut<'a>(sys::io::IoSliceMut<'a>);
1020
1021 #[stable(feature = "iovec-send-sync", since = "1.44.0")]
1022 unsafe impl<'a> Send for IoSliceMut<'a> {}
1023
1024 #[stable(feature = "iovec-send-sync", since = "1.44.0")]
1025 unsafe impl<'a> Sync for IoSliceMut<'a> {}
1026
1027 #[stable(feature = "iovec", since = "1.36.0")]
1028 impl<'a> fmt::Debug for IoSliceMut<'a> {
1029     fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1030         fmt::Debug::fmt(self.0.as_slice(), fmt)
1031     }
1032 }
1033
1034 impl<'a> IoSliceMut<'a> {
1035     /// Creates a new `IoSliceMut` wrapping a byte slice.
1036     ///
1037     /// # Panics
1038     ///
1039     /// Panics on Windows if the slice is larger than 4GB.
1040     #[stable(feature = "iovec", since = "1.36.0")]
1041     #[inline]
1042     pub fn new(buf: &'a mut [u8]) -> IoSliceMut<'a> {
1043         IoSliceMut(sys::io::IoSliceMut::new(buf))
1044     }
1045
1046     /// Advance the internal cursor of the slice.
1047     ///
1048     /// # Notes
1049     ///
1050     /// Elements in the slice may be modified if the cursor is not advanced to
1051     /// the end of the slice. For example if we have a slice of buffers with 2
1052     /// `IoSliceMut`s, both of length 8, and we advance the cursor by 10 bytes
1053     /// the first `IoSliceMut` will be untouched however the second will be
1054     /// modified to remove the first 2 bytes (10 - 8).
1055     ///
1056     /// # Examples
1057     ///
1058     /// ```
1059     /// #![feature(io_slice_advance)]
1060     ///
1061     /// use std::io::IoSliceMut;
1062     /// use std::ops::Deref;
1063     ///
1064     /// let mut buf1 = [1; 8];
1065     /// let mut buf2 = [2; 16];
1066     /// let mut buf3 = [3; 8];
1067     /// let mut bufs = &mut [
1068     ///     IoSliceMut::new(&mut buf1),
1069     ///     IoSliceMut::new(&mut buf2),
1070     ///     IoSliceMut::new(&mut buf3),
1071     /// ][..];
1072     ///
1073     /// // Mark 10 bytes as read.
1074     /// IoSliceMut::advance_slice(&mut bufs, 10);
1075     /// assert_eq!(bufs[0].deref(), [2; 14].as_ref());
1076     /// assert_eq!(bufs[1].deref(), [3; 8].as_ref());
1077     /// ```
1078     #[unstable(feature = "io_slice_advance", issue = "62726")]
1079     #[inline]
1080     pub fn advance_slice(bufs: &mut &mut [IoSliceMut<'a>], n: usize) {
1081         // Number of buffers to remove.
1082         let mut remove = 0;
1083         // Total length of all the to be removed buffers.
1084         let mut accumulated_len = 0;
1085         for buf in bufs.iter() {
1086             if accumulated_len + buf.len() > n {
1087                 break;
1088             } else {
1089                 accumulated_len += buf.len();
1090                 remove += 1;
1091             }
1092         }
1093
1094         *bufs = &mut replace(bufs, &mut [])[remove..];
1095         if !bufs.is_empty() {
1096             bufs[0].0.advance(n - accumulated_len)
1097         }
1098     }
1099 }
1100
1101 #[stable(feature = "iovec", since = "1.36.0")]
1102 impl<'a> Deref for IoSliceMut<'a> {
1103     type Target = [u8];
1104
1105     #[inline]
1106     fn deref(&self) -> &[u8] {
1107         self.0.as_slice()
1108     }
1109 }
1110
1111 #[stable(feature = "iovec", since = "1.36.0")]
1112 impl<'a> DerefMut for IoSliceMut<'a> {
1113     #[inline]
1114     fn deref_mut(&mut self) -> &mut [u8] {
1115         self.0.as_mut_slice()
1116     }
1117 }
1118
1119 /// A buffer type used with `Write::write_vectored`.
1120 ///
1121 /// It is semantically a wrapper around an `&[u8]`, but is guaranteed to be
1122 /// ABI compatible with the `iovec` type on Unix platforms and `WSABUF` on
1123 /// Windows.
1124 #[stable(feature = "iovec", since = "1.36.0")]
1125 #[derive(Copy, Clone)]
1126 #[repr(transparent)]
1127 pub struct IoSlice<'a>(sys::io::IoSlice<'a>);
1128
1129 #[stable(feature = "iovec-send-sync", since = "1.44.0")]
1130 unsafe impl<'a> Send for IoSlice<'a> {}
1131
1132 #[stable(feature = "iovec-send-sync", since = "1.44.0")]
1133 unsafe impl<'a> Sync for IoSlice<'a> {}
1134
1135 #[stable(feature = "iovec", since = "1.36.0")]
1136 impl<'a> fmt::Debug for IoSlice<'a> {
1137     fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1138         fmt::Debug::fmt(self.0.as_slice(), fmt)
1139     }
1140 }
1141
1142 impl<'a> IoSlice<'a> {
1143     /// Creates a new `IoSlice` wrapping a byte slice.
1144     ///
1145     /// # Panics
1146     ///
1147     /// Panics on Windows if the slice is larger than 4GB.
1148     #[stable(feature = "iovec", since = "1.36.0")]
1149     #[inline]
1150     pub fn new(buf: &'a [u8]) -> IoSlice<'a> {
1151         IoSlice(sys::io::IoSlice::new(buf))
1152     }
1153
1154     /// Advance the internal cursor of the slice.
1155     ///
1156     /// # Notes
1157     ///
1158     /// Elements in the slice may be modified if the cursor is not advanced to
1159     /// the end of the slice. For example if we have a slice of buffers with 2
1160     /// `IoSlice`s, both of length 8, and we advance the cursor by 10 bytes the
1161     /// first `IoSlice` will be untouched however the second will be modified to
1162     /// remove the first 2 bytes (10 - 8).
1163     ///
1164     /// # Examples
1165     ///
1166     /// ```
1167     /// #![feature(io_slice_advance)]
1168     ///
1169     /// use std::io::IoSlice;
1170     /// use std::ops::Deref;
1171     ///
1172     /// let buf1 = [1; 8];
1173     /// let buf2 = [2; 16];
1174     /// let buf3 = [3; 8];
1175     /// let mut bufs = &mut [
1176     ///     IoSlice::new(&buf1),
1177     ///     IoSlice::new(&buf2),
1178     ///     IoSlice::new(&buf3),
1179     /// ][..];
1180     ///
1181     /// // Mark 10 bytes as written.
1182     /// IoSlice::advance_slice(&mut bufs, 10);
1183     /// assert_eq!(bufs[0].deref(), [2; 14].as_ref());
1184     /// assert_eq!(bufs[1].deref(), [3; 8].as_ref());
1185     #[unstable(feature = "io_slice_advance", issue = "62726")]
1186     #[inline]
1187     pub fn advance_slice(bufs: &mut &mut [IoSlice<'a>], n: usize) {
1188         // Number of buffers to remove.
1189         let mut remove = 0;
1190         // Total length of all the to be removed buffers.
1191         let mut accumulated_len = 0;
1192         for buf in bufs.iter() {
1193             if accumulated_len + buf.len() > n {
1194                 break;
1195             } else {
1196                 accumulated_len += buf.len();
1197                 remove += 1;
1198             }
1199         }
1200
1201         *bufs = &mut replace(bufs, &mut [])[remove..];
1202         if !bufs.is_empty() {
1203             bufs[0].0.advance(n - accumulated_len)
1204         }
1205     }
1206 }
1207
1208 #[stable(feature = "iovec", since = "1.36.0")]
1209 impl<'a> Deref for IoSlice<'a> {
1210     type Target = [u8];
1211
1212     #[inline]
1213     fn deref(&self) -> &[u8] {
1214         self.0.as_slice()
1215     }
1216 }
1217
1218 /// A type used to conditionally initialize buffers passed to `Read` methods.
1219 #[unstable(feature = "read_initializer", issue = "42788")]
1220 #[derive(Debug)]
1221 pub struct Initializer(bool);
1222
1223 impl Initializer {
1224     /// Returns a new `Initializer` which will zero out buffers.
1225     #[unstable(feature = "read_initializer", issue = "42788")]
1226     #[inline]
1227     pub fn zeroing() -> Initializer {
1228         Initializer(true)
1229     }
1230
1231     /// Returns a new `Initializer` which will not zero out buffers.
1232     ///
1233     /// # Safety
1234     ///
1235     /// This may only be called by `Read`ers which guarantee that they will not
1236     /// read from buffers passed to `Read` methods, and that the return value of
1237     /// the method accurately reflects the number of bytes that have been
1238     /// written to the head of the buffer.
1239     #[unstable(feature = "read_initializer", issue = "42788")]
1240     #[inline]
1241     pub unsafe fn nop() -> Initializer {
1242         Initializer(false)
1243     }
1244
1245     /// Indicates if a buffer should be initialized.
1246     #[unstable(feature = "read_initializer", issue = "42788")]
1247     #[inline]
1248     pub fn should_initialize(&self) -> bool {
1249         self.0
1250     }
1251
1252     /// Initializes a buffer if necessary.
1253     #[unstable(feature = "read_initializer", issue = "42788")]
1254     #[inline]
1255     pub fn initialize(&self, buf: &mut [u8]) {
1256         if self.should_initialize() {
1257             unsafe { ptr::write_bytes(buf.as_mut_ptr(), 0, buf.len()) }
1258         }
1259     }
1260 }
1261
1262 /// A trait for objects which are byte-oriented sinks.
1263 ///
1264 /// Implementors of the `Write` trait are sometimes called 'writers'.
1265 ///
1266 /// Writers are defined by two required methods, [`write`] and [`flush`]:
1267 ///
1268 /// * The [`write`] method will attempt to write some data into the object,
1269 ///   returning how many bytes were successfully written.
1270 ///
1271 /// * The [`flush`] method is useful for adaptors and explicit buffers
1272 ///   themselves for ensuring that all buffered data has been pushed out to the
1273 ///   'true sink'.
1274 ///
1275 /// Writers are intended to be composable with one another. Many implementors
1276 /// throughout [`std::io`] take and provide types which implement the `Write`
1277 /// trait.
1278 ///
1279 /// [`write`]: Write::write
1280 /// [`flush`]: Write::flush
1281 /// [`std::io`]: self
1282 ///
1283 /// # Examples
1284 ///
1285 /// ```no_run
1286 /// use std::io::prelude::*;
1287 /// use std::fs::File;
1288 ///
1289 /// fn main() -> std::io::Result<()> {
1290 ///     let data = b"some bytes";
1291 ///
1292 ///     let mut pos = 0;
1293 ///     let mut buffer = File::create("foo.txt")?;
1294 ///
1295 ///     while pos < data.len() {
1296 ///         let bytes_written = buffer.write(&data[pos..])?;
1297 ///         pos += bytes_written;
1298 ///     }
1299 ///     Ok(())
1300 /// }
1301 /// ```
1302 ///
1303 /// The trait also provides convenience methods like [`write_all`], which calls
1304 /// `write` in a loop until its entire input has been written.
1305 ///
1306 /// [`write_all`]: Write::write_all
1307 #[stable(feature = "rust1", since = "1.0.0")]
1308 #[doc(notable_trait)]
1309 pub trait Write {
1310     /// Write a buffer into this writer, returning how many bytes were written.
1311     ///
1312     /// This function will attempt to write the entire contents of `buf`, but
1313     /// the entire write may not succeed, or the write may also generate an
1314     /// error. A call to `write` represents *at most one* attempt to write to
1315     /// any wrapped object.
1316     ///
1317     /// Calls to `write` are not guaranteed to block waiting for data to be
1318     /// written, and a write which would otherwise block can be indicated through
1319     /// an [`Err`] variant.
1320     ///
1321     /// If the return value is [`Ok(n)`] then it must be guaranteed that
1322     /// `n <= buf.len()`. A return value of `0` typically means that the
1323     /// underlying object is no longer able to accept bytes and will likely not
1324     /// be able to in the future as well, or that the buffer provided is empty.
1325     ///
1326     /// # Errors
1327     ///
1328     /// Each call to `write` may generate an I/O error indicating that the
1329     /// operation could not be completed. If an error is returned then no bytes
1330     /// in the buffer were written to this writer.
1331     ///
1332     /// It is **not** considered an error if the entire buffer could not be
1333     /// written to this writer.
1334     ///
1335     /// An error of the [`ErrorKind::Interrupted`] kind is non-fatal and the
1336     /// write operation should be retried if there is nothing else to do.
1337     ///
1338     /// # Examples
1339     ///
1340     /// ```no_run
1341     /// use std::io::prelude::*;
1342     /// use std::fs::File;
1343     ///
1344     /// fn main() -> std::io::Result<()> {
1345     ///     let mut buffer = File::create("foo.txt")?;
1346     ///
1347     ///     // Writes some prefix of the byte string, not necessarily all of it.
1348     ///     buffer.write(b"some bytes")?;
1349     ///     Ok(())
1350     /// }
1351     /// ```
1352     ///
1353     /// [`Ok(n)`]: Ok
1354     #[stable(feature = "rust1", since = "1.0.0")]
1355     fn write(&mut self, buf: &[u8]) -> Result<usize>;
1356
1357     /// Like [`write`], except that it writes from a slice of buffers.
1358     ///
1359     /// Data is copied from each buffer in order, with the final buffer
1360     /// read from possibly being only partially consumed. This method must
1361     /// behave as a call to [`write`] with the buffers concatenated would.
1362     ///
1363     /// The default implementation calls [`write`] with either the first nonempty
1364     /// buffer provided, or an empty one if none exists.
1365     ///
1366     /// [`write`]: Write::write
1367     #[stable(feature = "iovec", since = "1.36.0")]
1368     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize> {
1369         default_write_vectored(|b| self.write(b), bufs)
1370     }
1371
1372     /// Determines if this `Write`r has an efficient [`write_vectored`]
1373     /// implementation.
1374     ///
1375     /// If a `Write`r does not override the default [`write_vectored`]
1376     /// implementation, code using it may want to avoid the method all together
1377     /// and coalesce writes into a single buffer for higher performance.
1378     ///
1379     /// The default implementation returns `false`.
1380     ///
1381     /// [`write_vectored`]: Write::write_vectored
1382     #[unstable(feature = "can_vector", issue = "69941")]
1383     fn is_write_vectored(&self) -> bool {
1384         false
1385     }
1386
1387     /// Flush this output stream, ensuring that all intermediately buffered
1388     /// contents reach their destination.
1389     ///
1390     /// # Errors
1391     ///
1392     /// It is considered an error if not all bytes could be written due to
1393     /// I/O errors or EOF being reached.
1394     ///
1395     /// # Examples
1396     ///
1397     /// ```no_run
1398     /// use std::io::prelude::*;
1399     /// use std::io::BufWriter;
1400     /// use std::fs::File;
1401     ///
1402     /// fn main() -> std::io::Result<()> {
1403     ///     let mut buffer = BufWriter::new(File::create("foo.txt")?);
1404     ///
1405     ///     buffer.write_all(b"some bytes")?;
1406     ///     buffer.flush()?;
1407     ///     Ok(())
1408     /// }
1409     /// ```
1410     #[stable(feature = "rust1", since = "1.0.0")]
1411     fn flush(&mut self) -> Result<()>;
1412
1413     /// Attempts to write an entire buffer into this writer.
1414     ///
1415     /// This method will continuously call [`write`] until there is no more data
1416     /// to be written or an error of non-[`ErrorKind::Interrupted`] kind is
1417     /// returned. This method will not return until the entire buffer has been
1418     /// successfully written or such an error occurs. The first error that is
1419     /// not of [`ErrorKind::Interrupted`] kind generated from this method will be
1420     /// returned.
1421     ///
1422     /// If the buffer contains no data, this will never call [`write`].
1423     ///
1424     /// # Errors
1425     ///
1426     /// This function will return the first error of
1427     /// non-[`ErrorKind::Interrupted`] kind that [`write`] returns.
1428     ///
1429     /// [`write`]: Write::write
1430     ///
1431     /// # Examples
1432     ///
1433     /// ```no_run
1434     /// use std::io::prelude::*;
1435     /// use std::fs::File;
1436     ///
1437     /// fn main() -> std::io::Result<()> {
1438     ///     let mut buffer = File::create("foo.txt")?;
1439     ///
1440     ///     buffer.write_all(b"some bytes")?;
1441     ///     Ok(())
1442     /// }
1443     /// ```
1444     #[stable(feature = "rust1", since = "1.0.0")]
1445     fn write_all(&mut self, mut buf: &[u8]) -> Result<()> {
1446         while !buf.is_empty() {
1447             match self.write(buf) {
1448                 Ok(0) => {
1449                     return Err(Error::new_const(
1450                         ErrorKind::WriteZero,
1451                         &"failed to write whole buffer",
1452                     ));
1453                 }
1454                 Ok(n) => buf = &buf[n..],
1455                 Err(ref e) if e.kind() == ErrorKind::Interrupted => {}
1456                 Err(e) => return Err(e),
1457             }
1458         }
1459         Ok(())
1460     }
1461
1462     /// Attempts to write multiple buffers into this writer.
1463     ///
1464     /// This method will continuously call [`write_vectored`] until there is no
1465     /// more data to be written or an error of non-[`ErrorKind::Interrupted`]
1466     /// kind is returned. This method will not return until all buffers have
1467     /// been successfully written or such an error occurs. The first error that
1468     /// is not of [`ErrorKind::Interrupted`] kind generated from this method
1469     /// will be returned.
1470     ///
1471     /// If the buffer contains no data, this will never call [`write_vectored`].
1472     ///
1473     /// # Notes
1474     ///
1475     /// Unlike [`write_vectored`], this takes a *mutable* reference to
1476     /// a slice of [`IoSlice`]s, not an immutable one. That's because we need to
1477     /// modify the slice to keep track of the bytes already written.
1478     ///
1479     /// Once this function returns, the contents of `bufs` are unspecified, as
1480     /// this depends on how many calls to [`write_vectored`] were necessary. It is
1481     /// best to understand this function as taking ownership of `bufs` and to
1482     /// not use `bufs` afterwards. The underlying buffers, to which the
1483     /// [`IoSlice`]s point (but not the [`IoSlice`]s themselves), are unchanged and
1484     /// can be reused.
1485     ///
1486     /// [`write_vectored`]: Write::write_vectored
1487     ///
1488     /// # Examples
1489     ///
1490     /// ```
1491     /// #![feature(write_all_vectored)]
1492     /// # fn main() -> std::io::Result<()> {
1493     ///
1494     /// use std::io::{Write, IoSlice};
1495     ///
1496     /// let mut writer = Vec::new();
1497     /// let bufs = &mut [
1498     ///     IoSlice::new(&[1]),
1499     ///     IoSlice::new(&[2, 3]),
1500     ///     IoSlice::new(&[4, 5, 6]),
1501     /// ];
1502     ///
1503     /// writer.write_all_vectored(bufs)?;
1504     /// // Note: the contents of `bufs` is now undefined, see the Notes section.
1505     ///
1506     /// assert_eq!(writer, &[1, 2, 3, 4, 5, 6]);
1507     /// # Ok(()) }
1508     /// ```
1509     #[unstable(feature = "write_all_vectored", issue = "70436")]
1510     fn write_all_vectored(&mut self, mut bufs: &mut [IoSlice<'_>]) -> Result<()> {
1511         // Guarantee that bufs is empty if it contains no data,
1512         // to avoid calling write_vectored if there is no data to be written.
1513         IoSlice::advance_slice(&mut bufs, 0);
1514         while !bufs.is_empty() {
1515             match self.write_vectored(bufs) {
1516                 Ok(0) => {
1517                     return Err(Error::new_const(
1518                         ErrorKind::WriteZero,
1519                         &"failed to write whole buffer",
1520                     ));
1521                 }
1522                 Ok(n) => IoSlice::advance_slice(&mut bufs, n),
1523                 Err(ref e) if e.kind() == ErrorKind::Interrupted => {}
1524                 Err(e) => return Err(e),
1525             }
1526         }
1527         Ok(())
1528     }
1529
1530     /// Writes a formatted string into this writer, returning any error
1531     /// encountered.
1532     ///
1533     /// This method is primarily used to interface with the
1534     /// [`format_args!()`] macro, but it is rare that this should
1535     /// explicitly be called. The [`write!()`] macro should be favored to
1536     /// invoke this method instead.
1537     ///
1538     /// This function internally uses the [`write_all`] method on
1539     /// this trait and hence will continuously write data so long as no errors
1540     /// are received. This also means that partial writes are not indicated in
1541     /// this signature.
1542     ///
1543     /// [`write_all`]: Write::write_all
1544     ///
1545     /// # Errors
1546     ///
1547     /// This function will return any I/O error reported while formatting.
1548     ///
1549     /// # Examples
1550     ///
1551     /// ```no_run
1552     /// use std::io::prelude::*;
1553     /// use std::fs::File;
1554     ///
1555     /// fn main() -> std::io::Result<()> {
1556     ///     let mut buffer = File::create("foo.txt")?;
1557     ///
1558     ///     // this call
1559     ///     write!(buffer, "{:.*}", 2, 1.234567)?;
1560     ///     // turns into this:
1561     ///     buffer.write_fmt(format_args!("{:.*}", 2, 1.234567))?;
1562     ///     Ok(())
1563     /// }
1564     /// ```
1565     #[stable(feature = "rust1", since = "1.0.0")]
1566     fn write_fmt(&mut self, fmt: fmt::Arguments<'_>) -> Result<()> {
1567         // Create a shim which translates a Write to a fmt::Write and saves
1568         // off I/O errors. instead of discarding them
1569         struct Adaptor<'a, T: ?Sized + 'a> {
1570             inner: &'a mut T,
1571             error: Result<()>,
1572         }
1573
1574         impl<T: Write + ?Sized> fmt::Write for Adaptor<'_, T> {
1575             fn write_str(&mut self, s: &str) -> fmt::Result {
1576                 match self.inner.write_all(s.as_bytes()) {
1577                     Ok(()) => Ok(()),
1578                     Err(e) => {
1579                         self.error = Err(e);
1580                         Err(fmt::Error)
1581                     }
1582                 }
1583             }
1584         }
1585
1586         let mut output = Adaptor { inner: self, error: Ok(()) };
1587         match fmt::write(&mut output, fmt) {
1588             Ok(()) => Ok(()),
1589             Err(..) => {
1590                 // check if the error came from the underlying `Write` or not
1591                 if output.error.is_err() {
1592                     output.error
1593                 } else {
1594                     Err(Error::new_const(ErrorKind::Other, &"formatter error"))
1595                 }
1596             }
1597         }
1598     }
1599
1600     /// Creates a "by reference" adaptor for this instance of `Write`.
1601     ///
1602     /// The returned adaptor also implements `Write` and will simply borrow this
1603     /// current writer.
1604     ///
1605     /// # Examples
1606     ///
1607     /// ```no_run
1608     /// use std::io::Write;
1609     /// use std::fs::File;
1610     ///
1611     /// fn main() -> std::io::Result<()> {
1612     ///     let mut buffer = File::create("foo.txt")?;
1613     ///
1614     ///     let reference = buffer.by_ref();
1615     ///
1616     ///     // we can use reference just like our original buffer
1617     ///     reference.write_all(b"some bytes")?;
1618     ///     Ok(())
1619     /// }
1620     /// ```
1621     #[stable(feature = "rust1", since = "1.0.0")]
1622     fn by_ref(&mut self) -> &mut Self
1623     where
1624         Self: Sized,
1625     {
1626         self
1627     }
1628 }
1629
1630 /// The `Seek` trait provides a cursor which can be moved within a stream of
1631 /// bytes.
1632 ///
1633 /// The stream typically has a fixed size, allowing seeking relative to either
1634 /// end or the current offset.
1635 ///
1636 /// # Examples
1637 ///
1638 /// [`File`]s implement `Seek`:
1639 ///
1640 /// [`File`]: crate::fs::File
1641 ///
1642 /// ```no_run
1643 /// use std::io;
1644 /// use std::io::prelude::*;
1645 /// use std::fs::File;
1646 /// use std::io::SeekFrom;
1647 ///
1648 /// fn main() -> io::Result<()> {
1649 ///     let mut f = File::open("foo.txt")?;
1650 ///
1651 ///     // move the cursor 42 bytes from the start of the file
1652 ///     f.seek(SeekFrom::Start(42))?;
1653 ///     Ok(())
1654 /// }
1655 /// ```
1656 #[stable(feature = "rust1", since = "1.0.0")]
1657 pub trait Seek {
1658     /// Seek to an offset, in bytes, in a stream.
1659     ///
1660     /// A seek beyond the end of a stream is allowed, but behavior is defined
1661     /// by the implementation.
1662     ///
1663     /// If the seek operation completed successfully,
1664     /// this method returns the new position from the start of the stream.
1665     /// That position can be used later with [`SeekFrom::Start`].
1666     ///
1667     /// # Errors
1668     ///
1669     /// Seeking can fail, for example because it might involve flushing a buffer.
1670     ///
1671     /// Seeking to a negative offset is considered an error.
1672     #[stable(feature = "rust1", since = "1.0.0")]
1673     fn seek(&mut self, pos: SeekFrom) -> Result<u64>;
1674
1675     /// Rewind to the beginning of a stream.
1676     ///
1677     /// This is a convenience method, equivalent to `seek(SeekFrom::Start(0))`.
1678     ///
1679     /// # Errors
1680     ///
1681     /// Rewinding can fail, for example because it might involve flushing a buffer.
1682     ///
1683     /// # Example
1684     ///
1685     /// ```no_run
1686     /// #![feature(seek_rewind)]
1687     /// use std::io::{Read, Seek, Write};
1688     /// use std::fs::OpenOptions;
1689     ///
1690     /// let mut f = OpenOptions::new()
1691     ///     .write(true)
1692     ///     .read(true)
1693     ///     .create(true)
1694     ///     .open("foo.txt").unwrap();
1695     ///
1696     /// let hello = "Hello!\n";
1697     /// write!(f, "{}", hello).unwrap();
1698     /// f.rewind().unwrap();
1699     ///
1700     /// let mut buf = String::new();
1701     /// f.read_to_string(&mut buf).unwrap();
1702     /// assert_eq!(&buf, hello);
1703     /// ```
1704     #[unstable(feature = "seek_rewind", issue = "85149")]
1705     fn rewind(&mut self) -> Result<()> {
1706         self.seek(SeekFrom::Start(0))?;
1707         Ok(())
1708     }
1709
1710     /// Returns the length of this stream (in bytes).
1711     ///
1712     /// This method is implemented using up to three seek operations. If this
1713     /// method returns successfully, the seek position is unchanged (i.e. the
1714     /// position before calling this method is the same as afterwards).
1715     /// However, if this method returns an error, the seek position is
1716     /// unspecified.
1717     ///
1718     /// If you need to obtain the length of *many* streams and you don't care
1719     /// about the seek position afterwards, you can reduce the number of seek
1720     /// operations by simply calling `seek(SeekFrom::End(0))` and using its
1721     /// return value (it is also the stream length).
1722     ///
1723     /// Note that length of a stream can change over time (for example, when
1724     /// data is appended to a file). So calling this method multiple times does
1725     /// not necessarily return the same length each time.
1726     ///
1727     /// # Example
1728     ///
1729     /// ```no_run
1730     /// #![feature(seek_stream_len)]
1731     /// use std::{
1732     ///     io::{self, Seek},
1733     ///     fs::File,
1734     /// };
1735     ///
1736     /// fn main() -> io::Result<()> {
1737     ///     let mut f = File::open("foo.txt")?;
1738     ///
1739     ///     let len = f.stream_len()?;
1740     ///     println!("The file is currently {} bytes long", len);
1741     ///     Ok(())
1742     /// }
1743     /// ```
1744     #[unstable(feature = "seek_stream_len", issue = "59359")]
1745     fn stream_len(&mut self) -> Result<u64> {
1746         let old_pos = self.stream_position()?;
1747         let len = self.seek(SeekFrom::End(0))?;
1748
1749         // Avoid seeking a third time when we were already at the end of the
1750         // stream. The branch is usually way cheaper than a seek operation.
1751         if old_pos != len {
1752             self.seek(SeekFrom::Start(old_pos))?;
1753         }
1754
1755         Ok(len)
1756     }
1757
1758     /// Returns the current seek position from the start of the stream.
1759     ///
1760     /// This is equivalent to `self.seek(SeekFrom::Current(0))`.
1761     ///
1762     /// # Example
1763     ///
1764     /// ```no_run
1765     /// use std::{
1766     ///     io::{self, BufRead, BufReader, Seek},
1767     ///     fs::File,
1768     /// };
1769     ///
1770     /// fn main() -> io::Result<()> {
1771     ///     let mut f = BufReader::new(File::open("foo.txt")?);
1772     ///
1773     ///     let before = f.stream_position()?;
1774     ///     f.read_line(&mut String::new())?;
1775     ///     let after = f.stream_position()?;
1776     ///
1777     ///     println!("The first line was {} bytes long", after - before);
1778     ///     Ok(())
1779     /// }
1780     /// ```
1781     #[stable(feature = "seek_convenience", since = "1.51.0")]
1782     fn stream_position(&mut self) -> Result<u64> {
1783         self.seek(SeekFrom::Current(0))
1784     }
1785 }
1786
1787 /// Enumeration of possible methods to seek within an I/O object.
1788 ///
1789 /// It is used by the [`Seek`] trait.
1790 #[derive(Copy, PartialEq, Eq, Clone, Debug)]
1791 #[stable(feature = "rust1", since = "1.0.0")]
1792 pub enum SeekFrom {
1793     /// Sets the offset to the provided number of bytes.
1794     #[stable(feature = "rust1", since = "1.0.0")]
1795     Start(#[stable(feature = "rust1", since = "1.0.0")] u64),
1796
1797     /// Sets the offset to the size of this object plus the specified number of
1798     /// bytes.
1799     ///
1800     /// It is possible to seek beyond the end of an object, but it's an error to
1801     /// seek before byte 0.
1802     #[stable(feature = "rust1", since = "1.0.0")]
1803     End(#[stable(feature = "rust1", since = "1.0.0")] i64),
1804
1805     /// Sets the offset to the current position plus the specified number of
1806     /// bytes.
1807     ///
1808     /// It is possible to seek beyond the end of an object, but it's an error to
1809     /// seek before byte 0.
1810     #[stable(feature = "rust1", since = "1.0.0")]
1811     Current(#[stable(feature = "rust1", since = "1.0.0")] i64),
1812 }
1813
1814 fn read_until<R: BufRead + ?Sized>(r: &mut R, delim: u8, buf: &mut Vec<u8>) -> Result<usize> {
1815     let mut read = 0;
1816     loop {
1817         let (done, used) = {
1818             let available = match r.fill_buf() {
1819                 Ok(n) => n,
1820                 Err(ref e) if e.kind() == ErrorKind::Interrupted => continue,
1821                 Err(e) => return Err(e),
1822             };
1823             match memchr::memchr(delim, available) {
1824                 Some(i) => {
1825                     buf.extend_from_slice(&available[..=i]);
1826                     (true, i + 1)
1827                 }
1828                 None => {
1829                     buf.extend_from_slice(available);
1830                     (false, available.len())
1831                 }
1832             }
1833         };
1834         r.consume(used);
1835         read += used;
1836         if done || used == 0 {
1837             return Ok(read);
1838         }
1839     }
1840 }
1841
1842 /// A `BufRead` is a type of `Read`er which has an internal buffer, allowing it
1843 /// to perform extra ways of reading.
1844 ///
1845 /// For example, reading line-by-line is inefficient without using a buffer, so
1846 /// if you want to read by line, you'll need `BufRead`, which includes a
1847 /// [`read_line`] method as well as a [`lines`] iterator.
1848 ///
1849 /// # Examples
1850 ///
1851 /// A locked standard input implements `BufRead`:
1852 ///
1853 /// ```no_run
1854 /// use std::io;
1855 /// use std::io::prelude::*;
1856 ///
1857 /// let stdin = io::stdin();
1858 /// for line in stdin.lock().lines() {
1859 ///     println!("{}", line.unwrap());
1860 /// }
1861 /// ```
1862 ///
1863 /// If you have something that implements [`Read`], you can use the [`BufReader`
1864 /// type][`BufReader`] to turn it into a `BufRead`.
1865 ///
1866 /// For example, [`File`] implements [`Read`], but not `BufRead`.
1867 /// [`BufReader`] to the rescue!
1868 ///
1869 /// [`File`]: crate::fs::File
1870 /// [`read_line`]: BufRead::read_line
1871 /// [`lines`]: BufRead::lines
1872 ///
1873 /// ```no_run
1874 /// use std::io::{self, BufReader};
1875 /// use std::io::prelude::*;
1876 /// use std::fs::File;
1877 ///
1878 /// fn main() -> io::Result<()> {
1879 ///     let f = File::open("foo.txt")?;
1880 ///     let f = BufReader::new(f);
1881 ///
1882 ///     for line in f.lines() {
1883 ///         println!("{}", line.unwrap());
1884 ///     }
1885 ///
1886 ///     Ok(())
1887 /// }
1888 /// ```
1889 #[stable(feature = "rust1", since = "1.0.0")]
1890 pub trait BufRead: Read {
1891     /// Returns the contents of the internal buffer, filling it with more data
1892     /// from the inner reader if it is empty.
1893     ///
1894     /// This function is a lower-level call. It needs to be paired with the
1895     /// [`consume`] method to function properly. When calling this
1896     /// method, none of the contents will be "read" in the sense that later
1897     /// calling `read` may return the same contents. As such, [`consume`] must
1898     /// be called with the number of bytes that are consumed from this buffer to
1899     /// ensure that the bytes are never returned twice.
1900     ///
1901     /// [`consume`]: BufRead::consume
1902     ///
1903     /// An empty buffer returned indicates that the stream has reached EOF.
1904     ///
1905     /// # Errors
1906     ///
1907     /// This function will return an I/O error if the underlying reader was
1908     /// read, but returned an error.
1909     ///
1910     /// # Examples
1911     ///
1912     /// A locked standard input implements `BufRead`:
1913     ///
1914     /// ```no_run
1915     /// use std::io;
1916     /// use std::io::prelude::*;
1917     ///
1918     /// let stdin = io::stdin();
1919     /// let mut stdin = stdin.lock();
1920     ///
1921     /// let buffer = stdin.fill_buf().unwrap();
1922     ///
1923     /// // work with buffer
1924     /// println!("{:?}", buffer);
1925     ///
1926     /// // ensure the bytes we worked with aren't returned again later
1927     /// let length = buffer.len();
1928     /// stdin.consume(length);
1929     /// ```
1930     #[stable(feature = "rust1", since = "1.0.0")]
1931     fn fill_buf(&mut self) -> Result<&[u8]>;
1932
1933     /// Tells this buffer that `amt` bytes have been consumed from the buffer,
1934     /// so they should no longer be returned in calls to `read`.
1935     ///
1936     /// This function is a lower-level call. It needs to be paired with the
1937     /// [`fill_buf`] method to function properly. This function does
1938     /// not perform any I/O, it simply informs this object that some amount of
1939     /// its buffer, returned from [`fill_buf`], has been consumed and should
1940     /// no longer be returned. As such, this function may do odd things if
1941     /// [`fill_buf`] isn't called before calling it.
1942     ///
1943     /// The `amt` must be `<=` the number of bytes in the buffer returned by
1944     /// [`fill_buf`].
1945     ///
1946     /// # Examples
1947     ///
1948     /// Since `consume()` is meant to be used with [`fill_buf`],
1949     /// that method's example includes an example of `consume()`.
1950     ///
1951     /// [`fill_buf`]: BufRead::fill_buf
1952     #[stable(feature = "rust1", since = "1.0.0")]
1953     fn consume(&mut self, amt: usize);
1954
1955     /// Read all bytes into `buf` until the delimiter `byte` or EOF is reached.
1956     ///
1957     /// This function will read bytes from the underlying stream until the
1958     /// delimiter or EOF is found. Once found, all bytes up to, and including,
1959     /// the delimiter (if found) will be appended to `buf`.
1960     ///
1961     /// If successful, this function will return the total number of bytes read.
1962     ///
1963     /// This function is blocking and should be used carefully: it is possible for
1964     /// an attacker to continuously send bytes without ever sending the delimiter
1965     /// or EOF.
1966     ///
1967     /// # Errors
1968     ///
1969     /// This function will ignore all instances of [`ErrorKind::Interrupted`] and
1970     /// will otherwise return any errors returned by [`fill_buf`].
1971     ///
1972     /// If an I/O error is encountered then all bytes read so far will be
1973     /// present in `buf` and its length will have been adjusted appropriately.
1974     ///
1975     /// [`fill_buf`]: BufRead::fill_buf
1976     ///
1977     /// # Examples
1978     ///
1979     /// [`std::io::Cursor`][`Cursor`] is a type that implements `BufRead`. In
1980     /// this example, we use [`Cursor`] to read all the bytes in a byte slice
1981     /// in hyphen delimited segments:
1982     ///
1983     /// ```
1984     /// use std::io::{self, BufRead};
1985     ///
1986     /// let mut cursor = io::Cursor::new(b"lorem-ipsum");
1987     /// let mut buf = vec![];
1988     ///
1989     /// // cursor is at 'l'
1990     /// let num_bytes = cursor.read_until(b'-', &mut buf)
1991     ///     .expect("reading from cursor won't fail");
1992     /// assert_eq!(num_bytes, 6);
1993     /// assert_eq!(buf, b"lorem-");
1994     /// buf.clear();
1995     ///
1996     /// // cursor is at 'i'
1997     /// let num_bytes = cursor.read_until(b'-', &mut buf)
1998     ///     .expect("reading from cursor won't fail");
1999     /// assert_eq!(num_bytes, 5);
2000     /// assert_eq!(buf, b"ipsum");
2001     /// buf.clear();
2002     ///
2003     /// // cursor is at EOF
2004     /// let num_bytes = cursor.read_until(b'-', &mut buf)
2005     ///     .expect("reading from cursor won't fail");
2006     /// assert_eq!(num_bytes, 0);
2007     /// assert_eq!(buf, b"");
2008     /// ```
2009     #[stable(feature = "rust1", since = "1.0.0")]
2010     fn read_until(&mut self, byte: u8, buf: &mut Vec<u8>) -> Result<usize> {
2011         read_until(self, byte, buf)
2012     }
2013
2014     /// Read all bytes until a newline (the `0xA` byte) is reached, and append
2015     /// them to the provided buffer.
2016     ///
2017     /// This function will read bytes from the underlying stream until the
2018     /// newline delimiter (the `0xA` byte) or EOF is found. Once found, all bytes
2019     /// up to, and including, the delimiter (if found) will be appended to
2020     /// `buf`.
2021     ///
2022     /// If successful, this function will return the total number of bytes read.
2023     ///
2024     /// If this function returns [`Ok(0)`], the stream has reached EOF.
2025     ///
2026     /// This function is blocking and should be used carefully: it is possible for
2027     /// an attacker to continuously send bytes without ever sending a newline
2028     /// or EOF.
2029     ///
2030     /// [`Ok(0)`]: Ok
2031     ///
2032     /// # Errors
2033     ///
2034     /// This function has the same error semantics as [`read_until`] and will
2035     /// also return an error if the read bytes are not valid UTF-8. If an I/O
2036     /// error is encountered then `buf` may contain some bytes already read in
2037     /// the event that all data read so far was valid UTF-8.
2038     ///
2039     /// [`read_until`]: BufRead::read_until
2040     ///
2041     /// # Examples
2042     ///
2043     /// [`std::io::Cursor`][`Cursor`] is a type that implements `BufRead`. In
2044     /// this example, we use [`Cursor`] to read all the lines in a byte slice:
2045     ///
2046     /// ```
2047     /// use std::io::{self, BufRead};
2048     ///
2049     /// let mut cursor = io::Cursor::new(b"foo\nbar");
2050     /// let mut buf = String::new();
2051     ///
2052     /// // cursor is at 'f'
2053     /// let num_bytes = cursor.read_line(&mut buf)
2054     ///     .expect("reading from cursor won't fail");
2055     /// assert_eq!(num_bytes, 4);
2056     /// assert_eq!(buf, "foo\n");
2057     /// buf.clear();
2058     ///
2059     /// // cursor is at 'b'
2060     /// let num_bytes = cursor.read_line(&mut buf)
2061     ///     .expect("reading from cursor won't fail");
2062     /// assert_eq!(num_bytes, 3);
2063     /// assert_eq!(buf, "bar");
2064     /// buf.clear();
2065     ///
2066     /// // cursor is at EOF
2067     /// let num_bytes = cursor.read_line(&mut buf)
2068     ///     .expect("reading from cursor won't fail");
2069     /// assert_eq!(num_bytes, 0);
2070     /// assert_eq!(buf, "");
2071     /// ```
2072     #[stable(feature = "rust1", since = "1.0.0")]
2073     fn read_line(&mut self, buf: &mut String) -> Result<usize> {
2074         // Note that we are not calling the `.read_until` method here, but
2075         // rather our hardcoded implementation. For more details as to why, see
2076         // the comments in `read_to_end`.
2077         append_to_string(buf, |b| read_until(self, b'\n', b))
2078     }
2079
2080     /// Returns an iterator over the contents of this reader split on the byte
2081     /// `byte`.
2082     ///
2083     /// The iterator returned from this function will return instances of
2084     /// [`io::Result`]`<`[`Vec<u8>`]`>`. Each vector returned will *not* have
2085     /// the delimiter byte at the end.
2086     ///
2087     /// This function will yield errors whenever [`read_until`] would have
2088     /// also yielded an error.
2089     ///
2090     /// [`io::Result`]: self::Result
2091     /// [`read_until`]: BufRead::read_until
2092     ///
2093     /// # Examples
2094     ///
2095     /// [`std::io::Cursor`][`Cursor`] is a type that implements `BufRead`. In
2096     /// this example, we use [`Cursor`] to iterate over all hyphen delimited
2097     /// segments in a byte slice
2098     ///
2099     /// ```
2100     /// use std::io::{self, BufRead};
2101     ///
2102     /// let cursor = io::Cursor::new(b"lorem-ipsum-dolor");
2103     ///
2104     /// let mut split_iter = cursor.split(b'-').map(|l| l.unwrap());
2105     /// assert_eq!(split_iter.next(), Some(b"lorem".to_vec()));
2106     /// assert_eq!(split_iter.next(), Some(b"ipsum".to_vec()));
2107     /// assert_eq!(split_iter.next(), Some(b"dolor".to_vec()));
2108     /// assert_eq!(split_iter.next(), None);
2109     /// ```
2110     #[stable(feature = "rust1", since = "1.0.0")]
2111     fn split(self, byte: u8) -> Split<Self>
2112     where
2113         Self: Sized,
2114     {
2115         Split { buf: self, delim: byte }
2116     }
2117
2118     /// Returns an iterator over the lines of this reader.
2119     ///
2120     /// The iterator returned from this function will yield instances of
2121     /// [`io::Result`]`<`[`String`]`>`. Each string returned will *not* have a newline
2122     /// byte (the `0xA` byte) or `CRLF` (`0xD`, `0xA` bytes) at the end.
2123     ///
2124     /// [`io::Result`]: self::Result
2125     ///
2126     /// # Examples
2127     ///
2128     /// [`std::io::Cursor`][`Cursor`] is a type that implements `BufRead`. In
2129     /// this example, we use [`Cursor`] to iterate over all the lines in a byte
2130     /// slice.
2131     ///
2132     /// ```
2133     /// use std::io::{self, BufRead};
2134     ///
2135     /// let cursor = io::Cursor::new(b"lorem\nipsum\r\ndolor");
2136     ///
2137     /// let mut lines_iter = cursor.lines().map(|l| l.unwrap());
2138     /// assert_eq!(lines_iter.next(), Some(String::from("lorem")));
2139     /// assert_eq!(lines_iter.next(), Some(String::from("ipsum")));
2140     /// assert_eq!(lines_iter.next(), Some(String::from("dolor")));
2141     /// assert_eq!(lines_iter.next(), None);
2142     /// ```
2143     ///
2144     /// # Errors
2145     ///
2146     /// Each line of the iterator has the same error semantics as [`BufRead::read_line`].
2147     #[stable(feature = "rust1", since = "1.0.0")]
2148     fn lines(self) -> Lines<Self>
2149     where
2150         Self: Sized,
2151     {
2152         Lines { buf: self }
2153     }
2154 }
2155
2156 /// Adaptor to chain together two readers.
2157 ///
2158 /// This struct is generally created by calling [`chain`] on a reader.
2159 /// Please see the documentation of [`chain`] for more details.
2160 ///
2161 /// [`chain`]: Read::chain
2162 #[stable(feature = "rust1", since = "1.0.0")]
2163 #[derive(Debug)]
2164 pub struct Chain<T, U> {
2165     first: T,
2166     second: U,
2167     done_first: bool,
2168 }
2169
2170 impl<T, U> Chain<T, U> {
2171     /// Consumes the `Chain`, returning the wrapped readers.
2172     ///
2173     /// # Examples
2174     ///
2175     /// ```no_run
2176     /// use std::io;
2177     /// use std::io::prelude::*;
2178     /// use std::fs::File;
2179     ///
2180     /// fn main() -> io::Result<()> {
2181     ///     let mut foo_file = File::open("foo.txt")?;
2182     ///     let mut bar_file = File::open("bar.txt")?;
2183     ///
2184     ///     let chain = foo_file.chain(bar_file);
2185     ///     let (foo_file, bar_file) = chain.into_inner();
2186     ///     Ok(())
2187     /// }
2188     /// ```
2189     #[stable(feature = "more_io_inner_methods", since = "1.20.0")]
2190     pub fn into_inner(self) -> (T, U) {
2191         (self.first, self.second)
2192     }
2193
2194     /// Gets references to the underlying readers in this `Chain`.
2195     ///
2196     /// # Examples
2197     ///
2198     /// ```no_run
2199     /// use std::io;
2200     /// use std::io::prelude::*;
2201     /// use std::fs::File;
2202     ///
2203     /// fn main() -> io::Result<()> {
2204     ///     let mut foo_file = File::open("foo.txt")?;
2205     ///     let mut bar_file = File::open("bar.txt")?;
2206     ///
2207     ///     let chain = foo_file.chain(bar_file);
2208     ///     let (foo_file, bar_file) = chain.get_ref();
2209     ///     Ok(())
2210     /// }
2211     /// ```
2212     #[stable(feature = "more_io_inner_methods", since = "1.20.0")]
2213     pub fn get_ref(&self) -> (&T, &U) {
2214         (&self.first, &self.second)
2215     }
2216
2217     /// Gets mutable references to the underlying readers in this `Chain`.
2218     ///
2219     /// Care should be taken to avoid modifying the internal I/O state of the
2220     /// underlying readers as doing so may corrupt the internal state of this
2221     /// `Chain`.
2222     ///
2223     /// # Examples
2224     ///
2225     /// ```no_run
2226     /// use std::io;
2227     /// use std::io::prelude::*;
2228     /// use std::fs::File;
2229     ///
2230     /// fn main() -> io::Result<()> {
2231     ///     let mut foo_file = File::open("foo.txt")?;
2232     ///     let mut bar_file = File::open("bar.txt")?;
2233     ///
2234     ///     let mut chain = foo_file.chain(bar_file);
2235     ///     let (foo_file, bar_file) = chain.get_mut();
2236     ///     Ok(())
2237     /// }
2238     /// ```
2239     #[stable(feature = "more_io_inner_methods", since = "1.20.0")]
2240     pub fn get_mut(&mut self) -> (&mut T, &mut U) {
2241         (&mut self.first, &mut self.second)
2242     }
2243 }
2244
2245 #[stable(feature = "rust1", since = "1.0.0")]
2246 impl<T: Read, U: Read> Read for Chain<T, U> {
2247     fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
2248         if !self.done_first {
2249             match self.first.read(buf)? {
2250                 0 if !buf.is_empty() => self.done_first = true,
2251                 n => return Ok(n),
2252             }
2253         }
2254         self.second.read(buf)
2255     }
2256
2257     fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize> {
2258         if !self.done_first {
2259             match self.first.read_vectored(bufs)? {
2260                 0 if bufs.iter().any(|b| !b.is_empty()) => self.done_first = true,
2261                 n => return Ok(n),
2262             }
2263         }
2264         self.second.read_vectored(bufs)
2265     }
2266
2267     unsafe fn initializer(&self) -> Initializer {
2268         let initializer = self.first.initializer();
2269         if initializer.should_initialize() { initializer } else { self.second.initializer() }
2270     }
2271 }
2272
2273 #[stable(feature = "chain_bufread", since = "1.9.0")]
2274 impl<T: BufRead, U: BufRead> BufRead for Chain<T, U> {
2275     fn fill_buf(&mut self) -> Result<&[u8]> {
2276         if !self.done_first {
2277             match self.first.fill_buf()? {
2278                 buf if buf.is_empty() => {
2279                     self.done_first = true;
2280                 }
2281                 buf => return Ok(buf),
2282             }
2283         }
2284         self.second.fill_buf()
2285     }
2286
2287     fn consume(&mut self, amt: usize) {
2288         if !self.done_first { self.first.consume(amt) } else { self.second.consume(amt) }
2289     }
2290 }
2291
2292 impl<T, U> SizeHint for Chain<T, U> {
2293     fn lower_bound(&self) -> usize {
2294         SizeHint::lower_bound(&self.first) + SizeHint::lower_bound(&self.second)
2295     }
2296
2297     fn upper_bound(&self) -> Option<usize> {
2298         match (SizeHint::upper_bound(&self.first), SizeHint::upper_bound(&self.second)) {
2299             (Some(first), Some(second)) => Some(first + second),
2300             _ => None,
2301         }
2302     }
2303 }
2304
2305 /// Reader adaptor which limits the bytes read from an underlying reader.
2306 ///
2307 /// This struct is generally created by calling [`take`] on a reader.
2308 /// Please see the documentation of [`take`] for more details.
2309 ///
2310 /// [`take`]: Read::take
2311 #[stable(feature = "rust1", since = "1.0.0")]
2312 #[derive(Debug)]
2313 pub struct Take<T> {
2314     inner: T,
2315     limit: u64,
2316 }
2317
2318 impl<T> Take<T> {
2319     /// Returns the number of bytes that can be read before this instance will
2320     /// return EOF.
2321     ///
2322     /// # Note
2323     ///
2324     /// This instance may reach `EOF` after reading fewer bytes than indicated by
2325     /// this method if the underlying [`Read`] instance reaches EOF.
2326     ///
2327     /// # Examples
2328     ///
2329     /// ```no_run
2330     /// use std::io;
2331     /// use std::io::prelude::*;
2332     /// use std::fs::File;
2333     ///
2334     /// fn main() -> io::Result<()> {
2335     ///     let f = File::open("foo.txt")?;
2336     ///
2337     ///     // read at most five bytes
2338     ///     let handle = f.take(5);
2339     ///
2340     ///     println!("limit: {}", handle.limit());
2341     ///     Ok(())
2342     /// }
2343     /// ```
2344     #[stable(feature = "rust1", since = "1.0.0")]
2345     pub fn limit(&self) -> u64 {
2346         self.limit
2347     }
2348
2349     /// Sets the number of bytes that can be read before this instance will
2350     /// return EOF. This is the same as constructing a new `Take` instance, so
2351     /// the amount of bytes read and the previous limit value don't matter when
2352     /// calling this method.
2353     ///
2354     /// # Examples
2355     ///
2356     /// ```no_run
2357     /// use std::io;
2358     /// use std::io::prelude::*;
2359     /// use std::fs::File;
2360     ///
2361     /// fn main() -> io::Result<()> {
2362     ///     let f = File::open("foo.txt")?;
2363     ///
2364     ///     // read at most five bytes
2365     ///     let mut handle = f.take(5);
2366     ///     handle.set_limit(10);
2367     ///
2368     ///     assert_eq!(handle.limit(), 10);
2369     ///     Ok(())
2370     /// }
2371     /// ```
2372     #[stable(feature = "take_set_limit", since = "1.27.0")]
2373     pub fn set_limit(&mut self, limit: u64) {
2374         self.limit = limit;
2375     }
2376
2377     /// Consumes the `Take`, returning the wrapped reader.
2378     ///
2379     /// # Examples
2380     ///
2381     /// ```no_run
2382     /// use std::io;
2383     /// use std::io::prelude::*;
2384     /// use std::fs::File;
2385     ///
2386     /// fn main() -> io::Result<()> {
2387     ///     let mut file = File::open("foo.txt")?;
2388     ///
2389     ///     let mut buffer = [0; 5];
2390     ///     let mut handle = file.take(5);
2391     ///     handle.read(&mut buffer)?;
2392     ///
2393     ///     let file = handle.into_inner();
2394     ///     Ok(())
2395     /// }
2396     /// ```
2397     #[stable(feature = "io_take_into_inner", since = "1.15.0")]
2398     pub fn into_inner(self) -> T {
2399         self.inner
2400     }
2401
2402     /// Gets a reference to the underlying reader.
2403     ///
2404     /// # Examples
2405     ///
2406     /// ```no_run
2407     /// use std::io;
2408     /// use std::io::prelude::*;
2409     /// use std::fs::File;
2410     ///
2411     /// fn main() -> io::Result<()> {
2412     ///     let mut file = File::open("foo.txt")?;
2413     ///
2414     ///     let mut buffer = [0; 5];
2415     ///     let mut handle = file.take(5);
2416     ///     handle.read(&mut buffer)?;
2417     ///
2418     ///     let file = handle.get_ref();
2419     ///     Ok(())
2420     /// }
2421     /// ```
2422     #[stable(feature = "more_io_inner_methods", since = "1.20.0")]
2423     pub fn get_ref(&self) -> &T {
2424         &self.inner
2425     }
2426
2427     /// Gets a mutable reference to the underlying reader.
2428     ///
2429     /// Care should be taken to avoid modifying the internal I/O state of the
2430     /// underlying reader as doing so may corrupt the internal limit of this
2431     /// `Take`.
2432     ///
2433     /// # Examples
2434     ///
2435     /// ```no_run
2436     /// use std::io;
2437     /// use std::io::prelude::*;
2438     /// use std::fs::File;
2439     ///
2440     /// fn main() -> io::Result<()> {
2441     ///     let mut file = File::open("foo.txt")?;
2442     ///
2443     ///     let mut buffer = [0; 5];
2444     ///     let mut handle = file.take(5);
2445     ///     handle.read(&mut buffer)?;
2446     ///
2447     ///     let file = handle.get_mut();
2448     ///     Ok(())
2449     /// }
2450     /// ```
2451     #[stable(feature = "more_io_inner_methods", since = "1.20.0")]
2452     pub fn get_mut(&mut self) -> &mut T {
2453         &mut self.inner
2454     }
2455 }
2456
2457 #[stable(feature = "rust1", since = "1.0.0")]
2458 impl<T: Read> Read for Take<T> {
2459     fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
2460         // Don't call into inner reader at all at EOF because it may still block
2461         if self.limit == 0 {
2462             return Ok(0);
2463         }
2464
2465         let max = cmp::min(buf.len() as u64, self.limit) as usize;
2466         let n = self.inner.read(&mut buf[..max])?;
2467         self.limit -= n as u64;
2468         Ok(n)
2469     }
2470
2471     unsafe fn initializer(&self) -> Initializer {
2472         self.inner.initializer()
2473     }
2474
2475     fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize> {
2476         // Pass in a reservation_size closure that respects the current value
2477         // of limit for each read. If we hit the read limit, this prevents the
2478         // final zero-byte read from allocating again.
2479         read_to_end_with_reservation(self, buf, |self_| cmp::min(self_.limit, 32) as usize)
2480     }
2481 }
2482
2483 #[stable(feature = "rust1", since = "1.0.0")]
2484 impl<T: BufRead> BufRead for Take<T> {
2485     fn fill_buf(&mut self) -> Result<&[u8]> {
2486         // Don't call into inner reader at all at EOF because it may still block
2487         if self.limit == 0 {
2488             return Ok(&[]);
2489         }
2490
2491         let buf = self.inner.fill_buf()?;
2492         let cap = cmp::min(buf.len() as u64, self.limit) as usize;
2493         Ok(&buf[..cap])
2494     }
2495
2496     fn consume(&mut self, amt: usize) {
2497         // Don't let callers reset the limit by passing an overlarge value
2498         let amt = cmp::min(amt as u64, self.limit) as usize;
2499         self.limit -= amt as u64;
2500         self.inner.consume(amt);
2501     }
2502 }
2503
2504 /// An iterator over `u8` values of a reader.
2505 ///
2506 /// This struct is generally created by calling [`bytes`] on a reader.
2507 /// Please see the documentation of [`bytes`] for more details.
2508 ///
2509 /// [`bytes`]: Read::bytes
2510 #[stable(feature = "rust1", since = "1.0.0")]
2511 #[derive(Debug)]
2512 pub struct Bytes<R> {
2513     inner: R,
2514 }
2515
2516 #[stable(feature = "rust1", since = "1.0.0")]
2517 impl<R: Read> Iterator for Bytes<R> {
2518     type Item = Result<u8>;
2519
2520     fn next(&mut self) -> Option<Result<u8>> {
2521         let mut byte = 0;
2522         loop {
2523             return match self.inner.read(slice::from_mut(&mut byte)) {
2524                 Ok(0) => None,
2525                 Ok(..) => Some(Ok(byte)),
2526                 Err(ref e) if e.kind() == ErrorKind::Interrupted => continue,
2527                 Err(e) => Some(Err(e)),
2528             };
2529         }
2530     }
2531
2532     fn size_hint(&self) -> (usize, Option<usize>) {
2533         SizeHint::size_hint(&self.inner)
2534     }
2535 }
2536
2537 trait SizeHint {
2538     fn lower_bound(&self) -> usize;
2539
2540     fn upper_bound(&self) -> Option<usize>;
2541
2542     fn size_hint(&self) -> (usize, Option<usize>) {
2543         (self.lower_bound(), self.upper_bound())
2544     }
2545 }
2546
2547 impl<T> SizeHint for T {
2548     default fn lower_bound(&self) -> usize {
2549         0
2550     }
2551
2552     default fn upper_bound(&self) -> Option<usize> {
2553         None
2554     }
2555 }
2556
2557 /// An iterator over the contents of an instance of `BufRead` split on a
2558 /// particular byte.
2559 ///
2560 /// This struct is generally created by calling [`split`] on a `BufRead`.
2561 /// Please see the documentation of [`split`] for more details.
2562 ///
2563 /// [`split`]: BufRead::split
2564 #[stable(feature = "rust1", since = "1.0.0")]
2565 #[derive(Debug)]
2566 pub struct Split<B> {
2567     buf: B,
2568     delim: u8,
2569 }
2570
2571 #[stable(feature = "rust1", since = "1.0.0")]
2572 impl<B: BufRead> Iterator for Split<B> {
2573     type Item = Result<Vec<u8>>;
2574
2575     fn next(&mut self) -> Option<Result<Vec<u8>>> {
2576         let mut buf = Vec::new();
2577         match self.buf.read_until(self.delim, &mut buf) {
2578             Ok(0) => None,
2579             Ok(_n) => {
2580                 if buf[buf.len() - 1] == self.delim {
2581                     buf.pop();
2582                 }
2583                 Some(Ok(buf))
2584             }
2585             Err(e) => Some(Err(e)),
2586         }
2587     }
2588 }
2589
2590 /// An iterator over the lines of an instance of `BufRead`.
2591 ///
2592 /// This struct is generally created by calling [`lines`] on a `BufRead`.
2593 /// Please see the documentation of [`lines`] for more details.
2594 ///
2595 /// [`lines`]: BufRead::lines
2596 #[stable(feature = "rust1", since = "1.0.0")]
2597 #[derive(Debug)]
2598 pub struct Lines<B> {
2599     buf: B,
2600 }
2601
2602 #[stable(feature = "rust1", since = "1.0.0")]
2603 impl<B: BufRead> Iterator for Lines<B> {
2604     type Item = Result<String>;
2605
2606     fn next(&mut self) -> Option<Result<String>> {
2607         let mut buf = String::new();
2608         match self.buf.read_line(&mut buf) {
2609             Ok(0) => None,
2610             Ok(_n) => {
2611                 if buf.ends_with('\n') {
2612                     buf.pop();
2613                     if buf.ends_with('\r') {
2614                         buf.pop();
2615                     }
2616                 }
2617                 Some(Ok(buf))
2618             }
2619             Err(e) => Some(Err(e)),
2620         }
2621     }
2622 }