Struct buf_redux::BufReader[][src]

pub struct BufReader<R, P: ReaderPolicy = StdPolicy> { /* fields omitted */ }

A drop-in replacement for std::io::BufReader with more functionality.

Original method names/signatures and implemented traits are left untouched, making replacement as simple as swapping the import of the type.

By default this type implements the behavior of its std counterpart: it only reads into the buffer when it is empty.

To change this type's behavior, change the policy with .set_policy() using a type from the policy module or your own implementation of ReaderPolicy.

Policies that perform alternating reads and consumes without completely emptying the buffer may benefit from using a ringbuffer via the new_ringbuf() and with_capacity_ringbuf() constructors. Ringbuffers are only available on supported platforms with the slice-deque feature and have some other caveats; see the crate root docs for more details.

Methods

impl<R> BufReader<R, StdPolicy>
[src]

Create a new BufReader wrapping inner, utilizing a buffer of default capacity and the default ReaderPolicy.

Create a new BufReader wrapping inner, utilizing a buffer with a capacity of at least cap bytes and the default ReaderPolicy.

The actual capacity of the buffer may vary based on implementation details of the global allocator.

Create a new BufReader wrapping inner, utilizing a ringbuffer with the default capacity and ReaderPolicy.

A ringbuffer never has to move data to make room; consuming bytes from the head simultaneously makes room at the tail. This is useful in conjunction with a policy like MinBuffered to ensure there is always room to read more data if necessary, without expensive copying operations.

Only available on platforms with virtual memory support and with the slice-deque feature enabled. The default capacity will differ between Windows and Unix-derivative targets. See Buffer::new_ringbuf() or the crate root docs for more info.

Create a new BufReader wrapping inner, utilizing a ringbuffer with at least the given capacity and the default ReaderPolicy.

A ringbuffer never has to move data to make room; consuming bytes from the head simultaneously makes room at the tail. This is useful in conjunction with a policy like MinBuffered to ensure there is always room to read more data if necessary, without expensive copying operations.

Only available on platforms with virtual memory support and with the slice-deque feature enabled. The capacity will be rounded up to the minimum size for the target platform. See Buffer::with_capacity_ringbuf() or the crate root docs for more info.

Wrap inner with an existing Buffer instance and the default ReaderPolicy.

Note

Does not clear the buffer first! If there is data already in the buffer then it will be returned in read() and fill_buf() ahead of any data from inner.

impl<R, P: ReaderPolicy> BufReader<R, P>
[src]

Important traits for BufReader<R, P>

Apply a new ReaderPolicy to this BufReader, returning the transformed type.

Accessor for updating the ReaderPolicy in-place.

If you want to change the type, use .set_policy().

Move data to the start of the buffer, making room at the end for more reading.

This is a no-op with the *_ringbuf() constructors (requires slice-deque feature).

Ensure room in the buffer for at least additional bytes. May not be quite exact due to implementation details of the buffer's allocator.

Get the section of the buffer containing valid data; may be empty.

Call .consume() to remove bytes from the beginning of this section.

Get the current number of bytes available in the buffer.

Get the total buffer capacity.

Get an immutable reference to the underlying reader.

Get a mutable reference to the underlying reader.

Note

Reading directly from the underlying reader is not recommended, as some data has likely already been moved into the buffer.

Consume self and return the inner reader only.

Consume self and return both the underlying reader and the buffer.

See also: BufReader::unbuffer()

Important traits for Unbuffer<R>

Consume self and return an adapter which implements Read and will empty the buffer before reading directly from the underlying reader.

impl<R: Read, P: ReaderPolicy> BufReader<R, P>
[src]

Unconditionally perform a read into the buffer.

Does not invoke ReaderPolicy methods.

If the read was successful, returns the number of bytes read.

Important traits for BufReader<R, P>

Box the inner reader without losing data.

Trait Implementations

impl<R: Read, P: ReaderPolicy> Read for BufReader<R, P>
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, appending them to buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a "by reference" adaptor for this instance of Read. Read more

Transforms this Read instance to an [Iterator] over its bytes. Read more

Deprecated since 1.27.0

: Use str::from_utf8 instead: https://doc.rust-lang.org/nightly/std/str/struct.Utf8Error.html#examples

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more

impl<R: Read, P: ReaderPolicy> BufRead for BufReader<R, P>
[src]

Fills the internal buffer of this object, returning the buffer contents. Read more

Tells this buffer that amt bytes have been consumed from the buffer, so they should no longer be returned in calls to read. Read more

Read all bytes into buf until the delimiter byte or EOF is reached. Read more

Read all bytes until a newline (the 0xA byte) is reached, and append them to the provided buffer. Read more

Returns an iterator over the contents of this reader split on the byte byte. Read more

Returns an iterator over the lines of this reader. Read more

impl<R: Debug, P: ReaderPolicy + Debug> Debug for BufReader<R, P>
[src]

Formats the value using the given formatter. Read more

impl<R: Seek, P: ReaderPolicy> Seek for BufReader<R, P>
[src]

Seek to an ofPet, in bytes, in the underlying reader.

The position used for seeking with SeekFrom::Current(_) is the position the underlying reader would be at if the BufReader had no internal buffer.

Seeking always discards the internal buffer, even if the seek position would otherwise fall within it. This guarantees that calling .unwrap() immediately after a seek yields the underlying reader at the same position.

See std::io::Seek for more details.

Note: In the edge case where you're seeking with SeekFrom::Current(n) where n minus the internal buffer length underflows an i64, two seeks will be performed instead of one. If the second seek returns Err, the underlying reader will be left at the same position it would have if you seeked to SeekFrom::Current(0).

Auto Trait Implementations

impl<R, P = StdPolicy> !Send for BufReader<R, P>

impl<R, P = StdPolicy> !Sync for BufReader<R, P>