2012-06-13 17:53:19 -04:00
|
|
|
{- thread scheduling
|
|
|
|
-
|
2024-02-27 13:11:59 -04:00
|
|
|
- Copyright 2012-2024 Joey Hess <id@joeyh.name>
|
2012-06-13 17:53:19 -04:00
|
|
|
-
|
2014-05-10 11:01:27 -03:00
|
|
|
- License: BSD-2-clause
|
2012-06-13 17:53:19 -04:00
|
|
|
-}
|
|
|
|
|
2013-02-10 15:48:38 -04:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2019-11-23 11:07:22 -04:00
|
|
|
module Utility.ThreadScheduler (
|
|
|
|
Seconds(..),
|
|
|
|
Microseconds,
|
|
|
|
runEvery,
|
|
|
|
threadDelaySeconds,
|
|
|
|
waitForTermination,
|
|
|
|
oneSecond,
|
2021-06-04 13:16:48 -04:00
|
|
|
unboundDelay,
|
2019-11-23 11:07:22 -04:00
|
|
|
) where
|
2012-06-13 17:53:19 -04:00
|
|
|
|
2014-04-01 17:53:55 -04:00
|
|
|
import Control.Monad
|
2024-02-27 13:11:59 -04:00
|
|
|
import qualified Control.Concurrent.Thread.Delay as Unbounded
|
2013-08-02 12:27:32 -04:00
|
|
|
#ifndef mingw32_HOST_OS
|
2024-03-26 13:11:53 -04:00
|
|
|
import Control.Concurrent
|
2014-04-02 18:08:35 -04:00
|
|
|
import Control.Monad.IfElse
|
2014-04-02 17:21:36 -04:00
|
|
|
import System.Posix.IO
|
|
|
|
#endif
|
|
|
|
#ifndef mingw32_HOST_OS
|
2012-06-17 14:02:40 -04:00
|
|
|
import System.Posix.Signals
|
2013-02-10 15:48:38 -04:00
|
|
|
import System.Posix.Terminal
|
2013-05-26 11:08:18 -04:00
|
|
|
#endif
|
2012-06-13 17:53:19 -04:00
|
|
|
|
|
|
|
newtype Seconds = Seconds { fromSeconds :: Int }
|
|
|
|
deriving (Eq, Ord, Show)
|
|
|
|
|
2013-03-10 21:36:13 -04:00
|
|
|
type Microseconds = Integer
|
|
|
|
|
2012-06-13 17:53:19 -04: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)
|
|
|
|
|
2024-02-27 13:11:59 -04:00
|
|
|
{- Like threadDelay, but not bounded by an Int. -}
|
2013-03-10 21:36:13 -04:00
|
|
|
unboundDelay :: Microseconds -> IO ()
|
2024-02-27 13:11:59 -04:00
|
|
|
unboundDelay = Unbounded.delay
|
2012-06-17 14:02:40 -04:00
|
|
|
|
|
|
|
{- Pauses the main thread, letting children run until program termination. -}
|
|
|
|
waitForTermination :: IO ()
|
|
|
|
waitForTermination = do
|
2013-12-04 17:24:37 -04:00
|
|
|
#ifdef mingw32_HOST_OS
|
2014-07-16 16:16:25 -04:00
|
|
|
forever $ threadDelaySeconds (Seconds 6000)
|
2013-12-04 17:24:37 -04:00
|
|
|
#else
|
2012-06-17 14:02:40 -04:00
|
|
|
lock <- newEmptyMVar
|
2013-05-26 16:02:55 -04:00
|
|
|
let check sig = void $
|
2013-05-26 11:12:34 -04:00
|
|
|
installHandler sig (CatchOnce $ putMVar lock ()) Nothing
|
2013-05-26 16:02:55 -04:00
|
|
|
check softwareTermination
|
2012-06-17 14:02:40 -04:00
|
|
|
whenM (queryTerminal stdInput) $
|
2013-05-26 16:02:55 -04:00
|
|
|
check keyboardSignal
|
2012-06-17 14:02:40 -04:00
|
|
|
takeMVar lock
|
2013-12-04 17:24:37 -04:00
|
|
|
#endif
|
2013-03-10 21:36:13 -04:00
|
|
|
|
|
|
|
oneSecond :: Microseconds
|
|
|
|
oneSecond = 1000000
|