mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 19:38:02 +00:00
198 lines
6.0 KiB
Rust
198 lines
6.0 KiB
Rust
// Copyright 2018-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://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}};
|
|
|
|
use sc_client_api::{
|
|
blockchain::HeaderBackend,
|
|
light::{Fetcher, RemoteCallRequest}
|
|
};
|
|
use sp_core::{H256, Blake2Hasher, Hasher};
|
|
use sp_runtime::{
|
|
generic::BlockId,
|
|
traits::{Block as BlockT, BlockIdTo, ProvideRuntimeApi},
|
|
transaction_validity::TransactionValidity,
|
|
};
|
|
use sp_transaction_pool::runtime_api::TaggedTransactionQueue;
|
|
|
|
use crate::error::{self, Error};
|
|
|
|
/// The transaction pool logic for full client.
|
|
pub struct FullChainApi<Client, Block> {
|
|
client: Arc<Client>,
|
|
pool: ThreadPool,
|
|
_marker: PhantomData<Block>,
|
|
}
|
|
|
|
impl<Client, Block> FullChainApi<Client, Block> where
|
|
Block: BlockT,
|
|
Client: ProvideRuntimeApi + BlockIdTo<Block> {
|
|
/// Create new transaction pool logic.
|
|
pub fn new(client: Arc<Client>) -> Self {
|
|
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()
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<Client, Block> sc_transaction_graph::ChainApi for FullChainApi<Client, Block> where
|
|
Block: BlockT<Hash = H256>,
|
|
Client: ProvideRuntimeApi + BlockIdTo<Block> + 'static + Send + Sync,
|
|
Client::Api: TaggedTransactionQueue<Block>,
|
|
sp_api::ApiErrorFor<Client, Block>: Send,
|
|
{
|
|
type Block = Block;
|
|
type Hash = H256;
|
|
type Error = error::Error;
|
|
type ValidationFuture = Pin<Box<dyn Future<Output = error::Result<TransactionValidity>> + Send>>;
|
|
|
|
fn validate_transaction(
|
|
&self,
|
|
at: &BlockId<Self::Block>,
|
|
uxt: sc_transaction_graph::ExtrinsicFor<Self>,
|
|
) -> Self::ValidationFuture {
|
|
let (tx, rx) = oneshot::channel();
|
|
let client = self.client.clone();
|
|
let at = at.clone();
|
|
|
|
self.pool.spawn_ok(async move {
|
|
let res = client.runtime_api().validate_transaction(&at, uxt)
|
|
.map_err(|e| Error::RuntimeApi(format!("{:?}", e)));
|
|
if let Err(e) = tx.send(res) {
|
|
log::warn!("Unable to send a validate transaction result: {:?}", e);
|
|
}
|
|
});
|
|
|
|
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>) -> (Self::Hash, usize) {
|
|
ex.using_encoded(|x| {
|
|
(Blake2Hasher::hash(x), x.len())
|
|
})
|
|
}
|
|
}
|
|
|
|
/// 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> where
|
|
Block: BlockT,
|
|
Client: HeaderBackend<Block>,
|
|
F: Fetcher<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<Hash=H256>,
|
|
Client: HeaderBackend<Block> + 'static,
|
|
F: Fetcher<Block> + 'static,
|
|
{
|
|
type Block = Block;
|
|
type Hash = H256;
|
|
type Error = error::Error;
|
|
type ValidationFuture = Box<dyn Future<Output = error::Result<TransactionValidity>> + Send + Unpin>;
|
|
|
|
fn validate_transaction(
|
|
&self,
|
|
at: &BlockId<Self::Block>,
|
|
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: 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>) -> (Self::Hash, usize) {
|
|
ex.using_encoded(|x| {
|
|
(Blake2Hasher::hash(x), x.len())
|
|
})
|
|
}
|
|
}
|