summaryrefslogtreecommitdiff
path: root/Messages/Progress.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-02-14 15:02:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-02-14 15:02:42 -0400
commitb9c249d46e582bf52b771368cfe9d8d455c11f9f (patch)
treed80ac8add3a7c560a8ec8cb148d6e1ae2effbe9e /Messages/Progress.hs
parentcc13dd82c5cd7647f911ed6be1e58694f7edee31 (diff)
Work around problem with concurrent-output when in a non-unicode locale by avoiding use of it in such a locale.
Instead -J will behave as if it was built without concurrent-output support in this situation. Ie, it will be mostly quiet, except when there's an error. Note that it's not a problem for a filename to contain invalid utf-8 when in a utf-8 locale. That is handled ok by concurrent-output. It's only displaying unicode characters in a non-unicode locale that doesn't work.
Diffstat (limited to 'Messages/Progress.hs')
-rw-r--r--Messages/Progress.hs24
1 files changed, 12 insertions, 12 deletions
diff --git a/Messages/Progress.hs b/Messages/Progress.hs
index 25d803b1b..6bbf43f4c 100644
--- a/Messages/Progress.hs
+++ b/Messages/Progress.hs
@@ -46,16 +46,16 @@ metered combinemeterupdate key a = case keySize key of
liftIO $ clearMeter stdout meter
return r
#if WITH_CONCURRENTOUTPUT
- go size (ConcurrentOutput _) = withProgressRegion $ \r -> do
- (progress, meter) <- mkmeter size
- a $ \n -> liftIO $ do
- setP progress $ fromBytesProcessed n
- s <- renderMeter meter
- Regions.setConsoleRegion r ("\n" ++ s)
- maybe noop (\m -> m n) combinemeterupdate
-#else
- go _ (ConcurrentOutput _) = nometer
+ go size o@(ConcurrentOutput {})
+ | concurrentOutputEnabled o = withProgressRegion $ \r -> do
+ (progress, meter) <- mkmeter size
+ a $ \n -> liftIO $ do
+ setP progress $ fromBytesProcessed n
+ s <- renderMeter meter
+ Regions.setConsoleRegion r ("\n" ++ s)
+ maybe noop (\m -> m n) combinemeterupdate
#endif
+ | otherwise = nometer
mkmeter size = do
progress <- liftIO $ newProgress "" size
@@ -69,14 +69,14 @@ metered combinemeterupdate key a = case keySize key of
concurrentMetered :: Maybe MeterUpdate -> Key -> (MeterUpdate -> Annex a) -> Annex a
concurrentMetered combinemeterupdate key a = withOutputType go
where
- go (ConcurrentOutput _) = metered combinemeterupdate key a
+ go (ConcurrentOutput {}) = metered combinemeterupdate key a
go _ = a (fromMaybe nullMeterUpdate combinemeterupdate)
{- Poll file size to display meter, but only for concurrent output. -}
concurrentMeteredFile :: FilePath -> Maybe MeterUpdate -> Key -> Annex a -> Annex a
concurrentMeteredFile file combinemeterupdate key a = withOutputType go
where
- go (ConcurrentOutput _) = metered combinemeterupdate key $ \p ->
+ go (ConcurrentOutput {}) = metered combinemeterupdate key $ \p ->
watchFileSize file p a
go _ = a
@@ -120,6 +120,6 @@ mkStderrEmitter :: Annex (String -> IO ())
mkStderrEmitter = withOutputType go
where
#ifdef WITH_CONCURRENTOUTPUT
- go (ConcurrentOutput _) = return Console.errorConcurrent
+ go o | concurrentOutputEnabled o = return Console.errorConcurrent
#endif
go _ = return (hPutStrLn stderr)