git-annex/Messages.hs

67 lines
1.7 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 Control.Monad (unless)
import Data.String.Utils
import qualified Codec.Binary.UTF8.String as UTF8
2010-11-08 19:15:21 +00:00
import Types
import qualified Annex
import SysConfig
2010-11-08 19:15:21 +00:00
verbose :: Annex () -> Annex ()
verbose a = do
q <- Annex.getState Annex.quiet
2010-11-08 19:15:21 +00:00
unless q a
2010-11-08 20:45:41 +00:00
showSideAction :: String -> Annex ()
showSideAction s = verbose $ liftIO $ putStrLn $ "(" ++ s ++ ")"
2010-11-08 19:15:21 +00:00
showStart :: String -> String -> Annex ()
showStart command file = verbose $ do
liftIO $ putStr $ command ++ " " ++ filePathToString file ++ " "
2010-11-08 19:15:21 +00:00
liftIO $ hFlush stdout
showNote :: String -> Annex ()
showNote s = verbose $ do
liftIO $ putStr $ "(" ++ s ++ ") "
liftIO $ hFlush stdout
showProgress :: Annex ()
showProgress = verbose $ liftIO $ putStr "\n"
showLongNote :: String -> Annex ()
2011-01-27 00:30:07 +00:00
showLongNote s = verbose $ liftIO $ putStr $ "\n" ++ indent s
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 ()
showEndFail = verbose $ liftIO $ putStrLn "\nfailed"
2010-11-08 19:15:21 +00:00
showErr :: (Show a) => a -> Annex ()
2011-01-27 00:30:07 +00:00
showErr e = warning $ "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"
2011-01-27 00:30:07 +00:00
liftIO $ hFlush stdout
liftIO $ hPutStrLn stderr $ indent w
indent :: String -> String
indent s = join "\n" $ map (\l -> " " ++ l) $ lines s
{- Prepares a filename for display. This is needed because on many
- platforms (eg, unix), FilePaths are internally stored in
- non-decoded form. -}
filePathToString :: FilePath -> String
filePathToString = if unicodefilepath then id else UTF8.decodeString