aboutsummaryrefslogtreecommitdiff
path: root/Remote
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-12-27 03:10:00 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-12-27 03:10:00 -0400
commit0d24eb208614288067ddc3118fe4654ca2e86e77 (patch)
tree8a31a975b4e7777b8483c94114ed764bd28d0152 /Remote
parent690c690e97ecc3808755e95acd0d45bfe03ed366 (diff)
make --debug show transcript of special remote protocol messages
Diffstat (limited to 'Remote')
-rw-r--r--Remote/External.hs15
1 files changed, 14 insertions, 1 deletions
diff --git a/Remote/External.hs b/Remote/External.hs
index 5a09d1de0..3863383d8 100644
--- a/Remote/External.hs
+++ b/Remote/External.hs
@@ -25,6 +25,7 @@ import Annex.Exception
import Control.Concurrent.STM
import System.Process (std_in, std_out, std_err)
+import System.Log.Logger (debugM)
import qualified Data.Map as M
remote :: RemoteType
@@ -194,7 +195,11 @@ handleRequest' lck external req mp responsehandler = do
sendMessage :: Sendable m => ExternalLock -> External -> m -> Annex ()
sendMessage lck external m =
fromExternal lck external externalSend $ \h ->
- liftIO $ hPutStrLn h $ unwords $ formatMessage m
+ liftIO $ do
+ protocolDebug external True line
+ hPutStrLn h line
+ where
+ line = unwords $ formatMessage m
{- Waits for a message from the external remote, and passes it to the
- apppropriate handler.
@@ -209,6 +214,7 @@ receiveMessage
-> Annex a
receiveMessage lck external handleresponse handlerequest handleasync = do
s <- fromExternal lck external externalReceive $ liftIO . hGetLine
+ liftIO $ protocolDebug external False s
case parseMessage s :: Maybe Response of
Just resp -> maybe (protocolError s) id (handleresponse resp)
Nothing -> case parseMessage s :: Maybe RemoteRequest of
@@ -219,6 +225,13 @@ receiveMessage lck external handleresponse handlerequest handleasync = do
where
protocolError s = error $ "external special remote protocol error, unexpectedly received \"" ++ s ++ "\""
+protocolDebug :: External -> Bool -> String -> IO ()
+protocolDebug external sendto line = debugM "external" $ unwords
+ [ externalRemoteProgram (externalType external)
+ , if sendto then "<--" else "-->"
+ , line
+ ]
+
{- Starts up the external remote if it's not yet running,
- and passes a value extracted from its state to an action.
-}