2019-03-18 06:38:23 +00:00
|
|
|
use beacon_chain::BeaconChain as RawBeaconChain;
|
|
|
|
use beacon_chain::{
|
2019-03-18 13:26:15 +00:00
|
|
|
db::ClientDB,
|
|
|
|
fork_choice::ForkChoice,
|
|
|
|
parking_lot::RwLockReadGuard,
|
|
|
|
slot_clock::SlotClock,
|
|
|
|
types::{BeaconState, ChainSpec},
|
|
|
|
CheckPoint,
|
2019-03-18 06:38:23 +00:00
|
|
|
};
|
2019-03-21 06:17:01 +00:00
|
|
|
use libp2p::HelloMessage;
|
|
|
|
use types::{Epoch, Hash256, Slot};
|
2019-03-18 06:38:23 +00:00
|
|
|
|
|
|
|
/// The network's API to the beacon chain.
|
|
|
|
pub trait BeaconChain: Send + Sync {
|
2019-03-18 13:05:06 +00:00
|
|
|
fn get_spec(&self) -> &ChainSpec;
|
|
|
|
|
2019-03-18 13:26:15 +00:00
|
|
|
fn get_state(&self) -> RwLockReadGuard<BeaconState>;
|
|
|
|
|
2019-03-21 06:17:01 +00:00
|
|
|
fn slot(&self) -> Slot;
|
|
|
|
|
2019-03-18 06:38:23 +00:00
|
|
|
fn head(&self) -> RwLockReadGuard<CheckPoint>;
|
|
|
|
|
2019-03-21 06:17:01 +00:00
|
|
|
fn best_slot(&self) -> Slot;
|
|
|
|
|
|
|
|
fn best_block_root(&self) -> Hash256;
|
|
|
|
|
2019-03-18 06:38:23 +00:00
|
|
|
fn finalized_head(&self) -> RwLockReadGuard<CheckPoint>;
|
2019-03-21 06:17:01 +00:00
|
|
|
|
|
|
|
fn finalized_epoch(&self) -> Epoch;
|
|
|
|
|
|
|
|
fn hello_message(&self) -> HelloMessage;
|
2019-03-18 06:38:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, U, F> BeaconChain for RawBeaconChain<T, U, F>
|
|
|
|
where
|
|
|
|
T: ClientDB + Sized,
|
|
|
|
U: SlotClock,
|
|
|
|
F: ForkChoice,
|
|
|
|
{
|
2019-03-18 13:05:06 +00:00
|
|
|
fn get_spec(&self) -> &ChainSpec {
|
|
|
|
&self.spec
|
|
|
|
}
|
|
|
|
|
2019-03-18 13:26:15 +00:00
|
|
|
fn get_state(&self) -> RwLockReadGuard<BeaconState> {
|
|
|
|
self.state.read()
|
|
|
|
}
|
|
|
|
|
2019-03-21 06:17:01 +00:00
|
|
|
fn slot(&self) -> Slot {
|
|
|
|
self.get_state().slot
|
|
|
|
}
|
|
|
|
|
2019-03-18 06:38:23 +00:00
|
|
|
fn head(&self) -> RwLockReadGuard<CheckPoint> {
|
|
|
|
self.head()
|
|
|
|
}
|
|
|
|
|
2019-03-21 06:17:01 +00:00
|
|
|
fn finalized_epoch(&self) -> Epoch {
|
|
|
|
self.get_state().finalized_epoch
|
|
|
|
}
|
|
|
|
|
2019-03-18 06:38:23 +00:00
|
|
|
fn finalized_head(&self) -> RwLockReadGuard<CheckPoint> {
|
|
|
|
self.finalized_head()
|
|
|
|
}
|
2019-03-21 06:17:01 +00:00
|
|
|
|
|
|
|
fn best_slot(&self) -> Slot {
|
|
|
|
self.head().beacon_block.slot
|
|
|
|
}
|
|
|
|
|
|
|
|
fn best_block_root(&self) -> Hash256 {
|
|
|
|
self.head().beacon_block_root
|
|
|
|
}
|
|
|
|
|
|
|
|
fn hello_message(&self) -> HelloMessage {
|
|
|
|
let spec = self.get_spec();
|
|
|
|
let state = self.get_state();
|
|
|
|
|
|
|
|
HelloMessage {
|
|
|
|
network_id: spec.network_id,
|
|
|
|
latest_finalized_root: state.finalized_root,
|
|
|
|
latest_finalized_epoch: state.finalized_epoch,
|
|
|
|
best_root: self.best_block_root(),
|
|
|
|
best_slot: self.best_slot(),
|
|
|
|
}
|
|
|
|
}
|
2019-03-18 06:38:23 +00:00
|
|
|
}
|