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 Command
|
2010-11-15 22:22:50 +00:00
|
|
|
import qualified Backend
|
|
|
|
import Types
|
|
|
|
import Messages
|
2010-11-28 19:28:20 +00:00
|
|
|
import Utility
|
2010-11-06 21:06:19 +00:00
|
|
|
|
2010-12-30 19:06:26 +00:00
|
|
|
command :: [Command]
|
|
|
|
command = [Command "fsck" (paramOptional $ paramRepeating paramPath) seek
|
|
|
|
"check for problems"]
|
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
seek :: [CommandSeek]
|
2011-01-14 03:36:58 +00:00
|
|
|
seek = [withAttrFilesInGit "annex.numcopies" start]
|
2010-11-15 22:22:50 +00:00
|
|
|
|
|
|
|
{- Checks a file's backend data for problems. -}
|
2010-12-30 18:19:16 +00:00
|
|
|
start :: CommandStartAttrFile
|
2010-11-28 19:28:20 +00:00
|
|
|
start (file, attr) = isAnnexed file $ \(key, backend) -> do
|
2010-11-15 22:22:50 +00:00
|
|
|
showStart "fsck" file
|
2011-01-27 00:37:46 +00:00
|
|
|
return $ Just $ perform key file backend numcopies
|
2010-11-28 19:28:20 +00:00
|
|
|
where
|
|
|
|
numcopies = readMaybe attr :: Maybe Int
|
2010-11-15 22:22:50 +00:00
|
|
|
|
2011-01-27 00:37:46 +00:00
|
|
|
perform :: Key -> FilePath -> Backend Annex -> Maybe Int -> CommandPerform
|
|
|
|
perform key file backend numcopies = do
|
|
|
|
success <- Backend.fsckKey backend key (Just file) numcopies
|
2010-11-22 21:51:55 +00:00
|
|
|
if success
|
2010-11-15 22:22:50 +00:00
|
|
|
then return $ Just $ return True
|
|
|
|
else return Nothing
|