simplify ethcore machine by removing redundant traits (#10454)

This commit is contained in:
Marek Kotewicz 2019-03-11 11:37:48 +01:00 committed by Andrew Jones
parent ab27848dc4
commit 23d977ecce
6 changed files with 20 additions and 76 deletions

View File

@ -15,7 +15,8 @@
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>. // along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
use engines::{Engine, Seal}; use engines::{Engine, Seal};
use parity_machine::{Machine, Transactions, TotalScoredHeader}; use parity_machine::{Machine, Transactions};
use types::header::ExtendedHeader;
/// `InstantSeal` params. /// `InstantSeal` params.
#[derive(Default, Debug, PartialEq)] #[derive(Default, Debug, PartialEq)]
@ -48,11 +49,7 @@ impl<M> InstantSeal<M> {
} }
} }
impl<M: Machine> Engine<M> for InstantSeal<M> impl<M: Machine> Engine<M> for InstantSeal<M> where M::LiveBlock: Transactions {
where M::LiveBlock: Transactions,
M::ExtendedHeader: TotalScoredHeader,
<M::ExtendedHeader as TotalScoredHeader>::Value: Ord
{
fn name(&self) -> &str { fn name(&self) -> &str {
"InstantSeal" "InstantSeal"
} }
@ -84,7 +81,7 @@ impl<M: Machine> Engine<M> for InstantSeal<M>
header_timestamp >= parent_timestamp header_timestamp >= parent_timestamp
} }
fn fork_choice(&self, new: &M::ExtendedHeader, current: &M::ExtendedHeader) -> super::ForkChoice { fn fork_choice(&self, new: &ExtendedHeader, current: &ExtendedHeader) -> super::ForkChoice {
super::total_difficulty_fork_choice(new, current) super::total_difficulty_fork_choice(new, current)
} }
} }

View File

