2016-03-13 17:01:50 +01: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-03-18 19:16:46 +01:00
|
|
|
//! Test implementation of miner service.
|
|
|
|
|
2016-04-28 21:47:44 +02:00
|
|
|
use util::{Address, H256, Bytes, U256, FixedHash, Uint};
|
2016-03-13 17:01:50 +01:00
|
|
|
use util::standard::*;
|
2016-05-14 14:28:44 +02:00
|
|
|
use ethcore::error::{Error, ExecutionError};
|
2016-04-28 21:47:44 +02:00
|
|
|
use ethcore::client::{BlockChainClient, Executed};
|
|
|
|
use ethcore::block::{ClosedBlock, IsBlock};
|
2016-03-13 17:01:50 +01:00
|
|
|
use ethcore::transaction::SignedTransaction;
|
2016-05-24 21:56:32 +02:00
|
|
|
use ethcore::receipt::Receipt;
|
2016-04-17 18:26:15 +02:00
|
|
|
use ethminer::{MinerService, MinerStatus, AccountDetails, TransactionImportResult};
|
2016-03-13 17:01:50 +01:00
|
|
|
|
2016-03-18 19:16:46 +01:00
|
|
|
/// Test miner service.
|
2016-03-16 10:37:08 +01:00
|
|
|
pub struct TestMinerService {
|
2016-03-18 19:16:46 +01:00
|
|
|
/// Imported transactions.
|
2016-04-06 12:15:20 +02:00
|
|
|
pub imported_transactions: Mutex<Vec<SignedTransaction>>,
|
2016-03-18 19:16:46 +01:00
|
|
|
/// Latest closed block.
|
2016-03-16 10:37:08 +01:00
|
|
|
pub latest_closed_block: Mutex<Option<ClosedBlock>>,
|
2016-03-27 16:16:15 +02:00
|
|
|
/// Pre-existed pending transactions
|
|
|
|
pub pending_transactions: Mutex<HashMap<H256, SignedTransaction>>,
|
2016-05-24 21:56:32 +02:00
|
|
|
/// Pre-existed pending receipts
|
|
|
|
pub pending_receipts: Mutex<BTreeMap<H256, Receipt>>,
|
2016-04-06 12:15:20 +02:00
|
|
|
/// Last nonces.
|
|
|
|
pub last_nonces: RwLock<HashMap<Address, U256>>,
|
2016-04-13 00:04:40 +02:00
|
|
|
|
|
|
|
min_gas_price: RwLock<U256>,
|
|
|
|
gas_floor_target: RwLock<U256>,
|
|
|
|
author: RwLock<Address>,
|
|
|
|
extra_data: RwLock<Bytes>,
|
2016-04-18 23:13:38 +02:00
|
|
|
limit: RwLock<usize>,
|
2016-03-16 10:37:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for TestMinerService {
|
|
|
|
fn default() -> TestMinerService {
|
|
|
|
TestMinerService {
|
2016-04-06 12:15:20 +02:00
|
|
|
imported_transactions: Mutex::new(Vec::new()),
|
2016-03-16 10:37:08 +01:00
|
|
|
latest_closed_block: Mutex::new(None),
|
2016-03-27 16:16:15 +02:00
|
|
|
pending_transactions: Mutex::new(HashMap::new()),
|
2016-05-24 21:56:32 +02:00
|
|
|
pending_receipts: Mutex::new(BTreeMap::new()),
|
2016-04-06 12:15:20 +02:00
|
|
|
last_nonces: RwLock::new(HashMap::new()),
|
2016-04-13 00:04:40 +02:00
|
|
|
min_gas_price: RwLock::new(U256::from(20_000_000)),
|
|
|
|
gas_floor_target: RwLock::new(U256::from(12345)),
|
|
|
|
author: RwLock::new(Address::zero()),
|
|
|
|
extra_data: RwLock::new(vec![1, 2, 3, 4]),
|
2016-04-18 23:13:38 +02:00
|
|
|
limit: RwLock::new(1024),
|
2016-03-16 10:37:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-13 17:01:50 +01:00
|
|
|
|
|
|
|
impl MinerService for TestMinerService {
|
|
|
|
|
|
|
|
/// Returns miner's status.
|
2016-03-17 11:19:12 +01:00
|
|
|
fn status(&self) -> MinerStatus {
|
|
|
|
MinerStatus {
|
2016-03-17 11:19:12 +01:00
|
|
|
transactions_in_pending_queue: 0,
|
|
|
|
transactions_in_future_queue: 0,
|
|
|
|
transactions_in_pending_block: 1
|
2016-03-17 11:19:12 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-13 17:01:50 +01:00
|
|
|
|
2016-04-13 00:04:40 +02:00
|
|
|
fn set_author(&self, author: Address) {
|
|
|
|
*self.author.write().unwrap() = author;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_extra_data(&self, extra_data: Bytes) {
|
|
|
|
*self.extra_data.write().unwrap() = extra_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the gas limit we wish to target when sealing a new block.
|
|
|
|
fn set_gas_floor_target(&self, target: U256) {
|
|
|
|
*self.gas_floor_target.write().unwrap() = target;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_minimal_gas_price(&self, min_gas_price: U256) {
|
|
|
|
*self.min_gas_price.write().unwrap() = min_gas_price;
|
|
|
|
}
|
|
|
|
|
2016-04-18 23:13:38 +02:00
|
|
|
fn set_transactions_limit(&self, limit: usize) {
|
|
|
|
*self.limit.write().unwrap() = limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn transactions_limit(&self) -> usize {
|
|
|
|
*self.limit.read().unwrap()
|
|
|
|
}
|
|
|
|
|
2016-04-13 00:04:40 +02:00
|
|
|
fn author(&self) -> Address {
|
|
|
|
*self.author.read().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn minimal_gas_price(&self) -> U256 {
|
|
|
|
*self.min_gas_price.read().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extra_data(&self) -> Bytes {
|
|
|
|
self.extra_data.read().unwrap().clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn gas_floor_target(&self) -> U256 {
|
|
|
|
*self.gas_floor_target.read().unwrap()
|
|
|
|
}
|
|
|
|
|
2016-03-13 17:01:50 +01:00
|
|
|
/// Imports transactions to transaction queue.
|
2016-05-25 13:22:17 +02:00
|
|
|
fn import_transactions<T>(&self, transactions: Vec<SignedTransaction>, fetch_account: T) ->
|
2016-04-17 18:26:15 +02:00
|
|
|
Vec<Result<TransactionImportResult, Error>>
|
2016-04-06 12:15:20 +02:00
|
|
|
where T: Fn(&Address) -> AccountDetails {
|
|
|
|
// lets assume that all txs are valid
|
|
|
|
self.imported_transactions.lock().unwrap().extend_from_slice(&transactions);
|
|
|
|
|
2016-05-26 13:26:07 +02:00
|
|
|
for sender in transactions.iter().filter_map(|t| t.sender().ok()) {
|
|
|
|
let nonce = self.last_nonce(&sender).unwrap_or(fetch_account(&sender).nonce);
|
|
|
|
self.last_nonces.write().unwrap().insert(sender, nonce + U256::from(1));
|
2016-05-25 13:22:17 +02:00
|
|
|
}
|
2016-04-06 12:15:20 +02:00
|
|
|
transactions
|
|
|
|
.iter()
|
2016-04-17 18:26:15 +02:00
|
|
|
.map(|_| Ok(TransactionImportResult::Current))
|
2016-04-06 12:15:20 +02:00
|
|
|
.collect()
|
|
|
|
}
|
2016-03-13 17:01:50 +01:00
|
|
|
|
2016-04-17 18:26:15 +02:00
|
|
|
/// Imports transactions to transaction queue.
|
2016-05-25 13:22:17 +02:00
|
|
|
fn import_own_transaction<T>(&self, chain: &BlockChainClient, transaction: SignedTransaction, _fetch_account: T) ->
|
2016-04-17 18:26:15 +02:00
|
|
|
Result<TransactionImportResult, Error>
|
|
|
|
where T: Fn(&Address) -> AccountDetails {
|
2016-05-25 13:22:17 +02:00
|
|
|
|
|
|
|
// keep the pending nonces up to date
|
|
|
|
if let Ok(ref sender) = transaction.sender() {
|
|
|
|
let nonce = self.last_nonce(sender).unwrap_or(chain.latest_nonce(sender));
|
|
|
|
self.last_nonces.write().unwrap().insert(sender.clone(), nonce + U256::from(1));
|
|
|
|
}
|
|
|
|
|
2016-04-17 18:26:15 +02:00
|
|
|
// lets assume that all txs are valid
|
|
|
|
self.imported_transactions.lock().unwrap().push(transaction);
|
|
|
|
|
|
|
|
Ok(TransactionImportResult::Current)
|
|
|
|
}
|
|
|
|
|
2016-03-13 17:01:50 +01:00
|
|
|
/// Returns hashes of transactions currently in pending
|
2016-04-06 12:15:20 +02:00
|
|
|
fn pending_transactions_hashes(&self) -> Vec<H256> {
|
|
|
|
vec![]
|
|
|
|
}
|
2016-03-13 17:01:50 +01:00
|
|
|
|
|
|
|
/// Removes all transactions from the queue and restart mining operation.
|
2016-04-06 12:15:20 +02:00
|
|
|
fn clear_and_reset(&self, _chain: &BlockChainClient) {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
2016-03-13 17:01:50 +01:00
|
|
|
|
|
|
|
/// Called when blocks are imported to chain, updates transactions queue.
|
2016-04-06 12:15:20 +02:00
|
|
|
fn chain_new_blocks(&self, _chain: &BlockChainClient, _imported: &[H256], _invalid: &[H256], _enacted: &[H256], _retracted: &[H256]) {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
2016-03-13 17:01:50 +01:00
|
|
|
|
|
|
|
/// New chain head event. Restart mining operation.
|
2016-04-06 12:15:20 +02:00
|
|
|
fn update_sealing(&self, _chain: &BlockChainClient) {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
2016-03-13 17:01:50 +01:00
|
|
|
|
2016-04-06 12:15:20 +02:00
|
|
|
fn map_sealing_work<F, T>(&self, _chain: &BlockChainClient, _f: F) -> Option<T> where F: FnOnce(&ClosedBlock) -> T {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
2016-03-13 17:01:50 +01:00
|
|
|
|
2016-03-27 16:16:15 +02:00
|
|
|
fn transaction(&self, hash: &H256) -> Option<SignedTransaction> {
|
2016-04-06 12:15:20 +02:00
|
|
|
self.pending_transactions.lock().unwrap().get(hash).cloned()
|
|
|
|
}
|
|
|
|
|
2016-05-24 21:56:32 +02:00
|
|
|
fn all_transactions(&self) -> Vec<SignedTransaction> {
|
|
|
|
self.pending_transactions.lock().unwrap().values().cloned().collect()
|
|
|
|
}
|
|
|
|
|
2016-04-06 23:03:07 +02:00
|
|
|
fn pending_transactions(&self) -> Vec<SignedTransaction> {
|
|
|
|
self.pending_transactions.lock().unwrap().values().cloned().collect()
|
|
|
|
}
|
|
|
|
|
2016-05-24 21:56:32 +02:00
|
|
|
fn pending_receipts(&self) -> BTreeMap<H256, Receipt> {
|
|
|
|
self.pending_receipts.lock().unwrap().clone()
|
|
|
|
}
|
|
|
|
|
2016-04-06 12:15:20 +02:00
|
|
|
fn last_nonce(&self, address: &Address) -> Option<U256> {
|
|
|
|
self.last_nonces.read().unwrap().get(address).cloned()
|
2016-03-27 15:12:21 +02:00
|
|
|
}
|
|
|
|
|
2016-03-13 17:01:50 +01:00
|
|
|
/// Submit `seal` as a valid solution for the header of `pow_hash`.
|
|
|
|
/// Will check the seal, but not actually insert the block into the chain.
|
2016-04-06 12:15:20 +02:00
|
|
|
fn submit_seal(&self, _chain: &BlockChainClient, _pow_hash: H256, _seal: Vec<Bytes>) -> Result<(), Error> {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
2016-04-28 21:47:44 +02:00
|
|
|
|
|
|
|
fn balance(&self, _chain: &BlockChainClient, address: &Address) -> U256 {
|
|
|
|
self.latest_closed_block.lock().unwrap().as_ref().map_or_else(U256::zero, |b| b.block().fields().state.balance(address).clone())
|
|
|
|
}
|
|
|
|
|
2016-05-14 14:28:44 +02:00
|
|
|
fn call(&self, _chain: &BlockChainClient, _t: &SignedTransaction) -> Result<Executed, ExecutionError> {
|
2016-04-28 21:47:44 +02:00
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn storage_at(&self, _chain: &BlockChainClient, address: &Address, position: &H256) -> H256 {
|
|
|
|
self.latest_closed_block.lock().unwrap().as_ref().map_or_else(H256::default, |b| b.block().fields().state.storage_at(address, position).clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn nonce(&self, _chain: &BlockChainClient, address: &Address) -> U256 {
|
2016-05-25 13:22:17 +02:00
|
|
|
// we assume all transactions are in a pending block, ignoring the
|
|
|
|
// reality of gas limits.
|
|
|
|
self.last_nonce(address).unwrap_or(U256::zero())
|
2016-04-28 21:47:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn code(&self, _chain: &BlockChainClient, address: &Address) -> Option<Bytes> {
|
|
|
|
self.latest_closed_block.lock().unwrap().as_ref().map_or(None, |b| b.block().fields().state.code(address).clone())
|
|
|
|
}
|
|
|
|
|
2016-03-16 10:37:08 +01:00
|
|
|
}
|