2012-09-21 20:23:25 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
2012-09-21 20:23:25 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.TransferInfo where
|
|
|
|
|
|
|
|
import Common.Annex
|
|
|
|
import Command
|
|
|
|
import Annex.Content
|
|
|
|
import Logs.Transfer
|
|
|
|
import Types.Key
|
2014-01-26 20:32:55 +00:00
|
|
|
import qualified CmdLine.GitAnnexShell.Fields as Fields
|
2013-03-28 21:03:04 +00:00
|
|
|
import Utility.Metered
|
2012-09-21 20:23:25 +00:00
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
cmd :: Command
|
2015-07-08 19:08:02 +00:00
|
|
|
cmd = noCommit $
|
|
|
|
command "transferinfo" SectionPlumbing
|
|
|
|
"updates sender on number of bytes of content received"
|
|
|
|
paramKey (withParams seek)
|
2012-09-21 20:23:25 +00:00
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
seek :: CmdParams -> CommandSeek
|
fix inversion of control in CommandSeek (no behavior changes)
I've been disliking how the command seek actions were written for some
time, with their inversion of control and ugly workarounds.
The last straw to fix it was sync --content, which didn't fit the
Annex [CommandStart] interface well at all. I have not yet made it take
advantage of the changed interface though.
The crucial change, and probably why I didn't do it this way from the
beginning, is to make each CommandStart action be run with exceptions
caught, and if it fails, increment a failure counter in annex state.
So I finally remove the very first code I wrote for git-annex, which
was before I had exception handling in the Annex monad, and so ran outside
that monad, passing state explicitly as it ran each CommandStart action.
This was a real slog from 1 to 5 am.
Test suite passes.
Memory usage is lower than before, sometimes by a couple of megabytes, and
remains constant, even when running in a large repo, and even when
repeatedly failing and incrementing the error counter. So no accidental
laziness space leaks.
Wall clock speed is identical, even in large repos.
This commit was sponsored by an anonymous bitcoiner.
2014-01-20 08:11:42 +00:00
|
|
|
seek = withWords start
|
2012-09-21 20:23:25 +00:00
|
|
|
|
|
|
|
{- Security:
|
|
|
|
-
|
|
|
|
- The transfer info file contains the user-supplied key, but
|
|
|
|
- the built-in guards prevent slashes in it from showing up in the filename.
|
|
|
|
- It also contains the UUID of the remote. But slashes are also filtered
|
|
|
|
- out of that when generating the filename.
|
|
|
|
-
|
|
|
|
- Checks that the key being transferred is inAnnex, to prevent
|
|
|
|
- malicious spamming of bogus keys. Does not check that a transfer
|
|
|
|
- of the key is actually in progress, because this could be started
|
|
|
|
- concurrently with sendkey, and win the race.
|
|
|
|
-}
|
2012-09-22 03:25:06 +00:00
|
|
|
start :: [String] -> CommandStart
|
|
|
|
start (k:[]) = do
|
2013-09-25 07:09:06 +00:00
|
|
|
case file2key k of
|
2012-09-22 03:25:06 +00:00
|
|
|
Nothing -> error "bad key"
|
|
|
|
(Just key) -> whenM (inAnnex key) $ do
|
|
|
|
file <- Fields.getField Fields.associatedFile
|
|
|
|
u <- maybe (error "missing remoteuuid") toUUID
|
|
|
|
<$> Fields.getField Fields.remoteUUID
|
|
|
|
let t = Transfer
|
|
|
|
{ transferDirection = Upload
|
|
|
|
, transferUUID = u
|
|
|
|
, transferKey = key
|
|
|
|
}
|
|
|
|
info <- liftIO $ startTransferInfo file
|
2012-09-24 17:16:50 +00:00
|
|
|
(update, tfile, _) <- mkProgressUpdater t info
|
2012-09-22 03:25:06 +00:00
|
|
|
liftIO $ mapM_ void
|
|
|
|
[ tryIO $ forever $ do
|
2013-03-28 21:03:04 +00:00
|
|
|
bytes <- readUpdate
|
|
|
|
maybe (error "transferinfo protocol error")
|
|
|
|
(update . toBytesProcessed) bytes
|
2012-09-22 03:25:06 +00:00
|
|
|
, tryIO $ removeFile tfile
|
|
|
|
, exitSuccess
|
|
|
|
]
|
|
|
|
stop
|
|
|
|
start _ = error "wrong number of parameters"
|
2013-03-28 21:03:04 +00:00
|
|
|
|
|
|
|
readUpdate :: IO (Maybe Integer)
|
|
|
|
readUpdate = readish <$> getLine
|