mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-08 17:26:04 +00:00
Port timer to stable futures
This commit is contained in:
@@ -8,7 +8,7 @@ edition = "2018"
|
|||||||
beacon_chain = { path = "../beacon_chain" }
|
beacon_chain = { path = "../beacon_chain" }
|
||||||
types = { path = "../../eth2/types" }
|
types = { path = "../../eth2/types" }
|
||||||
slot_clock = { path = "../../eth2/utils/slot_clock" }
|
slot_clock = { path = "../../eth2/utils/slot_clock" }
|
||||||
tokio = "0.1.22"
|
tokio = { version = "0.2", features = ["full"] }
|
||||||
slog = "2.5.2"
|
slog = "2.5.2"
|
||||||
parking_lot = "0.10.0"
|
parking_lot = "0.10.0"
|
||||||
futures = "0.1.29"
|
futures = "0.3"
|
||||||
|
|||||||
@@ -3,22 +3,19 @@
|
|||||||
//! This service allows task execution on the beacon node for various functionality.
|
//! This service allows task execution on the beacon node for various functionality.
|
||||||
|
|
||||||
use beacon_chain::{BeaconChain, BeaconChainTypes};
|
use beacon_chain::{BeaconChain, BeaconChainTypes};
|
||||||
use futures::{future, prelude::*};
|
use futures::stream::{StreamExt};
|
||||||
use slog::error;
|
|
||||||
use slot_clock::SlotClock;
|
use slot_clock::SlotClock;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use std::time::{Duration, Instant};
|
use std::time::Duration;
|
||||||
use tokio::runtime::TaskExecutor;
|
use tokio::sync::oneshot::error::TryRecvError;
|
||||||
use tokio::timer::Interval;
|
use tokio::time::{interval_at, Instant};
|
||||||
|
|
||||||
/// Spawns a timer service which periodically executes tasks for the beacon chain
|
/// Spawns a timer service which periodically executes tasks for the beacon chain
|
||||||
pub fn spawn<T: BeaconChainTypes>(
|
pub async fn spawn<T: BeaconChainTypes>(
|
||||||
executor: &TaskExecutor,
|
|
||||||
beacon_chain: Arc<BeaconChain<T>>,
|
beacon_chain: Arc<BeaconChain<T>>,
|
||||||
milliseconds_per_slot: u64,
|
milliseconds_per_slot: u64,
|
||||||
log: slog::Logger,
|
|
||||||
) -> Result<tokio::sync::oneshot::Sender<()>, &'static str> {
|
) -> Result<tokio::sync::oneshot::Sender<()>, &'static str> {
|
||||||
let (exit_signal, exit) = tokio::sync::oneshot::channel();
|
let (exit_signal, mut exit) = tokio::sync::oneshot::channel();
|
||||||
|
|
||||||
let start_instant = Instant::now()
|
let start_instant = Instant::now()
|
||||||
+ beacon_chain
|
+ beacon_chain
|
||||||
@@ -26,25 +23,19 @@ pub fn spawn<T: BeaconChainTypes>(
|
|||||||
.duration_to_next_slot()
|
.duration_to_next_slot()
|
||||||
.ok_or_else(|| "slot_notifier unable to determine time to next slot")?;
|
.ok_or_else(|| "slot_notifier unable to determine time to next slot")?;
|
||||||
|
|
||||||
let timer_future = Interval::new(start_instant, Duration::from_millis(milliseconds_per_slot))
|
// Warning: `interval_at` panics on error
|
||||||
.map_err(move |e| {
|
let mut timer_future = interval_at(start_instant, Duration::from_millis(milliseconds_per_slot));
|
||||||
error!(
|
let timer_future = async move {
|
||||||
log,
|
while let Some(_) = timer_future.next().await {
|
||||||
"Beacon chain timer failed";
|
|
||||||
"error" => format!("{:?}", e)
|
|
||||||
)
|
|
||||||
})
|
|
||||||
.for_each(move |_| {
|
|
||||||
beacon_chain.per_slot_task();
|
beacon_chain.per_slot_task();
|
||||||
future::ok(())
|
match exit.try_recv() {
|
||||||
});
|
Ok(_) | Err(TryRecvError::Closed) => break,
|
||||||
|
Err(TryRecvError::Empty) => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
executor.spawn(
|
tokio::task::spawn(timer_future);
|
||||||
exit.map_err(|_| ())
|
|
||||||
.select(timer_future)
|
|
||||||
.map(|_| ())
|
|
||||||
.map_err(|_| ()),
|
|
||||||
);
|
|
||||||
|
|
||||||
Ok(exit_signal)
|
Ok(exit_signal)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user