mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-25 15:19:58 -07:00
97 lines
2.6 KiB
Rust
97 lines
2.6 KiB
Rust
use brk_error::Result;
|
|
|
|
use brk_structs::{DifficultyEpoch, Height, Version};
|
|
use vecdb::{AnyCollectableVec, Database, EagerVec, Exit};
|
|
|
|
use crate::{Indexes, indexes};
|
|
|
|
use super::{ComputedType, EagerVecBuilder, VecBuilderOptions};
|
|
|
|
#[derive(Clone)]
|
|
pub struct ComputedVecsFromHeightStrict<T>
|
|
where
|
|
T: ComputedType + PartialOrd,
|
|
{
|
|
pub height: EagerVec<Height, T>,
|
|
pub height_extra: EagerVecBuilder<Height, T>,
|
|
pub difficultyepoch: EagerVecBuilder<DifficultyEpoch, T>,
|
|
// TODO: pub halvingepoch: StorableVecGeneator<Halvingepoch, T>,
|
|
}
|
|
|
|
const VERSION: Version = Version::ZERO;
|
|
|
|
impl<T> ComputedVecsFromHeightStrict<T>
|
|
where
|
|
T: ComputedType + Ord + From<f64>,
|
|
f64: From<T>,
|
|
{
|
|
pub fn forced_import(
|
|
db: &Database,
|
|
name: &str,
|
|
version: Version,
|
|
options: VecBuilderOptions,
|
|
) -> Result<Self> {
|
|
let height =
|
|
EagerVec::forced_import_compressed(db, name, version + VERSION + Version::ZERO)?;
|
|
|
|
let height_extra = EagerVecBuilder::forced_import_compressed(
|
|
db,
|
|
name,
|
|
version + VERSION + Version::ZERO,
|
|
options.copy_self_extra(),
|
|
)?;
|
|
|
|
let options = options.remove_percentiles();
|
|
|
|
Ok(Self {
|
|
height,
|
|
height_extra,
|
|
difficultyepoch: EagerVecBuilder::forced_import_compressed(
|
|
db,
|
|
name,
|
|
version + VERSION + Version::ZERO,
|
|
options,
|
|
)?,
|
|
// halvingepoch: StorableVecGeneator::forced_import(db, name, version + VERSION + Version::ZERO, format, options)?,
|
|
})
|
|
}
|
|
|
|
pub fn compute<F>(
|
|
&mut self,
|
|
indexes: &indexes::Vecs,
|
|
starting_indexes: &Indexes,
|
|
exit: &Exit,
|
|
mut compute: F,
|
|
) -> Result<()>
|
|
where
|
|
F: FnMut(&mut EagerVec<Height, T>) -> Result<()>,
|
|
{
|
|
compute(&mut self.height)?;
|
|
|
|
self.height_extra
|
|
.extend(starting_indexes.height, &self.height, exit)?;
|
|
|
|
self.difficultyepoch.compute(
|
|
starting_indexes.difficultyepoch,
|
|
&self.height,
|
|
&indexes.difficultyepoch_to_first_height,
|
|
&indexes.difficultyepoch_to_height_count,
|
|
exit,
|
|
)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn vecs(&self) -> Vec<&dyn AnyCollectableVec> {
|
|
[
|
|
vec![&self.height as &dyn AnyCollectableVec],
|
|
self.height_extra.vecs(),
|
|
self.difficultyepoch.vecs(),
|
|
// self.halvingepoch.vecs(),
|
|
]
|
|
.into_iter()
|
|
.flatten()
|
|
.collect::<Vec<_>>()
|
|
}
|
|
}
|