pub struct RevBufReader<R> { /* private fields */ }Expand description
RevBufReader<R> is a struct similar to std::io::BufReader<R>, which adds
buffering to any reader. But unlike BufReader<R>, RevBufReader<R> reads a
data stream from the end to the start. The order of the bytes, however,
remains the same. For example, when using RevBufReader<R> to read a text file,
we can read the same lines as we would by using BufReader<R>, 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(())
}Implementations§
Source§impl<R: Read + Seek> RevBufReader<R>
impl<R: Read + Seek> RevBufReader<R>
Sourcepub fn new(inner: R) -> RevBufReader<R> ⓘ
pub fn new(inner: R) -> RevBufReader<R> ⓘ
Creates a new RevBufReader<R> 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(())
}Sourcepub fn with_capacity(capacity: usize, inner: R) -> RevBufReader<R> ⓘ
pub fn with_capacity(capacity: usize, inner: R) -> RevBufReader<R> ⓘ
Creates a new RevBufReader<R> 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(())
}Source§impl<R> RevBufReader<R>
impl<R> RevBufReader<R>
Sourcepub fn get_ref(&self) -> &R
pub fn get_ref(&self) -> &R
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(())
}Sourcepub fn get_mut(&mut self) -> &mut R
pub fn get_mut(&mut self) -> &mut R
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(())
}Sourcepub fn buffer(&self) -> &[u8] ⓘ
pub fn buffer(&self) -> &[u8] ⓘ
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(())
}Sourcepub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns the number of bytes the internal buffer can hold at once.
§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);
let capacity = reader.capacity();
let buffer = reader.fill_buf()?;
assert!(buffer.len() <= capacity);
Ok(())
}Sourcepub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Unwraps this RevBufReader<R>, returning the underlying reader.
Note that any leftover data in the internal buffer is lost. Therefore, a following read from the underlying reader may lead to data loss.
§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(())
}Source§impl<R: Seek> RevBufReader<R>
impl<R: Seek> RevBufReader<R>
Sourcepub fn seek_relative(&mut self, offset: i64) -> Result<()>
pub fn seek_relative(&mut self, offset: i64) -> Result<()>
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§
Source§impl<R: Read + Seek> BufRead for RevBufReader<R>
impl<R: Read + Seek> BufRead for RevBufReader<R>
Source§fn fill_buf(&mut self) -> Result<&[u8]>
fn fill_buf(&mut self) -> Result<&[u8]>
Read methods, if empty. Read moreSource§fn consume(&mut self, amt: usize)
fn consume(&mut self, amt: usize)
amount of additional bytes from the internal buffer as having been read.
Subsequent calls to read only return bytes that have not been marked as read. Read moreSource§fn read_line(&mut self, buf: &mut String) -> Result<usize>
fn read_line(&mut self, buf: &mut String) -> Result<usize>
0xA byte) is reached, and append
them to the provided String buffer. Read moreSource§fn has_data_left(&mut self) -> Result<bool, Error>
fn has_data_left(&mut self) -> Result<bool, Error>
buf_read_has_data_left)read. Read more1.83.0 · Source§fn skip_until(&mut self, byte: u8) -> Result<usize, Error>
fn skip_until(&mut self, byte: u8) -> Result<usize, Error>
byte or EOF is reached. Read moreSource§impl<R> Debug for RevBufReader<R>where
R: Debug,
impl<R> Debug for RevBufReader<R>where
R: Debug,
Source§impl<R: Read + Seek> Read for RevBufReader<R>
impl<R: Read + Seek> Read for RevBufReader<R>
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
read, except that it reads into a slice of buffers. Read moreSource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector)1.0.0 · Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
buf. Read more1.0.0 · Source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
buf. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
buf. Read moreSource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
read_buf)Source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf)cursor. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read. Read moreSource§impl<R: Seek> Seek for RevBufReader<R>
impl<R: Seek> Seek for RevBufReader<R>
Source§fn seek(&mut self, pos: SeekFrom) -> Result<u64>
fn seek(&mut self, pos: SeekFrom) -> Result<u64>
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<R> 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).
1.55.0 · Source§fn rewind(&mut self) -> Result<(), Error>
fn rewind(&mut self) -> Result<(), Error>
Source§fn stream_len(&mut self) -> Result<u64, Error>
fn stream_len(&mut self) -> Result<u64, Error>
seek_stream_len)