2016-07-19 09:21:41 +02:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity 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 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. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-08-18 15:01:24 +02:00
|
|
|
use std::collections::BTreeMap;
|
2016-08-03 18:05:17 +02:00
|
|
|
use util::{U256, Address, H256, H2048, Bytes, Itertools};
|
2016-10-31 12:57:48 +01:00
|
|
|
use util::stats::Histogram;
|
2016-07-19 09:21:41 +02:00
|
|
|
use blockchain::TreeRoute;
|
2016-09-27 16:50:24 +02:00
|
|
|
use verification::queue::QueueInfo as BlockQueueInfo;
|
2016-07-19 09:21:41 +02:00
|
|
|
use block::{OpenBlock, SealedBlock};
|
|
|
|
use header::{BlockNumber};
|
|
|
|
use transaction::{LocalizedTransaction, SignedTransaction};
|
|
|
|
use log_entry::LocalizedLogEntry;
|
|
|
|
use filter::Filter;
|
|
|
|
use views::{BlockView};
|
2016-08-04 18:17:21 +02:00
|
|
|
use error::{ImportResult, CallError};
|
2016-07-19 09:21:41 +02:00
|
|
|
use receipt::LocalizedReceipt;
|
|
|
|
use trace::LocalizedTrace;
|
2016-10-28 16:42:24 +02:00
|
|
|
use evm::{Factory as EvmFactory, Schedule};
|
2016-07-19 09:21:41 +02:00
|
|
|
use types::ids::*;
|
|
|
|
use types::trace_filter::Filter as TraceFilter;
|
|
|
|
use executive::Executed;
|
|
|
|
use env_info::LastHashes;
|
|
|
|
use types::call_analytics::CallAnalytics;
|
|
|
|
use block_import_error::BlockImportError;
|
2016-08-17 15:54:24 +02:00
|
|
|
use ipc::IpcConfig;
|
2016-07-19 09:21:41 +02:00
|
|
|
use types::blockchain_info::BlockChainInfo;
|
|
|
|
use types::block_status::BlockStatus;
|
2016-10-31 16:58:35 +01:00
|
|
|
use types::mode::Mode;
|
2016-07-19 09:21:41 +02:00
|
|
|
|
|
|
|
#[ipc(client_ident="RemoteClient")]
|
|
|
|
/// Blockchain database client. Owns and manages a blockchain and a block queue.
|
|
|
|
pub trait BlockChainClient : Sync + Send {
|
|
|
|
|
|
|
|
/// Should be called by any external-facing interface when actively using the client.
|
|
|
|
/// To minimise chatter, there's no need to call more than once every 30s.
|
|
|
|
fn keep_alive(&self) {}
|
|
|
|
|
|
|
|
/// Get raw block header data by block id.
|
|
|
|
fn block_header(&self, id: BlockID) -> Option<Bytes>;
|
|
|
|
|
|
|
|
/// Get raw block body data by block id.
|
|
|
|
/// Block body is an RLP list of two items: uncles and transactions.
|
|
|
|
fn block_body(&self, id: BlockID) -> Option<Bytes>;
|
|
|
|
|
|
|
|
/// Get raw block data by block header hash.
|
|
|
|
fn block(&self, id: BlockID) -> Option<Bytes>;
|
|
|
|
|
|
|
|
/// Get block status by block header hash.
|
|
|
|
fn block_status(&self, id: BlockID) -> BlockStatus;
|
|
|
|
|
|
|
|
/// Get block total difficulty.
|
|
|
|
fn block_total_difficulty(&self, id: BlockID) -> Option<U256>;
|
|
|
|
|
|
|
|
/// Attempt to get address nonce at given block.
|
|
|
|
/// May not fail on BlockID::Latest.
|
|
|
|
fn nonce(&self, address: &Address, id: BlockID) -> Option<U256>;
|
|
|
|
|
|
|
|
/// Get address nonce at the latest block's state.
|
|
|
|
fn latest_nonce(&self, address: &Address) -> U256 {
|
|
|
|
self.nonce(address, BlockID::Latest)
|
|
|
|
.expect("nonce will return Some when given BlockID::Latest. nonce was given BlockID::Latest. \
|
|
|
|
Therefore nonce has returned Some; qed")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get block hash.
|
|
|
|
fn block_hash(&self, id: BlockID) -> Option<H256>;
|
|
|
|
|
2016-08-08 17:25:15 +02:00
|
|
|
/// Get address code at given block's state.
|
|
|
|
fn code(&self, address: &Address, id: BlockID) -> Option<Option<Bytes>>;
|
|
|
|
|
|
|
|
/// Get address code at the latest block's state.
|
|
|
|
fn latest_code(&self, address: &Address) -> Option<Bytes> {
|
|
|
|
self.code(address, BlockID::Latest)
|
|
|
|
.expect("code will return Some if given BlockID::Latest; qed")
|
|
|
|
}
|
2016-07-19 09:21:41 +02:00
|
|
|
|
|
|
|
/// Get address balance at the given block's state.
|
|
|
|
///
|
|
|
|
/// May not return None if given BlockID::Latest.
|
|
|
|
/// Returns None if and only if the block's root hash has been pruned from the DB.
|
|
|
|
fn balance(&self, address: &Address, id: BlockID) -> Option<U256>;
|
|
|
|
|
|
|
|
/// Get address balance at the latest block's state.
|
|
|
|
fn latest_balance(&self, address: &Address) -> U256 {
|
|
|
|
self.balance(address, BlockID::Latest)
|
|
|
|
.expect("balance will return Some if given BlockID::Latest. balance was given BlockID::Latest \
|
|
|
|
Therefore balance has returned Some; qed")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get value of the storage at given position at the given block's state.
|
|
|
|
///
|
|
|
|
/// May not return None if given BlockID::Latest.
|
|
|
|
/// Returns None if and only if the block's root hash has been pruned from the DB.
|
|
|
|
fn storage_at(&self, address: &Address, position: &H256, id: BlockID) -> Option<H256>;
|
|
|
|
|
|
|
|
/// Get value of the storage at given position at the latest block's state.
|
|
|
|
fn latest_storage_at(&self, address: &Address, position: &H256) -> H256 {
|
|
|
|
self.storage_at(address, position, BlockID::Latest)
|
|
|
|
.expect("storage_at will return Some if given BlockID::Latest. storage_at was given BlockID::Latest. \
|
|
|
|
Therefore storage_at has returned Some; qed")
|
|
|
|
}
|
|
|
|
|
2016-10-03 11:13:10 +02:00
|
|
|
/// Get a list of all accounts in the block `id`, if fat DB is in operation, otherwise `None`.
|
|
|
|
fn list_accounts(&self, id: BlockID) -> Option<Vec<Address>>;
|
|
|
|
|
2016-07-19 09:21:41 +02:00
|
|
|
/// Get transaction with given hash.
|
|
|
|
fn transaction(&self, id: TransactionID) -> Option<LocalizedTransaction>;
|
|
|
|
|
|
|
|
/// Get uncle with given id.
|
|
|
|
fn uncle(&self, id: UncleID) -> Option<Bytes>;
|
|
|
|
|
|
|
|
/// Get transaction receipt with given hash.
|
|
|
|
fn transaction_receipt(&self, id: TransactionID) -> Option<LocalizedReceipt>;
|
|
|
|
|
|
|
|
/// Get a tree route between `from` and `to`.
|
|
|
|
/// See `BlockChain::tree_route`.
|
|
|
|
fn tree_route(&self, from: &H256, to: &H256) -> Option<TreeRoute>;
|
|
|
|
|
|
|
|
/// Get all possible uncle hashes for a block.
|
|
|
|
fn find_uncles(&self, hash: &H256) -> Option<Vec<H256>>;
|
|
|
|
|
|
|
|
/// Get latest state node
|
|
|
|
fn state_data(&self, hash: &H256) -> Option<Bytes>;
|
|
|
|
|
|
|
|
/// Get raw block receipts data by block header hash.
|
|
|
|
fn block_receipts(&self, hash: &H256) -> Option<Bytes>;
|
|
|
|
|
|
|
|
/// Import a block into the blockchain.
|
|
|
|
fn import_block(&self, bytes: Bytes) -> Result<H256, BlockImportError>;
|
2016-10-18 18:16:00 +02:00
|
|
|
|
|
|
|
/// Import a block with transaction receipts. Does no sealing and transaction validation.
|
|
|
|
fn import_block_with_receipts(&self, block_bytes: Bytes, receipts_bytes: Bytes) -> Result<H256, BlockImportError>;
|
2016-07-19 09:21:41 +02:00
|
|
|
|
|
|
|
/// Get block queue information.
|
|
|
|
fn queue_info(&self) -> BlockQueueInfo;
|
|
|
|
|
|
|
|
/// Clear block queue and abort all import activity.
|
|
|
|
fn clear_queue(&self);
|
|
|
|
|
|
|
|
/// Get blockchain information.
|
|
|
|
fn chain_info(&self) -> BlockChainInfo;
|
|
|
|
|
2016-08-17 19:25:02 +02:00
|
|
|
/// Get the registrar address, if it exists.
|
|
|
|
fn additional_params(&self) -> BTreeMap<String, String>;
|
|
|
|
|
2016-07-19 09:21:41 +02:00
|
|
|
/// Get the best block header.
|
2016-07-28 23:46:24 +02:00
|
|
|
fn best_block_header(&self) -> Bytes;
|
2016-07-19 09:21:41 +02:00
|
|
|
|
|
|
|
/// Returns numbers of blocks containing given bloom.
|
|
|
|
fn blocks_with_bloom(&self, bloom: &H2048, from_block: BlockID, to_block: BlockID) -> Option<Vec<BlockNumber>>;
|
|
|
|
|
|
|
|
/// Returns logs matching given filter.
|
2016-09-21 12:51:10 +02:00
|
|
|
fn logs(&self, filter: Filter) -> Vec<LocalizedLogEntry>;
|
2016-07-19 09:21:41 +02:00
|
|
|
|
|
|
|
/// Makes a non-persistent transaction call.
|
2016-08-04 18:17:21 +02:00
|
|
|
fn call(&self, t: &SignedTransaction, block: BlockID, analytics: CallAnalytics) -> Result<Executed, CallError>;
|
2016-07-27 21:34:32 +02:00
|
|
|
|
|
|
|
/// Replays a given transaction for inspection.
|
2016-08-04 18:17:21 +02:00
|
|
|
fn replay(&self, t: TransactionID, analytics: CallAnalytics) -> Result<Executed, CallError>;
|
2016-07-19 09:21:41 +02:00
|
|
|
|
|
|
|
/// Returns traces matching given filter.
|
|
|
|
fn filter_traces(&self, filter: TraceFilter) -> Option<Vec<LocalizedTrace>>;
|
|
|
|
|
|
|
|
/// Returns trace with given id.
|
|
|
|
fn trace(&self, trace: TraceId) -> Option<LocalizedTrace>;
|
|
|
|
|
|
|
|
/// Returns traces created by transaction.
|
|
|
|
fn transaction_traces(&self, trace: TransactionID) -> Option<Vec<LocalizedTrace>>;
|
|
|
|
|
|
|
|
/// Returns traces created by transaction from block.
|
|
|
|
fn block_traces(&self, trace: BlockID) -> Option<Vec<LocalizedTrace>>;
|
|
|
|
|
|
|
|
/// Get last hashes starting from best block.
|
|
|
|
fn last_hashes(&self) -> LastHashes;
|
|
|
|
|
|
|
|
/// Queue transactions for importing.
|
|
|
|
fn queue_transactions(&self, transactions: Vec<Bytes>);
|
|
|
|
|
|
|
|
/// list all transactions
|
|
|
|
fn pending_transactions(&self) -> Vec<SignedTransaction>;
|
|
|
|
|
2016-10-31 12:57:48 +01:00
|
|
|
/// Sorted list of transaction gas prices from at least last sample_size blocks.
|
|
|
|
fn gas_price_corpus(&self, sample_size: usize) -> Vec<U256> {
|
2016-07-19 09:21:41 +02:00
|
|
|
let mut h = self.chain_info().best_block_hash;
|
|
|
|
let mut corpus = Vec::new();
|
2016-10-25 12:21:21 +02:00
|
|
|
while corpus.is_empty() {
|
|
|
|
for _ in 0..sample_size {
|
|
|
|
let block_bytes = self.block(BlockID::Hash(h)).expect("h is either the best_block_hash or an ancestor; qed");
|
|
|
|
let block = BlockView::new(&block_bytes);
|
|
|
|
let header = block.header_view();
|
|
|
|
if header.number() == 0 {
|
2016-10-31 12:57:48 +01:00
|
|
|
return corpus;
|
2016-10-25 12:21:21 +02:00
|
|
|
}
|
|
|
|
block.transaction_views().iter().foreach(|t| corpus.push(t.gas_price()));
|
|
|
|
h = header.parent_hash().clone();
|
2016-07-19 09:21:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
corpus.sort();
|
2016-10-31 12:57:48 +01:00
|
|
|
corpus
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Calculate median gas price from recent blocks if they have any transactions.
|
|
|
|
fn gas_price_median(&self, sample_size: usize) -> Option<U256> {
|
|
|
|
let corpus = self.gas_price_corpus(sample_size);
|
|
|
|
corpus.get(corpus.len()/2).cloned()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the gas price distribution based on recent blocks if they have any transactions.
|
|
|
|
fn gas_price_histogram(&self, sample_size: usize, bucket_number: usize) -> Option<Histogram> {
|
|
|
|
let raw_corpus = self.gas_price_corpus(sample_size);
|
|
|
|
let raw_len = raw_corpus.len();
|
|
|
|
// Throw out outliers.
|
|
|
|
let (corpus, _) = raw_corpus.split_at(raw_len-raw_len/40);
|
|
|
|
Histogram::new(corpus, bucket_number)
|
2016-07-19 09:21:41 +02:00
|
|
|
}
|
2016-10-31 16:58:35 +01:00
|
|
|
|
|
|
|
fn mode(&self) -> Mode;
|
|
|
|
|
|
|
|
fn set_mode(&self, mode: Mode);
|
2016-07-19 09:21:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Extended client interface used for mining
|
|
|
|
pub trait MiningBlockChainClient : BlockChainClient {
|
|
|
|
/// Returns OpenBlock prepared for closing.
|
2016-09-22 14:48:22 +02:00
|
|
|
fn prepare_open_block(&self,
|
|
|
|
author: Address,
|
|
|
|
gas_range_target: (U256, U256),
|
|
|
|
extra_data: Bytes
|
|
|
|
) -> OpenBlock;
|
2016-07-19 09:21:41 +02:00
|
|
|
|
|
|
|
/// Returns EvmFactory.
|
|
|
|
fn vm_factory(&self) -> &EvmFactory;
|
|
|
|
|
|
|
|
/// Import sealed block. Skips all verifications.
|
|
|
|
fn import_sealed_block(&self, block: SealedBlock) -> ImportResult;
|
2016-10-28 16:42:24 +02:00
|
|
|
|
|
|
|
/// Returns latest schedule.
|
|
|
|
fn latest_schedule(&self) -> Schedule;
|
2016-07-19 09:21:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl IpcConfig for BlockChainClient { }
|