2011-03-01 20:50:53 +00:00
|
|
|
{- git-annex SHA abstract backend
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2011-03-02 17:47:45 +00:00
|
|
|
module Backend.SHA (backends) where
|
2011-03-01 20:50:53 +00:00
|
|
|
|
|
|
|
import Control.Monad.State
|
|
|
|
import Data.String.Utils
|
|
|
|
import System.Cmd.Utils
|
|
|
|
import System.IO
|
|
|
|
import System.Directory
|
2011-03-02 17:47:45 +00:00
|
|
|
import Data.Maybe
|
2011-03-16 01:34:13 +00:00
|
|
|
import System.Posix.Files
|
2011-03-01 20:50:53 +00:00
|
|
|
|
|
|
|
import qualified Backend.File
|
2011-03-16 02:04:50 +00:00
|
|
|
import BackendClass
|
2011-03-01 20:50:53 +00:00
|
|
|
import Messages
|
|
|
|
import qualified Annex
|
|
|
|
import Locations
|
|
|
|
import Content
|
|
|
|
import Types
|
|
|
|
import Utility
|
2011-03-02 17:47:45 +00:00
|
|
|
import qualified SysConfig
|
2011-03-16 01:34:13 +00:00
|
|
|
import Key
|
2011-03-01 20:50:53 +00:00
|
|
|
|
|
|
|
type SHASize = Int
|
|
|
|
|
2011-03-02 17:47:45 +00:00
|
|
|
backends :: [Backend Annex]
|
|
|
|
-- order is slightly significant; want sha1 first ,and more general
|
|
|
|
-- sizes earlier
|
|
|
|
backends = catMaybes $ map genBackend [1, 256, 512, 224, 384]
|
|
|
|
|
|
|
|
genBackend :: SHASize -> Maybe (Backend Annex)
|
|
|
|
genBackend size
|
|
|
|
| supported size = Just b
|
|
|
|
| otherwise = Nothing
|
|
|
|
where
|
|
|
|
b = Backend.File.backend
|
|
|
|
{ name = shaName size
|
|
|
|
, getKey = keyValue size
|
|
|
|
, fsckKey = Backend.File.checkKey $ checkKeyChecksum size
|
|
|
|
}
|
|
|
|
supported 1 = SysConfig.sha1sum
|
|
|
|
supported 256 = SysConfig.sha256sum
|
|
|
|
supported 224 = SysConfig.sha224sum
|
|
|
|
supported 384 = SysConfig.sha384sum
|
|
|
|
supported 512 = SysConfig.sha512sum
|
|
|
|
supported _ = False
|
2011-03-01 20:50:53 +00:00
|
|
|
|
|
|
|
shaName :: SHASize -> String
|
|
|
|
shaName size = "SHA" ++ show size
|
|
|
|
|
|
|
|
shaN :: SHASize -> FilePath -> Annex String
|
|
|
|
shaN size file = do
|
|
|
|
showNote "checksum..."
|
|
|
|
liftIO $ pOpen ReadFromPipe command (toCommand [File file]) $ \h -> do
|
|
|
|
line <- hGetLine h
|
|
|
|
let bits = split " " line
|
|
|
|
if null bits
|
|
|
|
then error $ command ++ " parse error"
|
|
|
|
else return $ head bits
|
|
|
|
where
|
|
|
|
command = "sha" ++ (show size) ++ "sum"
|
|
|
|
|
2011-03-16 01:34:13 +00:00
|
|
|
{- A key is a checksum of its contents. -}
|
2011-03-01 20:50:53 +00:00
|
|
|
keyValue :: SHASize -> FilePath -> Annex (Maybe Key)
|
|
|
|
keyValue size file = do
|
|
|
|
s <- shaN size file
|
2011-03-16 01:34:13 +00:00
|
|
|
stat <- liftIO $ getFileStatus file
|
|
|
|
return $ Just $ stubKey {
|
|
|
|
keyName = s,
|
|
|
|
keyBackendName = shaName size,
|
|
|
|
keySize = Just $ fromIntegral $ fileSize stat
|
|
|
|
}
|
2011-03-01 20:50:53 +00:00
|
|
|
|
|
|
|
-- A key's checksum is checked during fsck.
|
|
|
|
checkKeyChecksum :: SHASize -> Key -> Annex Bool
|
|
|
|
checkKeyChecksum size key = do
|
|
|
|
g <- Annex.gitRepo
|
2011-03-22 21:41:06 +00:00
|
|
|
fast <- Annex.getState Annex.fast
|
2011-03-01 20:50:53 +00:00
|
|
|
let file = gitAnnexLocation g key
|
|
|
|
present <- liftIO $ doesFileExist file
|
2011-03-22 21:41:06 +00:00
|
|
|
if (not present || fast)
|
2011-03-01 20:50:53 +00:00
|
|
|
then return True
|
|
|
|
else do
|
|
|
|
s <- shaN size file
|
|
|
|
if s == keyName key
|
|
|
|
then return True
|
|
|
|
else do
|
|
|
|
dest <- moveBad key
|
2011-03-12 19:30:17 +00:00
|
|
|
warning $ "Bad file content; moved to " ++ dest
|
2011-03-01 20:50:53 +00:00
|
|
|
return False
|