[][src]Struct grin_chain::store::Batch

pub struct Batch<'a> { /* fields omitted */ }

An atomic batch in which all changes can be committed all at once or discarded on error.

Methods

impl<'a> Batch<'a>[src]

pub fn head(&self) -> Result<Tip, Error>[src]

The head.

pub fn tail(&self) -> Result<Tip, Error>[src]

The tail.

pub fn head_header(&self) -> Result<BlockHeader, Error>[src]

Header of the block at the head of the block chain (not the same thing as header_head).

pub fn save_body_head(&self, t: &Tip) -> Result<(), Error>[src]

Save body head to db.

pub fn save_body_tail(&self, t: &Tip) -> Result<(), Error>[src]

Save body "tail" to db.

pub fn get_block(&self, h: &Hash) -> Result<Block, Error>[src]

get block

pub fn block_exists(&self, h: &Hash) -> Result<bool, Error>[src]

Does the block exist?

pub fn save_block(&self, b: &Block) -> Result<(), Error>[src]

Save the block to the db. Note: the block header is not saved to the db here, assumes this has already been done.

pub fn save_spent_index(
    &self,
    h: &Hash,
    spent: &Vec<CommitPos>
) -> Result<(), Error>
[src]

We maintain a "spent" index for each full block to allow the output_pos to be easily reverted during rewind.

pub fn migrate_block(
    &self,
    b: &Block,
    version: ProtocolVersion
) -> Result<(), Error>
[src]

Migrate a block stored in the db by serializing it using the provided protocol version. Block may have been read using a previous protocol version but we do not actually care.

pub fn delete(&self, key: &[u8]) -> Result<(), Error>[src]

Low level function to delete directly by raw key.

pub fn delete_block(&self, bh: &Hash) -> Result<(), Error>[src]

Delete a full block. Does not delete any record associated with a block header.

pub fn save_block_header(&self, header: &BlockHeader) -> Result<(), Error>[src]

Save block header to db.

pub fn save_output_pos_height(
    &self,
    commit: &Commitment,
    pos: u64,
    height: u64
) -> Result<(), Error>
[src]

Save output_pos and block height to index.

pub fn delete_output_pos_height(&self, commit: &Commitment) -> Result<(), Error>[src]

Delete the output_pos index entry for a spent output.

pub fn is_match_output_pos_key(&self, key: &[u8], commit: &Commitment) -> bool[src]

When using the output_pos iterator we have access to the index keys but not the original commitment that the key is constructed from. So we need a way of comparing a key with another commitment without reconstructing the commitment from the key bytes.

pub fn output_pos_iter(&self) -> Result<SerIterator<(u64, u64)>, Error>[src]

Iterator over the output_pos index.

pub fn get_output_pos(&self, commit: &Commitment) -> Result<u64, Error>[src]

Get output_pos from index.

pub fn get_output_pos_height(
    &self,
    commit: &Commitment
) -> Result<(u64, u64), Error>
[src]

Get output_pos and block height from index.

pub fn get_previous_header(
    &self,
    header: &BlockHeader
) -> Result<BlockHeader, Error>
[src]

Get the previous header.

pub fn get_block_header(&self, h: &Hash) -> Result<BlockHeader, Error>[src]

Get block header.

pub fn save_block_sums(&self, h: &Hash, sums: &BlockSums) -> Result<(), Error>[src]

Save block_sums for the block.

pub fn get_block_sums(&self, h: &Hash) -> Result<BlockSums, Error>[src]

Get block_sums for the block.

pub fn get_block_input_bitmap(&self, bh: &Hash) -> Result<Bitmap, Error>[src]

Get the block input bitmap based on our spent index. Fallback to legacy block input bitmap from the db.

pub fn get_spent_index(&self, bh: &Hash) -> Result<Vec<CommitPos>, Error>[src]

Get the "spent index" from the db for the specified block. If we need to rewind a block then we use this to "unspend" the spent outputs.

pub fn commit(self) -> Result<(), Error>[src]

Commits this batch. If it's a child batch, it will be merged with the parent, otherwise the batch is written to db.

pub fn child(&mut self) -> Result<Batch, Error>[src]

Creates a child of this batch. It will be merged with its parent on commit, abandoned otherwise.

pub fn blocks_iter(&self) -> Result<SerIterator<Block>, Error>[src]

An iterator to all block in db

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Batch<'a>

impl<'a> !Send for Batch<'a>

impl<'a> !Sync for Batch<'a>

impl<'a> Unpin for Batch<'a>

impl<'a> !UnwindSafe for Batch<'a>

Blanket Implementations

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

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

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

impl<T> Erased for T

impl<T> From<T> for T[src]

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

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> UnsafeAny for T where
    T: Any

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