2010-11-27 21:09:22 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- 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
|
2013-08-20 19:46:35 +00:00
|
|
|
import GitAnnex.Options
|
2010-11-27 21:09:22 +00:00
|
|
|
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
|
2010-11-27 21:09:22 +00:00
|
|
|
|
2011-10-29 19:19:05 +00:00
|
|
|
def :: [Command]
|
2013-07-03 17:55:50 +00:00
|
|
|
def = [withOptions Command.Move.moveOptions $ 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
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
seek :: [CommandSeek]
|
2013-07-03 17:55:50 +00:00
|
|
|
seek =
|
2013-08-20 19:46:35 +00:00
|
|
|
[ withField toOption Remote.byNameWithUUID $ \to ->
|
|
|
|
withField fromOption Remote.byNameWithUUID $ \from ->
|
2013-07-03 19:26:59 +00:00
|
|
|
withKeyOptions (Command.Move.startKey to from False) $
|
2013-07-03 17:55:50 +00:00
|
|
|
withFilesInGit $ whenAnnexed $ start to from
|
|
|
|
]
|
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.
|
|
|
|
- However, --auto mode avoids unnecessary copies, and avoids getting or
|
|
|
|
- sending non-preferred content. -}
|
2012-02-14 03:42:44 +00:00
|
|
|
start :: Maybe Remote -> Maybe Remote -> FilePath -> (Key, Backend) -> CommandStart
|
2012-12-06 17:22:16 +00:00
|
|
|
start to from file (key, backend) = stopUnless shouldCopy $
|
|
|
|
Command.Move.start to from False file (key, backend)
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
2012-12-06 17:22:16 +00:00
|
|
|
shouldCopy = checkAuto (check <||> numCopiesCheck file key (<))
|
|
|
|
check = case to of
|
|
|
|
Nothing -> wantGet False (Just file)
|
|
|
|
Just r -> wantSend False (Just file) (Remote.uuid r)
|