repair: Optimise unpacking of pack files, and avoid repeated error messages about corrupt pack files.
This commit is contained in:
parent
1f5aac6ad0
commit
46cc39f1a4
2 changed files with 28 additions and 15 deletions
|
@ -75,24 +75,35 @@ removeLoose r s = do
|
||||||
return True
|
return True
|
||||||
else return False
|
else return False
|
||||||
|
|
||||||
|
{- Explodes all pack files, and deletes them.
|
||||||
|
-
|
||||||
|
- First moves all pack files to a temp dir, before unpacking them each in
|
||||||
|
- turn.
|
||||||
|
-
|
||||||
|
- This is because unpack-objects will not unpack a pack file if it's in the
|
||||||
|
- git repo.
|
||||||
|
-
|
||||||
|
- Also, this prevents unpack-objects from possibly looking at corrupt
|
||||||
|
- pack files to see if they contain an object, while unpacking a
|
||||||
|
- non-corrupt pack file.
|
||||||
|
-}
|
||||||
explodePacks :: Repo -> IO Bool
|
explodePacks :: Repo -> IO Bool
|
||||||
explodePacks r = do
|
explodePacks r = go =<< listPackFiles r
|
||||||
packs <- listPackFiles r
|
|
||||||
if null packs
|
|
||||||
then return False
|
|
||||||
else do
|
|
||||||
putStrLn "Unpacking all pack files."
|
|
||||||
mapM_ go packs
|
|
||||||
return True
|
|
||||||
where
|
where
|
||||||
go packfile = withTmpFileIn (localGitDir r) "pack" $ \tmp _ -> do
|
go [] = return False
|
||||||
moveFile packfile tmp
|
go packs = withTmpDir "packs" $ \tmpdir -> do
|
||||||
|
putStrLn "Unpacking all pack files."
|
||||||
|
forM_ packs $ \packfile -> do
|
||||||
|
moveFile packfile (tmpdir </> takeFileName packfile)
|
||||||
nukeFile $ packIdxFile packfile
|
nukeFile $ packIdxFile packfile
|
||||||
|
forM_ packs $ \packfile -> do
|
||||||
|
let tmp = tmpdir </> takeFileName packfile
|
||||||
allowRead tmp
|
allowRead tmp
|
||||||
-- May fail, if pack file is corrupt.
|
-- May fail, if pack file is corrupt.
|
||||||
void $ tryIO $
|
void $ tryIO $
|
||||||
pipeWrite [Param "unpack-objects", Param "-r"] r $ \h ->
|
pipeWrite [Param "unpack-objects", Param "-r"] r $ \h ->
|
||||||
L.hPut h =<< L.readFile tmp
|
L.hPut h =<< L.readFile tmp
|
||||||
|
return True
|
||||||
|
|
||||||
{- Try to retrieve a set of missing objects, from the remotes of a
|
{- Try to retrieve a set of missing objects, from the remotes of a
|
||||||
- repository. Returns any that could not be retreived.
|
- repository. Returns any that could not be retreived.
|
||||||
|
|
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -20,6 +20,8 @@ git-annex (5.20140222) UNRELEASED; urgency=medium
|
||||||
* webdav: When built with DAV 0.6.0, use the new DAV monad to avoid
|
* webdav: When built with DAV 0.6.0, use the new DAV monad to avoid
|
||||||
locking files, which is not needed by git-annex's use of webdav, and
|
locking files, which is not needed by git-annex's use of webdav, and
|
||||||
does not work on Box.com.
|
does not work on Box.com.
|
||||||
|
* repair: Optimise unpacking of pack files, and avoid repeated error
|
||||||
|
messages about corrupt pack files.
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Fri, 21 Feb 2014 13:03:04 -0400
|
-- Joey Hess <joeyh@debian.org> Fri, 21 Feb 2014 13:03:04 -0400
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue