Add unfinished progress on BeaconChain struct

This commit is contained in:
Paul Hauner
2018-10-23 13:16:26 +02:00
parent a40b49d586
commit a34266de0a
6 changed files with 343 additions and 90 deletions

View File

@@ -1,52 +1,99 @@
extern crate db;
extern crate types;
extern crate validator_induction;
extern crate validator_shuffling;
mod stores;
mod blocks;
mod maps;
mod genesis;
use db::ClientDB;
use genesis::genesis_states;
use maps::{
generate_attester_and_proposer_maps,
AttesterAndProposerMapError,
};
use std::collections::HashMap;
use std::sync::Arc;
use stores::BeaconChainStore;
use types::{
ActiveState,
AttesterMap,
ChainConfig,
CrystallizedState,
Hash256,
ProposerMap,
};
#[derive(Debug, PartialEq)]
pub enum BeaconChainError {
InvalidGenesis,
InsufficientValidators,
UnableToGenerateMaps(AttesterAndProposerMapError),
DBError(String),
}
pub struct BeaconChain {
pub last_finalized_slot: Option<u64>,
impl From<AttesterAndProposerMapError> for BeaconChainError {
fn from(e: AttesterAndProposerMapError) -> BeaconChainError {
BeaconChainError::UnableToGenerateMaps(e)
}
}
pub struct BeaconChain<T: ClientDB + Sized> {
/// The last slot which has been finalized, this is common to all forks.
pub last_finalized_slot: u64,
/// The hash of the head of the canonical chain.
pub canonical_latest_block_hash: Hash256,
/// A vec of hashes of heads of fork (non-canonical) chains.
pub fork_latest_block_hashes: Vec<Hash256>,
/// A map where the value is an active state the the key is its hash.
pub active_states: HashMap<Hash256, ActiveState>,
/// A map where the value is crystallized state the the key is its hash.
pub crystallized_states: HashMap<Hash256, CrystallizedState>,
/// A map of crystallized state to a proposer and attester map.
pub attester_proposer_maps: HashMap<Hash256, (Arc<AttesterMap>, Arc<ProposerMap>)>,
/// A collection of database stores used by the chain.
pub store: BeaconChainStore<T>,
/// The chain configuration.
pub config: ChainConfig,
}
impl BeaconChain {
pub fn new(config: ChainConfig)
impl<T> BeaconChain<T>
where T: ClientDB + Sized
{
pub fn new(store: BeaconChainStore<T>, config: ChainConfig)
-> Result<Self, BeaconChainError>
{
let (active_state, crystallized_state) = BeaconChain::genesis_states(&config)?;
if config.initial_validators.is_empty() {
return Err(BeaconChainError::InsufficientValidators);
}
let (active_state, crystallized_state) = genesis_states(&config)?;
let canonical_latest_block_hash = Hash256::zero();
let fork_latest_block_hashes = vec![];
let mut active_states = HashMap::new();
let mut crystallized_states = HashMap::new();
let mut attester_proposer_maps = HashMap::new();
let (attester_map, proposer_map) = generate_attester_and_proposer_maps(
&crystallized_state, 0)?;
active_states.insert(canonical_latest_block_hash, active_state);
crystallized_states.insert(canonical_latest_block_hash, crystallized_state);
attester_proposer_maps.insert(
canonical_latest_block_hash,
(Arc::new(attester_map), Arc::new(proposer_map)));
Ok(Self{
last_finalized_slot: None,
last_finalized_slot: 0,
canonical_latest_block_hash,
fork_latest_block_hashes,
active_states,
crystallized_states,
attester_proposer_maps,
store,
config,
})
}
@@ -55,21 +102,32 @@ impl BeaconChain {
#[cfg(test)]
mod tests {
use std::sync::Arc;
use super::*;
use types::ValidatorRegistration;
use db::MemoryDB;
use db::stores::*;
#[test]
fn test_new_chain() {
let mut config = ChainConfig::standard();
config.cycle_length = 4;
config.shard_count = 4;
let db = Arc::new(MemoryDB::open());
let store = BeaconChainStore {
block: Arc::new(BeaconBlockStore::new(db.clone())),
pow_chain: Arc::new(PoWChainStore::new(db.clone())),
validator: Arc::new(ValidatorStore::new(db.clone())),
};
for _ in 0..4 {
for _ in 0..config.cycle_length * 2 {
config.initial_validators.push(ValidatorRegistration::random())
}
let chain = BeaconChain::new(config.clone()).unwrap();
let (act, cry) = BeaconChain::genesis_states(&config).unwrap();
let chain = BeaconChain::new(store, config.clone()).unwrap();
let (act, cry) = genesis_states(&config).unwrap();
assert_eq!(chain.last_finalized_slot, None);
assert_eq!(chain.last_finalized_slot, 0);
assert_eq!(chain.canonical_latest_block_hash, Hash256::zero());
let stored_act = chain.active_states.get(&Hash256::zero()).unwrap();