@ -44,13 +44,13 @@ use builtin::Builtin;
use vm::{EnvInfo, Schedule, CreateContractAddress, CallType, ActionValue}; use vm::{EnvInfo, Schedule, CreateContractAddress, CallType, ActionValue};
use error::Error; use error::Error;
use types::BlockNumber; use types::BlockNumber;
use types::header::Header; use types::header::{Header, ExtendedHeader};
use snapshot::SnapshotComponents; use snapshot::SnapshotComponents;
use spec::CommonParams; use spec::CommonParams;
use types::transaction::{self, UnverifiedTransaction, SignedTransaction}; use types::transaction::{self, UnverifiedTransaction, SignedTransaction};
use ethkey::{Signature}; use ethkey::{Signature};
use parity_machine::{Machine, LocalizedMachine as Localized, TotalScoredHeader}; use parity_machine::{Machine, LocalizedMachine as Localized};
use ethereum_types::{H256, U256, Address}; use ethereum_types::{H256, U256, Address};
use unexpected::{Mismatch, OutOfBounds}; use unexpected::{Mismatch, OutOfBounds};
use bytes::Bytes; use bytes::Bytes;
@ -255,7 +255,7 @@ pub trait Engine<M: Machine>: Sync + Send {
&self, &self,
_block: &mut M::LiveBlock, _block: &mut M::LiveBlock,
_epoch_begin: bool, _epoch_begin: bool,
_ancestry: &mut Iterator<Item=M::ExtendedHeader>, _ancestry: &mut Iterator<Item = ExtendedHeader>,
) -> Result<(), M::Error> { ) -> Result<(), M::Error> {
Ok(()) Ok(())
} }
@ -421,16 +421,16 @@ pub trait Engine<M: Machine>: Sync + Send {
/// Gather all ancestry actions. Called at the last stage when a block is committed. The Engine must guarantee that /// Gather all ancestry actions. Called at the last stage when a block is committed. The Engine must guarantee that
/// the ancestry exists. /// the ancestry exists.
fn ancestry_actions(&self, _header: &M::Header, _ancestry: &mut Iterator<Item=M::ExtendedHeader>) -> Vec<AncestryAction> { fn ancestry_actions(&self, _header: &M::Header, _ancestry: &mut Iterator<Item = ExtendedHeader>) -> Vec<AncestryAction> {
Vec::new() Vec::new()
} }
/// Check whether the given new block is the best block, after finalization check. /// Check whether the given new block is the best block, after finalization check.
fn fork_choice(&self, new: &M::ExtendedHeader, best: &M::ExtendedHeader) -> ForkChoice; fn fork_choice(&self, new: &ExtendedHeader, best: &ExtendedHeader) -> ForkChoice;
} }
/// Check whether a given block is the best block based on the default total difficulty rule. /// Check whether a given block is the best block based on the default total difficulty rule.
pub fn total_difficulty_fork_choice<T: TotalScoredHeader>(new: &T, best: &T) -> ForkChoice where <T as TotalScoredHeader>::Value: Ord { pub fn total_difficulty_fork_choice(new: &ExtendedHeader, best: &ExtendedHeader) -> ForkChoice {
if new.total_score() > best.total_score() { if new.total_score() > best.total_score() {
ForkChoice::New ForkChoice::New
} else { } else {

View File

@ -18,8 +18,9 @@ use engines::Engine;
use engines::block_reward::{self, RewardKind}; use engines::block_reward::{self, RewardKind};
use ethereum_types::U256; use ethereum_types::U256;
use machine::WithRewards; use machine::WithRewards;
use parity_machine::{Machine, Header, LiveBlock, TotalScoredHeader}; use parity_machine::{Machine, Header, LiveBlock};
use types::BlockNumber; use types::BlockNumber;
use types::header::ExtendedHeader;
/// Params for a null engine. /// Params for a null engine.
#[derive(Clone, Default)] #[derive(Clone, Default)]
@ -58,10 +59,7 @@ impl<M: Default> Default for NullEngine<M> {
} }
} }
impl<M: Machine + WithRewards> Engine<M> for NullEngine<M> impl<M: Machine + WithRewards> Engine<M> for NullEngine<M> {
where M::ExtendedHeader: TotalScoredHeader,
<M::ExtendedHeader as TotalScoredHeader>::Value: Ord
{
fn name(&self) -> &str { fn name(&self) -> &str {
"NullEngine" "NullEngine"
} }
@ -105,7 +103,7 @@ impl<M: Machine + WithRewards> Engine<M> for NullEngine<M>
Some(Box::new(::snapshot::PowSnapshot::new(10000, 10000))) Some(Box::new(::snapshot::PowSnapshot::new(10000, 10000)))
} }
fn fork_choice(&self, new: &M::ExtendedHeader, current: &M::ExtendedHeader) -> super::ForkChoice { fn fork_choice(&self, new: &ExtendedHeader, current: &ExtendedHeader) -> super::ForkChoice {
super::total_difficulty_fork_choice(new, current) super::total_difficulty_fork_choice(new, current)
} }
} }

View File

