2018-11-23 23:58:49 +00:00
|
|
|
import
|
2018-11-29 01:08:34 +00:00
|
|
|
random,
|
|
|
|
asyncdispatch2,
|
|
|
|
spec/datatypes
|
2018-11-23 23:58:49 +00:00
|
|
|
|
|
|
|
type
|
2018-12-19 12:58:53 +00:00
|
|
|
Timestamp* = uint64 # Unix epoch timestamp in millisecond resolution
|
2018-11-23 23:58:49 +00:00
|
|
|
|
|
|
|
var
|
|
|
|
detectedClockDrift: int64
|
|
|
|
|
2018-12-19 12:58:53 +00:00
|
|
|
template now*: auto = fastEpochTime()
|
|
|
|
|
2018-11-23 23:58:49 +00:00
|
|
|
proc timeSinceGenesis*(s: BeaconState): Timestamp =
|
|
|
|
Timestamp(int64(fastEpochTime() - s.genesis_time * 1000) -
|
|
|
|
detectedClockDrift)
|
|
|
|
|
2019-01-09 01:01:07 +00:00
|
|
|
template toSlot*(t: Timestamp): uint64 =
|
|
|
|
t div (SLOT_DURATION * 1000)
|
2018-11-23 23:58:49 +00:00
|
|
|
|
2019-01-09 01:01:07 +00:00
|
|
|
template slotStart*(s: BeaconState, slot: uint64): Timestamp =
|
|
|
|
(s.genesis_time + (slot * SLOT_DURATION)) * 1000
|
2018-11-23 23:58:49 +00:00
|
|
|
|
2019-01-09 01:01:07 +00:00
|
|
|
template slotMiddle*(s: BeaconState, slot: uint64): Timestamp =
|
2018-11-29 01:08:34 +00:00
|
|
|
s.slotStart(slot) + SLOT_DURATION * 500
|
2018-11-23 23:58:49 +00:00
|
|
|
|
2019-01-09 01:01:07 +00:00
|
|
|
template slotEnd*(s: BeaconState, slot: uint64): Timestamp =
|
2018-11-23 23:58:49 +00:00
|
|
|
s.slotStart(slot + 1)
|
|
|
|
|
|
|
|
proc randomTimeInSlot*(s: BeaconState,
|
2019-01-09 01:01:07 +00:00
|
|
|
slot: uint64,
|
2018-11-23 23:58:49 +00:00
|
|
|
interval: HSlice[float, float]): Timestamp =
|
|
|
|
## Returns a random moment within the slot.
|
|
|
|
## The interval must be a sub-interval of [0..1].
|
|
|
|
## Zero marks the begginning of the slot and One marks the end.
|
|
|
|
s.slotStart(slot) + Timestamp(rand(interval) * float(SLOT_DURATION * 1000))
|
|
|
|
|
|
|
|
proc slotDistanceFromNow*(s: BeaconState): int64 =
|
|
|
|
## Returns how many slots have passed since a particular BeaconState was finalized
|
2018-12-03 21:41:24 +00:00
|
|
|
int64(s.timeSinceGenesis() div (SLOT_DURATION * 1000)) - int64(s.finalized_slot)
|
2018-11-23 23:58:49 +00:00
|
|
|
|
|
|
|
proc syncrhronizeClock*() {.async.} =
|
|
|
|
## This should determine the offset of the local clock against a global
|
|
|
|
## trusted time (e.g. it can be obtained from multiple time servers).
|
|
|
|
|
|
|
|
# TODO: implement this properly
|
|
|
|
detectedClockDrift = 0
|
|
|
|
|