summaryrefslogtreecommitdiff
path: root/Command/FsckFile.hs
blob: c74e94e62fd04aa09991a8f91e5cab9e5c070f23 (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
{- git-annex command
 -
 - Copyright 2010 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Command.FsckFile where

import Command
import qualified Backend
import Types
import Messages

seek :: [SubCmdSeek]
seek = [withFilesInGit start]

{- Checks a file's backend data for problems. -}
start :: SubCmdStartString
start file = isAnnexed file $ \(key, backend) -> do
	showStart "fsck" file
	return $ Just $ perform key backend

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