use super::{InherentDataProviderExt, Slot, LOG_TARGET};
use sp_consensus::{SelectChain, SyncOracle};
use sp_inherents::{CreateInherentDataProviders, InherentDataProvider};
use sp_runtime::traits::{Block as BlockT, Header as HeaderT};
use futures_timer::Delay;
use std::time::{Duration, Instant};
pub fn duration_now() -> Duration {
use std::time::SystemTime;
let now = SystemTime::now();
now.duration_since(SystemTime::UNIX_EPOCH).unwrap_or_else(|e| {
panic!("Current time {:?} is before unix epoch. Something is wrong: {:?}", now, e)
})
}
pub fn time_until_next_slot(slot_duration: Duration) -> Duration {
let now = duration_now().as_millis();
let next_slot = (now + slot_duration.as_millis()) / slot_duration.as_millis();
let remaining_millis = next_slot * slot_duration.as_millis() - now;
Duration::from_millis(remaining_millis as u64)
}
pub struct SlotInfo<B: BlockT> {
pub slot: Slot,
pub ends_at: Instant,
pub create_inherent_data: Box<dyn InherentDataProvider>,
pub duration: Duration,
pub chain_head: B::Header,
pub block_size_limit: Option<usize>,
}
impl<B: BlockT> SlotInfo<B> {
pub fn new(
slot: Slot,
create_inherent_data: Box<dyn InherentDataProvider>,
duration: Duration,
chain_head: B::Header,
block_size_limit: Option<usize>,
) -> Self {
Self {
slot,
create_inherent_data,
duration,
chain_head,
block_size_limit,
ends_at: Instant::now() + time_until_next_slot(duration),
}
}
}
pub(crate) struct Slots<Block, SC, IDP, SO> {
last_slot: Slot,
slot_duration: Duration,
until_next_slot: Option<Delay>,
create_inherent_data_providers: IDP,
select_chain: SC,
sync_oracle: SO,
_phantom: std::marker::PhantomData<Block>,
}
impl<Block, SC, IDP, SO> Slots<Block, SC, IDP, SO> {
pub fn new(
slot_duration: Duration,
create_inherent_data_providers: IDP,
select_chain: SC,
sync_oracle: SO,
) -> Self {
Slots {
last_slot: 0.into(),
slot_duration,
until_next_slot: None,
create_inherent_data_providers,
select_chain,
sync_oracle,
_phantom: Default::default(),
}
}
}
impl<Block, SC, IDP, SO> Slots<Block, SC, IDP, SO>
where
Block: BlockT,
SC: SelectChain<Block>,
IDP: CreateInherentDataProviders<Block, ()> + 'static,
IDP::InherentDataProviders: crate::InherentDataProviderExt,
SO: SyncOracle,
{
pub async fn next_slot(&mut self) -> SlotInfo<Block> {
loop {
self.until_next_slot
.take()
.unwrap_or_else(|| {
let wait_dur = time_until_next_slot(self.slot_duration);
Delay::new(wait_dur)
})
.await;
let wait_dur = time_until_next_slot(self.slot_duration);
self.until_next_slot = Some(Delay::new(wait_dur));
if self.sync_oracle.is_major_syncing() {
log::debug!(target: LOG_TARGET, "Skipping slot: major sync is in progress.");
continue;
}
let chain_head = match self.select_chain.best_chain().await {
Ok(x) => x,
Err(e) => {
log::warn!(
target: LOG_TARGET,
"Unable to author block in slot. No best block header: {}",
e,
);
continue
},
};
let inherent_data_providers = match self
.create_inherent_data_providers
.create_inherent_data_providers(chain_head.hash(), ())
.await
{
Ok(x) => x,
Err(e) => {
log::warn!(
target: LOG_TARGET,
"Unable to author block in slot. Failure creating inherent data provider: {}",
e,
);
continue
},
};
let slot = inherent_data_providers.slot();
if slot > self.last_slot {
self.last_slot = slot;
break SlotInfo::new(
slot,
Box::new(inherent_data_providers),
self.slot_duration,
chain_head,
None,
)
}
}
}
}