brk_computer 0.11.2

A Bitcoin dataset computer built on top of brk_indexer
Documentation
use brk_error::Result;
use brk_indexer::Indexer;
use brk_types::{Bitcoin, StoredF64};
use vecdb::Exit;

use super::Vecs;
use crate::{
    distribution,
    internal::{PerBlock, PerBlockCumulativeRolling},
};

pub(crate) fn compute_rest(
    starting_height: brk_types::Height,
    created: &PerBlockCumulativeRolling<StoredF64>,
    consumed: &PerBlockCumulativeRolling<StoredF64>,
    stored: &mut PerBlockCumulativeRolling<StoredF64>,
    activity: &mut PerBlock<StoredF64>,
    exit: &Exit,
) -> Result<()> {
    stored.cumulative.height.compute_subtract(
        starting_height,
        &created.cumulative.height,
        &consumed.cumulative.height,
        exit,
    )?;

    activity.height.compute_divide(
        starting_height,
        &consumed.cumulative.height,
        &created.cumulative.height,
        exit,
    )?;

    Ok(())
}

impl Vecs {
    pub(crate) fn compute(
        &mut self,
        indexer: &Indexer,
        distribution: &distribution::Vecs,
        exit: &Exit,
    ) -> Result<()> {
        let starting_height = indexer.safe_lengths().height;
        let all_metrics = &distribution.utxo_cohorts.all.metrics;
        let circulating_supply = &all_metrics.supply.total.sats.height;

        self.coinblocks_created.compute_cumulative_transformed(
            starting_height,
            circulating_supply,
            |value| StoredF64::from(Bitcoin::from(value)),
            exit,
        )?;

        compute_rest(
            starting_height,
            &self.coinblocks_created,
            &distribution.coinblocks_destroyed,
            &mut self.coinblocks_stored,
            &mut self.derived.liveliness,
            exit,
        )
    }
}