mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-01-13 06:14:50 +00:00
a438279aa8
* storage: port some code `cuprate-blockchain` -> `database` * database: remove `Tables` references * database: remove old `cuprate-blockchain` type references * find/replace `cuprate_blockchain` -> `database`, add `create_db()` * database: fix redb * database: use readme for docs, link in `lib.rs` * database: fix `open_db_ro`, `open_db_rw`, `create_db` behavior * database: add open table tests * database: fix tests, remove blockchain specific references * database: remove `ReaderThreads`, make `db_directory` mandatory * initial `cuprate-blockchain` split * fix doc links * rename, fix database config * blockchain: create `crate::open()`, `OpenTables::create_tables()` * more compat fixes * fix imports * fix conflicts * align cargo.toml * docs * fixes * add `unused_crate_dependencies` lint, fix * blockchain: add open table tests
89 lines
2.3 KiB
Rust
89 lines
2.3 KiB
Rust
use std::{fmt::Write, fs::write};
|
|
|
|
use clap::Parser;
|
|
use tower::{Service, ServiceExt};
|
|
|
|
use cuprate_blockchain::{
|
|
config::ConfigBuilder, cuprate_database::RuntimeError, service::DatabaseReadHandle,
|
|
};
|
|
use cuprate_types::blockchain::{BCReadRequest, BCResponse};
|
|
|
|
use cuprate_fast_sync::{hash_of_hashes, BlockId, HashOfHashes};
|
|
|
|
const BATCH_SIZE: u64 = 512;
|
|
|
|
async fn read_batch(
|
|
handle: &mut DatabaseReadHandle,
|
|
height_from: u64,
|
|
) -> Result<Vec<BlockId>, RuntimeError> {
|
|
let mut block_ids = Vec::<BlockId>::with_capacity(BATCH_SIZE as usize);
|
|
|
|
for height in height_from..(height_from + BATCH_SIZE) {
|
|
let request = BCReadRequest::BlockHash(height);
|
|
let response_channel = handle.ready().await?.call(request);
|
|
let response = response_channel.await?;
|
|
|
|
match response {
|
|
BCResponse::BlockHash(block_id) => block_ids.push(block_id),
|
|
_ => unreachable!(),
|
|
}
|
|
}
|
|
|
|
Ok(block_ids)
|
|
}
|
|
|
|
fn generate_hex(hashes: &[HashOfHashes]) -> String {
|
|
let mut s = String::new();
|
|
|
|
writeln!(&mut s, "[").unwrap();
|
|
|
|
for hash in hashes {
|
|
writeln!(&mut s, "\thex!(\"{}\"),", hex::encode(hash)).unwrap();
|
|
}
|
|
|
|
writeln!(&mut s, "]").unwrap();
|
|
|
|
s
|
|
}
|
|
|
|
#[derive(Parser)]
|
|
#[command(version, about, long_about = None)]
|
|
struct Args {
|
|
#[arg(short, long)]
|
|
height: u64,
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let args = Args::parse();
|
|
let height_target = args.height;
|
|
|
|
let config = ConfigBuilder::new().build();
|
|
|
|
let (mut read_handle, _) = cuprate_blockchain::service::init(config).unwrap();
|
|
|
|
let mut hashes_of_hashes = Vec::new();
|
|
|
|
let mut height = 0u64;
|
|
|
|
while height < height_target {
|
|
match read_batch(&mut read_handle, height).await {
|
|
Ok(block_ids) => {
|
|
let hash = hash_of_hashes(block_ids.as_slice());
|
|
hashes_of_hashes.push(hash);
|
|
}
|
|
Err(_) => {
|
|
println!("Failed to read next batch from database");
|
|
break;
|
|
}
|
|
}
|
|
height += BATCH_SIZE;
|
|
}
|
|
|
|
drop(read_handle);
|
|
|
|
let generated = generate_hex(&hashes_of_hashes);
|
|
write("src/data/hashes_of_hashes", generated).expect("Could not write file");
|
|
|
|
println!("Generated hashes up to block height {}", height);
|
|
}
|