mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-02 23:09:01 -07:00
130 lines
3.5 KiB
Rust
130 lines
3.5 KiB
Rust
use brk_error::Result;
|
|
use brk_indexer::Indexer;
|
|
use brk_structs::{Bitcoin, Dollars, Height, Sats, Version};
|
|
use vecdb::{AnyCollectableVec, CollectableVec, Database, EagerVec, Exit, Format, StoredVec};
|
|
|
|
use crate::{
|
|
Indexes,
|
|
grouped::Source,
|
|
indexes, price,
|
|
traits::{ComputeFromBitcoin, ComputeFromSats},
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct ComputedHeightValueVecs {
|
|
pub sats: Option<EagerVec<Height, Sats>>,
|
|
pub bitcoin: EagerVec<Height, Bitcoin>,
|
|
pub dollars: Option<EagerVec<Height, Dollars>>,
|
|
}
|
|
|
|
const VERSION: Version = Version::ZERO;
|
|
|
|
impl ComputedHeightValueVecs {
|
|
pub fn forced_import(
|
|
db: &Database,
|
|
name: &str,
|
|
source: Source<Height, Sats>,
|
|
version: Version,
|
|
format: Format,
|
|
compute_dollars: bool,
|
|
) -> Result<Self> {
|
|
Ok(Self {
|
|
sats: source.is_compute().then(|| {
|
|
EagerVec::forced_import(db, name, version + VERSION + Version::ZERO, format)
|
|
.unwrap()
|
|
}),
|
|
bitcoin: EagerVec::forced_import(
|
|
db,
|
|
&format!("{name}_in_btc"),
|
|
version + VERSION + Version::ZERO,
|
|
format,
|
|
)?,
|
|
dollars: compute_dollars.then(|| {
|
|
EagerVec::forced_import(
|
|
db,
|
|
&format!("{name}_in_usd"),
|
|
version + VERSION + Version::ZERO,
|
|
format,
|
|
)
|
|
.unwrap()
|
|
}),
|
|
})
|
|
}
|
|
|
|
pub fn compute_all<F>(
|
|
&mut self,
|
|
indexer: &Indexer,
|
|
indexes: &indexes::Vecs,
|
|
price: Option<&price::Vecs>,
|
|
starting_indexes: &Indexes,
|
|
exit: &Exit,
|
|
mut compute: F,
|
|
) -> Result<()>
|
|
where
|
|
F: FnMut(
|
|
&mut EagerVec<Height, Sats>,
|
|
&Indexer,
|
|
&indexes::Vecs,
|
|
&Indexes,
|
|
&Exit,
|
|
) -> Result<()>,
|
|
{
|
|
compute(
|
|
self.sats.as_mut().unwrap(),
|
|
indexer,
|
|
indexes,
|
|
starting_indexes,
|
|
exit,
|
|
)?;
|
|
|
|
let height: Option<&StoredVec<Height, Sats>> = None;
|
|
self.compute_rest(price, starting_indexes, exit, height)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn compute_rest(
|
|
&mut self,
|
|
price: Option<&price::Vecs>,
|
|
starting_indexes: &Indexes,
|
|
exit: &Exit,
|
|
height: Option<&impl CollectableVec<Height, Sats>>,
|
|
) -> Result<()> {
|
|
if let Some(height) = height {
|
|
self.bitcoin
|
|
.compute_from_sats(starting_indexes.height, height, exit)?;
|
|
} else {
|
|
self.bitcoin.compute_from_sats(
|
|
starting_indexes.height,
|
|
self.sats.as_ref().unwrap(),
|
|
exit,
|
|
)?;
|
|
}
|
|
|
|
let height_to_bitcoin = &self.bitcoin;
|
|
let height_to_close = &price.as_ref().unwrap().chainindexes_to_close.height;
|
|
|
|
if let Some(dollars) = self.dollars.as_mut() {
|
|
dollars.compute_from_bitcoin(
|
|
starting_indexes.height,
|
|
height_to_bitcoin,
|
|
height_to_close,
|
|
exit,
|
|
)?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn vecs(&self) -> Vec<&dyn AnyCollectableVec> {
|
|
[
|
|
vec![&self.bitcoin as &dyn AnyCollectableVec],
|
|
self.sats.as_ref().map_or(vec![], |v| vec![v]),
|
|
self.dollars.as_ref().map_or(vec![], |v| vec![v]),
|
|
]
|
|
.into_iter()
|
|
.flatten()
|
|
.collect::<Vec<_>>()
|
|
}
|
|
}
|