mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-24 14:45:42 +00:00
enable disputes (#3478)
* initial integration and migration code * fix tests * fix counting test * assume the current version on missing file * use SelectRelayChain * remove duplicate metric * Update node/service/src/lib.rs Co-authored-by: Robert Habermeier <rphmeier@gmail.com> * remove ApprovalCheckingVotingRule * address my concern * never mode for StagnantCheckInterval * REVERTME: some logs * w00t * it's ugly but it works * Revert "REVERTME: some logs" This reverts commit e210505a2e83e31c381394924500b69277bb042e. * it's handle, not handler * fix a few typos Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
This commit is contained in:
@@ -73,6 +73,7 @@ use futures::{
|
||||
Future, FutureExt, StreamExt,
|
||||
};
|
||||
use lru::LruCache;
|
||||
use parking_lot::RwLock;
|
||||
|
||||
use polkadot_primitives::v1::{Block, BlockId,BlockNumber, Hash, ParachainHost};
|
||||
use client::{BlockImportNotification, BlockchainEvents, FinalityNotification};
|
||||
@@ -159,13 +160,24 @@ impl<Client> HeadSupportsParachains for Arc<Client> where
|
||||
}
|
||||
|
||||
|
||||
/// A handler used to communicate with the [`Overseer`].
|
||||
/// A handle used to communicate with the [`Overseer`].
|
||||
///
|
||||
/// [`Overseer`]: struct.Overseer.html
|
||||
#[derive(Clone)]
|
||||
pub struct Handle(pub OverseerHandle);
|
||||
pub enum Handle {
|
||||
/// Used only at initialization to break the cyclic dependency.
|
||||
// TODO: refactor in https://github.com/paritytech/polkadot/issues/3427
|
||||
Disconnected(Arc<RwLock<Option<OverseerHandle>>>),
|
||||
/// A handle to the overseer.
|
||||
Connected(OverseerHandle),
|
||||
}
|
||||
|
||||
impl Handle {
|
||||
/// Create a new disconnected [`Handle`].
|
||||
pub fn new_disconnected() -> Self {
|
||||
Self::Disconnected(Arc::new(RwLock::new(None)))
|
||||
}
|
||||
|
||||
/// Inform the `Overseer` that that some block was imported.
|
||||
pub async fn block_imported(&mut self, block: BlockInfo) {
|
||||
self.send_and_log_error(Event::BlockImported(block)).await
|
||||
@@ -207,25 +219,59 @@ impl Handle {
|
||||
|
||||
/// Most basic operation, to stop a server.
|
||||
async fn send_and_log_error(&mut self, event: Event) {
|
||||
if self.0.send(event).await.is_err() {
|
||||
tracing::info!(target: LOG_TARGET, "Failed to send an event to Overseer");
|
||||
self.try_connect();
|
||||
if let Self::Connected(ref mut handle) = self {
|
||||
if handle.send(event).await.is_err() {
|
||||
tracing::info!(target: LOG_TARGET, "Failed to send an event to Overseer");
|
||||
}
|
||||
} else {
|
||||
tracing::warn!(target: LOG_TARGET, "Using a disconnected Handle to send to Overseer");
|
||||
}
|
||||
}
|
||||
|
||||
/// Whether the overseer handler is connected to an overseer.
|
||||
pub fn is_connected(&self) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
/// Whether the handler is disconnected.
|
||||
/// Whether the handle is disconnected.
|
||||
pub fn is_disconnected(&self) -> bool {
|
||||
false
|
||||
match self {
|
||||
Self::Disconnected(ref x) => x.read().is_none(),
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
||||
/// Using this handler, connect another handler to the same
|
||||
/// overseer, if any.
|
||||
pub fn connect_other(&self, other: &mut Handle) {
|
||||
*other = self.clone();
|
||||
/// Connect this handle and all disconnected clones of it to the overseer.
|
||||
pub fn connect_to_overseer(&mut self, handle: OverseerHandle) {
|
||||
match self {
|
||||
Self::Disconnected(ref mut x) => {
|
||||
let mut maybe_handle = x.write();
|
||||
if maybe_handle.is_none() {
|
||||
tracing::info!(target: LOG_TARGET, "🖇️ Connecting all Handles to Overseer");
|
||||
*maybe_handle = Some(handle);
|
||||
} else {
|
||||
tracing::warn!(
|
||||
target: LOG_TARGET,
|
||||
"Attempting to connect a clone of a connected Handle",
|
||||
);
|
||||
}
|
||||
},
|
||||
_ => {
|
||||
tracing::warn!(
|
||||
target: LOG_TARGET,
|
||||
"Attempting to connect an already connected Handle",
|
||||
);
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
/// Try upgrading from `Self::Disconnected` to `Self::Connected` state
|
||||
/// after calling `connect_to_overseer` on `self` or a clone of `self`.
|
||||
fn try_connect(&mut self) {
|
||||
if let Self::Disconnected(ref mut x) = self {
|
||||
let guard = x.write();
|
||||
if let Some(ref h) = *guard {
|
||||
let handle = h.clone();
|
||||
drop(guard);
|
||||
*self = Self::Connected(handle);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -301,7 +347,7 @@ pub enum ExternalRequest {
|
||||
/// import and finality notifications into the [`OverseerHandle`].
|
||||
pub async fn forward_events<P: BlockchainEvents<Block>>(
|
||||
client: Arc<P>,
|
||||
mut handler: Handle,
|
||||
mut handle: Handle,
|
||||
) {
|
||||
let mut finality = client.finality_notification_stream();
|
||||
let mut imports = client.import_notification_stream();
|
||||
@@ -311,7 +357,7 @@ pub async fn forward_events<P: BlockchainEvents<Block>>(
|
||||
f = finality.next() => {
|
||||
match f {
|
||||
Some(block) => {
|
||||
handler.block_finalized(block.into()).await;
|
||||
handle.block_finalized(block.into()).await;
|
||||
}
|
||||
None => break,
|
||||
}
|
||||
@@ -319,7 +365,7 @@ pub async fn forward_events<P: BlockchainEvents<Block>>(
|
||||
i = imports.next() => {
|
||||
match i {
|
||||
Some(block) => {
|
||||
handler.block_imported(block.into()).await;
|
||||
handle.block_imported(block.into()).await;
|
||||
}
|
||||
None => break,
|
||||
}
|
||||
@@ -338,7 +384,6 @@ pub async fn forward_events<P: BlockchainEvents<Block>>(
|
||||
network=NetworkBridgeEvent<protocol_v1::ValidationProtocol>,
|
||||
)]
|
||||
pub struct Overseer<SupportsParachains> {
|
||||
|
||||
#[subsystem(no_dispatch, CandidateValidationMessage)]
|
||||
candidate_validation: CandidateValidation,
|
||||
|
||||
@@ -390,16 +435,16 @@ pub struct Overseer<SupportsParachains> {
|
||||
#[subsystem(no_dispatch, GossipSupportMessage)]
|
||||
gossip_support: GossipSupport,
|
||||
|
||||
#[subsystem(no_dispatch, wip, DisputeCoordinatorMessage)]
|
||||
dipute_coordinator: DisputeCoordinator,
|
||||
#[subsystem(no_dispatch, DisputeCoordinatorMessage)]
|
||||
dispute_coordinator: DisputeCoordinator,
|
||||
|
||||
#[subsystem(no_dispatch, wip, DisputeParticipationMessage)]
|
||||
#[subsystem(no_dispatch, DisputeParticipationMessage)]
|
||||
dispute_participation: DisputeParticipation,
|
||||
|
||||
#[subsystem(no_dispatch, wip, DisputeDistributionMessage)]
|
||||
dipute_distribution: DisputeDistribution,
|
||||
#[subsystem(no_dispatch, DisputeDistributionMessage)]
|
||||
dispute_distribution: DisputeDistribution,
|
||||
|
||||
#[subsystem(no_dispatch, wip, ChainSelectionMessage)]
|
||||
#[subsystem(no_dispatch, ChainSelectionMessage)]
|
||||
chain_selection: ChainSelection,
|
||||
|
||||
/// External listeners waiting for a hash to be in the active-leave set.
|
||||
@@ -436,7 +481,7 @@ where
|
||||
/// This returns the overseer along with an [`OverseerHandle`] which can
|
||||
/// be used to send messages from external parts of the codebase.
|
||||
///
|
||||
/// The [`OverseerHandler`] returned from this function is connected to
|
||||
/// The [`OverseerHandle`] returned from this function is connected to
|
||||
/// the returned [`Overseer`].
|
||||
///
|
||||
/// ```text
|
||||
@@ -527,7 +572,7 @@ where
|
||||
/// let spawner = sp_core::testing::TaskExecutor::new();
|
||||
/// let all_subsystems = AllSubsystems::<()>::dummy()
|
||||
/// .replace_candidate_validation(ValidationSubsystem);
|
||||
/// let (overseer, _handler) = Overseer::new(
|
||||
/// let (overseer, _handle) = Overseer::new(
|
||||
/// vec![],
|
||||
/// all_subsystems,
|
||||
/// None,
|
||||
@@ -549,13 +594,13 @@ where
|
||||
/// # });
|
||||
/// # }
|
||||
/// ```
|
||||
pub fn new<CV, CB, SD, AD, AR, BS, BD, P, RA, AS, NB, CA, CG, CP, ApD, ApV, GS>(
|
||||
pub fn new<CV, CB, SD, AD, AR, BS, BD, P, RA, AS, NB, CA, CG, CP, ApD, ApV, GS, DC, DP, DD, CS>(
|
||||
leaves: impl IntoIterator<Item = BlockInfo>,
|
||||
all_subsystems: AllSubsystems<CV, CB, SD, AD, AR, BS, BD, P, RA, AS, NB, CA, CG, CP, ApD, ApV, GS>,
|
||||
all_subsystems: AllSubsystems<CV, CB, SD, AD, AR, BS, BD, P, RA, AS, NB, CA, CG, CP, ApD, ApV, GS, DC, DP, DD, CS>,
|
||||
prometheus_registry: Option<&prometheus::Registry>,
|
||||
supports_parachains: SupportsParachains,
|
||||
s: S,
|
||||
) -> SubsystemResult<(Self, Handle)>
|
||||
) -> SubsystemResult<(Self, OverseerHandle)>
|
||||
where
|
||||
CV: Subsystem<OverseerSubsystemContext<CandidateValidationMessage>, SubsystemError> + Send,
|
||||
CB: Subsystem<OverseerSubsystemContext<CandidateBackingMessage>, SubsystemError> + Send,
|
||||
@@ -574,11 +619,15 @@ where
|
||||
ApD: Subsystem<OverseerSubsystemContext<ApprovalDistributionMessage>, SubsystemError> + Send,
|
||||
ApV: Subsystem<OverseerSubsystemContext<ApprovalVotingMessage>, SubsystemError> + Send,
|
||||
GS: Subsystem<OverseerSubsystemContext<GossipSupportMessage>, SubsystemError> + Send,
|
||||
DC: Subsystem<OverseerSubsystemContext<DisputeCoordinatorMessage>, SubsystemError> + Send,
|
||||
DP: Subsystem<OverseerSubsystemContext<DisputeParticipationMessage>, SubsystemError> + Send,
|
||||
DD: Subsystem<OverseerSubsystemContext<DisputeDistributionMessage>, SubsystemError> + Send,
|
||||
CS: Subsystem<OverseerSubsystemContext<ChainSelectionMessage>, SubsystemError> + Send,
|
||||
S: SpawnNamed,
|
||||
{
|
||||
let metrics: Metrics = <Metrics as MetricsTrait>::register(prometheus_registry)?;
|
||||
|
||||
let (mut overseer, handler) = Self::builder()
|
||||
let (mut overseer, handle) = Self::builder()
|
||||
.candidate_validation(all_subsystems.candidate_validation)
|
||||
.candidate_backing(all_subsystems.candidate_backing)
|
||||
.statement_distribution(all_subsystems.statement_distribution)
|
||||
@@ -596,6 +645,10 @@ where
|
||||
.approval_distribution(all_subsystems.approval_distribution)
|
||||
.approval_voting(all_subsystems.approval_voting)
|
||||
.gossip_support(all_subsystems.gossip_support)
|
||||
.dispute_coordinator(all_subsystems.dispute_coordinator)
|
||||
.dispute_participation(all_subsystems.dispute_participation)
|
||||
.dispute_distribution(all_subsystems.dispute_distribution)
|
||||
.chain_selection(all_subsystems.chain_selection)
|
||||
.leaves(Vec::from_iter(
|
||||
leaves.into_iter().map(|BlockInfo { hash, parent_hash: _, number }| (hash, number))
|
||||
))
|
||||
@@ -647,7 +700,7 @@ where
|
||||
overseer.spawner().spawn("metrics_metronome", Box::pin(metronome));
|
||||
}
|
||||
|
||||
Ok((overseer, Handle(handler)))
|
||||
Ok((overseer, handle))
|
||||
}
|
||||
|
||||
/// Stop the overseer.
|
||||
|
||||
Reference in New Issue
Block a user