2022-09-01 08:58:55 +03:00
|
|
|
use super::blockchain::BlockId;
|
2022-08-24 03:11:49 +03:00
|
|
|
use super::connection::Web3Connection;
|
|
|
|
use super::connections::Web3Connections;
|
2022-08-24 02:13:56 +03:00
|
|
|
use ethers::prelude::{H256, U64};
|
|
|
|
use indexmap::IndexSet;
|
|
|
|
use serde::Serialize;
|
2022-08-24 02:56:47 +03:00
|
|
|
use std::fmt;
|
2022-08-24 02:13:56 +03:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
/// A collection of Web3Connections that are on the same block.
|
|
|
|
/// Serialize is so we can print it on our debug endpoint
|
|
|
|
#[derive(Clone, Default, Serialize)]
|
|
|
|
pub struct SyncedConnections {
|
2022-08-30 23:01:42 +03:00
|
|
|
// TODO: store ArcBlock instead?
|
2022-09-01 08:58:55 +03:00
|
|
|
pub(super) head_block_id: Option<BlockId>,
|
2022-08-24 02:13:56 +03:00
|
|
|
// TODO: this should be able to serialize, but it isn't
|
|
|
|
#[serde(skip_serializing)]
|
|
|
|
pub(super) conns: IndexSet<Arc<Web3Connection>>,
|
|
|
|
}
|
2022-08-24 02:56:47 +03:00
|
|
|
|
|
|
|
impl fmt::Debug for SyncedConnections {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
// TODO: the default formatter takes forever to write. this is too quiet though
|
|
|
|
// TODO: print the actual conns?
|
|
|
|
f.debug_struct("SyncedConnections")
|
2022-09-01 08:58:55 +03:00
|
|
|
.field("head_block_id", &self.head_block_id)
|
2022-08-24 02:56:47 +03:00
|
|
|
.field("num_conns", &self.conns.len())
|
|
|
|
.finish_non_exhaustive()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Web3Connections {
|
2022-09-01 08:58:55 +03:00
|
|
|
pub fn head_block_id(&self) -> Option<BlockId> {
|
|
|
|
self.synced_connections.load().head_block_id.clone()
|
2022-08-24 02:56:47 +03:00
|
|
|
}
|
|
|
|
|
2022-09-01 08:58:55 +03:00
|
|
|
pub fn head_block_hash(&self) -> Option<H256> {
|
|
|
|
self.synced_connections
|
|
|
|
.load()
|
|
|
|
.head_block_id
|
|
|
|
.as_ref()
|
|
|
|
.map(|head_block_id| head_block_id.hash)
|
2022-08-24 02:56:47 +03:00
|
|
|
}
|
|
|
|
|
2022-09-01 08:58:55 +03:00
|
|
|
pub fn head_block_num(&self) -> Option<U64> {
|
|
|
|
self.synced_connections
|
|
|
|
.load()
|
|
|
|
.head_block_id
|
|
|
|
.as_ref()
|
|
|
|
.map(|head_block_id| head_block_id.num)
|
2022-08-24 02:56:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn synced(&self) -> bool {
|
2022-08-27 02:44:25 +03:00
|
|
|
!self.synced_connections.load().conns.is_empty()
|
2022-08-24 02:56:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn num_synced_rpcs(&self) -> usize {
|
|
|
|
self.synced_connections.load().conns.len()
|
|
|
|
}
|
|
|
|
}
|