2013-06-21 01:10:16 +00:00
|
|
|
{- Running a long or expensive batch operation niced.
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2013 Joey Hess <id@joeyh.name>
|
2013-06-21 01:10:16 +00:00
|
|
|
-
|
2014-05-10 14:01:27 +00:00
|
|
|
- License: BSD-2-clause
|
2013-06-21 01:10:16 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
|
|
|
module Utility.Batch where
|
|
|
|
|
2013-10-11 20:03:18 +00:00
|
|
|
import Common
|
|
|
|
|
2013-06-21 17:09:09 +00:00
|
|
|
#if defined(linux_HOST_OS) || defined(__ANDROID__)
|
2013-06-21 01:10:16 +00:00
|
|
|
import Control.Concurrent.Async
|
|
|
|
import System.Posix.Process
|
|
|
|
#endif
|
2013-10-11 20:03:18 +00:00
|
|
|
import qualified Control.Exception as E
|
2013-06-21 01:10:16 +00:00
|
|
|
|
|
|
|
{- Runs an operation, at batch priority.
|
|
|
|
-
|
|
|
|
- This is done by running it in a bound thread, which on Linux can be set
|
|
|
|
- to have a different nice level than the rest of the program. Note that
|
|
|
|
- due to running in a bound thread, some operations may be more expensive
|
|
|
|
- to perform. Also note that if the action calls forkIO or forkOS itself,
|
|
|
|
- that will make a new thread that does not have the batch priority.
|
|
|
|
-
|
|
|
|
- POSIX threads do not support separate nice levels, so on other operating
|
|
|
|
- systems, the action is simply ran.
|
|
|
|
-}
|
|
|
|
batch :: IO a -> IO a
|
2013-06-21 17:09:09 +00:00
|
|
|
#if defined(linux_HOST_OS) || defined(__ANDROID__)
|
2013-06-21 01:10:16 +00:00
|
|
|
batch a = wait =<< batchthread
|
|
|
|
where
|
2014-10-09 18:53:13 +00:00
|
|
|
batchthread = asyncBound $ do
|
2013-06-21 01:10:16 +00:00
|
|
|
setProcessPriority 0 maxNice
|
|
|
|
a
|
|
|
|
#else
|
|
|
|
batch a = a
|
|
|
|
#endif
|
|
|
|
|
|
|
|
maxNice :: Int
|
|
|
|
maxNice = 19
|
2013-10-11 20:03:18 +00:00
|
|
|
|
2013-12-01 18:53:15 +00:00
|
|
|
{- Makes a command be run by whichever of nice, ionice, and nocache
|
|
|
|
- are available in the path. -}
|
2013-12-01 19:37:51 +00:00
|
|
|
type BatchCommandMaker = (String, [CommandParam]) -> (String, [CommandParam])
|
|
|
|
|
|
|
|
getBatchCommandMaker :: IO BatchCommandMaker
|
|
|
|
getBatchCommandMaker = do
|
2013-10-22 18:39:45 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2013-12-01 18:53:15 +00:00
|
|
|
nicers <- filterM (inPath . fst)
|
|
|
|
[ ("nice", [])
|
2013-12-29 21:32:08 +00:00
|
|
|
#ifndef __ANDROID__
|
|
|
|
-- Android's ionice does not allow specifying a command,
|
|
|
|
-- so don't use it.
|
2013-12-01 18:53:15 +00:00
|
|
|
, ("ionice", ["-c3"])
|
2013-12-30 02:40:23 +00:00
|
|
|
#endif
|
2013-12-01 18:53:15 +00:00
|
|
|
, ("nocache", [])
|
|
|
|
]
|
2013-12-01 19:37:51 +00:00
|
|
|
return $ \(command, params) ->
|
|
|
|
case nicers of
|
|
|
|
[] -> (command, params)
|
|
|
|
(first:rest) -> (fst first, map Param (snd first ++ concatMap (\p -> fst p : snd p) rest ++ [command]) ++ params)
|
2013-10-22 18:39:45 +00:00
|
|
|
#else
|
2013-12-01 19:37:51 +00:00
|
|
|
return id
|
2013-10-22 18:39:45 +00:00
|
|
|
#endif
|
2013-12-01 19:37:51 +00:00
|
|
|
|
|
|
|
toBatchCommand :: (String, [CommandParam]) -> IO (String, [CommandParam])
|
|
|
|
toBatchCommand v = do
|
|
|
|
batchmaker <- getBatchCommandMaker
|
|
|
|
return $ batchmaker v
|
2013-10-22 18:39:45 +00:00
|
|
|
|
|
|
|
{- Runs a command in a way that's suitable for batch jobs that can be
|
|
|
|
- interrupted.
|
|
|
|
-
|
2013-12-01 18:53:15 +00:00
|
|
|
- If the calling thread receives an async exception, it sends the
|
|
|
|
- command a SIGTERM, and after the command finishes shuttting down,
|
|
|
|
- it re-raises the async exception. -}
|
2013-10-11 20:03:18 +00:00
|
|
|
batchCommand :: String -> [CommandParam] -> IO Bool
|
2013-10-14 19:05:10 +00:00
|
|
|
batchCommand command params = batchCommandEnv command params Nothing
|
|
|
|
|
|
|
|
batchCommandEnv :: String -> [CommandParam] -> Maybe [(String, String)] -> IO Bool
|
|
|
|
batchCommandEnv command params environ = do
|
2013-12-01 19:37:51 +00:00
|
|
|
batchmaker <- getBatchCommandMaker
|
|
|
|
let (command', params') = batchmaker (command, params)
|
2013-12-01 18:53:15 +00:00
|
|
|
let p = proc command' $ toCommand params'
|
2013-10-14 19:05:10 +00:00
|
|
|
(_, _, _, pid) <- createProcess $ p { env = environ }
|
2013-10-11 20:03:18 +00:00
|
|
|
r <- E.try (waitForProcess pid) :: IO (Either E.SomeException ExitCode)
|
|
|
|
case r of
|
|
|
|
Right ExitSuccess -> return True
|
|
|
|
Right _ -> return False
|
|
|
|
Left asyncexception -> do
|
|
|
|
terminateProcess pid
|
|
|
|
void $ waitForProcess pid
|
|
|
|
E.throwIO asyncexception
|