mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 11:18:01 +00:00
046fda914a
* Improve overall performance * Clean up code Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Remove needless :: Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Remove needless :: Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
335 lines
10 KiB
Rust
335 lines
10 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
|
|
|
// This program 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.
|
|
|
|
// This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
//! Chain api required for the transaction pool.
|
|
|
|
use std::{marker::PhantomData, pin::Pin, sync::Arc};
|
|
use codec::{Decode, Encode};
|
|
use futures::{
|
|
channel::oneshot, executor::{ThreadPool, ThreadPoolBuilder}, future::{Future, FutureExt, ready, Ready},
|
|
};
|
|
|
|
use sc_client_api::{
|
|
blockchain::HeaderBackend, light::{Fetcher, RemoteCallRequest, RemoteBodyRequest}, BlockBackend,
|
|
};
|
|
use sp_runtime::{
|
|
generic::BlockId, traits::{self, Block as BlockT, BlockIdTo, Header as HeaderT, Hash as HashT},
|
|
transaction_validity::{TransactionValidity, TransactionSource},
|
|
};
|
|
use sp_transaction_pool::runtime_api::TaggedTransactionQueue;
|
|
use sp_api::{ProvideRuntimeApi, ApiExt};
|
|
use prometheus_endpoint::Registry as PrometheusRegistry;
|
|
|
|
use crate::{metrics::{ApiMetrics, ApiMetricsExt}, error::{self, Error}};
|
|
|
|
/// The transaction pool logic for full client.
|
|
pub struct FullChainApi<Client, Block> {
|
|
client: Arc<Client>,
|
|
pool: ThreadPool,
|
|
_marker: PhantomData<Block>,
|
|
metrics: Option<Arc<ApiMetrics>>,
|
|
}
|
|
|
|
impl<Client, Block> FullChainApi<Client, Block> {
|
|
/// Create new transaction pool logic.
|
|
pub fn new(
|
|
client: Arc<Client>,
|
|
prometheus: Option<&PrometheusRegistry>,
|
|
) -> Self {
|
|
let metrics = prometheus.map(ApiMetrics::register).and_then(|r| {
|
|
match r {
|
|
Err(err) => {
|
|
log::warn!(
|
|
target: "txpool",
|
|
"Failed to register transaction pool api prometheus metrics: {:?}",
|
|
err,
|
|
);
|
|
None
|
|
},
|
|
Ok(api) => Some(Arc::new(api))
|
|
}
|
|
});
|
|
|
|
FullChainApi {
|
|
client,
|
|
pool: ThreadPoolBuilder::new()
|
|
.pool_size(2)
|
|
.name_prefix("txpool-verifier")
|
|
.create()
|
|
.expect("Failed to spawn verifier threads, that are critical for node operation."),
|
|
_marker: Default::default(),
|
|
metrics,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<Client, Block> sc_transaction_graph::ChainApi for FullChainApi<Client, Block>
|
|
where
|
|
Block: BlockT,
|
|
Client: ProvideRuntimeApi<Block> + BlockBackend<Block> + BlockIdTo<Block>,
|
|
Client: Send + Sync + 'static,
|
|
Client::Api: TaggedTransactionQueue<Block>,
|
|
sp_api::ApiErrorFor<Client, Block>: Send + std::fmt::Display,
|
|
{
|
|
type Block = Block;
|
|
type Error = error::Error;
|
|
type ValidationFuture = Pin<
|
|
Box<dyn Future<Output = error::Result<TransactionValidity>> + Send>
|
|
>;
|
|
type BodyFuture = Ready<error::Result<Option<Vec<<Self::Block as BlockT>::Extrinsic>>>>;
|
|
|
|
fn block_body(&self, id: &BlockId<Self::Block>) -> Self::BodyFuture {
|
|
ready(self.client.block_body(&id).map_err(|e| error::Error::from(e)))
|
|
}
|
|
|
|
fn validate_transaction(
|
|
&self,
|
|
at: &BlockId<Self::Block>,
|
|
source: TransactionSource,
|
|
uxt: sc_transaction_graph::ExtrinsicFor<Self>,
|
|
) -> Self::ValidationFuture {
|
|
let (tx, rx) = oneshot::channel();
|
|
let client = self.client.clone();
|
|
let at = at.clone();
|
|
|
|
let metrics = self.metrics.clone();
|
|
metrics.report(|m| m.validations_scheduled.inc());
|
|
|
|
self.pool.spawn_ok(futures_diagnose::diagnose(
|
|
"validate-transaction",
|
|
async move {
|
|
let res = validate_transaction_blocking(&*client, &at, source, uxt);
|
|
if let Err(e) = tx.send(res) {
|
|
log::warn!("Unable to send a validate transaction result: {:?}", e);
|
|
}
|
|
metrics.report(|m| m.validations_finished.inc());
|
|
},
|
|
));
|
|
|
|
Box::pin(async move {
|
|
match rx.await {
|
|
Ok(r) => r,
|
|
Err(_) => Err(Error::RuntimeApi("Validation was canceled".into())),
|
|
}
|
|
})
|
|
}
|
|
|
|
fn block_id_to_number(
|
|
&self,
|
|
at: &BlockId<Self::Block>,
|
|
) -> error::Result<Option<sc_transaction_graph::NumberFor<Self>>> {
|
|
self.client.to_number(at).map_err(|e| Error::BlockIdConversion(format!("{:?}", e)))
|
|
}
|
|
|
|
fn block_id_to_hash(
|
|
&self,
|
|
at: &BlockId<Self::Block>,
|
|
) -> error::Result<Option<sc_transaction_graph::BlockHash<Self>>> {
|
|
self.client.to_hash(at).map_err(|e| Error::BlockIdConversion(format!("{:?}", e)))
|
|
}
|
|
|
|
fn hash_and_length(
|
|
&self,
|
|
ex: &sc_transaction_graph::ExtrinsicFor<Self>,
|
|
) -> (sc_transaction_graph::ExtrinsicHash<Self>, usize) {
|
|
ex.using_encoded(|x| {
|
|
(<traits::HashFor::<Block> as traits::Hash>::hash(x), x.len())
|
|
})
|
|
}
|
|
}
|
|
|
|
/// Helper function to validate a transaction using a full chain API.
|
|
/// This method will call into the runtime to perform the validation.
|
|
fn validate_transaction_blocking<Client, Block>(
|
|
client: &Client,
|
|
at: &BlockId<Block>,
|
|
source: TransactionSource,
|
|
uxt: sc_transaction_graph::ExtrinsicFor<FullChainApi<Client, Block>>,
|
|
) -> error::Result<TransactionValidity>
|
|
where
|
|
Block: BlockT,
|
|
Client: ProvideRuntimeApi<Block> + BlockBackend<Block> + BlockIdTo<Block>,
|
|
Client: Send + Sync + 'static,
|
|
Client::Api: TaggedTransactionQueue<Block>,
|
|
sp_api::ApiErrorFor<Client, Block>: Send + std::fmt::Display,
|
|
{
|
|
sp_tracing::enter_span!("validate_transaction");
|
|
let runtime_api = client.runtime_api();
|
|
let has_v2 = sp_tracing::tracing_span! { "check_version";
|
|
runtime_api
|
|
.has_api_with::<dyn TaggedTransactionQueue<Block, Error=()>, _>(&at, |v| v >= 2)
|
|
.unwrap_or_default()
|
|
};
|
|
|
|
sp_tracing::enter_span!("runtime::validate_transaction");
|
|
let res = if has_v2 {
|
|
runtime_api.validate_transaction(&at, source, uxt)
|
|
} else {
|
|
#[allow(deprecated)] // old validate_transaction
|
|
runtime_api.validate_transaction_before_version_2(&at, uxt)
|
|
};
|
|
|
|
res.map_err(|e| Error::RuntimeApi(e.to_string()))
|
|
}
|
|
|
|
impl<Client, Block> FullChainApi<Client, Block>
|
|
where
|
|
Block: BlockT,
|
|
Client: ProvideRuntimeApi<Block> + BlockBackend<Block> + BlockIdTo<Block>,
|
|
Client: Send + Sync + 'static,
|
|
Client::Api: TaggedTransactionQueue<Block>,
|
|
sp_api::ApiErrorFor<Client, Block>: Send + std::fmt::Display,
|
|
{
|
|
/// Validates a transaction by calling into the runtime, same as
|
|
/// `validate_transaction` but blocks the current thread when performing
|
|
/// validation. Only implemented for `FullChainApi` since we can call into
|
|
/// the runtime locally.
|
|
pub fn validate_transaction_blocking(
|
|
&self,
|
|
at: &BlockId<Block>,
|
|
source: TransactionSource,
|
|
uxt: sc_transaction_graph::ExtrinsicFor<Self>,
|
|
) -> error::Result<TransactionValidity> {
|
|
validate_transaction_blocking(&*self.client, at, source, uxt)
|
|
}
|
|
}
|
|
|
|
/// The transaction pool logic for light client.
|
|
pub struct LightChainApi<Client, F, Block> {
|
|
client: Arc<Client>,
|
|
fetcher: Arc<F>,
|
|
_phantom: PhantomData<Block>,
|
|
}
|
|
|
|
impl<Client, F, Block> LightChainApi<Client, F, Block> {
|
|
/// Create new transaction pool logic.
|
|
pub fn new(client: Arc<Client>, fetcher: Arc<F>) -> Self {
|
|
LightChainApi {
|
|
client,
|
|
fetcher,
|
|
_phantom: Default::default(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<Client, F, Block> sc_transaction_graph::ChainApi for
|
|
LightChainApi<Client, F, Block> where
|
|
Block: BlockT,
|
|
Client: HeaderBackend<Block> + 'static,
|
|
F: Fetcher<Block> + 'static,
|
|
{
|
|
type Block = Block;
|
|
type Error = error::Error;
|
|
type ValidationFuture = Box<
|
|
dyn Future<Output = error::Result<TransactionValidity>> + Send + Unpin
|
|
>;
|
|
type BodyFuture = Pin<
|
|
Box<
|
|
dyn Future<Output = error::Result<Option<Vec<<Self::Block as BlockT>::Extrinsic>>>>
|
|
+ Send
|
|
>
|
|
>;
|
|
|
|
fn validate_transaction(
|
|
&self,
|
|
at: &BlockId<Self::Block>,
|
|
source: TransactionSource,
|
|
uxt: sc_transaction_graph::ExtrinsicFor<Self>,
|
|
) -> Self::ValidationFuture {
|
|
let header_hash = self.client.expect_block_hash_from_id(at);
|
|
let header_and_hash = header_hash
|
|
.and_then(|header_hash| self.client.expect_header(BlockId::Hash(header_hash))
|
|
.map(|header| (header_hash, header)));
|
|
let (block, header) = match header_and_hash {
|
|
Ok((header_hash, header)) => (header_hash, header),
|
|
Err(err) => return Box::new(ready(Err(err.into()))),
|
|
};
|
|
let remote_validation_request = self.fetcher.remote_call(RemoteCallRequest {
|
|
block,
|
|
header,
|
|
method: "TaggedTransactionQueue_validate_transaction".into(),
|
|
call_data: (source, uxt).encode(),
|
|
retry_count: None,
|
|
});
|
|
let remote_validation_request = remote_validation_request.then(move |result| {
|
|
let result: error::Result<TransactionValidity> = result
|
|
.map_err(Into::into)
|
|
.and_then(|result| Decode::decode(&mut &result[..])
|
|
.map_err(|e| Error::RuntimeApi(
|
|
format!("Error decoding tx validation result: {:?}", e)
|
|
))
|
|
);
|
|
ready(result)
|
|
});
|
|
|
|
Box::new(remote_validation_request)
|
|
}
|
|
|
|
fn block_id_to_number(
|
|
&self,
|
|
at: &BlockId<Self::Block>,
|
|
) -> error::Result<Option<sc_transaction_graph::NumberFor<Self>>> {
|
|
Ok(self.client.block_number_from_id(at)?)
|
|
}
|
|
|
|
fn block_id_to_hash(
|
|
&self,
|
|
at: &BlockId<Self::Block>,
|
|
) -> error::Result<Option<sc_transaction_graph::BlockHash<Self>>> {
|
|
Ok(self.client.block_hash_from_id(at)?)
|
|
}
|
|
|
|
fn hash_and_length(
|
|
&self,
|
|
ex: &sc_transaction_graph::ExtrinsicFor<Self>,
|
|
) -> (sc_transaction_graph::ExtrinsicHash<Self>, usize) {
|
|
ex.using_encoded(|x| {
|
|
(<<Block::Header as HeaderT>::Hashing as HashT>::hash(x), x.len())
|
|
})
|
|
}
|
|
|
|
fn block_body(&self, id: &BlockId<Self::Block>) -> Self::BodyFuture {
|
|
let header = self.client.header(*id)
|
|
.and_then(|h| h.ok_or_else(|| sp_blockchain::Error::UnknownBlock(format!("{}", id))));
|
|
let header = match header {
|
|
Ok(header) => header,
|
|
Err(err) => {
|
|
log::warn!(target: "txpool", "Failed to query header: {:?}", err);
|
|
return Box::pin(ready(Ok(None)));
|
|
}
|
|
};
|
|
|
|
let fetcher = self.fetcher.clone();
|
|
async move {
|
|
let transactions = fetcher.remote_body({
|
|
RemoteBodyRequest {
|
|
header,
|
|
retry_count: None,
|
|
}
|
|
})
|
|
.await
|
|
.unwrap_or_else(|e| {
|
|
log::warn!(target: "txpool", "Failed to fetch block body: {:?}", e);
|
|
Vec::new()
|
|
});
|
|
|
|
Ok(Some(transactions))
|
|
}.boxed()
|
|
}
|
|
}
|