[][src]Struct flatdata::ExternalVector

pub struct ExternalVector<'a, T> { /* fields omitted */ }

Vector which flushes its content when growing.

Useful for serialization of data which does not fully fit in memory.

External vector does not provide access to elements previously added to it. Only the last element added to the vector using the result of the method grow can be accessed and written.

An external vector must be closed, after the last element was written to it. After closing, it can not be used anymore. Not closing the vector will result in panic on drop (in debug mode).

Examples

use flatdata::{
    create_external_vector, ArrayView, ExternalVector, MemoryResourceStorage, ResourceStorage,
};

define_struct!(
    A,
    RefA,
    RefMutA,
    "no_schema",
    4,
    (x, set_x, u32, 0, 16),
    (y, set_y, u32, 16, 16)
);

let storage = MemoryResourceStorage::new("/root/extvec");
{
    let mut v = create_external_vector::<A>(&*storage, "vector", "Some schema content")
        .expect("failed to create ExternalVector");
    {
        let mut a = v.grow().expect("grow failed");
        a.set_x(0);
        a.set_y(1);
    }
    {
        let mut a = v.grow().expect("grow failed");
        a.set_x(2);
        a.set_y(3);
    }
    let view = v.close().expect("close failed");

    // data can also be inspected directly after closing
    assert_eq!(view.len(), 2);
    assert_eq!(view.at(0).x(), 0);
    assert_eq!(view.at(0).y(), 1);
    assert_eq!(view.at(1).x(), 2);
    assert_eq!(view.at(1).y(), 3);
}

let resource = storage
    .read_and_check_schema("vector", "Some schema content")
    .expect("failed to read vector resource");

let view: ArrayView<A> = ArrayView::new(&resource);
assert_eq!(view.len(), 2);
assert_eq!(view.at(0).x(), 0);
assert_eq!(view.at(0).y(), 1);
assert_eq!(view.at(1).x(), 2);
assert_eq!(view.at(1).y(), 3);

Methods

impl<'a, T> ExternalVector<'a, T> where
    T: for<'b> Struct<'b>, 
[src]

pub fn new(resource_handle: ResourceHandle<'a>) -> Self
[src]

Creates an empty ExternalVector<T> in the given resource storage.

pub fn len(&self) -> usize
[src]

Number of elements that where added to this vector.

pub fn is_empty(&self) -> bool
[src]

Returns true if no element were added to this vector yet.

pub fn grow(&mut self) -> Result<<T as Struct>::ItemMut>
[src]

Appends an element to the end of this vector and returns a mutable handle to it.

Calling this method may flush data to storage (cf. flush), which may fail due to different IO reasons.

pub fn is_open(&self) -> bool
[src]

Returns true if this vector was not closed yet and more elements can be added to it.

pub fn close(self) -> Result<ArrayView<'a, T>, ResourceStorageError>
[src]

Flushes the remaining not yet flushed elements in this vector and finalizes the data inside the storage.

An external vector must be closed, otherwise it will panic on drop

Trait Implementations

impl<T, '_> Debug for ExternalVector<'_, T> where
    T: for<'b> Struct<'b>, 
[src]

Auto Trait Implementations

impl<'a, T> !Send for ExternalVector<'a, T>

impl<'a, T> !Sync for ExternalVector<'a, T>

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

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

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

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

The type returned in the event of a conversion error.

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