4666047395
Updated 4763 files with dual copyright: - Parity Technologies (UK) Ltd. - Dijital Kurdistan Tech Institute
78 lines
2.6 KiB
Rust
78 lines
2.6 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd. and Dijital Kurdistan Tech Institute
|
|
// This file is part of Pezkuwi.
|
|
|
|
// Pezkuwi is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Pezkuwi is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Pezkuwi. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use bizinikiwi_rpc_client::{ws_client, ChainApi};
|
|
use pezkuwi_core_primitives::{Block, Hash, Header};
|
|
use std::{
|
|
future::Future,
|
|
io::{BufRead, BufReader, Read},
|
|
time::Duration,
|
|
};
|
|
|
|
/// Run the given `future` and panic if the `timeout` is hit.
|
|
pub async fn run_with_timeout(timeout: Duration, future: impl Future<Output = ()>) {
|
|
tokio::time::timeout(timeout, future).await.expect("Hit timeout");
|
|
}
|
|
|
|
/// Wait for at least `n` blocks to be finalized from a specified node.
|
|
pub async fn wait_n_finalized_blocks(n: usize, url: &str) {
|
|
let mut built_blocks = std::collections::HashSet::new();
|
|
let mut interval = tokio::time::interval(Duration::from_secs(6));
|
|
|
|
loop {
|
|
let Ok(rpc) = ws_client(url).await else { continue };
|
|
|
|
if let Ok(block) = ChainApi::<(), Hash, Header, Block>::finalized_head(&rpc).await {
|
|
built_blocks.insert(block);
|
|
if built_blocks.len() > n {
|
|
break;
|
|
}
|
|
};
|
|
|
|
interval.tick().await;
|
|
}
|
|
}
|
|
|
|
/// Read the WS address from the output.
|
|
///
|
|
/// This is hack to get the actual bound sockaddr because
|
|
/// pezkuwi assigns a random port if the specified port was already bound.
|
|
///
|
|
/// You must call
|
|
/// `Command::new("cmd").stdout(process::Stdio::piped()).stderr(process::Stdio::piped())`
|
|
/// for this to work.
|
|
pub fn find_ws_url_from_output(read: impl Read + Send) -> (String, String) {
|
|
let mut data = String::new();
|
|
|
|
let ws_url = BufReader::new(read)
|
|
.lines()
|
|
.find_map(|line| {
|
|
let line = line.expect("failed to obtain next line from stdout for port discovery");
|
|
|
|
data.push_str(&line);
|
|
|
|
// does the line contain our port (we expect this specific output from bizinikiwi).
|
|
let sock_addr = match line.split_once("Running JSON-RPC server: addr=") {
|
|
None => return None,
|
|
Some((_, after)) => after.split_once(',').unwrap().0,
|
|
};
|
|
|
|
Some(format!("ws://{}", sock_addr))
|
|
})
|
|
.unwrap_or_else(|| panic!("Could not find address in process output:\n{}", &data));
|
|
(ws_url, data)
|
|
}
|