hosc-0.14.1: Haskell Open Sound Control

Safe HaskellNone

Sound.OSC.Time

Contents

Description

OSC related timing functions. OSC timestamps are NTP values, http://ntp.org/.

Synopsis

Temporal types

type NTPi = Word64Source

Type for integer (binary) representation of NTP time.

type UT = DoubleSource

Unix/Posix epoch time in real-valued (fractional) form.

Time conversion

ntpr_to_ntpi :: RealFrac n => n -> NTPiSource

Convert a real-valued NTP timestamp to an NTPi timestamp.

ntpi_to_ntpr :: Fractional n => NTPi -> nSource

Convert an NTPi timestamp to a real-valued NTP timestamp.

ntp_ut_epoch_diff :: Num n => nSource

Difference (in seconds) between NTP and UT epochs.

 ntp_ut_epoch_diff / (24 * 60 * 60) == 25567

ut_to_ntpi :: UT -> NTPiSource

Convert a UT timestamp to an NTPi timestamp.

ut_to_ntpr :: Num n => n -> nSource

Convert Unix/Posix to NTP.

ntpr_to_ut :: Num n => n -> nSource

Convert NTP to Unix/Posix.

ntpi_to_ut :: NTPi -> UTSource

Convert NTPi to Unix/Posix.

Time inter-operation.

ut_epoch :: UTCTimeSource

The time at 1970-01-01:00:00:00.

utc_to_ut :: Fractional n => UTCTime -> nSource

Convert UTCTime to Unix/Posix.

Clock operations

time :: MonadIO m => m TimeSource

Read current real-valued NTP timestamp.

 do {ct <- fmap utc_to_ut T.getCurrentTime
    ;pt <- fmap realToFrac T.getPOSIXTime
    ;print (pt - ct,pt - ct < 1e-5)}

Thread operations.

pauseThreadLimit :: Fractional n => nSource

The pauseThread limit (in seconds). Values larger than this require a different thread delay mechanism, see sleepThread. The value is the number of microseconds in maxBound::Int.

pauseThread :: (MonadIO m, Ord n, RealFrac n) => n -> m ()Source

Pause current thread for the indicated duration (in seconds), see pauseThreadLimit.

wait :: MonadIO m => Double -> m ()Source

Type restricted pauseThread.

pauseThreadUntil :: MonadIO m => Time -> m ()Source

Pause current thread until the given Time, see pauseThreadLimit.

sleepThread :: (RealFrac n, MonadIO m) => n -> m ()Source

Sleep current thread for the indicated duration (in seconds). Divides long sleeps into parts smaller than pauseThreadLimit.

sleepThreadUntil :: MonadIO m => Time -> m ()Source

Sleep current thread until the given Time. Divides long sleeps into parts smaller than pauseThreadLimit.