2012-06-13 21:53:19 +00:00
|
|
|
{- thread scheduling
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012, 2013 Joey Hess <id@joeyh.name>
|
2012-06-13 21:53:19 +00:00
|
|
|
- Copyright 2011 Bas van Dijk & Roel van Dijk
|
|
|
|
-
|
2014-05-10 14:01:27 +00:00
|
|
|
- License: BSD-2-clause
|
2012-06-13 21:53:19 +00:00
|
|
|
-}
|
|
|
|
|
2013-02-10 19:48:38 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2019-11-23 15:07:22 +00:00
|
|
|
module Utility.ThreadScheduler (
|
|
|
|
Seconds(..),
|
|
|
|
Microseconds,
|
|
|
|
runEvery,
|
|
|
|
threadDelaySeconds,
|
|
|
|
waitForTermination,
|
|
|
|
oneSecond,
|
2021-06-04 17:16:48 +00:00
|
|
|
unboundDelay,
|
2019-11-23 15:07:22 +00:00
|
|
|
) where
|
2012-06-13 21:53:19 +00:00
|
|
|
|
2014-04-01 21:53:55 +00:00
|
|
|
import Control.Monad
|
2012-06-13 21:53:19 +00:00
|
|
|
import Control.Concurrent
|
2013-08-02 16:27:32 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2014-04-02 22:08:35 +00:00
|
|
|
import Control.Monad.IfElse
|
2014-04-02 21:21:36 +00:00
|
|
|
import System.Posix.IO
|
|
|
|
#endif
|
|
|
|
#ifndef mingw32_HOST_OS
|
2012-06-17 18:02:40 +00:00
|
|
|
import System.Posix.Signals
|
2013-02-10 19:48:38 +00:00
|
|
|
import System.Posix.Terminal
|
2013-05-26 15:08:18 +00:00
|
|
|
#endif
|
2012-06-13 21:53:19 +00:00
|
|
|
|
|
|
|
newtype Seconds = Seconds { fromSeconds :: Int }
|
|
|
|
deriving (Eq, Ord, Show)
|
|
|
|
|
2013-03-11 01:36:13 +00:00
|
|
|
type Microseconds = Integer
|
|
|
|
|
2012-06-13 21:53:19 +00:00
|
|
|
{- Runs an action repeatedly forever, sleeping at least the specified number
|
|
|
|
- of seconds in between. -}
|
|
|
|
runEvery :: Seconds -> IO a -> IO a
|
|
|
|
runEvery n a = forever $ do
|
|
|
|
threadDelaySeconds n
|
|
|
|
a
|
|
|
|
|
|
|
|
threadDelaySeconds :: Seconds -> IO ()
|
|
|
|
threadDelaySeconds (Seconds n) = unboundDelay (fromIntegral n * oneSecond)
|
|
|
|
|
|
|
|
{- Like threadDelay, but not bounded by an Int.
|
|
|
|
-
|
|
|
|
- There is no guarantee that the thread will be rescheduled promptly when the
|
|
|
|
- delay has expired, but the thread will never continue to run earlier than
|
|
|
|
- specified.
|
|
|
|
-
|
|
|
|
- Taken from the unbounded-delay package to avoid a dependency for 4 lines
|
|
|
|
- of code.
|
|
|
|
-}
|
2013-03-11 01:36:13 +00:00
|
|
|
unboundDelay :: Microseconds -> IO ()
|
2012-06-13 21:53:19 +00:00
|
|
|
unboundDelay time = do
|
|
|
|
let maxWait = min time $ toInteger (maxBound :: Int)
|
|
|
|
threadDelay $ fromInteger maxWait
|
|
|
|
when (maxWait /= time) $ unboundDelay (time - maxWait)
|
2012-06-17 18:02:40 +00:00
|
|
|
|
|
|
|
{- Pauses the main thread, letting children run until program termination. -}
|
|
|
|
waitForTermination :: IO ()
|
|
|
|
waitForTermination = do
|
2013-12-04 21:24:37 +00:00
|
|
|
#ifdef mingw32_HOST_OS
|
2014-07-16 20:16:25 +00:00
|
|
|
forever $ threadDelaySeconds (Seconds 6000)
|
2013-12-04 21:24:37 +00:00
|
|
|
#else
|
2012-06-17 18:02:40 +00:00
|
|
|
lock <- newEmptyMVar
|
2013-05-26 20:02:55 +00:00
|
|
|
let check sig = void $
|
2013-05-26 15:12:34 +00:00
|
|
|
installHandler sig (CatchOnce $ putMVar lock ()) Nothing
|
2013-05-26 20:02:55 +00:00
|
|
|
check softwareTermination
|
2012-06-17 18:02:40 +00:00
|
|
|
whenM (queryTerminal stdInput) $
|
2013-05-26 20:02:55 +00:00
|
|
|
check keyboardSignal
|
2012-06-17 18:02:40 +00:00
|
|
|
takeMVar lock
|
2013-12-04 21:24:37 +00:00
|
|
|
#endif
|
2013-03-11 01:36:13 +00:00
|
|
|
|
|
|
|
oneSecond :: Microseconds
|
|
|
|
oneSecond = 1000000
|