2020-08-27 13:45:01 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
|
2019-02-11 04:23:21 +09:00
|
|
|
use crate::io::prelude::*;
|
|
|
|
|
|
|
|
use crate::cmp;
|
2019-12-22 17:42:04 -05:00
|
|
|
use crate::io::{self, Error, ErrorKind, Initializer, IoSlice, IoSliceMut, SeekFrom};
|
2015-01-31 20:24:36 -08:00
|
|
|
|
2018-06-06 12:54:25 +02:00
|
|
|
use core::convert::TryInto;
|
2015-01-31 20:24:36 -08:00
|
|
|
|
2018-07-19 21:07:40 +02:00
|
|
|
/// A `Cursor` wraps an in-memory buffer and provides it with a
|
2016-10-14 15:34:51 +02:00
|
|
|
/// [`Seek`] implementation.
|
2015-01-31 20:24:36 -08:00
|
|
|
///
|
2018-07-19 21:07:40 +02:00
|
|
|
/// `Cursor`s are used with in-memory buffers, anything implementing
|
2020-08-18 19:36:52 +02:00
|
|
|
/// [`AsRef`]`<[u8]>`, to allow them to implement [`Read`] and/or [`Write`],
|
2018-07-19 21:07:40 +02:00
|
|
|
/// allowing these buffers to be used anywhere you might use a reader or writer
|
|
|
|
/// that does actual I/O.
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
|
|
|
/// The standard library implements some I/O traits on various types which
|
2016-10-14 15:34:51 +02:00
|
|
|
/// are commonly used as a buffer, like `Cursor<`[`Vec`]`<u8>>` and
|
2016-10-21 00:49:47 +01:00
|
|
|
/// `Cursor<`[`&[u8]`][bytes]`>`.
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2016-10-14 15:34:51 +02:00
|
|
|
/// We may want to write bytes to a [`File`] in our production
|
2015-07-20 14:33:36 -04:00
|
|
|
/// code, but use an in-memory buffer in our tests. We can do this with
|
|
|
|
/// `Cursor`:
|
|
|
|
///
|
2020-08-18 19:36:52 +02:00
|
|
|
/// [bytes]: crate::slice
|
|
|
|
/// [`File`]: crate::fs::File
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// use std::io::prelude::*;
|
|
|
|
/// use std::io::{self, SeekFrom};
|
|
|
|
/// use std::fs::File;
|
|
|
|
///
|
|
|
|
/// // a library function we've written
|
|
|
|
/// fn write_ten_bytes_at_end<W: Write + Seek>(writer: &mut W) -> io::Result<()> {
|
2016-12-28 14:32:35 +05:30
|
|
|
/// writer.seek(SeekFrom::End(-10))?;
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
|
|
|
/// for i in 0..10 {
|
2016-12-28 14:32:35 +05:30
|
|
|
/// writer.write(&[i])?;
|
2015-07-20 14:33:36 -04:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// // all went well
|
|
|
|
/// Ok(())
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// # fn foo() -> io::Result<()> {
|
|
|
|
/// // Here's some code that uses this library function.
|
|
|
|
/// //
|
|
|
|
/// // We might want to use a BufReader here for efficiency, but let's
|
|
|
|
/// // keep this example focused.
|
2016-12-28 14:32:35 +05:30
|
|
|
/// let mut file = File::create("foo.txt")?;
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
2016-12-28 14:32:35 +05:30
|
|
|
/// write_ten_bytes_at_end(&mut file)?;
|
2015-07-20 14:33:36 -04:00
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
///
|
|
|
|
/// // now let's write a test
|
|
|
|
/// #[test]
|
|
|
|
/// fn test_writes_bytes() {
|
2017-08-17 00:46:30 +02:00
|
|
|
/// // setting up a real File is much slower than an in-memory buffer,
|
2015-07-20 14:33:36 -04:00
|
|
|
/// // let's use a cursor instead
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
/// let mut buff = Cursor::new(vec![0; 15]);
|
|
|
|
///
|
2015-10-21 22:33:24 -04:00
|
|
|
/// write_ten_bytes_at_end(&mut buff).unwrap();
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
|
|
|
/// assert_eq!(&buff.get_ref()[5..15], &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
|
|
|
|
/// }
|
|
|
|
/// ```
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-11 17:59:32 +01:00
|
|
|
#[derive(Clone, Debug, Default, Eq, PartialEq)]
|
2015-01-31 20:24:36 -08:00
|
|
|
pub struct Cursor<T> {
|
|
|
|
inner: T,
|
|
|
|
pos: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Cursor<T> {
|
2018-07-19 21:07:40 +02:00
|
|
|
/// Creates a new cursor wrapping the provided underlying in-memory buffer.
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
2020-08-18 19:36:52 +02:00
|
|
|
/// Cursor initial position is `0` even if underlying buffer (e.g., [`Vec`])
|
|
|
|
/// is not empty. So writing to cursor starts with overwriting [`Vec`]
|
2018-07-19 21:07:40 +02:00
|
|
|
/// content, not with appending to it.
|
Document Cursor::new position is 0
... even if contained `Vec` is not empty. E. g. for
```
let v = vec![10u8, 20];
let mut c = io::Cursor::new(v);
c.write_all(b"aaaa").unwrap();
println!("{:?}", c.into_inner());
```
result is
```
[97, 97, 97, 97]
```
and not
```
[10, 20, 97, 97, 97, 97]
```
2017-03-24 05:05:34 +03:00
|
|
|
///
|
2015-07-20 14:33:36 -04:00
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
///
|
|
|
|
/// let buff = Cursor::new(Vec::new());
|
|
|
|
/// # fn force_inference(_: &Cursor<Vec<u8>>) {}
|
|
|
|
/// # force_inference(&buff);
|
|
|
|
/// ```
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-31 20:24:36 -08:00
|
|
|
pub fn new(inner: T) -> Cursor<T> {
|
2020-03-06 19:28:44 +01:00
|
|
|
Cursor { pos: 0, inner }
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
|
|
|
|
2015-04-13 10:21:32 -04:00
|
|
|
/// Consumes this cursor, returning the underlying value.
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
///
|
|
|
|
/// let buff = Cursor::new(Vec::new());
|
|
|
|
/// # fn force_inference(_: &Cursor<Vec<u8>>) {}
|
|
|
|
/// # force_inference(&buff);
|
|
|
|
///
|
|
|
|
/// let vec = buff.into_inner();
|
|
|
|
/// ```
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn into_inner(self) -> T {
|
|
|
|
self.inner
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
|
2015-04-13 10:21:32 -04:00
|
|
|
/// Gets a reference to the underlying value in this cursor.
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
///
|
|
|
|
/// let buff = Cursor::new(Vec::new());
|
|
|
|
/// # fn force_inference(_: &Cursor<Vec<u8>>) {}
|
|
|
|
/// # force_inference(&buff);
|
|
|
|
///
|
|
|
|
/// let reference = buff.get_ref();
|
|
|
|
/// ```
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn get_ref(&self) -> &T {
|
|
|
|
&self.inner
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
|
2015-04-13 10:21:32 -04:00
|
|
|
/// Gets a mutable reference to the underlying value in this cursor.
|
2015-01-31 20:24:36 -08:00
|
|
|
///
|
|
|
|
/// Care should be taken to avoid modifying the internal I/O state of the
|
|
|
|
/// underlying value as it may corrupt this cursor's position.
|
2015-07-20 14:33:36 -04:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
///
|
|
|
|
/// let mut buff = Cursor::new(Vec::new());
|
|
|
|
/// # fn force_inference(_: &Cursor<Vec<u8>>) {}
|
|
|
|
/// # force_inference(&buff);
|
|
|
|
///
|
|
|
|
/// let reference = buff.get_mut();
|
|
|
|
/// ```
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn get_mut(&mut self) -> &mut T {
|
|
|
|
&mut self.inner
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
|
2015-07-20 14:33:36 -04:00
|
|
|
/// Returns the current position of this cursor.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
/// use std::io::prelude::*;
|
|
|
|
/// use std::io::SeekFrom;
|
|
|
|
///
|
|
|
|
/// let mut buff = Cursor::new(vec![1, 2, 3, 4, 5]);
|
|
|
|
///
|
|
|
|
/// assert_eq!(buff.position(), 0);
|
|
|
|
///
|
|
|
|
/// buff.seek(SeekFrom::Current(2)).unwrap();
|
|
|
|
/// assert_eq!(buff.position(), 2);
|
|
|
|
///
|
|
|
|
/// buff.seek(SeekFrom::Current(-1)).unwrap();
|
|
|
|
/// assert_eq!(buff.position(), 1);
|
|
|
|
/// ```
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn position(&self) -> u64 {
|
|
|
|
self.pos
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
|
2015-07-20 14:33:36 -04:00
|
|
|
/// Sets the position of this cursor.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
///
|
|
|
|
/// let mut buff = Cursor::new(vec![1, 2, 3, 4, 5]);
|
|
|
|
///
|
|
|
|
/// assert_eq!(buff.position(), 0);
|
|
|
|
///
|
|
|
|
/// buff.set_position(2);
|
|
|
|
/// assert_eq!(buff.position(), 2);
|
|
|
|
///
|
|
|
|
/// buff.set_position(4);
|
|
|
|
/// assert_eq!(buff.position(), 4);
|
|
|
|
/// ```
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn set_position(&mut self, pos: u64) {
|
|
|
|
self.pos = pos;
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
|
|
|
|
2015-03-14 13:39:39 +01:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-22 17:42:04 -05:00
|
|
|
impl<T> io::Seek for Cursor<T>
|
|
|
|
where
|
|
|
|
T: AsRef<[u8]>,
|
|
|
|
{
|
2015-03-14 13:39:39 +01:00
|
|
|
fn seek(&mut self, style: SeekFrom) -> io::Result<u64> {
|
2017-02-16 02:21:08 +01:00
|
|
|
let (base_pos, offset) = match style {
|
2019-12-22 17:42:04 -05:00
|
|
|
SeekFrom::Start(n) => {
|
|
|
|
self.pos = n;
|
|
|
|
return Ok(n);
|
|
|
|
}
|
2017-02-16 02:21:08 +01:00
|
|
|
SeekFrom::End(n) => (self.inner.as_ref().len() as u64, n),
|
|
|
|
SeekFrom::Current(n) => (self.pos, n),
|
2015-03-14 13:39:39 +01:00
|
|
|
};
|
2017-02-16 02:21:08 +01:00
|
|
|
let new_pos = if offset >= 0 {
|
|
|
|
base_pos.checked_add(offset as u64)
|
2015-03-14 13:39:39 +01:00
|
|
|
} else {
|
2017-02-16 02:21:08 +01:00
|
|
|
base_pos.checked_sub((offset.wrapping_neg()) as u64)
|
|
|
|
};
|
|
|
|
match new_pos {
|
2019-12-22 17:42:04 -05:00
|
|
|
Some(n) => {
|
|
|
|
self.pos = n;
|
|
|
|
Ok(self.pos)
|
|
|
|
}
|
|
|
|
None => Err(Error::new(
|
|
|
|
ErrorKind::InvalidInput,
|
|
|
|
"invalid seek to a negative or overflowing position",
|
|
|
|
)),
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
|
|
|
}
|
2019-03-14 13:27:49 +01:00
|
|
|
|
|
|
|
fn stream_len(&mut self) -> io::Result<u64> {
|
|
|
|
Ok(self.inner.as_ref().len() as u64)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn stream_position(&mut self) -> io::Result<u64> {
|
|
|
|
Ok(self.pos)
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
|
|
|
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-22 17:42:04 -05:00
|
|
|
impl<T> Read for Cursor<T>
|
|
|
|
where
|
|
|
|
T: AsRef<[u8]>,
|
|
|
|
{
|
2015-03-14 13:39:39 +01:00
|
|
|
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
2016-03-22 22:01:37 -05:00
|
|
|
let n = Read::read(&mut self.fill_buf()?, buf)?;
|
2015-03-14 13:39:39 +01:00
|
|
|
self.pos += n as u64;
|
|
|
|
Ok(n)
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
2017-05-14 21:29:18 -04:00
|
|
|
|
2019-04-27 08:34:08 -07:00
|
|
|
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
|
2019-02-08 20:42:34 +01:00
|
|
|
let mut nread = 0;
|
|
|
|
for buf in bufs {
|
|
|
|
let n = self.read(buf)?;
|
|
|
|
nread += n;
|
|
|
|
if n < buf.len() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(nread)
|
|
|
|
}
|
|
|
|
|
2020-03-11 18:02:52 -07:00
|
|
|
fn is_read_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2017-12-03 20:45:12 -08:00
|
|
|
fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> {
|
|
|
|
let n = buf.len();
|
|
|
|
Read::read_exact(&mut self.fill_buf()?, buf)?;
|
|
|
|
self.pos += n as u64;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-05-14 21:29:18 -04:00
|
|
|
#[inline]
|
|
|
|
unsafe fn initializer(&self) -> Initializer {
|
|
|
|
Initializer::nop()
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
|
|
|
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-22 17:42:04 -05:00
|
|
|
impl<T> BufRead for Cursor<T>
|
|
|
|
where
|
|
|
|
T: AsRef<[u8]>,
|
|
|
|
{
|
2015-03-14 13:39:39 +01:00
|
|
|
fn fill_buf(&mut self) -> io::Result<&[u8]> {
|
|
|
|
let amt = cmp::min(self.pos, self.inner.as_ref().len() as u64);
|
|
|
|
Ok(&self.inner.as_ref()[(amt as usize)..])
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
fn consume(&mut self, amt: usize) {
|
|
|
|
self.pos += amt as u64;
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
|
|
|
|
2017-12-18 21:11:44 +00:00
|
|
|
// Non-resizing write implementation
|
2019-05-08 22:38:58 -04:00
|
|
|
#[inline]
|
2017-12-18 21:11:44 +00:00
|
|
|
fn slice_write(pos_mut: &mut u64, slice: &mut [u8], buf: &[u8]) -> io::Result<usize> {
|
|
|
|
let pos = cmp::min(*pos_mut, slice.len() as u64);
|
|
|
|
let amt = (&mut slice[(pos as usize)..]).write(buf)?;
|
|
|
|
*pos_mut += amt as u64;
|
|
|
|
Ok(amt)
|
|
|
|
}
|
|
|
|
|
2019-05-08 22:38:58 -04:00
|
|
|
#[inline]
|
2019-02-08 20:42:34 +01:00
|
|
|
fn slice_write_vectored(
|
|
|
|
pos_mut: &mut u64,
|
|
|
|
slice: &mut [u8],
|
2019-04-27 08:34:08 -07:00
|
|
|
bufs: &[IoSlice<'_>],
|
2019-12-22 17:42:04 -05:00
|
|
|
) -> io::Result<usize> {
|
2019-02-08 20:42:34 +01:00
|
|
|
let mut nwritten = 0;
|
|
|
|
for buf in bufs {
|
|
|
|
let n = slice_write(pos_mut, slice, buf)?;
|
|
|
|
nwritten += n;
|
|
|
|
if n < buf.len() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(nwritten)
|
|
|
|
}
|
|
|
|
|
2017-12-18 21:11:44 +00:00
|
|
|
// Resizing write implementation
|
|
|
|
fn vec_write(pos_mut: &mut u64, vec: &mut Vec<u8>, buf: &[u8]) -> io::Result<usize> {
|
2018-06-06 12:54:25 +02:00
|
|
|
let pos: usize = (*pos_mut).try_into().map_err(|_| {
|
2019-12-22 17:42:04 -05:00
|
|
|
Error::new(
|
|
|
|
ErrorKind::InvalidInput,
|
|
|
|
"cursor position exceeds maximum possible vector length",
|
|
|
|
)
|
2017-12-18 21:11:44 +00:00
|
|
|
})?;
|
|
|
|
// Make sure the internal buffer is as least as big as where we
|
|
|
|
// currently are
|
|
|
|
let len = vec.len();
|
|
|
|
if len < pos {
|
|
|
|
// use `resize` so that the zero filling is as efficient as possible
|
|
|
|
vec.resize(pos, 0);
|
|
|
|
}
|
|
|
|
// Figure out what bytes will be used to overwrite what's currently
|
|
|
|
// there (left), and what will be appended on the end (right)
|
|
|
|
{
|
|
|
|
let space = vec.len() - pos;
|
|
|
|
let (left, right) = buf.split_at(cmp::min(space, buf.len()));
|
|
|
|
vec[pos..pos + left.len()].copy_from_slice(left);
|
|
|
|
vec.extend_from_slice(right);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bump us forward
|
|
|
|
*pos_mut = (pos + buf.len()) as u64;
|
|
|
|
Ok(buf.len())
|
|
|
|
}
|
|
|
|
|
2019-02-08 20:42:34 +01:00
|
|
|
fn vec_write_vectored(
|
|
|
|
pos_mut: &mut u64,
|
|
|
|
vec: &mut Vec<u8>,
|
2019-04-27 08:34:08 -07:00
|
|
|
bufs: &[IoSlice<'_>],
|
2019-12-22 17:42:04 -05:00
|
|
|
) -> io::Result<usize> {
|
2019-02-08 20:42:34 +01:00
|
|
|
let mut nwritten = 0;
|
|
|
|
for buf in bufs {
|
2019-02-11 19:31:37 -08:00
|
|
|
nwritten += vec_write(pos_mut, vec, buf)?;
|
2019-02-08 20:42:34 +01:00
|
|
|
}
|
|
|
|
Ok(nwritten)
|
|
|
|
}
|
|
|
|
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-02-17 19:42:36 -08:00
|
|
|
impl Write for Cursor<&mut [u8]> {
|
2016-05-27 19:34:20 -07:00
|
|
|
#[inline]
|
2017-12-18 21:11:44 +00:00
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
|
|
|
slice_write(&mut self.pos, self.inner, buf)
|
|
|
|
}
|
2019-02-08 20:42:34 +01:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-27 08:34:08 -07:00
|
|
|
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
|
2019-02-08 20:42:34 +01:00
|
|
|
slice_write_vectored(&mut self.pos, self.inner, bufs)
|
|
|
|
}
|
|
|
|
|
2020-01-03 11:26:05 -08:00
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
fn is_write_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-05-08 22:38:58 -04:00
|
|
|
#[inline]
|
2019-12-22 17:42:04 -05:00
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2017-12-18 21:11:44 +00:00
|
|
|
}
|
|
|
|
|
2018-02-10 21:20:42 +00:00
|
|
|
#[stable(feature = "cursor_mut_vec", since = "1.25.0")]
|
2019-02-17 19:42:36 -08:00
|
|
|
impl Write for Cursor<&mut Vec<u8>> {
|
2017-12-18 21:11:44 +00:00
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
|
|
|
vec_write(&mut self.pos, self.inner, buf)
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
2019-02-08 20:42:34 +01:00
|
|
|
|
2019-04-27 08:34:08 -07:00
|
|
|
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
|
2019-02-08 20:42:34 +01:00
|
|
|
vec_write_vectored(&mut self.pos, self.inner, bufs)
|
|
|
|
}
|
|
|
|
|
2020-01-03 11:26:05 -08:00
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
fn is_write_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-05-08 22:38:58 -04:00
|
|
|
#[inline]
|
2019-12-22 17:42:04 -05:00
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
|
|
|
|
std: Stabilize portions of the `io` module
The new `io` module has had some time to bake and this commit stabilizes some of
the utilities associated with it. This commit also deprecates a number of
`std::old_io::util` functions and structures.
These items are now `#[stable]`
* `Cursor`
* `Cursor::{new, into_inner, get_ref, get_mut, position, set_position}`
* Implementations of I/O traits for `Cursor<T>`
* Delegating implementations of I/O traits for references and `Box` pointers
* Implementations of I/O traits for primitives like slices and `Vec<T>`
* `ReadExt::bytes`
* `Bytes` (and impls)
* `ReadExt::chain`
* `Chain` (and impls)
* `ReadExt::take` (and impls)
* `BufReadExt::lines`
* `Lines` (and impls)
* `io::copy`
* `io::{empty, Empty}` (and impls)
* `io::{sink, Sink}` (and impls)
* `io::{repeat, Repeat}` (and impls)
These items remain `#[unstable]`
* Core I/O traits. These may want a little bit more time to bake along with the
commonly used methods like `read_to_end`.
* `BufReadExt::split` - this function may be renamed to not conflict with
`SliceExt::split`.
* `Error` - there are a number of questions about its representation,
`ErrorKind`, and usability.
These items are now `#[deprecated]` in `old_io`
* `LimitReader` - use `take` instead
* `NullWriter` - use `io::sink` instead
* `ZeroReader` - use `io::repeat` instead
* `NullReader` - use `io::empty` instead
* `MultiWriter` - use `broadcast` instead
* `ChainedReader` - use `chain` instead
* `TeeReader` - use `tee` instead
* `copy` - use `io::copy` instead
[breaking-change]
2015-03-03 14:49:03 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-31 20:24:36 -08:00
|
|
|
impl Write for Cursor<Vec<u8>> {
|
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
2017-12-18 21:11:44 +00:00
|
|
|
vec_write(&mut self.pos, &mut self.inner, buf)
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
2019-02-08 20:42:34 +01:00
|
|
|
|
2019-04-27 08:34:08 -07:00
|
|
|
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
|
2019-02-08 20:42:34 +01:00
|
|
|
vec_write_vectored(&mut self.pos, &mut self.inner, bufs)
|
|
|
|
}
|
|
|
|
|
2020-01-03 11:26:05 -08:00
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
fn is_write_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-05-08 22:38:58 -04:00
|
|
|
#[inline]
|
2019-12-22 17:42:04 -05:00
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2015-01-31 20:24:36 -08:00
|
|
|
}
|
|
|
|
|
2015-08-18 23:02:49 -07:00
|
|
|
#[stable(feature = "cursor_box_slice", since = "1.5.0")]
|
|
|
|
impl Write for Cursor<Box<[u8]>> {
|
2016-05-27 19:34:20 -07:00
|
|
|
#[inline]
|
2015-08-18 23:02:49 -07:00
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
2017-12-18 21:11:44 +00:00
|
|
|
slice_write(&mut self.pos, &mut self.inner, buf)
|
2015-08-18 23:02:49 -07:00
|
|
|
}
|
2019-02-08 20:42:34 +01:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-27 08:34:08 -07:00
|
|
|
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
|
2019-02-08 20:42:34 +01:00
|
|
|
slice_write_vectored(&mut self.pos, &mut self.inner, bufs)
|
|
|
|
}
|
|
|
|
|
2020-01-03 11:26:05 -08:00
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
fn is_write_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-05-08 22:38:58 -04:00
|
|
|
#[inline]
|
2019-12-22 17:42:04 -05:00
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2015-08-18 23:02:49 -07:00
|
|
|
}
|