refactor aura slot timers a bit, add additional guards (#1303)

This commit is contained in:
Robert Habermeier
2018-12-29 15:29:09 +01:00
committed by Gav Wood
parent 831fd9947f
commit 35ba22cdd1
2 changed files with 228 additions and 122 deletions
+122
View File
@@ -0,0 +1,122 @@
// Copyright 2018 Parity Technologies (UK) Ltd.
// This file is part of Substrate.
// Substrate 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.
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
//! Utility stream for yielding slots in a loop.
//!
//! This is used instead of `tokio_timer::Interval` because it was unreliable.
use std::time::{Instant, Duration};
use tokio::timer::Delay;
use futures::prelude::*;
/// Returns the duration until the next slot, based on current duration since
pub(crate) fn time_until_next(now: Duration, slot_duration: u64) -> Duration {
let remaining_full_secs = slot_duration - (now.as_secs() % slot_duration) - 1;
let remaining_nanos = 1_000_000_000 - now.subsec_nanos();
Duration::new(remaining_full_secs, remaining_nanos)
}
/// Information about a slot.
#[derive(Debug, Clone)]
pub(crate) struct SlotInfo {
/// The slot number.
pub(crate) number: u64,
/// Current timestamp.
pub(crate) timestamp: u64,
/// The instant at which the slot ends.
pub(crate) ends_at: Instant,
}
impl SlotInfo {
/// Yields the remaining duration in the slot.
pub(crate) fn remaining_duration(&self) -> Duration {
let now = Instant::now();
if now < self.ends_at {
self.ends_at.duration_since(now)
} else {
Duration::from_secs(0)
}
}
}
/// A stream that returns every time there is a new slot.
pub(crate) struct Slots {
last_slot: u64,
slot_duration: u64,
inner_delay: Option<Delay>,
}
impl Slots {
/// Create a new `slots` stream.
pub(crate) fn new(slot_duration: u64) -> Self {
Slots {
last_slot: 0,
slot_duration,
inner_delay: None,
}
}
}
impl Stream for Slots {
type Item = SlotInfo;
type Error = tokio::timer::Error;
fn poll(&mut self) -> Poll<Option<SlotInfo>, Self::Error> {
let slot_duration = self.slot_duration;
self.inner_delay = match self.inner_delay.take() {
None => {
// schedule wait.
let wait_until = match ::duration_now() {
None => return Ok(Async::Ready(None)),
Some(now) => Instant::now() + time_until_next(now, slot_duration),
};
Some(Delay::new(wait_until))
}
Some(d) => Some(d),
};
if let Some(ref mut inner_delay) = self.inner_delay {
try_ready!(inner_delay.poll());
}
// timeout has fired.
let (timestamp, slot_num) = match ::timestamp_and_slot_now(slot_duration) {
None => return Ok(Async::Ready(None)),
Some(x) => x,
};
// reschedule delay for next slot.
let ends_at = Instant::now()
+ time_until_next(Duration::from_secs(timestamp), slot_duration);
self.inner_delay = Some(Delay::new(ends_at));
// never yield the same slot twice.
if slot_num > self.last_slot {
self.last_slot = slot_num;
Ok(Async::Ready(Some(SlotInfo {
number: slot_num,
timestamp,
ends_at,
})))
} else {
// re-poll until we get a new slot.
self.poll()
}
}
}