Struct bao::decode::SliceReader[][src]

pub struct SliceReader<T: Read> { /* fields omitted */ }

An incremental slice decoder. This reads and verifies the output of the bao::encode::SliceExtractor.

Note that there is no such thing as an "outboard slice". All slices include the content chunks and intermediate hashes intermixed, as in the combined encoding mode.

This reader doesn't implement Seek, regardless of the underlying reader. In theory seeking inside a slice is possible, but in practice if you only want part of a slice, you should request a different slice with the parameters you actually want.

This implementation is single-threaded.

Example

use std::io::prelude::*;

// Start by encoding some input.
let input = vec![0; 1_000_000];
let (hash, encoded) = bao::encode::encode_to_vec(&input);

// Slice the encoding. These parameters are multiples of the chunk size, which avoids
// unnecessary overhead.
let slice_start = 65536;
let slice_len = 8192;
let encoded_cursor = std::io::Cursor::new(&encoded);
let mut extractor = bao::encode::SliceExtractor::new(encoded_cursor, slice_start, slice_len);
let mut slice = Vec::new();
extractor.read_to_end(&mut slice)?;

// Decode the slice. The result should be the same as the part of the input that the slice
// represents. Note that we're using the same hash that encoding produced, which is
// independent of the slice parameters. That's the whole point; if we just wanted to re-encode
// a portion of the input and wind up with a different hash, we wouldn't need slicing.
let mut decoded = Vec::new();
let mut decoder = bao::decode::SliceReader::new(&*slice, &hash, slice_start, slice_len);
{
    decoder.read_to_end(&mut decoded)?;
}
assert_eq!(&input[slice_start as usize..][..slice_len as usize], &*decoded);

// Like regular decoding, slice decoding will fail if the hash doesn't match.
let mut bad_slice = slice.clone();
let last_index = bad_slice.len() - 1;
bad_slice[last_index] ^= 1;
let mut decoder = bao::decode::SliceReader::new(&*bad_slice, &hash, slice_start, slice_len);
let err = decoder.read_to_end(&mut Vec::new()).unwrap_err();
assert_eq!(std::io::ErrorKind::InvalidData, err.kind());

Methods

impl<T: Read> SliceReader<T>
[src]

Trait Implementations

impl<T: Read> Read for SliceReader<T>
[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

Auto Trait Implementations

impl<T> Send for SliceReader<T> where
    T: Send

impl<T> Sync for SliceReader<T> where
    T: Sync