blockstream-electrs/src/bin/bench_index.rs

43 lines
948 B
Rust
Raw Normal View History

extern crate electrs;
extern crate error_chain;
use electrs::{config::Config,
daemon::Daemon,
errors::*,
index::Index,
2018-06-11 18:46:14 +00:00
signal::Waiter,
store::{ReadStore, Row, WriteStore},
util::Bytes};
2018-06-09 15:22:30 +00:00
use error_chain::ChainedError;
struct FakeStore;
impl ReadStore for FakeStore {
fn get(&self, _key: &[u8]) -> Option<Bytes> {
None
}
fn scan(&self, _prefix: &[u8]) -> Vec<Row> {
vec![]
}
}
impl WriteStore for FakeStore {
fn write(&self, _rows: Vec<Row>) {}
2018-06-10 05:51:07 +00:00
fn flush(&self) {}
}
fn run() -> Result<()> {
let config = Config::from_args();
let daemon = Daemon::new(config.network_type)?;
let fake_store = FakeStore {};
let index = Index::load(&fake_store);
2018-06-11 18:46:14 +00:00
index.update(&fake_store, &daemon, &Waiter::new())?;
Ok(())
}
fn main() {
if let Err(e) = run() {
2018-06-09 15:22:30 +00:00
eprintln!("{}", e.display_chain());
}
}