aboutsummaryrefslogtreecommitdiff
path: root/Messages/Internal.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-09-09 15:06:54 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-09-09 15:06:54 -0400
commit2408f5c6084aa04a09b36edcd264ce6bc7177c93 (patch)
treec745dce52ab6510948402eb1585b13718b39da3e /Messages/Internal.hs
parent8f8a17cf1855d809bf3655a3e4e9351b3850d3f2 (diff)
addurl, get: Added --json-progress option, which adds progress objects to the json output.
This doesn't work right when used with -J yet, and there is some really ugly hand-crafting of part of the json output.
Diffstat (limited to 'Messages/Internal.hs')
-rw-r--r--Messages/Internal.hs11
1 files changed, 7 insertions, 4 deletions
diff --git a/Messages/Internal.hs b/Messages/Internal.hs
index 21d11d811..bf212b71b 100644
--- a/Messages/Internal.hs
+++ b/Messages/Internal.hs
@@ -26,20 +26,20 @@ outputMessage' endmessage json msg = withMessageState $ \s -> case outputType s
NormalOutput
| concurrentOutputEnabled s -> concurrentMessage s False msg q
| otherwise -> liftIO $ flushed $ putStr msg
- JSONOutput -> void $ outputJSON json endmessage s
+ JSONOutput _ -> void $ outputJSON json endmessage s
QuietOutput -> q
outputJSON :: IO () -> Bool -> MessageState -> Annex Bool
outputJSON json endmessage s = case outputType s of
- JSONOutput
- | concurrentOutputEnabled s -> do
+ JSONOutput withprogress
+ | withprogress || concurrentOutputEnabled s -> do
-- Buffer json fragments until end is reached.
if endmessage
then do
Annex.changeState $ \st ->
st { Annex.output = s { jsonBuffer = [] } }
liftIO $ flushed $ do
- sequence_ $ reverse $ jsonBuffer s
+ showJSONBuffer s
json
else Annex.changeState $ \st ->
st { Annex.output = s { jsonBuffer = json : jsonBuffer s } }
@@ -49,6 +49,9 @@ outputJSON json endmessage s = case outputType s of
return True
_ -> return False
+showJSONBuffer :: MessageState -> IO ()
+showJSONBuffer s = sequence_ $ reverse $ jsonBuffer s
+
outputError :: String -> Annex ()
outputError msg = withMessageState $ \s ->
if concurrentOutputEnabled s