diff options
author | Joey Hess <joey@kitenet.net> | 2014-01-01 17:39:33 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-01-01 17:39:33 -0400 |
commit | 5920ca6fe9a27cdbd9757a935a611169fc315b09 (patch) | |
tree | 5ca68b19d6dd088c182436b800fd8d6763c92e7e /Command/Mirror.hs | |
parent | 874374e3b048ce1e9b9ef6e8b60b0a4debf93c90 (diff) |
mirror: Support --all (and --unused).
Diffstat (limited to 'Command/Mirror.hs')
-rw-r--r-- | Command/Mirror.hs | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/Command/Mirror.hs b/Command/Mirror.hs index c0dd8a51f..fb829bcb0 100644 --- a/Command/Mirror.hs +++ b/Command/Mirror.hs @@ -18,18 +18,25 @@ import Annex.Content import qualified Annex def :: [Command] -def = [withOptions fromToOptions $ command "mirror" paramPaths seek - SectionCommon "mirror content of files to/from another repository"] +def = [withOptions (fromToOptions ++ keyOptions) $ + command "mirror" paramPaths seek + SectionCommon "mirror content of files to/from another repository"] seek :: [CommandSeek] seek = [ withField toOption Remote.byNameWithUUID $ \to -> withField fromOption Remote.byNameWithUUID $ \from -> + withKeyOptions (startKey Nothing to from Nothing) $ withFilesInGit $ whenAnnexed $ start to from ] start :: Maybe Remote -> Maybe Remote -> FilePath -> (Key, Backend) -> CommandStart start to from file (key, _backend) = do + numcopies <- numCopies file + startKey numcopies to from (Just file) key + +startKey :: Maybe Int -> Maybe Remote -> Maybe Remote -> Maybe FilePath -> Key -> CommandStart +startKey numcopies to from afile key = do noAuto case (from, to) of (Nothing, Nothing) -> error "specify either --from or --to" @@ -40,19 +47,15 @@ start to from file (key, _backend) = do noAuto = whenM (Annex.getState Annex.auto) $ error "--auto is not supported for mirror" mirrorto r = ifM (inAnnex key) - ( Command.Move.toStart r False (Just file) key - , do - numcopies <- numCopies file - Command.Drop.startRemote file numcopies key r + ( Command.Move.toStart r False afile key + , Command.Drop.startRemote afile numcopies key r ) mirrorfrom r = do haskey <- Remote.hasKey r key case haskey of Left _ -> stop - Right True -> Command.Get.start' (return True) Nothing key (Just file) + Right True -> Command.Get.start' (return True) Nothing key afile Right False -> ifM (inAnnex key) - ( do - numcopies <- numCopies file - Command.Drop.startLocal file numcopies key Nothing + ( Command.Drop.startLocal afile numcopies key Nothing , stop ) |