summaryrefslogtreecommitdiff
path: root/Command/Fsck.hs
blob: 9acecfce673391909e3cc75bfa12527be176ae21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{- 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
import qualified Backend
import Types
import Messages
import Utility

seek :: [SubCmdSeek]
seek = [withAll (withAttrFilesInGit "annex.numcopies") start]

{- Checks a file's backend data for problems. -}
start :: SubCmdStartAttrFile
start (file, attr) = isAnnexed file $ \(key, backend) -> do
	showStart "fsck" file
	return $ Just $ perform key backend numcopies
	where
		numcopies = readMaybe attr :: Maybe Int

perform :: Key -> Backend -> Maybe Int -> SubCmdPerform
perform key backend numcopies = do
	success <- Backend.fsckKey backend key numcopies
	if success
		then return $ Just $ return True
		else return Nothing