git-annex/Utility/ThreadScheduler.hs

75 lines
1.8 KiB
Haskell
Raw Normal View History

{- thread scheduling
-
- Copyright 2012, 2013 Joey Hess <id@joeyh.name>
- Copyright 2011 Bas van Dijk & Roel van Dijk
-
- License: BSD-2-clause
-}
{-# LANGUAGE CPP #-}
module Utility.ThreadScheduler where
2014-04-01 17:53:55 -04:00
import Control.Monad
import Control.Concurrent
#ifndef mingw32_HOST_OS
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
#ifndef __ANDROID__
import System.Posix.Terminal
2013-05-26 11:08:18 -04:00
#endif
#endif
newtype Seconds = Seconds { fromSeconds :: Int }
deriving (Eq, Ord, Show)
type Microseconds = Integer
{- 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.
-}
unboundDelay :: Microseconds -> IO ()
unboundDelay time = do
let maxWait = min time $ toInteger (maxBound :: Int)
threadDelay $ fromInteger maxWait
when (maxWait /= time) $ unboundDelay (time - maxWait)
2012-06-17 14:02:40 -04:00
{- Pauses the main thread, letting children run until program termination. -}
waitForTermination :: IO ()
waitForTermination = do
#ifdef mingw32_HOST_OS
2014-07-16 16:16:25 -04:00
forever $ threadDelaySeconds (Seconds 6000)
#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
#ifndef __ANDROID__
2012-06-17 14:02:40 -04:00
whenM (queryTerminal stdInput) $
2013-05-26 16:02:55 -04:00
check keyboardSignal
#endif
2012-06-17 14:02:40 -04:00
takeMVar lock
#endif
oneSecond :: Microseconds
oneSecond = 1000000