summaryrefslogtreecommitdiff
path: root/Remote/Git.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-09-14 12:13:38 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-09-14 12:13:38 -0400
commite323354b4ca2a44baae8223b9dd47aaab234a56a (patch)
tree6d3a7f0ffecd6d8cfe7a4c10cf7136a877d20ce4 /Remote/Git.hs
parent0685f4f87a84396a26433c99300bae8a8aefa1e2 (diff)
annex.hardlink extended to also try to use hard links when copying from the repository to a remote.
Also, it used to only check that one of the repos was not in direct mode; now when either repo is direct mode, annex.hardlink won't have an effect.
Diffstat (limited to 'Remote/Git.hs')
-rw-r--r--Remote/Git.hs41
1 files changed, 25 insertions, 16 deletions
diff --git a/Remote/Git.hs b/Remote/Git.hs
index 0fecf1ed1..4187a5178 100644
--- a/Remote/Git.hs
+++ b/Remote/Git.hs
@@ -368,9 +368,7 @@ copyFromRemote' r key file dest meterupdate
| not $ Git.repoIsUrl (repo r) = guardUsable (repo r) (return False) $ do
params <- Ssh.rsyncParams r Download
u <- getUUID
-#ifndef mingw32_HOST_OS
- hardlink <- annexHardLink <$> Annex.getGitConfig
-#endif
+ hardlink <- wantHardLink
-- run copy from perspective of remote
onLocal r $ do
ensureInitialized
@@ -378,19 +376,9 @@ copyFromRemote' r key file dest meterupdate
case v of
Nothing -> return False
Just (object, checksuccess) -> do
- let copier = rsyncOrCopyFile params object dest
-#ifndef mingw32_HOST_OS
- let linker = createLink object dest >> return True
- go <- ifM (pure hardlink <&&> not <$> isDirect)
- ( return $ \m -> liftIO (catchBoolIO linker)
- <||> copier m
- , return copier
- )
-#else
- let go = copier
-#endif
+ copier <- mkCopier hardlink params object dest
runTransfer (Transfer Download u key)
- file noRetry noObserver go
+ file noRetry noObserver copier
<&&> checksuccess
| Git.repoIsSsh (repo r) = feedprogressback $ \feeder -> do
direct <- isDirect
@@ -506,6 +494,7 @@ copyToRemote' r key file p
checksuccessio <- Annex.withCurrentState checksuccess
params <- Ssh.rsyncParams r Upload
u <- getUUID
+ hardlink <- wantHardLink
-- run copy from perspective of remote
onLocal r $ ifM (Annex.Content.inAnnex key)
( return True
@@ -514,7 +503,7 @@ copyToRemote' r key file p
runTransfer (Transfer Download u key) file noRetry noObserver $ const $
Annex.Content.saveState True `after`
Annex.Content.getViaTmpChecked (liftIO checksuccessio) key
- (\d -> rsyncOrCopyFile params object d p)
+ (\dest -> mkCopier hardlink params object dest >>= \a -> a p)
)
fsckOnRemote :: Git.Repo -> [CommandParam] -> Annex (IO Bool)
@@ -622,3 +611,23 @@ commitOnCleanup r a = go `after` a
withQuietOutput createProcessSuccess $
proc shellcmd $
toCommand shellparams
+
+wantHardLink :: Annex Bool
+wantHardLink = (annexHardLink <$> Annex.getGitConfig) <&&> (not <$> isDirect)
+
+-- If either the remote or local repository wants to use hard links,
+-- the copier will do so, falling back to copying.
+mkCopier :: Bool -> [CommandParam] -> FilePath -> FilePath -> Annex (MeterUpdate -> Annex Bool)
+mkCopier remotewanthardlink rsyncparams object dest = do
+ let copier = rsyncOrCopyFile rsyncparams object dest
+#ifndef mingw32_HOST_OS
+ localwanthardlink <- wantHardLink
+ let linker = createLink object dest >> return True
+ ifM (pure (remotewanthardlink || localwanthardlink) <&&> not <$> isDirect)
+ ( return $ \m -> liftIO (catchBoolIO linker)
+ <||> copier m
+ , return copier
+ )
+#else
+ return copier
+#endif