Struct pravega_client::byte::reader::ByteReader

source ·
pub struct ByteReader {
    pub segment: ScopedSegment,
    /* private fields */
}
Expand description

A ByteReader enables reading raw bytes from a segment.

The ByteReader provides an API similar to the Read and Seek traits in the standard library, but where the methods are asynchronous.

Internally ByteReader uses a prefetching reader that prefetches data from the server in the background. The prefetched data is cached in memory so any sequential reads should be able to hit the cache.

Any seek operation will invalidate the cache and causes cache miss, so frequent seek and read operations might not have good performance.

You can also wrap ByteReader with BufReader, but doing so will not increase performance further.

§Examples

use pravega_client_config::ClientConfigBuilder;
use pravega_client::client_factory::ClientFactoryAsync;
use pravega_client_shared::ScopedStream;
use tokio::runtime::Handle;

#[tokio::main]
async fn main() {
    // assuming Pravega controller is running at endpoint `localhost:9090`
    let config = ClientConfigBuilder::default()
        .controller_uri("localhost:9090")
        .build()
        .expect("creating config");

    let handle = Handle::current();
    let client_factory = ClientFactoryAsync::new(config, handle);

    // assuming scope:myscope, stream:mystream exist.
    // notice that this stream should be a fixed sized single segment stream
    let stream = ScopedStream::from("myscope/mystream");

    let mut byte_reader = client_factory.create_byte_reader(stream).await;
    let mut buf: Vec<u8> = vec![0; 4];
    let size = byte_reader.read(&mut buf).await.expect("read from byte stream");
}

Fields§

§segment: ScopedSegment

Implementations§

source§

impl ByteReader

source

pub async fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>

Read data asynchronously.

let mut byte_reader = client_factory.create_byte_reader(segment).await;
let mut buf: Vec<u8> = vec![0; 4];
let size = byte_reader.read(&mut buf).expect("read");
source

pub async fn current_head(&self) -> Result<u64>

Return the head of current readable data in the segment asynchronously.

The ByteReader is initialized to read from the segment at offset 0. However, it might encounter the SegmentIsTruncated error due to the segment has been truncated. In this case, application should call this method to get the current readable head and read from it.

let mut byte_reader = client_factory.create_byte_reader_async(segment).await;
let offset = byte_reader.current_head().await.expect("get current head offset");
source

pub async fn current_tail(&self) -> Result<u64>

Return the tail offset of the segment asynchronously.

let mut byte_reader = client_factory.create_byte_reader_async(segment).await;
let offset = byte_reader.current_tail().await.expect("get current tail offset");
source

pub fn current_offset(&self) -> u64

Return the current read offset.

let mut byte_reader = client_factory.create_byte_reader(segment);
let offset = byte_reader.current_offset();
source

pub fn available(&self) -> usize

Return the bytes that are available to read instantly without fetching from server.

ByteReader has a buffer internally. This method returns the size of remaining data in that buffer.

let mut byte_reader = client_factory.create_byte_reader(segment);
let size = byte_reader.available();
source

pub async fn seek(&mut self, pos: SeekFrom) -> Result<u64>

The seek method for ByteReader allows seeking to a byte offset from the beginning of the stream or a byte offset relative to the current position in the stream. If the stream has been truncated, the byte offset will be relative to the original beginning of the stream.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more