2019-08-19 11:02:34 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
|
|
|
mod metrics;
|
2019-02-14 01:09:18 +00:00
|
|
|
mod system_time_slot_clock;
|
|
|
|
mod testing_slot_clock;
|
|
|
|
|
2019-08-29 03:25:55 +00:00
|
|
|
use std::time::{Duration, Instant, SystemTime, UNIX_EPOCH};
|
2019-08-19 11:02:34 +00:00
|
|
|
|
2019-08-29 02:46:18 +00:00
|
|
|
pub use crate::system_time_slot_clock::SystemTimeSlotClock;
|
|
|
|
pub use crate::testing_slot_clock::TestingSlotClock;
|
2019-08-19 11:02:34 +00:00
|
|
|
pub use metrics::scrape_for_metrics;
|
2019-02-14 01:09:18 +00:00
|
|
|
pub use types::Slot;
|
|
|
|
|
2019-05-27 05:12:51 +00:00
|
|
|
pub trait SlotClock: Send + Sync + Sized {
|
2019-08-29 03:25:55 +00:00
|
|
|
fn from_eth2_genesis(
|
|
|
|
genesis_slot: Slot,
|
|
|
|
genesis_seconds: u64,
|
|
|
|
slot_duration: Duration,
|
|
|
|
) -> Option<Self> {
|
|
|
|
let duration_between_now_and_unix_epoch =
|
|
|
|
SystemTime::now().duration_since(UNIX_EPOCH).ok()?;
|
|
|
|
let duration_between_unix_epoch_and_genesis = Duration::from_secs(genesis_seconds);
|
|
|
|
|
|
|
|
if duration_between_now_and_unix_epoch < duration_between_unix_epoch_and_genesis {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
let genesis_instant = Instant::now()
|
|
|
|
- (duration_between_now_and_unix_epoch - duration_between_unix_epoch_and_genesis);
|
|
|
|
Some(Self::new(genesis_slot, genesis_instant, slot_duration))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-29 02:46:18 +00:00
|
|
|
fn new(genesis_slot: Slot, genesis: Instant, slot_duration: Duration) -> Self;
|
2019-02-14 01:09:18 +00:00
|
|
|
|
2019-08-29 02:46:18 +00:00
|
|
|
fn present_slot(&self) -> Option<Slot>;
|
2019-05-27 05:12:51 +00:00
|
|
|
|
2019-08-29 02:46:18 +00:00
|
|
|
fn duration_to_next_slot(&self) -> Option<Duration>;
|
2019-03-26 23:36:20 +00:00
|
|
|
|
2019-08-29 02:46:18 +00:00
|
|
|
fn slot_duration(&self) -> Duration;
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|