diff options
author | Joey Hess <joey@kitenet.net> | 2012-10-08 16:06:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-10-08 16:06:56 -0400 |
commit | 84a60358dfca930409622732aa023e6e00322319 (patch) | |
tree | fc9e8d53a5180ee67bb01ac6872b445f8cd55357 /Command | |
parent | 98612f75ffee93be2973fd444948314dd1b7f822 (diff) |
make copy --to check preferred content of the remote
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Copy.hs | 13 | ||||
-rw-r--r-- | Command/Drop.hs | 35 | ||||
-rw-r--r-- | Command/Get.hs | 3 |
3 files changed, 22 insertions, 29 deletions
diff --git a/Command/Copy.hs b/Command/Copy.hs index 5d92eef2e..c8a2d7efc 100644 --- a/Command/Copy.hs +++ b/Command/Copy.hs @@ -11,6 +11,7 @@ import Common.Annex import Command import qualified Command.Move import qualified Remote +import Annex.Wanted def :: [Command] def = [withOptions Command.Move.options $ command "copy" paramPaths seek @@ -21,8 +22,14 @@ seek = [withField Command.Move.toOption Remote.byName $ \to -> withField Command.Move.fromOption Remote.byName $ \from -> withFilesInGit $ whenAnnexed $ start to from] --- A copy is just a move that does not delete the source file. --- However, --auto mode avoids unnecessary copies. +{- 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. -} start :: Maybe Remote -> Maybe Remote -> FilePath -> (Key, Backend) -> CommandStart start to from file (key, backend) = autoCopies file key (<) $ - Command.Move.start to from False file (key, backend) + stopUnless shouldCopy $ + Command.Move.start to from False file (key, backend) + where + shouldCopy = case to of + Nothing -> checkAuto $ shouldGet file key + Just r -> checkAuto $ shouldSend r file diff --git a/Command/Drop.hs b/Command/Drop.hs index 9640d2804..3fe5ab20a 100644 --- a/Command/Drop.hs +++ b/Command/Drop.hs @@ -17,10 +17,7 @@ import Logs.Trust import Annex.Content import Config import qualified Option -import Git.FilePath -import Logs.PreferredContent - -import qualified Data.Set as S +import Annex.Wanted def :: [Command] def = [withOptions [fromOption] $ command "drop" paramPaths seek @@ -34,27 +31,15 @@ seek = [withField fromOption Remote.byName $ \from -> withFilesInGit $ whenAnnexed $ start from] start :: Maybe Remote -> FilePath -> (Key, Backend) -> CommandStart -start from file (key, _) = shouldDrop $ \numcopies -> - case from of - Nothing -> startLocal file numcopies key - Just remote -> do - u <- getUUID - if Remote.uuid remote == u - then startLocal file numcopies key - else startRemote file numcopies key remote - where - {- In --auto mode, drop if there are enough copies, - - and the repository being dropped from doesn't prefer - - to keep the content. -} - shouldDrop a = autoCopiesWith file key (>) $ \numcopies -> - ifM (Annex.getState Annex.auto) - ( do - fp <- inRepo $ toTopFilePath file - u <- maybe getUUID (return . Remote.uuid) from - ifM (isPreferredContent (Just u) (S.singleton u) fp) - ( a numcopies, stop ) - , a numcopies - ) +start from file (key, _) = autoCopiesWith file key (>) $ \numcopies -> + stopUnless (checkAuto $ shouldDrop from file) $ + case from of + Nothing -> startLocal file numcopies key + Just remote -> do + u <- getUUID + if Remote.uuid remote == u + then startLocal file numcopies key + else startRemote file numcopies key remote startLocal :: FilePath -> Maybe Int -> Key -> CommandStart startLocal file numcopies key = stopUnless (inAnnex key) $ do diff --git a/Command/Get.hs b/Command/Get.hs index ab0e60b41..10b74bfc7 100644 --- a/Command/Get.hs +++ b/Command/Get.hs @@ -13,6 +13,7 @@ import qualified Remote import Annex.Content import qualified Command.Move import Logs.Transfer +import Annex.Wanted def :: [Command] def = [withOptions [Command.Move.fromOption] $ command "get" paramPaths seek @@ -23,7 +24,7 @@ seek = [withField Command.Move.fromOption Remote.byName $ \from -> withFilesInGit $ whenAnnexed $ start from] start :: Maybe Remote -> FilePath -> (Key, Backend) -> CommandStart -start from file (key, _) = stopUnless (not <$> inAnnex key) $ +start from file (key, _) = stopUnless (checkAuto $ shouldGet file key) $ autoCopies file key (<) $ case from of Nothing -> go $ perform key file |