brk_computer 0.11.2

A Bitcoin dataset computer built on top of brk_indexer
Documentation
use brk_indexer::Indexer;
use brk_types::{Height, StoredU64, TxInIndex, TxIndex, TxOutIndex, Version};
use vecdb::{CachedBoxedVec, CachedReadableVec, CachedVec, ReadableCloneableVec};

use crate::internal::LazyCumulativeIndexVec;

/// Pinned canonical cumulative counts derived from the indexer's first-index
/// boundaries.
#[derive(Clone)]
pub struct CachedChainCounts {
    transaction: CachedVec<LazyCumulativeIndexVec<Height, TxIndex>>,
    input: CachedVec<LazyCumulativeIndexVec<Height, TxInIndex>>,
    output: CachedVec<LazyCumulativeIndexVec<Height, TxOutIndex>>,
}

impl CachedChainCounts {
    pub(crate) fn new(version: Version, indexer: &Indexer) -> Self {
        Self {
            transaction: CachedVec::wrap(LazyCumulativeIndexVec::new(
                "tx_count_cumulative",
                version,
                indexer
                    .vecs
                    .transactions
                    .first_tx_index
                    .read_only_boxed_clone(),
                indexer.vecs.transactions.txid.read_only_boxed_clone(),
            )),
            input: CachedVec::wrap(LazyCumulativeIndexVec::new(
                "input_count_cumulative",
                version,
                indexer.vecs.inputs.first_txin_index.read_only_boxed_clone(),
                indexer.vecs.inputs.outpoint.read_only_boxed_clone(),
            )),
            output: CachedVec::wrap(LazyCumulativeIndexVec::new(
                "output_count_cumulative",
                version,
                indexer
                    .vecs
                    .outputs
                    .first_txout_index
                    .read_only_boxed_clone(),
                indexer.vecs.outputs.value.read_only_boxed_clone(),
            )),
        }
    }

    pub(crate) fn transaction_source(&self) -> CachedVec<LazyCumulativeIndexVec<Height, TxIndex>> {
        self.transaction.clone()
    }

    pub(crate) fn input_source(&self) -> CachedVec<LazyCumulativeIndexVec<Height, TxInIndex>> {
        self.input.clone()
    }

    pub(crate) fn output_source(&self) -> CachedVec<LazyCumulativeIndexVec<Height, TxOutIndex>> {
        self.output.clone()
    }

    pub(crate) fn output(&self) -> CachedBoxedVec<Height, StoredU64> {
        self.output.cached_boxed_clone()
    }

    pub(crate) fn clear(&self) {
        self.transaction.clear();
        self.input.clear();
        self.output.clear();
    }
}