mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-13 02:38:36 -07:00
326 lines
12 KiB
Rust
326 lines
12 KiB
Rust
use std::{fs, path::Path, thread};
|
|
|
|
use brk_core::{
|
|
AddressBytes, AddressBytesHash, BlockHashPrefix, Height, OutputType, Result, TxIndex,
|
|
TxidPrefix, TypeIndex, Value, Version,
|
|
};
|
|
use brk_store::{AnyStore, Store};
|
|
use brk_vec::AnyIterableVec;
|
|
use fjall::{PersistMode, TransactionalKeyspace};
|
|
use rayon::prelude::*;
|
|
|
|
use crate::Indexes;
|
|
|
|
use super::Vecs;
|
|
|
|
#[derive(Clone)]
|
|
pub struct Stores {
|
|
pub keyspace: TransactionalKeyspace,
|
|
pub addressbyteshash_to_typeindex: Store<AddressBytesHash, TypeIndex>,
|
|
pub blockhashprefix_to_height: Store<BlockHashPrefix, Height>,
|
|
pub txidprefix_to_txindex: Store<TxidPrefix, TxIndex>,
|
|
}
|
|
|
|
const VERSION: Version = Version::ZERO;
|
|
|
|
impl Stores {
|
|
pub fn forced_import(path: &Path, version: Version) -> color_eyre::Result<Self> {
|
|
fs::create_dir_all(path)?;
|
|
|
|
let keyspace = match brk_store::open_keyspace(path) {
|
|
Ok(keyspace) => keyspace,
|
|
Err(_) => {
|
|
fs::remove_dir_all(path)?;
|
|
return Self::forced_import(path, version);
|
|
}
|
|
};
|
|
|
|
thread::scope(|scope| {
|
|
let addressbyteshash_to_typeindex = scope.spawn(|| {
|
|
Store::import(
|
|
&keyspace,
|
|
path,
|
|
"addressbyteshash_to_typeindex",
|
|
version + VERSION + Version::ZERO,
|
|
None,
|
|
)
|
|
});
|
|
let blockhashprefix_to_height = scope.spawn(|| {
|
|
Store::import(
|
|
&keyspace,
|
|
path,
|
|
"blockhashprefix_to_height",
|
|
version + VERSION + Version::ZERO,
|
|
None,
|
|
)
|
|
});
|
|
let txidprefix_to_txindex = scope.spawn(|| {
|
|
Store::import(
|
|
&keyspace,
|
|
path,
|
|
"txidprefix_to_txindex",
|
|
version + VERSION + Version::ZERO,
|
|
None,
|
|
)
|
|
});
|
|
|
|
Ok(Self {
|
|
keyspace: keyspace.clone(),
|
|
addressbyteshash_to_typeindex: addressbyteshash_to_typeindex.join().unwrap()?,
|
|
blockhashprefix_to_height: blockhashprefix_to_height.join().unwrap()?,
|
|
txidprefix_to_txindex: txidprefix_to_txindex.join().unwrap()?,
|
|
})
|
|
})
|
|
}
|
|
|
|
pub fn rollback_if_needed(
|
|
&mut self,
|
|
vecs: &mut Vecs,
|
|
starting_indexes: &Indexes,
|
|
) -> color_eyre::Result<()> {
|
|
if self.addressbyteshash_to_typeindex.is_empty()
|
|
&& self.blockhashprefix_to_height.is_empty()
|
|
&& self.txidprefix_to_txindex.is_empty()
|
|
{
|
|
return Ok(());
|
|
}
|
|
|
|
if starting_indexes.height != Height::ZERO {
|
|
vecs.height_to_blockhash
|
|
.iter_at(starting_indexes.height)
|
|
.for_each(|(_, v)| {
|
|
let blockhashprefix = BlockHashPrefix::from(Value::into_inner(v));
|
|
self.blockhashprefix_to_height.remove(blockhashprefix);
|
|
});
|
|
|
|
if let Some(mut index) = vecs
|
|
.height_to_first_p2pk65addressindex
|
|
.iter()
|
|
.get(starting_indexes.height)
|
|
.map(Value::into_inner)
|
|
{
|
|
let mut p2pk65addressindex_to_p2pk65bytes_iter =
|
|
vecs.p2pk65addressindex_to_p2pk65bytes.iter();
|
|
|
|
while let Some(typedbytes) = p2pk65addressindex_to_p2pk65bytes_iter
|
|
.get(index)
|
|
.map(Value::into_inner)
|
|
{
|
|
let bytes = AddressBytes::from(typedbytes);
|
|
let hash = AddressBytesHash::from((&bytes, OutputType::P2PK65));
|
|
self.addressbyteshash_to_typeindex.remove(hash);
|
|
index.increment();
|
|
}
|
|
}
|
|
|
|
if let Some(mut index) = vecs
|
|
.height_to_first_p2pk33addressindex
|
|
.iter()
|
|
.get(starting_indexes.height)
|
|
.map(Value::into_inner)
|
|
{
|
|
let mut p2pk33addressindex_to_p2pk33bytes_iter =
|
|
vecs.p2pk33addressindex_to_p2pk33bytes.iter();
|
|
|
|
while let Some(typedbytes) = p2pk33addressindex_to_p2pk33bytes_iter
|
|
.get(index)
|
|
.map(Value::into_inner)
|
|
{
|
|
let bytes = AddressBytes::from(typedbytes);
|
|
let hash = AddressBytesHash::from((&bytes, OutputType::P2PK33));
|
|
self.addressbyteshash_to_typeindex.remove(hash);
|
|
index.increment();
|
|
}
|
|
}
|
|
|
|
if let Some(mut index) = vecs
|
|
.height_to_first_p2pkhaddressindex
|
|
.iter()
|
|
.get(starting_indexes.height)
|
|
.map(Value::into_inner)
|
|
{
|
|
let mut p2pkhaddressindex_to_p2pkhbytes_iter =
|
|
vecs.p2pkhaddressindex_to_p2pkhbytes.iter();
|
|
|
|
while let Some(typedbytes) = p2pkhaddressindex_to_p2pkhbytes_iter
|
|
.get(index)
|
|
.map(Value::into_inner)
|
|
{
|
|
let bytes = AddressBytes::from(typedbytes);
|
|
let hash = AddressBytesHash::from((&bytes, OutputType::P2PKH));
|
|
self.addressbyteshash_to_typeindex.remove(hash);
|
|
index.increment();
|
|
}
|
|
}
|
|
|
|
if let Some(mut index) = vecs
|
|
.height_to_first_p2shaddressindex
|
|
.iter()
|
|
.get(starting_indexes.height)
|
|
.map(Value::into_inner)
|
|
{
|
|
let mut p2shaddressindex_to_p2shbytes_iter =
|
|
vecs.p2shaddressindex_to_p2shbytes.iter();
|
|
|
|
while let Some(typedbytes) = p2shaddressindex_to_p2shbytes_iter
|
|
.get(index)
|
|
.map(Value::into_inner)
|
|
{
|
|
let bytes = AddressBytes::from(typedbytes);
|
|
let hash = AddressBytesHash::from((&bytes, OutputType::P2SH));
|
|
self.addressbyteshash_to_typeindex.remove(hash);
|
|
index.increment();
|
|
}
|
|
}
|
|
|
|
if let Some(mut index) = vecs
|
|
.height_to_first_p2traddressindex
|
|
.iter()
|
|
.get(starting_indexes.height)
|
|
.map(Value::into_inner)
|
|
{
|
|
let mut p2traddressindex_to_p2trbytes_iter =
|
|
vecs.p2traddressindex_to_p2trbytes.iter();
|
|
|
|
while let Some(typedbytes) = p2traddressindex_to_p2trbytes_iter
|
|
.get(index)
|
|
.map(Value::into_inner)
|
|
{
|
|
let bytes = AddressBytes::from(typedbytes);
|
|
let hash = AddressBytesHash::from((&bytes, OutputType::P2TR));
|
|
self.addressbyteshash_to_typeindex.remove(hash);
|
|
index.increment();
|
|
}
|
|
}
|
|
|
|
if let Some(mut index) = vecs
|
|
.height_to_first_p2wpkhaddressindex
|
|
.iter()
|
|
.get(starting_indexes.height)
|
|
.map(Value::into_inner)
|
|
{
|
|
let mut p2wpkhaddressindex_to_p2wpkhbytes_iter =
|
|
vecs.p2wpkhaddressindex_to_p2wpkhbytes.iter();
|
|
|
|
while let Some(typedbytes) = p2wpkhaddressindex_to_p2wpkhbytes_iter
|
|
.get(index)
|
|
.map(Value::into_inner)
|
|
{
|
|
let bytes = AddressBytes::from(typedbytes);
|
|
let hash = AddressBytesHash::from((&bytes, OutputType::P2WPKH));
|
|
self.addressbyteshash_to_typeindex.remove(hash);
|
|
index.increment();
|
|
}
|
|
}
|
|
|
|
if let Some(mut index) = vecs
|
|
.height_to_first_p2wshaddressindex
|
|
.iter()
|
|
.get(starting_indexes.height)
|
|
.map(Value::into_inner)
|
|
{
|
|
let mut p2wshaddressindex_to_p2wshbytes_iter =
|
|
vecs.p2wshaddressindex_to_p2wshbytes.iter();
|
|
|
|
while let Some(typedbytes) = p2wshaddressindex_to_p2wshbytes_iter
|
|
.get(index)
|
|
.map(Value::into_inner)
|
|
{
|
|
let bytes = AddressBytes::from(typedbytes);
|
|
let hash = AddressBytesHash::from((&bytes, OutputType::P2WSH));
|
|
self.addressbyteshash_to_typeindex.remove(hash);
|
|
index.increment();
|
|
}
|
|
}
|
|
|
|
if let Some(mut index) = vecs
|
|
.height_to_first_p2aaddressindex
|
|
.iter()
|
|
.get(starting_indexes.height)
|
|
.map(Value::into_inner)
|
|
{
|
|
let mut p2aaddressindex_to_p2abytes_iter = vecs.p2aaddressindex_to_p2abytes.iter();
|
|
|
|
while let Some(typedbytes) = p2aaddressindex_to_p2abytes_iter
|
|
.get(index)
|
|
.map(Value::into_inner)
|
|
{
|
|
let bytes = AddressBytes::from(typedbytes);
|
|
let hash = AddressBytesHash::from((&bytes, OutputType::P2A));
|
|
self.addressbyteshash_to_typeindex.remove(hash);
|
|
index.increment();
|
|
}
|
|
}
|
|
} else {
|
|
self.blockhashprefix_to_height.reset_partition()?;
|
|
self.addressbyteshash_to_typeindex.reset_partition()?;
|
|
}
|
|
|
|
if starting_indexes.txindex != TxIndex::ZERO {
|
|
vecs.txindex_to_txid
|
|
.iter_at(starting_indexes.txindex)
|
|
.for_each(|(txindex, txid)| {
|
|
let txidprefix = TxidPrefix::from(&txid.into_inner());
|
|
|
|
// "d5d27987d2a3dfc724e359870c6644b40e497bdc0589a033220fe15429d88599"
|
|
let is_not_first_dup = txindex != TxIndex::new(142783)
|
|
|| txidprefix != TxidPrefix::from([153, 133, 216, 41, 84, 225, 15, 34]);
|
|
|
|
// "e3bf3d07d4b0375638d5f1db5255fe07ba2c4cb067cd81b84ee974b6585fb468"
|
|
let is_not_second_dup = txindex != TxIndex::new(142841)
|
|
|| txidprefix != TxidPrefix::from([104, 180, 95, 88, 182, 116, 233, 78]);
|
|
|
|
if is_not_first_dup && is_not_second_dup {
|
|
self.txidprefix_to_txindex.remove(txidprefix);
|
|
}
|
|
});
|
|
} else {
|
|
self.txidprefix_to_txindex.reset_partition()?;
|
|
}
|
|
|
|
self.commit(starting_indexes.height.decremented().unwrap_or_default())?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn starting_height(&self) -> Height {
|
|
self.as_slice()
|
|
.into_iter()
|
|
.map(|store| store.height().map(Height::incremented).unwrap_or_default())
|
|
.min()
|
|
.unwrap()
|
|
}
|
|
|
|
pub fn commit(&mut self, height: Height) -> Result<()> {
|
|
self.as_mut_slice()
|
|
.into_par_iter()
|
|
.try_for_each(|store| store.commit(height))?;
|
|
|
|
self.keyspace
|
|
.persist(PersistMode::SyncAll)
|
|
.map_err(|e| e.into())
|
|
}
|
|
|
|
pub fn rotate_memtables(&self) {
|
|
self.as_slice()
|
|
.into_iter()
|
|
.for_each(|store| store.rotate_memtable());
|
|
}
|
|
|
|
fn as_slice(&self) -> [&(dyn AnyStore + Send + Sync); 3] {
|
|
[
|
|
&self.addressbyteshash_to_typeindex,
|
|
&self.blockhashprefix_to_height,
|
|
&self.txidprefix_to_txindex,
|
|
]
|
|
}
|
|
|
|
fn as_mut_slice(&mut self) -> [&mut (dyn AnyStore + Send + Sync); 3] {
|
|
[
|
|
&mut self.addressbyteshash_to_typeindex,
|
|
&mut self.blockhashprefix_to_height,
|
|
&mut self.txidprefix_to_txindex,
|
|
]
|
|
}
|
|
}
|