{-# LINE 1 "System/Clock.hsc" #-}
{-# OPTIONS_GHC -fno-warn-type-defaults #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
module System.Clock
( Clock(..)
, TimeSpec(..)
, getTime
, getRes
, fromNanoSecs
, toNanoSecs
, diffTimeSpec
, timeSpecAsNanoSecs
, normalize
, s2ns
) where
import Control.Applicative ((<$>), (<*>))
import Data.Int
import Data.Word
import Data.Ratio
import Data.Typeable (Typeable)
import Foreign.C
import Foreign.Ptr
import Foreign.Storable
import Foreign.Marshal.Alloc
import GHC.Generics (Generic)
{-# LINE 38 "System/Clock.hsc" #-}
{-# LINE 42 "System/Clock.hsc" #-}
{-# LINE 43 "System/Clock.hsc" #-}
{-# LINE 47 "System/Clock.hsc" #-}
data Clock
= Monotonic
| Realtime
| ProcessCPUTime
| ThreadCPUTime
{-# LINE 85 "System/Clock.hsc" #-}
| MonotonicRaw
{-# LINE 93 "System/Clock.hsc" #-}
{-# LINE 106 "System/Clock.hsc" #-}
{-# LINE 114 "System/Clock.hsc" #-}
{-# LINE 122 "System/Clock.hsc" #-}
deriving (Eq, Enum, Generic, Read, Show, Typeable)
{-# LINE 135 "System/Clock.hsc" #-}
foreign import ccall unsafe clock_gettime :: Word32 -> Ptr TimeSpec -> IO CInt
{-# LINE 136 "System/Clock.hsc" #-}
foreign import ccall unsafe clock_getres :: Word32 -> Ptr TimeSpec -> IO CInt
{-# LINE 137 "System/Clock.hsc" #-}
{-# LINE 138 "System/Clock.hsc" #-}
{-# LINE 140 "System/Clock.hsc" #-}
clockToConst :: Clock -> Word32
{-# LINE 141 "System/Clock.hsc" #-}
clockToConst Monotonic = 6
{-# LINE 142 "System/Clock.hsc" #-}
clockToConst Realtime = 0
{-# LINE 143 "System/Clock.hsc" #-}
clockToConst ProcessCPUTime = 12
{-# LINE 144 "System/Clock.hsc" #-}
clockToConst ThreadCPUTime = 16
{-# LINE 145 "System/Clock.hsc" #-}
{-# LINE 147 "System/Clock.hsc" #-}
clockToConst MonotonicRaw = 4
{-# LINE 148 "System/Clock.hsc" #-}
{-# LINE 149 "System/Clock.hsc" #-}
{-# LINE 152 "System/Clock.hsc" #-}
{-# LINE 155 "System/Clock.hsc" #-}
{-# LINE 158 "System/Clock.hsc" #-}
{-# LINE 159 "System/Clock.hsc" #-}
allocaAndPeek :: Storable a => (Ptr a -> IO ()) -> IO a
allocaAndPeek f = alloca $ \ptr -> f ptr >> peek ptr
getTime :: Clock -> IO TimeSpec
getRes :: Clock -> IO TimeSpec
{-# LINE 178 "System/Clock.hsc" #-}
getTime clk = allocaAndPeek $! throwErrnoIfMinus1_ "clock_gettime" . clock_gettime (clockToConst clk)
{-# LINE 180 "System/Clock.hsc" #-}
{-# LINE 187 "System/Clock.hsc" #-}
getRes clk = allocaAndPeek $! throwErrnoIfMinus1_ "clock_getres" . clock_getres (clockToConst clk)
{-# LINE 189 "System/Clock.hsc" #-}
data TimeSpec = TimeSpec
{ sec :: {-# UNPACK #-} !Int64
, nsec :: {-# UNPACK #-} !Int64
} deriving (Generic, Read, Show, Typeable)
{-# LINE 208 "System/Clock.hsc" #-}
instance Storable TimeSpec where
sizeOf _ = (16)
{-# LINE 210 "System/Clock.hsc" #-}
alignment _ = 8
{-# LINE 211 "System/Clock.hsc" #-}
poke ptr ts = do
let xs :: Int64 = fromIntegral $ sec ts
{-# LINE 213 "System/Clock.hsc" #-}
xn :: Int64 = fromIntegral $ nsec ts
{-# LINE 214 "System/Clock.hsc" #-}
(\hsc_ptr -> pokeByteOff hsc_ptr 0) ptr (xs)
{-# LINE 215 "System/Clock.hsc" #-}
(\hsc_ptr -> pokeByteOff hsc_ptr 8) ptr (xn)
{-# LINE 216 "System/Clock.hsc" #-}
peek ptr = do
xs :: Int64 <- (\hsc_ptr -> peekByteOff hsc_ptr 0) ptr
{-# LINE 218 "System/Clock.hsc" #-}
xn :: Int64 <- (\hsc_ptr -> peekByteOff hsc_ptr 8) ptr
{-# LINE 219 "System/Clock.hsc" #-}
return $ TimeSpec (fromIntegral xs) (fromIntegral xn)
{-# LINE 221 "System/Clock.hsc" #-}
s2ns :: Num a => a
s2ns = 10^9
normalize :: TimeSpec -> TimeSpec
normalize (TimeSpec xs xn) | xn < 0 || xn >= s2ns = TimeSpec (xs + q) r
| otherwise = TimeSpec xs xn
where (q, r) = xn `divMod` s2ns
instance Num TimeSpec where
(TimeSpec xs xn) + (TimeSpec ys yn) = normalize $! TimeSpec (xs + ys) (xn + yn)
(TimeSpec xs xn) - (TimeSpec ys yn) = normalize $! TimeSpec (xs - ys) (xn - yn)
(normalize -> TimeSpec xs xn) * (normalize -> TimeSpec ys yn) = normalize $! TimeSpec (s2ns*xs*ys+xs*yn+xn*ys) (xn*yn)
negate (TimeSpec xs xn) = normalize $! TimeSpec (negate xs) (negate xn)
abs (normalize -> TimeSpec xs xn) | xs == 0 = normalize $! TimeSpec 0 xn
| otherwise = normalize $! TimeSpec (abs xs) (signum xs * xn)
signum (normalize -> TimeSpec xs xn) | xs == 0 = TimeSpec 0 (signum xn)
| otherwise = TimeSpec 0 (signum xs)
fromInteger x = TimeSpec (fromInteger q) (fromInteger r) where (q, r) = x `divMod` s2ns
instance Enum TimeSpec where
succ x = x + 1
pred x = x - 1
toEnum x = normalize $ TimeSpec 0 (fromIntegral x)
fromEnum = fromEnum . toInteger
instance Real TimeSpec where
toRational x = toInteger x % 1
instance Integral TimeSpec where
toInteger = toNanoSecs
quot (toInteger-> t1) (toInteger-> t2) = fromInteger $! quot t1 t2
rem (toInteger-> t1) (toInteger-> t2) = fromInteger $! rem t1 t2
div (toInteger-> t1) (toInteger-> t2) = fromInteger $! div t1 t2
mod (toInteger-> t1) (toInteger-> t2) = fromInteger $! mod t1 t2
divMod (toInteger-> t1) (toInteger-> t2) =
let (q,r)=divMod t1 t2 in (fromInteger $! q, fromInteger $! r)
quotRem (toInteger-> t1) (toInteger-> t2) =
let (q,r)=quotRem t1 t2 in (fromInteger $! q, fromInteger $! r)
instance Eq TimeSpec where
(normalize -> TimeSpec xs xn) == (normalize -> TimeSpec ys yn) | True == es = xn == yn
| otherwise = es
where es = xs == ys
instance Ord TimeSpec where
compare (normalize -> TimeSpec xs xn) (normalize -> TimeSpec ys yn) | EQ == os = compare xn yn
| otherwise = os
where os = compare xs ys
instance Bounded TimeSpec where
minBound = TimeSpec minBound 0
maxBound = TimeSpec maxBound (s2ns-1)
fromNanoSecs :: Integer -> TimeSpec
fromNanoSecs x = TimeSpec (fromInteger q) (fromInteger r) where (q, r) = x `divMod` s2ns
toNanoSecs :: TimeSpec -> Integer
toNanoSecs (TimeSpec (toInteger -> s) (toInteger -> n)) = s * s2ns + n
diffTimeSpec :: TimeSpec -> TimeSpec -> TimeSpec
diffTimeSpec ts1 ts2 = abs (ts1 - ts2)
{-# DEPRECATED timeSpecAsNanoSecs "Use toNanoSecs instead! Replaced timeSpecAsNanoSecs with the same signature TimeSpec -> Integer" #-}
timeSpecAsNanoSecs :: TimeSpec -> Integer
timeSpecAsNanoSecs (TimeSpec s n) = toInteger s * s2ns + toInteger n