@ -24,7 +24,7 @@ use ethereum_types::{U256, H256, Address};
use rlp::Rlp; use rlp::Rlp;
use types::transaction::{self, SYSTEM_ADDRESS, UNSIGNED_SENDER, UnverifiedTransaction, SignedTransaction}; use types::transaction::{self, SYSTEM_ADDRESS, UNSIGNED_SENDER, UnverifiedTransaction, SignedTransaction};
use types::BlockNumber; use types::BlockNumber;
use types::header::{Header, ExtendedHeader}; use types::header::Header;
use vm::{CallType, ActionParams, ActionValue, ParamsType}; use vm::{CallType, ActionParams, ActionValue, ParamsType};
use vm::{EnvInfo, Schedule, CreateContractAddress}; use vm::{EnvInfo, Schedule, CreateContractAddress};
@ -430,7 +430,6 @@ pub enum AuxiliaryRequest {
impl ::parity_machine::Machine for EthereumMachine { impl ::parity_machine::Machine for EthereumMachine {
type Header = Header; type Header = Header;
type ExtendedHeader = ExtendedHeader;
type LiveBlock = ExecutedBlock; type LiveBlock = ExecutedBlock;
type EngineClient = ::client::EngineClient; type EngineClient = ::client::EngineClient;

View File

@ -376,13 +376,6 @@ impl ::parity_machine::Header for Header {
fn number(&self) -> BlockNumber { Header::number(self) } fn number(&self) -> BlockNumber { Header::number(self) }
} }
impl ::parity_machine::ScoredHeader for Header {
type Value = U256;
fn score(&self) -> &U256 { self.difficulty() }
fn set_score(&mut self, score: U256) { self.set_difficulty(score) }
}
impl ::parity_machine::Header for ExtendedHeader { impl ::parity_machine::Header for ExtendedHeader {
fn bare_hash(&self) -> H256 { self.header.bare_hash() } fn bare_hash(&self) -> H256 { self.header.bare_hash() }
fn hash(&self) -> H256 { self.header.hash() } fn hash(&self) -> H256 { self.header.hash() }
@ -391,21 +384,11 @@ impl ::parity_machine::Header for ExtendedHeader {
fn number(&self) -> BlockNumber { self.header.number() } fn number(&self) -> BlockNumber { self.header.number() }
} }
impl ::parity_machine::ScoredHeader for ExtendedHeader { impl ExtendedHeader {
type Value = U256; /// Returns combined difficulty of all ancestors together with the difficulty of this header.
pub fn total_score(&self) -> U256 {
fn score(&self) -> &U256 { self.header.difficulty() } self.parent_total_difficulty + *self.header.difficulty()
fn set_score(&mut self, score: U256) { self.header.set_difficulty(score) } }
}
impl ::parity_machine::TotalScoredHeader for ExtendedHeader {
type Value = U256;
fn total_score(&self) -> U256 { self.parent_total_difficulty + *self.header.difficulty() }
}
impl ::parity_machine::FinalizableHeader for ExtendedHeader {
fn is_finalized(&self) -> bool { self.is_finalized }
} }
#[cfg(test)] #[cfg(test)]

View File

@ -40,37 +40,6 @@ pub trait Header {
fn number(&self) -> u64; fn number(&self) -> u64;
} }
/// A header with an associated score (difficulty in PoW terms)
pub trait ScoredHeader: Header {
type Value;
/// Get the score of this header.
fn score(&self) -> &Self::Value;
/// Set the score of this header.
fn set_score(&mut self, score: Self::Value);
}
/// A header with associated total score.
pub trait TotalScoredHeader: Header {
type Value;
/// Get the total score of this header.
fn total_score(&self) -> Self::Value;
}
/// A header with finalized information.
pub trait FinalizableHeader: Header {
/// Get whether this header is considered finalized, so that it will never be replaced in reorganization.
fn is_finalized(&self) -> bool;
}
/// A header with metadata information.
pub trait WithMetadataHeader: Header {
/// Get the current header metadata.
fn metadata(&self) -> Option<&[u8]>;
}
/// A "live" block is one which is in the process of the transition. /// A "live" block is one which is in the process of the transition.
/// The state of this block can be mutated by arbitrary rules of the /// The state of this block can be mutated by arbitrary rules of the
/// state transition function. /// state transition function.
@ -101,8 +70,6 @@ pub trait Machine: for<'a> LocalizedMachine<'a> {
type Header: Header; type Header: Header;
/// The live block type. /// The live block type.
type LiveBlock: LiveBlock<Header=Self::Header>; type LiveBlock: LiveBlock<Header=Self::Header>;
/// Block header with metadata information.
type ExtendedHeader: Header;
/// A handle to a blockchain client for this machine. /// A handle to a blockchain client for this machine.
type EngineClient: ?Sized; type EngineClient: ?Sized;
/// A description of needed auxiliary data. /// A description of needed auxiliary data.