mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
62 lines
1.4 KiB
Rust
62 lines
1.4 KiB
Rust
use brk_computer::Computer;
|
|
use brk_error::Result;
|
|
use brk_indexer::Indexer;
|
|
use brk_mempool::Mempool;
|
|
use brk_reader::Reader;
|
|
use brk_rpc::Client;
|
|
use tokio::task::spawn_blocking;
|
|
|
|
use crate::Query;
|
|
|
|
#[derive(Clone)]
|
|
pub struct AsyncQuery(Query);
|
|
|
|
impl AsyncQuery {
|
|
pub fn build(
|
|
reader: &Reader,
|
|
indexer: &Indexer,
|
|
computer: &Computer,
|
|
mempool: Option<Mempool>,
|
|
) -> Self {
|
|
Self(Query::build(reader, indexer, computer, mempool))
|
|
}
|
|
|
|
/// Run a blocking query operation on a spawn_blocking thread.
|
|
/// Use this for I/O-heavy or CPU-intensive operations.
|
|
///
|
|
/// # Example
|
|
/// ```ignore
|
|
/// let addr_stats = query.run(move |q| q.addr(addr)).await?;
|
|
/// ```
|
|
pub async fn run<F, T>(&self, f: F) -> Result<T>
|
|
where
|
|
F: FnOnce(&Query) -> Result<T> + Send + 'static,
|
|
T: Send + 'static,
|
|
{
|
|
let query = self.0.clone();
|
|
spawn_blocking(move || f(&query)).await?
|
|
}
|
|
|
|
/// Run a cheap sync operation directly without spawn_blocking.
|
|
/// Use this for simple accessors that don't do I/O.
|
|
///
|
|
/// # Example
|
|
/// ```ignore
|
|
/// let height = query.sync(|q| q.height());
|
|
/// ```
|
|
pub fn sync<F, T>(&self, f: F) -> T
|
|
where
|
|
F: FnOnce(&Query) -> T,
|
|
{
|
|
f(&self.0)
|
|
}
|
|
|
|
pub fn inner(&self) -> &Query {
|
|
&self.0
|
|
}
|
|
|
|
pub fn client(&self) -> &Client {
|
|
self.0.client()
|
|
}
|
|
}
|