2010-11-27 21:09:22 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2010 Joey Hess <id@joeyh.name>
|
2010-11-27 21:09:22 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Copy where
|
|
|
|
|
2011-11-11 03:35:08 +00:00
|
|
|
import Common.Annex
|
2010-11-27 21:09:22 +00:00
|
|
|
import Command
|
|
|
|
import qualified Command.Move
|
2012-01-06 08:02:35 +00:00
|
|
|
import qualified Remote
|
2012-10-08 20:06:56 +00:00
|
|
|
import Annex.Wanted
|
2015-04-30 18:02:56 +00:00
|
|
|
import Annex.NumCopies
|
2010-11-27 21:09:22 +00:00
|
|
|
|
2014-10-14 18:20:10 +00:00
|
|
|
cmd :: [Command]
|
2015-03-25 21:06:14 +00:00
|
|
|
cmd = [withOptions copyOptions $ command "copy" paramPaths seek
|
2013-03-24 22:28:21 +00:00
|
|
|
SectionCommon "copy content of files to/from another repository"]
|
2010-12-30 19:06:26 +00:00
|
|
|
|
2015-03-25 21:06:14 +00:00
|
|
|
copyOptions :: [Option]
|
|
|
|
copyOptions = Command.Move.moveOptions ++ [autoOption]
|
|
|
|
|
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 :: CommandSeek
|
|
|
|
seek ps = do
|
|
|
|
to <- getOptionField toOption Remote.byNameWithUUID
|
|
|
|
from <- getOptionField fromOption Remote.byNameWithUUID
|
2015-03-25 21:06:14 +00:00
|
|
|
auto <- getOptionFlag autoOption
|
|
|
|
withKeyOptions auto
|
2014-10-09 18:53:13 +00:00
|
|
|
(Command.Move.startKey to from False)
|
2015-03-25 21:06:14 +00:00
|
|
|
(withFilesInGit $ whenAnnexed $ start auto to from)
|
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
|
|
|
ps
|
2011-09-15 19:27:45 +00:00
|
|
|
|
2012-10-08 20:06:56 +00:00
|
|
|
{- A copy is just a move that does not delete the source file.
|
2015-03-25 21:06:14 +00:00
|
|
|
- However, auto mode avoids unnecessary copies, and avoids getting or
|
2012-10-08 20:06:56 +00:00
|
|
|
- sending non-preferred content. -}
|
2015-03-25 21:06:14 +00:00
|
|
|
start :: Bool -> Maybe Remote -> Maybe Remote -> FilePath -> Key -> CommandStart
|
|
|
|
start auto to from file key = stopUnless shouldCopy $
|
2014-04-17 22:03:39 +00:00
|
|
|
Command.Move.start to from False file key
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
2015-03-25 21:06:14 +00:00
|
|
|
shouldCopy
|
|
|
|
| auto = want <||> numCopiesCheck file key (<)
|
|
|
|
| otherwise = return True
|
|
|
|
want = case to of
|
2014-01-23 20:37:08 +00:00
|
|
|
Nothing -> wantGet False (Just key) (Just file)
|
|
|
|
Just r -> wantSend False (Just key) (Just file) (Remote.uuid r)
|