2010-11-08 19:15:21 +00:00
|
|
|
{- git-annex output messages
|
|
|
|
-
|
2011-11-15 04:30:00 +00:00
|
|
|
- Copyright 2010-2011 Joey Hess <joey@kitenet.net>
|
2010-11-08 19:15:21 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2011-09-01 19:16:31 +00:00
|
|
|
module Messages (
|
|
|
|
showStart,
|
|
|
|
showNote,
|
|
|
|
showAction,
|
|
|
|
showProgress,
|
2012-03-04 07:17:03 +00:00
|
|
|
metered,
|
2011-09-01 19:16:31 +00:00
|
|
|
showSideAction,
|
2012-04-27 17:23:52 +00:00
|
|
|
doSideAction,
|
2012-05-20 04:14:56 +00:00
|
|
|
doQuietSideAction,
|
2012-04-27 17:23:52 +00:00
|
|
|
showStoringStateAction,
|
2011-09-01 19:16:31 +00:00
|
|
|
showOutput,
|
|
|
|
showLongNote,
|
|
|
|
showEndOk,
|
|
|
|
showEndFail,
|
|
|
|
showEndResult,
|
|
|
|
showErr,
|
|
|
|
warning,
|
|
|
|
indent,
|
2011-09-02 20:44:04 +00:00
|
|
|
maybeShowJSON,
|
2011-12-23 02:03:18 +00:00
|
|
|
showFullJSON,
|
2011-11-15 04:30:00 +00:00
|
|
|
showCustom,
|
|
|
|
showHeader,
|
|
|
|
showRaw,
|
2011-11-14 23:27:00 +00:00
|
|
|
|
2011-09-01 19:16:31 +00:00
|
|
|
setupConsole
|
|
|
|
) where
|
2010-11-08 19:15:21 +00:00
|
|
|
|
2011-09-02 20:44:04 +00:00
|
|
|
import Text.JSON
|
2012-03-04 07:17:03 +00:00
|
|
|
import Data.Progress.Meter
|
|
|
|
import Data.Progress.Tracker
|
|
|
|
import Data.Quantity
|
2010-11-08 19:15:21 +00:00
|
|
|
|
2011-10-04 02:24:57 +00:00
|
|
|
import Common
|
2010-11-08 19:15:21 +00:00
|
|
|
import Types
|
2012-04-27 17:23:52 +00:00
|
|
|
import Types.Messages
|
2012-03-04 07:17:03 +00:00
|
|
|
import Types.Key
|
2012-09-21 18:50:14 +00:00
|
|
|
import Types.Remote
|
2010-11-08 19:15:21 +00:00
|
|
|
import qualified Annex
|
2011-09-01 19:16:31 +00:00
|
|
|
import qualified Messages.JSON as JSON
|
2010-11-08 19:15:21 +00:00
|
|
|
|
|
|
|
showStart :: String -> String -> Annex ()
|
2011-11-14 23:27:00 +00:00
|
|
|
showStart command file = handle (JSON.start command $ Just file) $
|
2011-10-11 18:43:45 +00:00
|
|
|
flushed $ putStr $ command ++ " " ++ file ++ " "
|
2010-11-08 19:15:21 +00:00
|
|
|
|
|
|
|
showNote :: String -> Annex ()
|
2011-10-11 18:43:45 +00:00
|
|
|
showNote s = handle (JSON.note s) $
|
|
|
|
flushed $ putStr $ "(" ++ s ++ ") "
|
2011-07-19 18:07:23 +00:00
|
|
|
|
|
|
|
showAction :: String -> Annex ()
|
|
|
|
showAction s = showNote $ s ++ "..."
|
2010-11-08 19:15:21 +00:00
|
|
|
|
2012-03-04 07:17:03 +00:00
|
|
|
{- Progress dots. -}
|
2010-11-08 19:15:21 +00:00
|
|
|
showProgress :: Annex ()
|
2011-10-11 18:43:45 +00:00
|
|
|
showProgress = handle q $
|
|
|
|
flushed $ putStr "."
|
2011-07-19 18:07:23 +00:00
|
|
|
|
2012-03-04 07:17:03 +00:00
|
|
|
{- Shows a progress meter while performing a transfer of a key.
|
|
|
|
- The action is passed a callback to use to update the meter. -}
|
2012-09-21 18:54:24 +00:00
|
|
|
metered :: (Maybe MeterUpdate) -> Key -> (MeterUpdate -> Annex a) -> Annex a
|
|
|
|
metered combinemeterupdate key a = withOutputType $ go (keySize key)
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
|
|
|
go (Just size) NormalOutput = do
|
|
|
|
progress <- liftIO $ newProgress "" size
|
|
|
|
meter <- liftIO $ newMeter progress "B" 25 (renderNums binaryOpts 1)
|
|
|
|
showOutput
|
|
|
|
liftIO $ displayMeter stdout meter
|
|
|
|
r <- a $ \n -> liftIO $ do
|
|
|
|
incrP progress n
|
|
|
|
displayMeter stdout meter
|
|
|
|
maybe noop (\m -> m n) combinemeterupdate
|
|
|
|
liftIO $ clearMeter stdout meter
|
|
|
|
return r
|
|
|
|
go _ _ = a (const noop)
|
2012-03-04 07:17:03 +00:00
|
|
|
|
2011-07-19 18:07:23 +00:00
|
|
|
showSideAction :: String -> Annex ()
|
2012-04-27 17:23:52 +00:00
|
|
|
showSideAction m = Annex.getState Annex.output >>= go
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
|
|
|
go (MessageState v StartBlock) = do
|
|
|
|
p
|
|
|
|
Annex.changeState $ \s -> s { Annex.output = MessageState v InBlock }
|
|
|
|
go (MessageState _ InBlock) = return ()
|
|
|
|
go _ = p
|
|
|
|
p = handle q $ putStrLn $ "(" ++ m ++ "...)"
|
2012-04-27 17:23:52 +00:00
|
|
|
|
|
|
|
showStoringStateAction :: Annex ()
|
|
|
|
showStoringStateAction = showSideAction "Recording state in git"
|
|
|
|
|
2012-05-20 04:14:56 +00:00
|
|
|
{- Performs an action, supressing showSideAction messages. -}
|
|
|
|
doQuietSideAction :: Annex a -> Annex a
|
|
|
|
doQuietSideAction = doSideAction' InBlock
|
|
|
|
|
2012-04-27 17:23:52 +00:00
|
|
|
{- Performs an action, that may call showSideAction multiple times.
|
|
|
|
- Only the first will be displayed. -}
|
|
|
|
doSideAction :: Annex a -> Annex a
|
2012-05-20 04:14:56 +00:00
|
|
|
doSideAction = doSideAction' StartBlock
|
|
|
|
|
|
|
|
doSideAction' :: SideActionBlock -> Annex a -> Annex a
|
|
|
|
doSideAction' b a = do
|
2012-04-27 17:23:52 +00:00
|
|
|
o <- Annex.getState Annex.output
|
2012-05-20 04:14:56 +00:00
|
|
|
set $ o { sideActionBlock = b }
|
2012-04-27 17:23:52 +00:00
|
|
|
set o `after` a
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
|
|
|
set o = Annex.changeState $ \s -> s { Annex.output = o }
|
2011-07-19 18:07:23 +00:00
|
|
|
|
|
|
|
showOutput :: Annex ()
|
2011-10-11 18:43:45 +00:00
|
|
|
showOutput = handle q $
|
|
|
|
putStr "\n"
|
2010-11-08 19:15:21 +00:00
|
|
|
|
|
|
|
showLongNote :: String -> Annex ()
|
2011-10-11 18:43:45 +00:00
|
|
|
showLongNote s = handle (JSON.note s) $
|
|
|
|
putStrLn $ '\n' : indent s
|
2011-01-27 00:30:07 +00:00
|
|
|
|
2010-11-08 19:15:21 +00:00
|
|
|
showEndOk :: Annex ()
|
2011-09-01 19:16:31 +00:00
|
|
|
showEndOk = showEndResult True
|
2010-11-08 19:15:21 +00:00
|
|
|
|
|
|
|
showEndFail :: Annex ()
|
2011-09-01 19:16:31 +00:00
|
|
|
showEndFail = showEndResult False
|
2010-11-08 19:15:21 +00:00
|
|
|
|
2011-05-15 16:25:58 +00:00
|
|
|
showEndResult :: Bool -> Annex ()
|
2011-11-20 18:12:48 +00:00
|
|
|
showEndResult ok = handle (JSON.end ok) $ putStrLn msg
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
|
|
|
msg
|
|
|
|
| ok = "ok"
|
|
|
|
| otherwise = "failed"
|
2011-05-15 16:25:58 +00:00
|
|
|
|
2010-11-08 19:15:21 +00:00
|
|
|
showErr :: (Show a) => a -> Annex ()
|
2011-09-06 17:46:08 +00:00
|
|
|
showErr e = warning' $ "git-annex: " ++ show e
|
2010-11-08 19:15:21 +00:00
|
|
|
|
|
|
|
warning :: String -> Annex ()
|
2011-11-20 18:12:48 +00:00
|
|
|
warning = warning' . indent
|
2011-09-06 17:46:08 +00:00
|
|
|
|
|
|
|
warning' :: String -> Annex ()
|
|
|
|
warning' w = do
|
2011-09-01 19:16:31 +00:00
|
|
|
handle q $ putStr "\n"
|
2011-07-19 18:07:23 +00:00
|
|
|
liftIO $ do
|
|
|
|
hFlush stdout
|
2011-09-06 17:46:08 +00:00
|
|
|
hPutStrLn stderr w
|
2011-01-27 00:30:07 +00:00
|
|
|
|
|
|
|
indent :: String -> String
|
2011-11-20 18:12:48 +00:00
|
|
|
indent = join "\n" . map (\l -> " " ++ l) . lines
|
2011-02-10 18:21:44 +00:00
|
|
|
|
2011-12-23 02:03:18 +00:00
|
|
|
{- Shows a JSON fragment only when in json mode. -}
|
2011-11-15 04:30:00 +00:00
|
|
|
maybeShowJSON :: JSON a => [(String, a)] -> Annex ()
|
|
|
|
maybeShowJSON v = handle (JSON.add v) q
|
|
|
|
|
2011-12-23 02:03:18 +00:00
|
|
|
{- Shows a complete JSON value, only when in json mode. -}
|
|
|
|
showFullJSON :: JSON a => [(String, a)] -> Annex Bool
|
2012-04-27 17:23:52 +00:00
|
|
|
showFullJSON v = withOutputType $ liftIO . go
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
|
|
|
go JSONOutput = JSON.complete v >> return True
|
|
|
|
go _ = return False
|
2011-12-23 02:03:18 +00:00
|
|
|
|
2011-11-15 04:30:00 +00:00
|
|
|
{- Performs an action that outputs nonstandard/customized output, and
|
|
|
|
- in JSON mode wraps its output in JSON.start and JSON.end, so it's
|
|
|
|
- a complete JSON document.
|
|
|
|
- This is only needed when showStart and showEndOk is not used. -}
|
|
|
|
showCustom :: String -> Annex Bool -> Annex ()
|
|
|
|
showCustom command a = do
|
|
|
|
handle (JSON.start command Nothing) q
|
|
|
|
r <- a
|
|
|
|
handle (JSON.end r) q
|
|
|
|
|
|
|
|
showHeader :: String -> Annex ()
|
2011-11-20 18:12:48 +00:00
|
|
|
showHeader h = handle q $
|
|
|
|
flushed $ putStr $ h ++ ": "
|
2011-11-15 04:30:00 +00:00
|
|
|
|
|
|
|
showRaw :: String -> Annex ()
|
|
|
|
showRaw s = handle q $ putStrLn s
|
|
|
|
|
support all filename encodings with ghc 7.4
Under ghc 7.4, this seems to be able to handle all filename encodings
again. Including filename encodings that do not match the LANG setting.
I think this will not work with earlier versions of ghc, it uses some ghc
internals.
Turns out that ghc 7.4 has a special filesystem encoding that it uses when
reading/writing filenames (as FilePaths). This encoding is documented
to allow "arbitrary undecodable bytes to be round-tripped through it".
So, to get FilePaths from eg, git ls-files, set the Handle that is reading
from git to use this encoding. Then things basically just work.
However, I have not found a way to make Text read using this encoding.
Text really does assume unicode. So I had to switch back to using String
when reading/writing data to git. Which is a pity, because it's some
percent slower, but at least it works.
Note that stdout and stderr also have to be set to this encoding, or
printing out filenames that contain undecodable bytes causes a crash.
IMHO this is a misfeature in ghc, that the user can pass you a filename,
which you can readFile, etc, but that default, putStr of filename may
cause a crash!
Git.CheckAttr gave me special trouble, because the filenames I got back
from git, after feeding them in, had further encoding breakage.
Rather than try to deal with that, I just zip up the input filenames
with the attributes. Which must be returned in the same order queried
for this to work.
Also of note is an apparent GHC bug I worked around in Git.CheckAttr. It
used to forkProcess and feed git from the child process. Unfortunatly,
after this forkProcess, accessing the `files` variable from the parent
returns []. Not the value that was passed into the function. This screams
of a bad bug, that's clobbering a variable, but for now I just avoid
forkProcess there to work around it. That forkProcess was itself only added
because of a ghc bug, #624389. I've confirmed that the test case for that
bug doesn't reproduce it with ghc 7.4. So that's ok, except for the new ghc
bug I have not isolated and reported. Why does this simple bit of code
magnet the ghc bugs? :)
Also, the symlink touching code is currently broken, when used on utf-8
filenames in a non-utf-8 locale, or probably on any filename containing
undecodable bytes, and I temporarily commented it out.
2012-02-03 19:12:41 +00:00
|
|
|
{- This avoids ghc's output layer crashing on invalid encoded characters in
|
2012-02-04 20:37:55 +00:00
|
|
|
- filenames when printing them out.
|
2012-02-03 05:38:23 +00:00
|
|
|
-}
|
2011-03-12 19:30:17 +00:00
|
|
|
setupConsole :: IO ()
|
support all filename encodings with ghc 7.4
Under ghc 7.4, this seems to be able to handle all filename encodings
again. Including filename encodings that do not match the LANG setting.
I think this will not work with earlier versions of ghc, it uses some ghc
internals.
Turns out that ghc 7.4 has a special filesystem encoding that it uses when
reading/writing filenames (as FilePaths). This encoding is documented
to allow "arbitrary undecodable bytes to be round-tripped through it".
So, to get FilePaths from eg, git ls-files, set the Handle that is reading
from git to use this encoding. Then things basically just work.
However, I have not found a way to make Text read using this encoding.
Text really does assume unicode. So I had to switch back to using String
when reading/writing data to git. Which is a pity, because it's some
percent slower, but at least it works.
Note that stdout and stderr also have to be set to this encoding, or
printing out filenames that contain undecodable bytes causes a crash.
IMHO this is a misfeature in ghc, that the user can pass you a filename,
which you can readFile, etc, but that default, putStr of filename may
cause a crash!
Git.CheckAttr gave me special trouble, because the filenames I got back
from git, after feeding them in, had further encoding breakage.
Rather than try to deal with that, I just zip up the input filenames
with the attributes. Which must be returned in the same order queried
for this to work.
Also of note is an apparent GHC bug I worked around in Git.CheckAttr. It
used to forkProcess and feed git from the child process. Unfortunatly,
after this forkProcess, accessing the `files` variable from the parent
returns []. Not the value that was passed into the function. This screams
of a bad bug, that's clobbering a variable, but for now I just avoid
forkProcess there to work around it. That forkProcess was itself only added
because of a ghc bug, #624389. I've confirmed that the test case for that
bug doesn't reproduce it with ghc 7.4. So that's ok, except for the new ghc
bug I have not isolated and reported. Why does this simple bit of code
magnet the ghc bugs? :)
Also, the symlink touching code is currently broken, when used on utf-8
filenames in a non-utf-8 locale, or probably on any filename containing
undecodable bytes, and I temporarily commented it out.
2012-02-03 19:12:41 +00:00
|
|
|
setupConsole = do
|
|
|
|
fileEncoding stdout
|
|
|
|
fileEncoding stderr
|
2011-09-01 19:16:31 +00:00
|
|
|
|
|
|
|
handle :: IO () -> IO () -> Annex ()
|
2012-06-12 15:32:06 +00:00
|
|
|
handle json normal = withOutputType go
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
|
|
|
go NormalOutput = liftIO normal
|
|
|
|
go QuietOutput = q
|
|
|
|
go JSONOutput = liftIO $ flushed json
|
2011-09-01 19:16:31 +00:00
|
|
|
|
|
|
|
q :: Monad m => m ()
|
2012-04-22 03:32:33 +00:00
|
|
|
q = noop
|
2011-10-11 18:43:45 +00:00
|
|
|
|
|
|
|
flushed :: IO () -> IO ()
|
|
|
|
flushed a = a >> hFlush stdout
|
2012-04-27 17:23:52 +00:00
|
|
|
|
|
|
|
withOutputType :: (OutputType -> Annex a) -> Annex a
|
|
|
|
withOutputType a = outputType <$> Annex.getState Annex.output >>= a
|