brk_computer 0.11.0

A Bitcoin dataset computer built on top of brk_indexer
Documentation
use brk_traversable::Traversable;
use brk_types::{StoredU64, Version};
use derive_more::{Deref, DerefMut};

use crate::{
    indexes,
    internal::{CachedWindowStartVec, LazyPerBlockCumulativeRolling, Windows, WithAddrTypes},
};

use super::TotalAddrCountVecs;

/// New address count per block (global + per-type).
#[derive(Clone, Deref, DerefMut, Traversable)]
pub struct NewAddrCountVecs(
    #[traversable(flatten)] pub WithAddrTypes<LazyPerBlockCumulativeRolling<StoredU64>>,
);

impl NewAddrCountVecs {
    pub(crate) fn new(
        version: Version,
        total: &TotalAddrCountVecs,
        indexes: &indexes::Vecs,
        cached_starts: &Windows<&CachedWindowStartVec>,
    ) -> Self {
        Self(WithAddrTypes {
            all: LazyPerBlockCumulativeRolling::from_source(
                "new_addr_count",
                version,
                &total.all,
                cached_starts,
                indexes,
            ),
            by_addr_type: total.by_addr_type.map_with_name(|name, total| {
                LazyPerBlockCumulativeRolling::from_source(
                    &format!("{name}_new_addr_count"),
                    version,
                    total,
                    cached_starts,
                    indexes,
                )
            }),
        })
    }
}