git-annex/Messages.hs

88 lines
2.2 KiB
Haskell
Raw Normal View History

2010-11-08 19:15:21 +00:00
{- git-annex output messages
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Messages where
import Control.Monad.State (liftIO)
import System.IO
import Data.String.Utils
import Types
import qualified Annex
verbose :: Annex () -> Annex ()
verbose a = do
output <- Annex.getState Annex.output
case output of
Annex.NormalOutput -> a
_ -> return ()
2010-11-08 19:15:21 +00:00
showStart :: String -> String -> Annex ()
showStart command file = verbose $ liftIO $ do
putStr $ command ++ " " ++ file ++ " "
hFlush stdout
2010-11-08 19:15:21 +00:00
showNote :: String -> Annex ()
showNote s = verbose $ liftIO $ do
putStr $ "(" ++ s ++ ") "
hFlush stdout
showAction :: String -> Annex ()
showAction s = showNote $ s ++ "..."
2010-11-08 19:15:21 +00:00
showProgress :: Annex ()
showProgress = verbose $ liftIO $ do
putStr "."
hFlush stdout
showSideAction :: String -> Annex ()
showSideAction s = verbose $ liftIO $ putStrLn $ "(" ++ s ++ "...)"
showOutput :: Annex ()
showOutput = verbose $ liftIO $ putStr "\n"
2010-11-08 19:15:21 +00:00
showLongNote :: String -> Annex ()
showLongNote s = verbose $ liftIO $ putStr $ '\n' : indent s
2011-01-27 00:30:07 +00:00
2010-11-08 19:15:21 +00:00
showEndOk :: Annex ()
showEndOk = verbose $ liftIO $ putStrLn "ok"
2010-11-08 19:15:21 +00:00
showEndFail :: Annex ()
2011-07-05 18:58:33 +00:00
showEndFail = verbose $ liftIO $ putStrLn "failed"
2010-11-08 19:15:21 +00:00
2011-05-15 16:25:58 +00:00
showEndResult :: Bool -> Annex ()
showEndResult True = showEndOk
showEndResult False = showEndFail
2010-11-08 19:15:21 +00:00
showErr :: (Show a) => a -> Annex ()
showErr e = liftIO $ do
hFlush stdout
hPutStrLn stderr $ "git-annex: " ++ show e
2010-11-08 19:15:21 +00:00
warning :: String -> Annex ()
2011-01-27 00:30:07 +00:00
warning w = do
verbose $ liftIO $ putStr "\n"
liftIO $ do
hFlush stdout
hPutStrLn stderr $ indent w
2011-01-27 00:30:07 +00:00
indent :: String -> String
indent s = join "\n" $ map (\l -> " " ++ l) $ lines s
{- By default, haskell honors the user's locale in its output to stdout
- and stderr. While that's great for proper unicode support, for git-annex
- all that's really needed is the ability to display simple messages
- (currently untranslated), and importantly, to display filenames exactly
- as they are written on disk, no matter what their encoding. So, force
- raw mode.
-
- NB: Once git-annex gets localized, this will need a rethink. -}
setupConsole :: IO ()
setupConsole = do
hSetBinaryMode stdout True
hSetBinaryMode stderr True