git-annex/Command/Fsck.hs

83 lines
2.1 KiB
Haskell
Raw Normal View History

2010-11-06 21:06:19 +00:00
{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Fsck where
import Control.Monad (when)
import Control.Monad.State (liftIO)
2010-11-06 21:06:19 +00:00
import Command
2010-11-15 22:22:50 +00:00
import qualified Backend
import qualified Annex
import UUID
2010-11-15 22:22:50 +00:00
import Types
import Messages
import Utility
import Content
import LocationLog
import Locations
2010-11-06 21:06:19 +00:00
command :: [Command]
command = [repoCommand "fsck" (paramOptional $ paramRepeating paramPath) seek
"check for problems"]
seek :: [CommandSeek]
seek = [withAttrFilesInGit "annex.numcopies" start]
2010-11-15 22:22:50 +00:00
start :: CommandStartAttrFile
start (file, attr) = notBareRepo $ isAnnexed file $ \(key, backend) -> do
2010-11-15 22:22:50 +00:00
showStart "fsck" file
2011-05-15 06:02:46 +00:00
next $ perform key file backend numcopies
where
numcopies = readMaybe attr :: Maybe Int
2010-11-15 22:22:50 +00:00
perform :: Key -> FilePath -> Backend Annex -> Maybe Int -> CommandPerform
perform key file backend numcopies = do
-- the location log is checked first, so that if it has bad data
-- that gets corrected
locationlogok <- verifyLocationLog key file
backendok <- Backend.fsckKey backend key (Just file) numcopies
if locationlogok && backendok
2011-05-15 06:02:46 +00:00
then next $ return True
else stop
{- Checks that the location log reflects the current status of the key,
in this repository only. -}
verifyLocationLog :: Key -> FilePath -> Annex Bool
verifyLocationLog key file = do
g <- Annex.gitRepo
present <- inAnnex key
-- Since we're checking that a key's file is present, throw
-- in a permission fixup here too.
when present $ liftIO $ do
let f = gitAnnexLocation g key
preventWrite f
preventWrite (parentDir f)
u <- getUUID g
2011-06-22 20:13:43 +00:00
uuids <- keyLocations key
case (present, u `elem` uuids) of
(True, False) -> do
fix g u ValuePresent
-- There is no data loss, so do not fail.
return True
(False, True) -> do
fix g u ValueMissing
warning $
"** Based on the location log, " ++ file
++ "\n** was expected to be present, " ++
"but its content is missing."
return False
_ -> return True
where
fix g u s = do
showNote "fixing location log"
logChange g key u s