propellor/src/Propellor/Message.hs

127 lines
3.3 KiB
Haskell
Raw Normal View History

{-# LANGUAGE PackageImports #-}
2014-03-31 22:31:08 +00:00
module Propellor.Message where
import System.Console.ANSI
import System.IO
2014-04-01 15:59:48 +00:00
import System.Log.Logger
2014-11-18 22:44:24 +00:00
import System.Log.Formatter
2015-04-29 18:44:56 +00:00
import System.Log.Handler (setFormatter)
2014-11-18 22:44:24 +00:00
import System.Log.Handler.Simple
import "mtl" Control.Monad.Reader
import Data.Maybe
import Control.Applicative
import System.Directory
import Control.Monad.IfElse
2014-03-31 22:31:08 +00:00
import Propellor.Types
import Utility.Monad
import Utility.Env
import Utility.Process
import Utility.Exception
data MessageHandle
= ConsoleMessageHandle
| TextMessageHandle
mkMessageHandle :: IO MessageHandle
2014-11-20 01:48:48 +00:00
mkMessageHandle = do
ifM (hIsTerminalDevice stdout <||> (isJust <$> getEnv "PROPELLOR_CONSOLE"))
( return ConsoleMessageHandle
, return TextMessageHandle
)
forceConsole :: IO ()
forceConsole = void $ setEnv "PROPELLOR_CONSOLE" "1" True
isConsole :: MessageHandle -> Bool
isConsole ConsoleMessageHandle = True
isConsole _ = False
whenConsole :: MessageHandle -> IO () -> IO ()
whenConsole ConsoleMessageHandle a = a
whenConsole _ _ = return ()
2014-03-31 22:31:08 +00:00
-- | Shows a message while performing an action, with a colored status
-- display.
actionMessage :: (MonadIO m, ActionResult r) => Desc -> m r -> m r
2014-05-31 22:52:42 +00:00
actionMessage = actionMessage' Nothing
-- | Shows a message while performing an action on a specified host,
-- with a colored status display.
actionMessageOn :: (MonadIO m, ActionResult r) => HostName -> Desc -> m r -> m r
actionMessageOn = actionMessage' . Just
actionMessage' :: (MonadIO m, ActionResult r) => Maybe HostName -> Desc -> m r -> m r
actionMessage' mhn desc a = do
h <- liftIO mkMessageHandle
liftIO $ whenConsole h $ do
setTitle $ "propellor: " ++ desc
hFlush stdout
2014-03-31 22:31:08 +00:00
r <- a
liftIO $ do
whenConsole h $
setTitle "propellor: running"
showhn h mhn
putStr $ desc ++ " ... "
2014-05-31 22:52:42 +00:00
let (msg, intensity, color) = getActionResult r
colorLine h intensity color msg
hFlush stdout
2014-03-31 22:31:08 +00:00
return r
2014-05-31 22:52:42 +00:00
where
showhn _ Nothing = return ()
showhn h (Just hn) = do
whenConsole h $
setSGR [SetColor Foreground Dull Cyan]
2014-05-31 22:52:42 +00:00
putStr (hn ++ " ")
whenConsole h $
setSGR []
2014-03-31 22:31:08 +00:00
warningMessage :: MonadIO m => String -> m ()
warningMessage s = liftIO $ do
h <- mkMessageHandle
colorLine h Vivid Magenta $ "** warning: " ++ s
2014-04-04 04:18:51 +00:00
errorMessage :: MonadIO m => String -> m a
errorMessage s = liftIO $ do
h <- mkMessageHandle
colorLine h Vivid Red $ "** error: " ++ s
error "Cannot continue!"
colorLine :: MessageHandle -> ColorIntensity -> Color -> String -> IO ()
colorLine h intensity color msg = do
whenConsole h $
setSGR [SetColor Foreground intensity color]
2014-04-04 04:18:51 +00:00
putStr msg
whenConsole h $
setSGR []
2014-04-04 04:18:51 +00:00
-- Note this comes after the color is reset, so that
-- the color set and reset happen in the same line.
putStrLn ""
2014-03-31 22:31:08 +00:00
hFlush stdout
2014-04-01 15:59:48 +00:00
debug :: [String] -> IO ()
debug = debugM "propellor" . unwords
2014-11-18 22:44:24 +00:00
checkDebugMode :: IO ()
checkDebugMode = go =<< getEnv "PROPELLOR_DEBUG"
where
go (Just "1") = enableDebugMode
go (Just _) = noop
go Nothing = whenM (doesDirectoryExist ".git") $
whenM (any (== "1") . lines <$> getgitconfig) $
enableDebugMode
getgitconfig = catchDefaultIO "" $
readProcess "git" ["config", "propellor.debug"]
enableDebugMode :: IO ()
enableDebugMode = do
f <- setFormatter
<$> streamHandler stderr DEBUG
<*> pure (simpleLogFormatter "[$time] $msg")
updateGlobalLogger rootLoggerName $
setLevel DEBUG . setHandlers [f]