brk_computer 0.3.0-beta.9

A Bitcoin dataset computer built on top of brk_indexer
Documentation
use brk_cohort::ByAddrType;
use brk_types::Height;
use derive_more::{Deref, DerefMut};
use vecdb::ReadableVec;

use super::AddrCountsVecs;

/// Per-addr-type address-count running total. Shared runtime state across
/// funded / empty / exposed / reused / respent counters; paired with
/// [`AddrCountsVecs`] on disk.
#[derive(Debug, Default, Deref, DerefMut)]
pub struct AddrTypeToAddrCount(ByAddrType<u64>);

impl AddrTypeToAddrCount {
    #[inline]
    pub(crate) fn sum(&self) -> u64 {
        self.0.values().sum()
    }
}

impl From<ByAddrType<u64>> for AddrTypeToAddrCount {
    #[inline]
    fn from(value: ByAddrType<u64>) -> Self {
        Self(value)
    }
}

impl From<(&AddrCountsVecs, Height)> for AddrTypeToAddrCount {
    #[inline]
    fn from((vecs, starting_height): (&AddrCountsVecs, Height)) -> Self {
        let Some(prev_height) = starting_height.decremented() else {
            return Self::default();
        };
        vecs.by_addr_type
            .map_with_name(|_, v| v.height.collect_one(prev_height).unwrap().into())
            .into()
    }
}