mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-25 21:11:07 +00:00
Extract syncing protocol from sc-network (#12828)
* Move import queue out of `sc-network` Add supplementary asynchronous API for the import queue which means it can be run as an independent task and communicated with through the `ImportQueueService`. This commit removes removes block and justification imports from `sc-network` and provides `ChainSync` with a handle to import queue so it can import blocks and justifications. Polling of the import queue is moved complete out of `sc-network` and `sc_consensus::Link` is implemented for `ChainSyncInterfaceHandled` so the import queue can still influence the syncing process. * Move stuff to SyncingEngine * Move `ChainSync` instanation to `SyncingEngine` Some of the tests have to be rewritten * Move peer hashmap to `SyncingEngine` * Let `SyncingEngine` to implement `ChainSyncInterface` * Introduce `SyncStatusProvider` * Move `sync_peer_(connected|disconnected)` to `SyncingEngine` * Implement `SyncEventStream` Remove `SyncConnected`/`SyncDisconnected` events from `NetworkEvenStream` and provide those events through `ChainSyncInterface` instead. Modify BEEFY/GRANDPA/transactions protocol and `NetworkGossip` to take `SyncEventStream` object which they listen to for incoming sync peer events. * Introduce `ChainSyncInterface` This interface provides a set of miscellaneous functions that other subsystems can use to query, for example, the syncing status. * Move event stream polling to `SyncingEngine` Subscribe to `NetworkStreamEvent` and poll the incoming notifications and substream events from `SyncingEngine`. The code needs refactoring. * Make `SyncingEngine` into an asynchronous runner This commits removes the last hard dependency of syncing from `sc-network` meaning the protocol now lives completely outside of `sc-network`, ignoring the hardcoded peerset entry which will be addressed in the future. Code needs a lot of refactoring. * Fix warnings * Code refactoring * Use `SyncingService` for BEEFY * Use `SyncingService` for GRANDPA * Remove call delegation from `NetworkService` * Remove `ChainSyncService` * Remove `ChainSync` service tests They were written for the sole purpose of verifying that `NetworWorker` continues to function while the calls are being dispatched to `ChainSync`. * Refactor code * Refactor code * Update client/finality-grandpa/src/communication/tests.rs Co-authored-by: Anton <anton.kalyaev@gmail.com> * Fix warnings * Apply review comments * Fix docs * Fix test * cargo-fmt * Update client/network/sync/src/engine.rs Co-authored-by: Anton <anton.kalyaev@gmail.com> * Update client/network/sync/src/engine.rs Co-authored-by: Anton <anton.kalyaev@gmail.com> * Add missing docs * Refactor code --------- Co-authored-by: Anton <anton.kalyaev@gmail.com>
This commit is contained in:
@@ -16,15 +16,26 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use futures::channel::oneshot;
|
||||
use futures::{channel::oneshot, Stream};
|
||||
use libp2p::PeerId;
|
||||
|
||||
use sc_consensus::{BlockImportError, BlockImportStatus, JustificationSyncLink, Link};
|
||||
use sc_network_common::{service::NetworkSyncForkRequest, sync::SyncStatus};
|
||||
use sc_utils::mpsc::TracingUnboundedSender;
|
||||
use sc_network_common::{
|
||||
service::{NetworkBlock, NetworkSyncForkRequest},
|
||||
sync::{ExtendedPeerInfo, SyncEvent, SyncEventStream, SyncStatus, SyncStatusProvider},
|
||||
};
|
||||
use sc_utils::mpsc::{tracing_unbounded, TracingUnboundedSender};
|
||||
use sp_runtime::traits::{Block as BlockT, NumberFor};
|
||||
|
||||
use std::{
|
||||
pin::Pin,
|
||||
sync::{
|
||||
atomic::{AtomicBool, AtomicUsize, Ordering},
|
||||
Arc,
|
||||
},
|
||||
};
|
||||
|
||||
/// Commands send to `ChainSync`
|
||||
#[derive(Debug)]
|
||||
pub enum ToServiceCommand<B: BlockT> {
|
||||
SetSyncForkRequest(Vec<PeerId>, B::Hash, NumberFor<B>),
|
||||
RequestJustification(B::Hash, NumberFor<B>),
|
||||
@@ -35,27 +46,105 @@ pub enum ToServiceCommand<B: BlockT> {
|
||||
Vec<(Result<BlockImportStatus<NumberFor<B>>, BlockImportError>, B::Hash)>,
|
||||
),
|
||||
JustificationImported(PeerId, B::Hash, NumberFor<B>, bool),
|
||||
BlockFinalized(B::Hash, NumberFor<B>),
|
||||
Status {
|
||||
pending_response: oneshot::Sender<SyncStatus<B>>,
|
||||
},
|
||||
AnnounceBlock(B::Hash, Option<Vec<u8>>),
|
||||
NewBestBlockImported(B::Hash, NumberFor<B>),
|
||||
EventStream(TracingUnboundedSender<SyncEvent>),
|
||||
Status(oneshot::Sender<SyncStatus<B>>),
|
||||
NumActivePeers(oneshot::Sender<usize>),
|
||||
SyncState(oneshot::Sender<SyncStatus<B>>),
|
||||
BestSeenBlock(oneshot::Sender<Option<NumberFor<B>>>),
|
||||
NumSyncPeers(oneshot::Sender<u32>),
|
||||
NumQueuedBlocks(oneshot::Sender<u32>),
|
||||
NumDownloadedBlocks(oneshot::Sender<usize>),
|
||||
NumSyncRequests(oneshot::Sender<usize>),
|
||||
PeersInfo(oneshot::Sender<Vec<(PeerId, ExtendedPeerInfo<B>)>>),
|
||||
OnBlockFinalized(B::Hash, B::Header),
|
||||
// Status {
|
||||
// pending_response: oneshot::Sender<SyncStatus<B>>,
|
||||
// },
|
||||
}
|
||||
|
||||
/// Handle for communicating with `ChainSync` asynchronously
|
||||
#[derive(Clone)]
|
||||
pub struct ChainSyncInterfaceHandle<B: BlockT> {
|
||||
pub struct SyncingService<B: BlockT> {
|
||||
tx: TracingUnboundedSender<ToServiceCommand<B>>,
|
||||
/// Number of peers we're connected to.
|
||||
num_connected: Arc<AtomicUsize>,
|
||||
/// Are we actively catching up with the chain?
|
||||
is_major_syncing: Arc<AtomicBool>,
|
||||
}
|
||||
|
||||
impl<B: BlockT> ChainSyncInterfaceHandle<B> {
|
||||
impl<B: BlockT> SyncingService<B> {
|
||||
/// Create new handle
|
||||
pub fn new(tx: TracingUnboundedSender<ToServiceCommand<B>>) -> Self {
|
||||
Self { tx }
|
||||
pub fn new(
|
||||
tx: TracingUnboundedSender<ToServiceCommand<B>>,
|
||||
num_connected: Arc<AtomicUsize>,
|
||||
is_major_syncing: Arc<AtomicBool>,
|
||||
) -> Self {
|
||||
Self { tx, num_connected, is_major_syncing }
|
||||
}
|
||||
|
||||
/// Notify ChainSync about finalized block
|
||||
pub fn on_block_finalized(&self, hash: B::Hash, number: NumberFor<B>) {
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::BlockFinalized(hash, number));
|
||||
/// Get the number of active peers.
|
||||
pub async fn num_active_peers(&self) -> Result<usize, oneshot::Canceled> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::NumActivePeers(tx));
|
||||
|
||||
rx.await
|
||||
}
|
||||
|
||||
/// Get best seen block.
|
||||
pub async fn best_seen_block(&self) -> Result<Option<NumberFor<B>>, oneshot::Canceled> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::BestSeenBlock(tx));
|
||||
|
||||
rx.await
|
||||
}
|
||||
|
||||
/// Get the number of sync peers.
|
||||
pub async fn num_sync_peers(&self) -> Result<u32, oneshot::Canceled> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::NumSyncPeers(tx));
|
||||
|
||||
rx.await
|
||||
}
|
||||
|
||||
/// Get the number of queued blocks.
|
||||
pub async fn num_queued_blocks(&self) -> Result<u32, oneshot::Canceled> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::NumQueuedBlocks(tx));
|
||||
|
||||
rx.await
|
||||
}
|
||||
|
||||
/// Get the number of downloaded blocks.
|
||||
pub async fn num_downloaded_blocks(&self) -> Result<usize, oneshot::Canceled> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::NumDownloadedBlocks(tx));
|
||||
|
||||
rx.await
|
||||
}
|
||||
|
||||
/// Get the number of sync requests.
|
||||
pub async fn num_sync_requests(&self) -> Result<usize, oneshot::Canceled> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::NumSyncRequests(tx));
|
||||
|
||||
rx.await
|
||||
}
|
||||
|
||||
/// Get peer information.
|
||||
pub async fn peers_info(
|
||||
&self,
|
||||
) -> Result<Vec<(PeerId, ExtendedPeerInfo<B>)>, oneshot::Canceled> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::PeersInfo(tx));
|
||||
|
||||
rx.await
|
||||
}
|
||||
|
||||
/// Notify the `SyncingEngine` that a block has been finalized.
|
||||
pub fn on_block_finalized(&self, hash: B::Hash, header: B::Header) {
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::OnBlockFinalized(hash, header));
|
||||
}
|
||||
|
||||
/// Get sync status
|
||||
@@ -63,15 +152,13 @@ impl<B: BlockT> ChainSyncInterfaceHandle<B> {
|
||||
/// Returns an error if `ChainSync` has terminated.
|
||||
pub async fn status(&self) -> Result<SyncStatus<B>, ()> {
|
||||
let (tx, rx) = oneshot::channel();
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::Status { pending_response: tx });
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::Status(tx));
|
||||
|
||||
rx.await.map_err(|_| ())
|
||||
}
|
||||
}
|
||||
|
||||
impl<B: BlockT + 'static> NetworkSyncForkRequest<B::Hash, NumberFor<B>>
|
||||
for ChainSyncInterfaceHandle<B>
|
||||
{
|
||||
impl<B: BlockT + 'static> NetworkSyncForkRequest<B::Hash, NumberFor<B>> for SyncingService<B> {
|
||||
/// Configure an explicit fork sync request.
|
||||
///
|
||||
/// Note that this function should not be used for recent blocks.
|
||||
@@ -87,7 +174,7 @@ impl<B: BlockT + 'static> NetworkSyncForkRequest<B::Hash, NumberFor<B>>
|
||||
}
|
||||
}
|
||||
|
||||
impl<B: BlockT> JustificationSyncLink<B> for ChainSyncInterfaceHandle<B> {
|
||||
impl<B: BlockT> JustificationSyncLink<B> for SyncingService<B> {
|
||||
/// Request a justification for the given block from the network.
|
||||
///
|
||||
/// On success, the justification will be passed to the import queue that was part at
|
||||
@@ -101,7 +188,18 @@ impl<B: BlockT> JustificationSyncLink<B> for ChainSyncInterfaceHandle<B> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<B: BlockT> Link<B> for ChainSyncInterfaceHandle<B> {
|
||||
#[async_trait::async_trait]
|
||||
impl<B: BlockT> SyncStatusProvider<B> for SyncingService<B> {
|
||||
/// Get high-level view of the syncing status.
|
||||
async fn status(&self) -> Result<SyncStatus<B>, ()> {
|
||||
let (rtx, rrx) = oneshot::channel();
|
||||
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::Status(rtx));
|
||||
rrx.await.map_err(|_| ())
|
||||
}
|
||||
}
|
||||
|
||||
impl<B: BlockT> Link<B> for SyncingService<B> {
|
||||
fn blocks_processed(
|
||||
&mut self,
|
||||
imported: usize,
|
||||
@@ -129,3 +227,32 @@ impl<B: BlockT> Link<B> for ChainSyncInterfaceHandle<B> {
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::RequestJustification(*hash, number));
|
||||
}
|
||||
}
|
||||
|
||||
impl<B: BlockT> SyncEventStream for SyncingService<B> {
|
||||
/// Get syncing event stream.
|
||||
fn event_stream(&self, name: &'static str) -> Pin<Box<dyn Stream<Item = SyncEvent> + Send>> {
|
||||
let (tx, rx) = tracing_unbounded(name, 100_000);
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::EventStream(tx));
|
||||
Box::pin(rx)
|
||||
}
|
||||
}
|
||||
|
||||
impl<B: BlockT> NetworkBlock<B::Hash, NumberFor<B>> for SyncingService<B> {
|
||||
fn announce_block(&self, hash: B::Hash, data: Option<Vec<u8>>) {
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::AnnounceBlock(hash, data));
|
||||
}
|
||||
|
||||
fn new_best_block_imported(&self, hash: B::Hash, number: NumberFor<B>) {
|
||||
let _ = self.tx.unbounded_send(ToServiceCommand::NewBestBlockImported(hash, number));
|
||||
}
|
||||
}
|
||||
|
||||
impl<B: BlockT> sp_consensus::SyncOracle for SyncingService<B> {
|
||||
fn is_major_syncing(&self) -> bool {
|
||||
self.is_major_syncing.load(Ordering::Relaxed)
|
||||
}
|
||||
|
||||
fn is_offline(&self) -> bool {
|
||||
self.num_connected.load(Ordering::Relaxed) == 0
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,7 +23,10 @@ use sc_network_common::{
|
||||
config::MultiaddrWithPeerId,
|
||||
protocol::ProtocolName,
|
||||
request_responses::{IfDisconnected, RequestFailure},
|
||||
service::{NetworkPeers, NetworkRequest, NetworkSyncForkRequest},
|
||||
service::{
|
||||
NetworkNotification, NetworkPeers, NetworkRequest, NetworkSyncForkRequest,
|
||||
NotificationSender, NotificationSenderError,
|
||||
},
|
||||
};
|
||||
use sc_peerset::ReputationChange;
|
||||
use sp_runtime::traits::{Block as BlockT, NumberFor};
|
||||
@@ -125,4 +128,14 @@ mockall::mock! {
|
||||
connect: IfDisconnected,
|
||||
);
|
||||
}
|
||||
|
||||
impl NetworkNotification for Network {
|
||||
fn write_notification(&self, target: PeerId, protocol: ProtocolName, message: Vec<u8>);
|
||||
fn notification_sender(
|
||||
&self,
|
||||
target: PeerId,
|
||||
protocol: ProtocolName,
|
||||
) -> Result<Box<dyn NotificationSender>, NotificationSenderError>;
|
||||
fn set_notification_handshake(&self, protocol: ProtocolName, handshake: Vec<u8>);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,16 +21,16 @@ use libp2p::PeerId;
|
||||
use sc_network_common::{
|
||||
protocol::ProtocolName,
|
||||
request_responses::{IfDisconnected, RequestFailure},
|
||||
service::{NetworkPeers, NetworkRequest},
|
||||
service::{NetworkNotification, NetworkPeers, NetworkRequest},
|
||||
};
|
||||
use sc_peerset::ReputationChange;
|
||||
use sc_utils::mpsc::{tracing_unbounded, TracingUnboundedReceiver, TracingUnboundedSender};
|
||||
use std::sync::Arc;
|
||||
|
||||
/// Network-related services required by `sc-network-sync`
|
||||
pub trait Network: NetworkPeers + NetworkRequest {}
|
||||
pub trait Network: NetworkPeers + NetworkRequest + NetworkNotification {}
|
||||
|
||||
impl<T> Network for T where T: NetworkPeers + NetworkRequest {}
|
||||
impl<T> Network for T where T: NetworkPeers + NetworkRequest + NetworkNotification {}
|
||||
|
||||
/// Network service provider for `ChainSync`
|
||||
///
|
||||
@@ -56,6 +56,12 @@ pub enum ToServiceCommand {
|
||||
oneshot::Sender<Result<Vec<u8>, RequestFailure>>,
|
||||
IfDisconnected,
|
||||
),
|
||||
|
||||
/// Call `NetworkNotification::write_notification()`
|
||||
WriteNotification(PeerId, ProtocolName, Vec<u8>),
|
||||
|
||||
/// Call `NetworkNotification::set_notification_handshake()`
|
||||
SetNotificationHandshake(ProtocolName, Vec<u8>),
|
||||
}
|
||||
|
||||
/// Handle that is (temporarily) passed to `ChainSync` so it can
|
||||
@@ -94,6 +100,20 @@ impl NetworkServiceHandle {
|
||||
.tx
|
||||
.unbounded_send(ToServiceCommand::StartRequest(who, protocol, request, tx, connect));
|
||||
}
|
||||
|
||||
/// Send notification to peer
|
||||
pub fn write_notification(&self, who: PeerId, protocol: ProtocolName, message: Vec<u8>) {
|
||||
let _ = self
|
||||
.tx
|
||||
.unbounded_send(ToServiceCommand::WriteNotification(who, protocol, message));
|
||||
}
|
||||
|
||||
/// Set handshake for the notification protocol.
|
||||
pub fn set_notification_handshake(&self, protocol: ProtocolName, handshake: Vec<u8>) {
|
||||
let _ = self
|
||||
.tx
|
||||
.unbounded_send(ToServiceCommand::SetNotificationHandshake(protocol, handshake));
|
||||
}
|
||||
}
|
||||
|
||||
impl NetworkServiceProvider {
|
||||
@@ -114,6 +134,10 @@ impl NetworkServiceProvider {
|
||||
service.report_peer(peer, reputation_change),
|
||||
ToServiceCommand::StartRequest(peer, protocol, request, tx, connect) =>
|
||||
service.start_request(peer, protocol, request, tx, connect),
|
||||
ToServiceCommand::WriteNotification(peer, protocol, message) =>
|
||||
service.write_notification(peer, protocol, message),
|
||||
ToServiceCommand::SetNotificationHandshake(protocol, handshake) =>
|
||||
service.set_notification_handshake(protocol, handshake),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user