2020-05-18 15:59:07 +03:00
|
|
|
module System.Clock
|
|
|
|
|
|
|
|
import PrimIO
|
|
|
|
|
|
|
|
||| The various types of system clock available.
|
|
|
|
public export
|
|
|
|
data ClockType
|
|
|
|
= UTC -- The time elapsed since the "epoch:" 00:00:00 UTC, January 1, 1970
|
|
|
|
| Monotonic -- The time elapsed since some arbitrary point in the past
|
|
|
|
| Duration -- Representing a time duration.
|
|
|
|
| Process -- The amount of CPU time used by the current process.
|
|
|
|
| Thread -- The amount of CPU time used by the current thread.
|
|
|
|
| GCCPU -- The current process's CPU time consumed by the garbage collector.
|
|
|
|
| GCReal -- The current process's real time consumed by the garbage collector.
|
|
|
|
|
|
|
|
export
|
|
|
|
Show ClockType where
|
|
|
|
show UTC = "UTC"
|
|
|
|
show Monotonic = "monotonic"
|
|
|
|
show Duration = "duration"
|
|
|
|
show Process = "process"
|
|
|
|
show Thread = "thread"
|
|
|
|
show GCCPU = "gcCPU"
|
|
|
|
show GCReal = "gcReal"
|
|
|
|
|
|
|
|
public export
|
|
|
|
data Clock : (type : ClockType) -> Type where
|
|
|
|
MkClock
|
|
|
|
: {type : ClockType}
|
|
|
|
-> (seconds : Integer)
|
|
|
|
-> (nanoseconds : Integer)
|
|
|
|
-> Clock type
|
|
|
|
|
|
|
|
public export
|
|
|
|
Eq (Clock type) where
|
|
|
|
(MkClock seconds1 nanoseconds1) == (MkClock seconds2 nanoseconds2) =
|
|
|
|
seconds1 == seconds2 && nanoseconds1 == nanoseconds2
|
|
|
|
|
|
|
|
public export
|
|
|
|
Ord (Clock type) where
|
|
|
|
compare (MkClock seconds1 nanoseconds1) (MkClock seconds2 nanoseconds2) =
|
|
|
|
case compare seconds1 seconds2 of
|
|
|
|
LT => LT
|
|
|
|
GT => GT
|
|
|
|
EQ => compare nanoseconds1 nanoseconds2
|
|
|
|
|
|
|
|
public export
|
|
|
|
Show (Clock type) where
|
|
|
|
show (MkClock {type} seconds nanoseconds) =
|
|
|
|
show type ++ ": " ++ show seconds ++ "s " ++ show nanoseconds ++ "ns"
|
|
|
|
|
|
|
|
||| A helper to deconstruct a Clock.
|
|
|
|
public export
|
|
|
|
seconds : Clock type -> Integer
|
|
|
|
seconds (MkClock s _) = s
|
|
|
|
|
|
|
|
||| A helper to deconstruct a Clock.
|
|
|
|
public export
|
|
|
|
nanoseconds : Clock type -> Integer
|
|
|
|
nanoseconds (MkClock _ ns) = ns
|
|
|
|
|
|
|
|
||| Make a duration value.
|
|
|
|
public export
|
|
|
|
makeDuration : Integer -> Integer -> Clock Duration
|
|
|
|
makeDuration = MkClock
|
|
|
|
|
|
|
|
||| Opaque clock value manipulated by the back-end.
|
|
|
|
data OSClock : Type where [external]
|
|
|
|
|
|
|
|
||| Note: Back-ends are required to implement UTC, monotonic time, CPU time
|
|
|
|
||| in current process/thread, and time duration; the rest are optional.
|
2020-05-30 19:03:15 +03:00
|
|
|
export
|
2020-05-18 15:59:07 +03:00
|
|
|
data ClockTypeMandatory
|
|
|
|
= Mandatory
|
|
|
|
| Optional
|
|
|
|
|
|
|
|
public export
|
|
|
|
isClockMandatory : ClockType -> ClockTypeMandatory
|
|
|
|
isClockMandatory GCCPU = Optional
|
|
|
|
isClockMandatory GCReal = Optional
|
|
|
|
isClockMandatory _ = Mandatory
|
|
|
|
|
2020-08-24 19:38:29 +03:00
|
|
|
%foreign "scheme:blodwen-clock-time-monotonic"
|
|
|
|
prim__clockTimeMonotonic : PrimIO OSClock
|
|
|
|
|
|
|
|
clockTimeMonotonic : IO OSClock
|
|
|
|
clockTimeMonotonic = fromPrim prim__clockTimeMonotonic
|
|
|
|
|
|
|
|
%foreign "scheme:blodwen-clock-time-utc"
|
|
|
|
prim__clockTimeUtc : PrimIO OSClock
|
|
|
|
|
|
|
|
clockTimeUtc : IO OSClock
|
|
|
|
clockTimeUtc = fromPrim prim__clockTimeUtc
|
|
|
|
|
|
|
|
%foreign "scheme:blodwen-clock-time-process"
|
|
|
|
prim__clockTimeProcess : PrimIO OSClock
|
|
|
|
|
|
|
|
clockTimeProcess : IO OSClock
|
|
|
|
clockTimeProcess = fromPrim prim__clockTimeProcess
|
|
|
|
|
|
|
|
%foreign "scheme:blodwen-clock-time-thread"
|
|
|
|
prim__clockTimeThread : PrimIO OSClock
|
|
|
|
|
|
|
|
clockTimeThread : IO OSClock
|
|
|
|
clockTimeThread = fromPrim prim__clockTimeThread
|
|
|
|
|
|
|
|
%foreign "scheme:blodwen-clock-time-gccpu"
|
|
|
|
prim__clockTimeGcCpu : PrimIO OSClock
|
|
|
|
|
|
|
|
clockTimeGcCpu : IO OSClock
|
|
|
|
clockTimeGcCpu = fromPrim prim__clockTimeGcCpu
|
|
|
|
|
|
|
|
%foreign "scheme:blodwen-clock-time-gcreal"
|
|
|
|
prim__clockTimeGcReal : PrimIO OSClock
|
|
|
|
|
|
|
|
clockTimeGcReal : IO OSClock
|
|
|
|
clockTimeGcReal = fromPrim prim__clockTimeGcReal
|
2020-05-18 15:59:07 +03:00
|
|
|
|
|
|
|
fetchOSClock : ClockType -> IO OSClock
|
2020-08-24 19:38:29 +03:00
|
|
|
fetchOSClock UTC = clockTimeUtc
|
|
|
|
fetchOSClock Monotonic = clockTimeMonotonic
|
|
|
|
fetchOSClock Process = clockTimeProcess
|
|
|
|
fetchOSClock Thread = clockTimeThread
|
|
|
|
fetchOSClock GCCPU = clockTimeGcCpu
|
|
|
|
fetchOSClock GCReal = clockTimeGcReal
|
|
|
|
fetchOSClock Duration = clockTimeMonotonic
|
|
|
|
|
2020-08-25 14:30:57 +03:00
|
|
|
%foreign "scheme:blodwen-is-time?"
|
2020-08-24 19:38:29 +03:00
|
|
|
prim__osClockValid : OSClock -> PrimIO Int
|
2020-05-18 15:59:07 +03:00
|
|
|
|
|
|
|
||| A test to determine the status of optional clocks.
|
|
|
|
osClockValid : OSClock -> IO Int
|
2020-08-24 19:38:29 +03:00
|
|
|
osClockValid clk = fromPrim (prim__osClockValid clk)
|
|
|
|
|
|
|
|
%foreign "scheme:blodwen-clock-second"
|
|
|
|
prim__osClockSecond : OSClock -> PrimIO Bits64
|
|
|
|
|
|
|
|
osClockSecond : OSClock -> IO Bits64
|
|
|
|
osClockSecond clk = fromPrim (prim__osClockSecond clk)
|
|
|
|
|
|
|
|
%foreign "scheme:blodwen-clock-nanosecond"
|
|
|
|
prim__osClockNanosecond : OSClock -> PrimIO Bits64
|
|
|
|
|
|
|
|
osClockNanosecond : OSClock -> IO Bits64
|
|
|
|
osClockNanosecond clk = fromPrim (prim__osClockNanosecond clk)
|
2020-05-18 15:59:07 +03:00
|
|
|
|
|
|
|
fromOSClock : {type : ClockType} -> OSClock -> IO (Clock type)
|
|
|
|
fromOSClock clk =
|
|
|
|
pure $
|
|
|
|
MkClock
|
|
|
|
{type}
|
2020-08-24 19:38:29 +03:00
|
|
|
(cast !(osClockSecond clk))
|
|
|
|
(cast !(osClockNanosecond clk))
|
2020-05-18 15:59:07 +03:00
|
|
|
|
|
|
|
public export
|
|
|
|
clockTimeReturnType : (typ : ClockType) -> Type
|
|
|
|
clockTimeReturnType typ with (isClockMandatory typ)
|
|
|
|
clockTimeReturnType typ | Optional = Maybe (Clock typ)
|
|
|
|
clockTimeReturnType typ | Mandatory = Clock typ
|
|
|
|
|
|
|
|
||| Fetch the system clock of a given kind. If the clock is mandatory,
|
|
|
|
||| we return a (Clock type) else (Maybe (Clock type)).
|
|
|
|
public export
|
|
|
|
clockTime : (typ : ClockType) -> IO (clockTimeReturnType typ)
|
|
|
|
clockTime clockType with (isClockMandatory clockType)
|
|
|
|
clockTime clockType | Mandatory = fetchOSClock clockType >>= fromOSClock
|
|
|
|
clockTime clockType | Optional = do
|
|
|
|
clk <- fetchOSClock clockType
|
|
|
|
valid <- map (== 1) $ osClockValid clk
|
|
|
|
if valid
|
|
|
|
then map Just $ fromOSClock clk
|
|
|
|
else pure Nothing
|
|
|
|
|
|
|
|
toNano : Clock type -> Integer
|
|
|
|
toNano (MkClock seconds nanoseconds) =
|
|
|
|
let scale = 1000000000
|
|
|
|
in scale * seconds + nanoseconds
|
|
|
|
|
|
|
|
fromNano : {type : ClockType} -> Integer -> Clock type
|
|
|
|
fromNano n =
|
|
|
|
let scale = 1000000000
|
|
|
|
seconds = n `div` scale
|
|
|
|
nanoseconds = n `mod` scale
|
|
|
|
in MkClock seconds nanoseconds
|
|
|
|
|
|
|
|
||| Compute difference between two clocks of the same type.
|
|
|
|
public export
|
|
|
|
timeDifference : Clock type -> Clock type -> Clock Duration
|
|
|
|
timeDifference clock duration = fromNano $ toNano clock - toNano duration
|
|
|
|
|
|
|
|
||| Add a duration to a clock value.
|
|
|
|
public export
|
|
|
|
addDuration : {type : ClockType} -> Clock type -> Clock Duration -> Clock type
|
|
|
|
addDuration clock duration = fromNano $ toNano clock + toNano duration
|
|
|
|
|
|
|
|
||| Subtract a duration from a clock value.
|
|
|
|
public export
|
|
|
|
subtractDuration : {type : ClockType} -> Clock type -> Clock Duration -> Clock type
|
|
|
|
subtractDuration clock duration = fromNano $ toNano clock - toNano duration
|