[][src]Struct rev_buf_reader::RevBufReader

pub struct RevBufReader<R> { /* fields omitted */ }

RevBufReader is a struct similar to std::io::BufReader, which adds buffering to any reader. But unlike BufReader, RevBufReader reads a data stream from the end to the start. The order of the bytes, however, remains the same. For example, when using RevBufReader to read a text file, we can read the same lines as we would by using BufReader, but starting from the last line until we get to the first one.

In order to able to read a data stream in reverse order, it must implement both std::io::Read and std::io::Seek.

Examples

use rev_buf_reader::RevBufReader;
use std::io::prelude::*;
use std::fs::File;

fn main() -> std::io::Result<()> {
    let f = File::open("log.txt")?;
    let mut reader = RevBufReader::new(f);

    let mut line = String::new();
    let len = reader.read_line(&mut line)?;
    println!("Last line is {} bytes long", len);
    Ok(())
}

Methods

impl<R: Read + Seek> RevBufReader<R>[src]

Important traits for RevBufReader<R>
pub fn new(inner: R) -> RevBufReader<R>[src]

Creates a new RevBufReader with a default buffer capacity. The default is currently 8 KB, but may change in the future.

Examples

use rev_buf_reader::RevBufReader;
use std::fs::File;

fn main() -> std::io::Result<()> {
    let f = File::open("log.txt")?;
    let reader = RevBufReader::new(f);
    Ok(())
}

Important traits for RevBufReader<R>
pub fn with_capacity(cap: usize, inner: R) -> RevBufReader<R>[src]

Creates a new RevBufReader with the specified buffer capacity.

Examples

Creating a buffer with ten bytes of capacity:

use rev_buf_reader::RevBufReader;
use std::fs::File;

fn main() -> std::io::Result<()> {
    let f = File::open("log.txt")?;
    let reader = RevBufReader::with_capacity(10, f);
    Ok(())
}

impl<R: Read> RevBufReader<R>[src]

pub fn get_ref(&self) -> &R[src]

Gets a reference to the underlying reader.

It is inadvisable to directly read from the underlying reader.

Examples

use rev_buf_reader::RevBufReader;
use std::fs::File;

fn main() -> std::io::Result<()> {
    let f1 = File::open("log.txt")?;
    let reader = RevBufReader::new(f1);

    let f2 = reader.get_ref();
    Ok(())
}

pub fn get_mut(&mut self) -> &mut R[src]

Gets a mutable reference to the underlying reader.

It is inadvisable to directly read from the underlying reader.

Examples

use rev_buf_reader::RevBufReader;
use std::fs::File;

fn main() -> std::io::Result<()> {
    let f1 = File::open("log.txt")?;
    let mut reader = RevBufReader::new(f1);

    let f2 = reader.get_mut();
    Ok(())
}

pub fn buffer(&self) -> &[u8][src]

Returns a reference to the internally buffered data.

Unlike fill_buf, this will not attempt to fill the buffer if it is empty.

Examples

use rev_buf_reader::RevBufReader;
use std::io::BufRead;
use std::fs::File;

fn main() -> std::io::Result<()> {
    let f = File::open("log.txt")?;
    let mut reader = RevBufReader::new(f);
    assert!(reader.buffer().is_empty());

    if reader.fill_buf()?.len() > 0 {
        assert!(!reader.buffer().is_empty());
    }
    Ok(())
}

pub fn into_inner(self) -> R[src]

Unwraps this RevBufReader, returning the underlying reader.

Note that any leftover data in the internal buffer is lost.

Examples

use rev_buf_reader::RevBufReader;
use std::fs::File;

fn main() -> std::io::Result<()> {
    let f1 = File::open("log.txt")?;
    let reader = RevBufReader::new(f1);

    let f2 = reader.into_inner();
    Ok(())
}

impl<R: Seek> RevBufReader<R>[src]

pub fn seek_relative(&mut self, offset: i64) -> Result<()>[src]

Seeks relative to the current position. If the new position lies within the buffer, the buffer will not be flushed, allowing for more efficient seeks. This method does not return the location of the underlying reader, so the caller must track this information themselves if it is required.

Trait Implementations

impl<R> Debug for RevBufReader<R> where
    R: Debug
[src]

impl<R: Read + Seek> BufRead for RevBufReader<R>[src]

fn split(self, byte: u8) -> Split<Self>
1.0.0
[src]

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

fn lines(self) -> Lines<Self>
1.0.0
[src]

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

impl<R: Read + Seek> Read for RevBufReader<R>[src]

fn read_vectored(&mut self, bufs: &mut [IoVecMut]) -> Result<usize, Error>[src]

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

Like read, except that it reads into a slice of buffers. Read more

unsafe fn initializer(&self) -> Initializer[src]

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

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

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
1.0.0
[src]

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

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
1.0.0
[src]

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

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
1.6.0
[src]

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

fn by_ref(&mut self) -> &mut Self
1.0.0
[src]

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

fn bytes(self) -> Bytes<Self>
1.0.0
[src]

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

fn chain<R>(self, next: R) -> Chain<Self, R> where
    R: Read
1.0.0
[src]

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

fn take(self, limit: u64) -> Take<Self>
1.0.0
[src]

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

impl<R: Seek> Seek for RevBufReader<R>[src]

fn seek(&mut self, pos: SeekFrom) -> Result<u64>[src]

Seek to an offset, 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 RevBufReader had no internal buffer.

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

To seek without discarding the internal buffer, use RevBufReader::seek_relative.

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 overflows 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 called seek with SeekFrom::Current(0).

Auto Trait Implementations

impl<R> Send for RevBufReader<R> where
    R: Send

impl<R> Sync for RevBufReader<R> where
    R: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]