mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 23:21:06 +00:00
Remove: (#8748)
* `NetworkStatusSinks` * `sc_service::SpawnTasksParams::network_status_sinks` Also: * `sc_service::build_network()` does not return `network_status_sinks`
This commit is contained in:
committed by
GitHub
parent
fa89414bba
commit
8dfb8cd978
@@ -15,12 +15,12 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
ansi_term = "0.12.1"
|
||||
futures = "0.3.9"
|
||||
futures-timer = "3.0.1"
|
||||
log = "0.4.8"
|
||||
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
||||
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||
sc-network = { version = "0.9.0", path = "../network" }
|
||||
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||
wasm-timer = "0.2"
|
||||
|
||||
@@ -20,18 +20,23 @@
|
||||
|
||||
use ansi_term::Colour;
|
||||
use futures::prelude::*;
|
||||
use futures_timer::Delay;
|
||||
use log::{info, trace, warn};
|
||||
use parity_util_mem::MallocSizeOf;
|
||||
use sc_client_api::{BlockchainEvents, UsageProvider};
|
||||
use sc_network::NetworkStatus;
|
||||
use sc_network::NetworkService;
|
||||
use sp_blockchain::HeaderMetadata;
|
||||
use sp_runtime::traits::{Block as BlockT, Header};
|
||||
use sp_transaction_pool::TransactionPool;
|
||||
use sp_utils::{status_sinks, mpsc::tracing_unbounded};
|
||||
use std::{fmt::Display, sync::Arc, time::Duration, collections::VecDeque};
|
||||
|
||||
mod display;
|
||||
|
||||
/// Creates a stream that returns a new value every `duration`.
|
||||
fn interval(duration: Duration) -> impl Stream<Item = ()> + Unpin {
|
||||
futures::stream::unfold((), move |_| Delay::new(duration).map(|_| Some(((), ())))).map(drop)
|
||||
}
|
||||
|
||||
/// The format to print telemetry output in.
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct OutputFormat {
|
||||
@@ -64,12 +69,12 @@ impl<T: TransactionPool> TransactionPoolAndMaybeMallogSizeOf for T {}
|
||||
impl<T: TransactionPool + MallocSizeOf> TransactionPoolAndMaybeMallogSizeOf for T {}
|
||||
|
||||
/// Builds the informant and returns a `Future` that drives the informant.
|
||||
pub fn build<B: BlockT, C>(
|
||||
pub async fn build<B: BlockT, C>(
|
||||
client: Arc<C>,
|
||||
network_status_sinks: Arc<status_sinks::StatusSinks<NetworkStatus<B>>>,
|
||||
network: Arc<NetworkService<B, <B as BlockT>::Hash>>,
|
||||
pool: Arc<impl TransactionPoolAndMaybeMallogSizeOf>,
|
||||
format: OutputFormat,
|
||||
) -> impl futures::Future<Output = ()>
|
||||
)
|
||||
where
|
||||
C: UsageProvider<B> + HeaderMetadata<B> + BlockchainEvents<B>,
|
||||
<C as HeaderMetadata<B>>::Error: Display,
|
||||
@@ -77,10 +82,12 @@ where
|
||||
let mut display = display::InformantDisplay::new(format.clone());
|
||||
|
||||
let client_1 = client.clone();
|
||||
let (network_status_sink, network_status_stream) = tracing_unbounded("mpsc_network_status");
|
||||
network_status_sinks.push(Duration::from_millis(5000), network_status_sink);
|
||||
|
||||
let display_notifications = network_status_stream
|
||||
let display_notifications = interval(Duration::from_millis(5000))
|
||||
.filter_map(|_| async {
|
||||
let status = network.status().await;
|
||||
status.ok()
|
||||
})
|
||||
.for_each(move |net_status| {
|
||||
let info = client_1.usage_info();
|
||||
if let Some(ref usage) = info.usage {
|
||||
@@ -101,10 +108,10 @@ where
|
||||
future::ready(())
|
||||
});
|
||||
|
||||
future::join(
|
||||
display_notifications,
|
||||
display_block_import(client),
|
||||
).map(|_| ())
|
||||
futures::select! {
|
||||
() = display_notifications.fuse() => (),
|
||||
() = display_block_import(client).fuse() => (),
|
||||
};
|
||||
}
|
||||
|
||||
fn display_block_import<B: BlockT, C>(client: Arc<C>) -> impl Future<Output = ()>
|
||||
|
||||
@@ -888,6 +888,43 @@ impl<B: BlockT + 'static, H: ExHashT> NetworkService<B, H> {
|
||||
});
|
||||
}
|
||||
|
||||
/// High-level network status information.
|
||||
///
|
||||
/// Returns an error if the `NetworkWorker` is no longer running.
|
||||
pub async fn status(&self) -> Result<NetworkStatus<B>, ()> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
|
||||
let _ = self.to_worker.unbounded_send(ServiceToWorkerMsg::NetworkStatus {
|
||||
pending_response: tx,
|
||||
});
|
||||
|
||||
match rx.await {
|
||||
Ok(v) => v.map_err(|_| ()),
|
||||
// The channel can only be closed if the network worker no longer exists.
|
||||
Err(_) => Err(()),
|
||||
}
|
||||
}
|
||||
|
||||
/// Get network state.
|
||||
///
|
||||
/// **Note**: Use this only for debugging. This API is unstable. There are warnings literally
|
||||
/// everywhere about this. Please don't use this function to retrieve actual information.
|
||||
///
|
||||
/// Returns an error if the `NetworkWorker` is no longer running.
|
||||
pub async fn network_state(&self) -> Result<NetworkState, ()> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
|
||||
let _ = self.to_worker.unbounded_send(ServiceToWorkerMsg::NetworkState {
|
||||
pending_response: tx,
|
||||
});
|
||||
|
||||
match rx.await {
|
||||
Ok(v) => v.map_err(|_| ()),
|
||||
// The channel can only be closed if the network worker no longer exists.
|
||||
Err(_) => Err(()),
|
||||
}
|
||||
}
|
||||
|
||||
/// You may call this when new transactons are imported by the transaction pool.
|
||||
///
|
||||
/// All transactions will be fetched from the `TransactionPool` that was passed at
|
||||
@@ -1307,6 +1344,12 @@ enum ServiceToWorkerMsg<B: BlockT, H: ExHashT> {
|
||||
pending_response: oneshot::Sender<Result<Vec<u8>, RequestFailure>>,
|
||||
connect: IfDisconnected,
|
||||
},
|
||||
NetworkStatus {
|
||||
pending_response: oneshot::Sender<Result<NetworkStatus<B>, RequestFailure>>,
|
||||
},
|
||||
NetworkState {
|
||||
pending_response: oneshot::Sender<Result<NetworkState, RequestFailure>>,
|
||||
},
|
||||
DisconnectPeer(PeerId, Cow<'static, str>),
|
||||
NewBestBlockImported(B::Hash, NumberFor<B>),
|
||||
}
|
||||
@@ -1434,6 +1477,12 @@ impl<B: BlockT + 'static, H: ExHashT> Future for NetworkWorker<B, H> {
|
||||
ServiceToWorkerMsg::Request { target, protocol, request, pending_response, connect } => {
|
||||
this.network_service.behaviour_mut().send_request(&target, &protocol, request, pending_response, connect);
|
||||
},
|
||||
ServiceToWorkerMsg::NetworkStatus { pending_response } => {
|
||||
let _ = pending_response.send(Ok(this.status()));
|
||||
},
|
||||
ServiceToWorkerMsg::NetworkState { pending_response } => {
|
||||
let _ = pending_response.send(Ok(this.network_state()));
|
||||
},
|
||||
ServiceToWorkerMsg::DisconnectPeer(who, protocol_name) =>
|
||||
this.network_service.behaviour_mut().user_protocol_mut().disconnect_peer(&who, &protocol_name),
|
||||
ServiceToWorkerMsg::NewBestBlockImported(hash, number) =>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use crate::{
|
||||
error::Error, MallocSizeOfWasm, RpcHandlers, NetworkStatusSinks,
|
||||
error::Error, MallocSizeOfWasm, RpcHandlers,
|
||||
start_rpc_servers, build_network_future, TransactionPoolAdapter, TaskManager, SpawnTaskHandle,
|
||||
metrics::MetricsService,
|
||||
client::{light, Client, ClientConfig},
|
||||
@@ -519,8 +519,6 @@ pub struct SpawnTasksParams<'a, TBl: BlockT, TCl, TExPool, TRpc, Backend> {
|
||||
pub remote_blockchain: Option<Arc<dyn RemoteBlockchain<TBl>>>,
|
||||
/// A shared network instance.
|
||||
pub network: Arc<NetworkService<TBl, <TBl as BlockT>::Hash>>,
|
||||
/// Sinks to propagate network status updates.
|
||||
pub network_status_sinks: NetworkStatusSinks<TBl>,
|
||||
/// A Sender for RPC requests.
|
||||
pub system_rpc_tx: TracingUnboundedSender<sc_rpc::system::Request<TBl>>,
|
||||
/// Telemetry instance for this node.
|
||||
@@ -590,7 +588,6 @@ pub fn spawn_tasks<TBl, TBackend, TExPool, TRpc, TCl>(
|
||||
rpc_extensions_builder,
|
||||
remote_blockchain,
|
||||
network,
|
||||
network_status_sinks,
|
||||
system_rpc_tx,
|
||||
telemetry,
|
||||
} = params;
|
||||
@@ -654,7 +651,7 @@ pub fn spawn_tasks<TBl, TBackend, TExPool, TRpc, TCl>(
|
||||
metrics_service.run(
|
||||
client.clone(),
|
||||
transaction_pool.clone(),
|
||||
network_status_sinks.clone()
|
||||
network.clone(),
|
||||
)
|
||||
);
|
||||
|
||||
@@ -679,7 +676,7 @@ pub fn spawn_tasks<TBl, TBackend, TExPool, TRpc, TCl>(
|
||||
// Spawn informant task
|
||||
spawn_handle.spawn("informant", sc_informant::build(
|
||||
client.clone(),
|
||||
network_status_sinks.status.clone(),
|
||||
network.clone(),
|
||||
transaction_pool.clone(),
|
||||
config.informant_output_format,
|
||||
));
|
||||
@@ -865,7 +862,6 @@ pub fn build_network<TBl, TExPool, TImpQu, TCl>(
|
||||
) -> Result<
|
||||
(
|
||||
Arc<NetworkService<TBl, <TBl as BlockT>::Hash>>,
|
||||
NetworkStatusSinks<TBl>,
|
||||
TracingUnboundedSender<sc_rpc::system::Request<TBl>>,
|
||||
NetworkStarter,
|
||||
),
|
||||
@@ -959,7 +955,6 @@ pub fn build_network<TBl, TExPool, TImpQu, TCl>(
|
||||
let has_bootnodes = !network_params.network_config.boot_nodes.is_empty();
|
||||
let network_mut = sc_network::NetworkWorker::new(network_params)?;
|
||||
let network = network_mut.service().clone();
|
||||
let network_status_sinks = NetworkStatusSinks::new();
|
||||
|
||||
let (system_rpc_tx, system_rpc_rx) = tracing_unbounded("mpsc_system_rpc");
|
||||
|
||||
@@ -967,7 +962,6 @@ pub fn build_network<TBl, TExPool, TImpQu, TCl>(
|
||||
config.role.clone(),
|
||||
network_mut,
|
||||
client,
|
||||
network_status_sinks.clone(),
|
||||
system_rpc_rx,
|
||||
has_bootnodes,
|
||||
config.announce_block,
|
||||
@@ -1010,7 +1004,7 @@ pub fn build_network<TBl, TExPool, TImpQu, TCl>(
|
||||
future.await
|
||||
});
|
||||
|
||||
Ok((network, network_status_sinks, system_rpc_tx, NetworkStarter(network_start_tx)))
|
||||
Ok((network, system_rpc_tx, NetworkStarter(network_start_tx)))
|
||||
}
|
||||
|
||||
/// Object used to start the network.
|
||||
|
||||
@@ -37,17 +37,16 @@ mod task_manager;
|
||||
use std::{io, pin::Pin};
|
||||
use std::net::SocketAddr;
|
||||
use std::collections::HashMap;
|
||||
use std::time::Duration;
|
||||
use std::task::Poll;
|
||||
|
||||
use futures::{Future, FutureExt, Stream, StreamExt, stream, compat::*};
|
||||
use sc_network::{NetworkStatus, network_state::NetworkState, PeerId};
|
||||
use sc_network::PeerId;
|
||||
use log::{warn, debug, error};
|
||||
use codec::{Encode, Decode};
|
||||
use sp_runtime::generic::BlockId;
|
||||
use sp_runtime::traits::{Block as BlockT, Header as HeaderT};
|
||||
use parity_util_mem::MallocSizeOf;
|
||||
use sp_utils::{status_sinks, mpsc::{tracing_unbounded, TracingUnboundedReceiver}};
|
||||
use sp_utils::mpsc::TracingUnboundedReceiver;
|
||||
|
||||
pub use self::error::Error;
|
||||
pub use self::builder::{
|
||||
@@ -124,42 +123,6 @@ impl RpcHandlers {
|
||||
}
|
||||
}
|
||||
|
||||
/// Sinks to propagate network status updates.
|
||||
/// For each element, every time the `Interval` fires we push an element on the sender.
|
||||
#[derive(Clone)]
|
||||
pub struct NetworkStatusSinks<Block: BlockT> {
|
||||
status: Arc<status_sinks::StatusSinks<NetworkStatus<Block>>>,
|
||||
state: Arc<status_sinks::StatusSinks<NetworkState>>,
|
||||
}
|
||||
|
||||
impl<Block: BlockT> NetworkStatusSinks<Block> {
|
||||
fn new() -> Self {
|
||||
Self {
|
||||
status: Arc::new(status_sinks::StatusSinks::new()),
|
||||
state: Arc::new(status_sinks::StatusSinks::new()),
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns a receiver that periodically yields a [`NetworkStatus`].
|
||||
pub fn status_stream(&self, interval: Duration)
|
||||
-> TracingUnboundedReceiver<NetworkStatus<Block>>
|
||||
{
|
||||
let (sink, stream) = tracing_unbounded("mpsc_network_status");
|
||||
self.status.push(interval, sink);
|
||||
stream
|
||||
}
|
||||
|
||||
/// Returns a receiver that periodically yields a [`NetworkState`].
|
||||
pub fn state_stream(&self, interval: Duration)
|
||||
-> TracingUnboundedReceiver<NetworkState>
|
||||
{
|
||||
let (sink, stream) = tracing_unbounded("mpsc_network_state");
|
||||
self.state.push(interval, sink);
|
||||
stream
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/// An incomplete set of chain components, but enough to run the chain ops subcommands.
|
||||
pub struct PartialComponents<Client, Backend, SelectChain, ImportQueue, TransactionPool, Other> {
|
||||
/// A shared client instance.
|
||||
@@ -191,7 +154,6 @@ async fn build_network_future<
|
||||
role: Role,
|
||||
mut network: sc_network::NetworkWorker<B, H>,
|
||||
client: Arc<C>,
|
||||
status_sinks: NetworkStatusSinks<B>,
|
||||
mut rpc_rx: TracingUnboundedReceiver<sc_rpc::system::Request<B>>,
|
||||
should_have_peers: bool,
|
||||
announce_imported_blocks: bool,
|
||||
@@ -335,18 +297,6 @@ async fn build_network_future<
|
||||
// used in the future to perform actions in response of things that happened on
|
||||
// the network.
|
||||
_ = (&mut network).fuse() => {}
|
||||
|
||||
// At a regular interval, we send high-level status as well as
|
||||
// detailed state information of the network on what are called
|
||||
// "status sinks".
|
||||
|
||||
status_sink = status_sinks.status.next().fuse() => {
|
||||
status_sink.send(network.status());
|
||||
}
|
||||
|
||||
state_sink = status_sinks.state.next().fuse() => {
|
||||
state_sink.send(network.network_state());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
use std::{convert::TryFrom, time::SystemTime};
|
||||
|
||||
use crate::{NetworkStatus, NetworkState, NetworkStatusSinks, config::Configuration};
|
||||
use crate::config::Configuration;
|
||||
use futures_timer::Delay;
|
||||
use prometheus_endpoint::{register, Gauge, U64, Registry, PrometheusError, Opts, GaugeVec};
|
||||
use sc_telemetry::{telemetry, TelemetryHandle, SUBSTRATE_INFO};
|
||||
@@ -26,9 +26,8 @@ use sp_api::ProvideRuntimeApi;
|
||||
use sp_runtime::traits::{NumberFor, Block, SaturatedConversion, UniqueSaturatedInto};
|
||||
use sp_transaction_pool::{PoolStatus, MaintainedTransactionPool};
|
||||
use sp_utils::metrics::register_globals;
|
||||
use sp_utils::mpsc::TracingUnboundedReceiver;
|
||||
use sc_client_api::{ClientInfo, UsageProvider};
|
||||
use sc_network::config::Role;
|
||||
use sc_network::{config::Role, NetworkStatus, NetworkService, network_state::NetworkState};
|
||||
use std::sync::Arc;
|
||||
use std::time::Duration;
|
||||
use wasm_timer::Instant;
|
||||
@@ -163,7 +162,7 @@ impl MetricsService {
|
||||
mut self,
|
||||
client: Arc<TCl>,
|
||||
transactions: Arc<TExPool>,
|
||||
network: NetworkStatusSinks<TBl>,
|
||||
network: Arc<NetworkService<TBl, <TBl as Block>::Hash>>,
|
||||
) where
|
||||
TBl: Block,
|
||||
TCl: ProvideRuntimeApi<TBl> + UsageProvider<TBl>,
|
||||
@@ -172,33 +171,23 @@ impl MetricsService {
|
||||
let mut timer = Delay::new(Duration::from_secs(0));
|
||||
let timer_interval = Duration::from_secs(5);
|
||||
|
||||
// Metric and telemetry update interval.
|
||||
let net_status_interval = timer_interval;
|
||||
let net_state_interval = Duration::from_secs(30);
|
||||
|
||||
// Source of network information.
|
||||
let mut net_status_rx = Some(network.status_stream(net_status_interval));
|
||||
let mut net_state_rx = Some(network.state_stream(net_state_interval));
|
||||
let net_state_duration = Duration::from_secs(30);
|
||||
let mut last_net_state = Instant::now();
|
||||
|
||||
loop {
|
||||
// Wait for the next tick of the timer.
|
||||
(&mut timer).await;
|
||||
let now = Instant::now();
|
||||
let from_net_state = now.duration_since(last_net_state);
|
||||
|
||||
// Try to get the latest network information.
|
||||
let mut net_status = None;
|
||||
let mut net_state = None;
|
||||
if let Some(rx) = net_status_rx.as_mut() {
|
||||
match Self::latest(rx) {
|
||||
Ok(status) => { net_status = status; }
|
||||
Err(()) => { net_status_rx = None; }
|
||||
}
|
||||
}
|
||||
if let Some(rx) = net_state_rx.as_mut() {
|
||||
match Self::latest(rx) {
|
||||
Ok(state) => { net_state = state; }
|
||||
Err(()) => { net_state_rx = None; }
|
||||
}
|
||||
}
|
||||
let net_status = network.status().await.ok();
|
||||
let net_state = if from_net_state >= net_state_duration {
|
||||
last_net_state = now;
|
||||
network.network_state().await.ok()
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
||||
// Update / Send the metrics.
|
||||
self.update(
|
||||
@@ -213,25 +202,6 @@ impl MetricsService {
|
||||
}
|
||||
}
|
||||
|
||||
// Try to get the latest value from a receiver, dropping intermediate values.
|
||||
fn latest<T>(rx: &mut TracingUnboundedReceiver<T>) -> Result<Option<T>, ()> {
|
||||
let mut value = None;
|
||||
|
||||
while let Ok(next) = rx.try_next() {
|
||||
match next {
|
||||
Some(v) => {
|
||||
value = Some(v)
|
||||
}
|
||||
None => {
|
||||
log::error!("Receiver closed unexpectedly.");
|
||||
return Err(())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Ok(value)
|
||||
}
|
||||
|
||||
fn update<T: Block>(
|
||||
&mut self,
|
||||
info: &ClientInfo<T>,
|
||||
|
||||
Reference in New Issue
Block a user