mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-19 20:25:40 +00:00
feefc34567
23dda62 Rococo <> Wococo messages relay (#1030) bcde21d Update the wasm builder to substrate master (#1029) a8318ce Make target signer optional when sending message. (#1018) f8602e1 Fix insufficient balance when send message. (#1020) d95c0a7 greedy relayer don't need message dispatch to be prepaid if dispatch is supposed to be paid at the target chain (#1016) ad5876f Update types. (#1027) 116cbbc CI: fix starting the pipeline (#1022) 7e0fadd Add temporary `canary` job (#1019) 6787091 Update types to contain dispatch_fee_payment (#1017) 03f79ad Allow Root to assume SourceAccount. (#1011) 372d019 Return dispatch_fee_payment from message details RPC (#1014) 604eb1c Relay basic single-bit message dispatch results back to the source chain (#935) bf52fff Use plain source_queue view when selecting nonces for delivery (#1010) fc5cf7d pay dispatch fee at target chain (#911) 1e35477 Bump Substrate to `286d7ce` (#1006) 7ad07b3 Add --only-mandatory-headers mode (#1004) 5351dc9 Messages relayer operating mode (#995) 9bc29a7 Rococo <> Wococo relayer balance guard (#998) bc17341 rename messages_dispatch_weight -> message_details (#996) 95be244 Bump Rococo and Wococo spec versions (#999) c35567b Move ChainWithBalances::NativeBalance -> Chain::Balance (#990) 1bfece1 Fix some nits (#988) 334ea0f Increase pause before starting relays again (#989) 7fb8248 Fix clippy in test code (#993) d60ae50 fix clippy issues (#991) 75ca813 Make sure GRANDPA shares state with RPC. (#987) da2a38a Bump Substrate (#986) 5a9862f Update submit finality proof weight formula (#981) 69df513 Flag for rejecting all outbound messages (#982) 14d0506 Add script to setup bench machine. (#984) e74e8ab Move CI from GitHub Actions to GitLab (#814) c5ca5dd Custom justification verification (#979) 643f10d Always run on-demand headers relay in complex relay (#975) a35b0ef Add JSON type definitions for Rococo<>Wococo bridge (#977) 0eb83f2 Update cargo.deny (#980) e1d1f4c Bump Rococo/Wococo spec_version (#976) deac90d increase pause before starting relays (#974) 68d6d79 Revert to use InspectCmd, bump substrate `6bef4f4` (#966) 66e1508 Avoid hashing headers twice in verify_justification (#973) a31844f Bump `environmental` dependency (#972) 2a4c29a in auto-relays keep trying to connect to nodes until connection is established (#971) 0e767b3 removed stray file (#969) b9545dc Serve multiple lanes with single complex relay instance (#964) 73419f4 Correct type error (#968) bac256f Start finality relay spec-version guards for Rococo <> Wococo finality relays (#965) bfd7037 pass source and target chain ids to account_ownership_proof (#963) 8436073 Upstream changes from Polkadot repo (#961) e58d851 Increase account endowment amount (#960) git-subtree-dir: bridges git-subtree-split: 23dda6248236b27f20d76cbedc30e189cc6f736c
278 lines
8.2 KiB
Rust
278 lines
8.2 KiB
Rust
// Copyright 2019-2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Bridges Common.
|
|
|
|
// Parity Bridges Common 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.
|
|
|
|
// Parity Bridges Common 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 Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use crate::metrics::{Metrics, MetricsAddress, MetricsParams, PrometheusError, StandaloneMetrics};
|
|
use crate::{FailedClient, MaybeConnectionError};
|
|
|
|
use async_trait::async_trait;
|
|
use std::{fmt::Debug, future::Future, net::SocketAddr, time::Duration};
|
|
use substrate_prometheus_endpoint::{init_prometheus, Registry};
|
|
|
|
/// Default pause between reconnect attempts.
|
|
pub const RECONNECT_DELAY: Duration = Duration::from_secs(10);
|
|
|
|
/// Basic blockchain client from relay perspective.
|
|
#[async_trait]
|
|
pub trait Client: 'static + Clone + Send + Sync {
|
|
/// Type of error this clients returns.
|
|
type Error: 'static + Debug + MaybeConnectionError + Send + Sync;
|
|
|
|
/// Try to reconnect to source node.
|
|
async fn reconnect(&mut self) -> Result<(), Self::Error>;
|
|
}
|
|
|
|
/// Returns generic loop that may be customized and started.
|
|
pub fn relay_loop<SC, TC>(source_client: SC, target_client: TC) -> Loop<SC, TC, ()> {
|
|
Loop {
|
|
reconnect_delay: RECONNECT_DELAY,
|
|
source_client,
|
|
target_client,
|
|
loop_metric: None,
|
|
}
|
|
}
|
|
|
|
/// Returns generic relay loop metrics that may be customized and used in one or several relay loops.
|
|
pub fn relay_metrics(prefix: Option<String>, params: MetricsParams) -> LoopMetrics<(), (), ()> {
|
|
LoopMetrics {
|
|
relay_loop: Loop {
|
|
reconnect_delay: RECONNECT_DELAY,
|
|
source_client: (),
|
|
target_client: (),
|
|
loop_metric: None,
|
|
},
|
|
address: params.address,
|
|
registry: params.registry.unwrap_or_else(|| create_metrics_registry(prefix)),
|
|
metrics_prefix: params.metrics_prefix,
|
|
loop_metric: None,
|
|
}
|
|
}
|
|
|
|
/// Generic relay loop.
|
|
pub struct Loop<SC, TC, LM> {
|
|
reconnect_delay: Duration,
|
|
source_client: SC,
|
|
target_client: TC,
|
|
loop_metric: Option<LM>,
|
|
}
|
|
|
|
/// Relay loop metrics builder.
|
|
pub struct LoopMetrics<SC, TC, LM> {
|
|
relay_loop: Loop<SC, TC, ()>,
|
|
address: Option<MetricsAddress>,
|
|
registry: Registry,
|
|
metrics_prefix: Option<String>,
|
|
loop_metric: Option<LM>,
|
|
}
|
|
|
|
impl<SC, TC, LM> Loop<SC, TC, LM> {
|
|
/// Customize delay between reconnect attempts.
|
|
pub fn reconnect_delay(mut self, reconnect_delay: Duration) -> Self {
|
|
self.reconnect_delay = reconnect_delay;
|
|
self
|
|
}
|
|
|
|
/// Start building loop metrics using given prefix.
|
|
pub fn with_metrics(self, prefix: Option<String>, params: MetricsParams) -> LoopMetrics<SC, TC, ()> {
|
|
LoopMetrics {
|
|
relay_loop: Loop {
|
|
reconnect_delay: self.reconnect_delay,
|
|
source_client: self.source_client,
|
|
target_client: self.target_client,
|
|
loop_metric: None,
|
|
},
|
|
address: params.address,
|
|
registry: params.registry.unwrap_or_else(|| create_metrics_registry(prefix)),
|
|
metrics_prefix: params.metrics_prefix,
|
|
loop_metric: None,
|
|
}
|
|
}
|
|
|
|
/// Run relay loop.
|
|
///
|
|
/// This function represents an outer loop, which in turn calls provided `run_loop` function to do
|
|
/// actual job. When `run_loop` returns, this outer loop reconnects to failed client (source,
|
|
/// target or both) and calls `run_loop` again.
|
|
pub async fn run<R, F>(mut self, loop_name: String, run_loop: R) -> Result<(), String>
|
|
where
|
|
R: 'static + Send + Fn(SC, TC, Option<LM>) -> F,
|
|
F: 'static + Send + Future<Output = Result<(), FailedClient>>,
|
|
SC: 'static + Client,
|
|
TC: 'static + Client,
|
|
LM: 'static + Send + Clone,
|
|
{
|
|
let run_loop_task = async move {
|
|
crate::initialize::initialize_loop(loop_name);
|
|
|
|
loop {
|
|
let loop_metric = self.loop_metric.clone();
|
|
let future_result = run_loop(self.source_client.clone(), self.target_client.clone(), loop_metric);
|
|
let result = future_result.await;
|
|
|
|
match result {
|
|
Ok(()) => break,
|
|
Err(failed_client) => {
|
|
reconnect_failed_client(
|
|
failed_client,
|
|
self.reconnect_delay,
|
|
&mut self.source_client,
|
|
&mut self.target_client,
|
|
)
|
|
.await
|
|
}
|
|
}
|
|
|
|
log::debug!(target: "bridge", "Restarting relay loop");
|
|
}
|
|
|
|
Ok(())
|
|
};
|
|
|
|
async_std::task::spawn(run_loop_task).await
|
|
}
|
|
}
|
|
|
|
impl<SC, TC, LM> LoopMetrics<SC, TC, LM> {
|
|
/// Add relay loop metrics.
|
|
///
|
|
/// Loop metrics will be passed to the loop callback.
|
|
pub fn loop_metric<NewLM: Metrics>(
|
|
self,
|
|
create_metric: impl FnOnce(&Registry, Option<&str>) -> Result<NewLM, PrometheusError>,
|
|
) -> Result<LoopMetrics<SC, TC, NewLM>, String> {
|
|
let loop_metric = create_metric(&self.registry, self.metrics_prefix.as_deref()).map_err(|e| e.to_string())?;
|
|
|
|
Ok(LoopMetrics {
|
|
relay_loop: self.relay_loop,
|
|
address: self.address,
|
|
registry: self.registry,
|
|
metrics_prefix: self.metrics_prefix,
|
|
loop_metric: Some(loop_metric),
|
|
})
|
|
}
|
|
|
|
/// Add standalone metrics.
|
|
pub fn standalone_metric<M: StandaloneMetrics>(
|
|
self,
|
|
create_metric: impl FnOnce(&Registry, Option<&str>) -> Result<M, PrometheusError>,
|
|
) -> Result<Self, String> {
|
|
// since standalone metrics are updating themselves, we may just ignore the fact that the same
|
|
// standalone metric is exposed by several loops && only spawn single metric
|
|
match create_metric(&self.registry, self.metrics_prefix.as_deref()) {
|
|
Ok(standalone_metrics) => standalone_metrics.spawn(),
|
|
Err(PrometheusError::AlreadyReg) => (),
|
|
Err(e) => return Err(e.to_string()),
|
|
}
|
|
|
|
Ok(self)
|
|
}
|
|
|
|
/// Convert into `MetricsParams` structure so that metrics registry may be extended later.
|
|
pub fn into_params(self) -> MetricsParams {
|
|
MetricsParams {
|
|
address: self.address,
|
|
registry: Some(self.registry),
|
|
metrics_prefix: self.metrics_prefix,
|
|
}
|
|
}
|
|
|
|
/// Expose metrics using address passed at creation.
|
|
///
|
|
/// If passed `address` is `None`, metrics are not exposed.
|
|
pub async fn expose(self) -> Result<Loop<SC, TC, LM>, String> {
|
|
if let Some(address) = self.address {
|
|
let socket_addr = SocketAddr::new(
|
|
address.host.parse().map_err(|err| {
|
|
format!(
|
|
"Invalid host {} is used to expose Prometheus metrics: {}",
|
|
address.host, err,
|
|
)
|
|
})?,
|
|
address.port,
|
|
);
|
|
|
|
let registry = self.registry;
|
|
async_std::task::spawn(async move {
|
|
let result = init_prometheus(socket_addr, registry).await;
|
|
log::trace!(
|
|
target: "bridge-metrics",
|
|
"Prometheus endpoint has exited with result: {:?}",
|
|
result,
|
|
);
|
|
});
|
|
}
|
|
|
|
Ok(Loop {
|
|
reconnect_delay: self.relay_loop.reconnect_delay,
|
|
source_client: self.relay_loop.source_client,
|
|
target_client: self.relay_loop.target_client,
|
|
loop_metric: self.loop_metric,
|
|
})
|
|
}
|
|
}
|
|
|
|
/// Deal with the client who has returned connection error.
|
|
pub async fn reconnect_failed_client(
|
|
failed_client: FailedClient,
|
|
reconnect_delay: Duration,
|
|
source_client: &mut impl Client,
|
|
target_client: &mut impl Client,
|
|
) {
|
|
loop {
|
|
async_std::task::sleep(reconnect_delay).await;
|
|
if failed_client == FailedClient::Both || failed_client == FailedClient::Source {
|
|
match source_client.reconnect().await {
|
|
Ok(()) => (),
|
|
Err(error) => {
|
|
log::warn!(
|
|
target: "bridge",
|
|
"Failed to reconnect to source client. Going to retry in {}s: {:?}",
|
|
reconnect_delay.as_secs(),
|
|
error,
|
|
);
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
if failed_client == FailedClient::Both || failed_client == FailedClient::Target {
|
|
match target_client.reconnect().await {
|
|
Ok(()) => (),
|
|
Err(error) => {
|
|
log::warn!(
|
|
target: "bridge",
|
|
"Failed to reconnect to target client. Going to retry in {}s: {:?}",
|
|
reconnect_delay.as_secs(),
|
|
error,
|
|
);
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
/// Create new registry with global metrics.
|
|
fn create_metrics_registry(prefix: Option<String>) -> Registry {
|
|
match prefix {
|
|
Some(prefix) => {
|
|
assert!(!prefix.is_empty(), "Metrics prefix can not be empty");
|
|
Registry::new_custom(Some(prefix), None).expect("only fails if prefix is empty; prefix is not empty; qed")
|
|
}
|
|
None => Registry::new(),
|
|
}
|
|
}
|