a1432bce2f
This allows eg, putting .git/annex/tmp on a ram disk, if the disk IO of temp object files is too annoying (and if you don't want to keep partially transferred objects across reboots). .git/annex/misctmp must be on the same filesystem as the git work tree, since files are moved to there in a way that will not work cross-device, as well as symlinked into there. I first wanted to put the tmp objects in .git/annex/objects/tmp, but that would pose transition problems on upgrade when partially transferred objects existed. git annex info does not currently show the size of .git/annex/misctemp, since it should stay small. It would also be ok to make something clean it out, periodically.
50 lines
1.2 KiB
Haskell
50 lines
1.2 KiB
Haskell
{- git-annex command
|
|
-
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
-
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
-}
|
|
|
|
module Command.Unlock where
|
|
|
|
import Common.Annex
|
|
import Command
|
|
import Annex.Content
|
|
import Utility.CopyFile
|
|
|
|
def :: [Command]
|
|
def =
|
|
[ c "unlock" "unlock files for modification"
|
|
, c "edit" "same as unlock"
|
|
]
|
|
where
|
|
c n = notDirect . command n paramPaths seek SectionCommon
|
|
|
|
seek :: CommandSeek
|
|
seek = withFilesInGit $ whenAnnexed start
|
|
|
|
{- The unlock subcommand replaces the symlink with a copy of the file's
|
|
- content. -}
|
|
start :: FilePath -> (Key, Backend) -> CommandStart
|
|
start file (key, _) = do
|
|
showStart "unlock" file
|
|
next $ perform file key
|
|
|
|
perform :: FilePath -> Key -> CommandPerform
|
|
perform dest key = do
|
|
unlessM (inAnnex key) $ error "content not present"
|
|
unlessM (checkDiskSpace Nothing key 0) $ error "cannot unlock"
|
|
|
|
src <- calcRepo $ gitAnnexLocation key
|
|
tmpdest <- fromRepo $ gitAnnexTmpObjectLocation key
|
|
liftIO $ createDirectoryIfMissing True (parentDir tmpdest)
|
|
showAction "copying"
|
|
ifM (liftIO $ copyFileExternal src tmpdest)
|
|
( do
|
|
liftIO $ do
|
|
removeFile dest
|
|
moveFile tmpdest dest
|
|
thawContent dest
|
|
next $ return True
|
|
, error "copy failed!"
|
|
)
|