2010-10-15 23:33:10 +00:00
|
|
|
{- git-annex "SHA1" backend
|
2010-10-27 20:53:54 +00:00
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
2010-10-10 19:27:49 +00:00
|
|
|
|
2010-10-15 23:33:10 +00:00
|
|
|
module Backend.SHA1 (backend) where
|
2010-10-10 19:27:49 +00:00
|
|
|
|
2010-10-27 19:00:41 +00:00
|
|
|
import Control.Monad.State
|
|
|
|
import Data.String.Utils
|
|
|
|
import System.Cmd.Utils
|
|
|
|
import System.IO
|
2010-11-13 18:59:27 +00:00
|
|
|
import System.Directory
|
2010-10-27 19:00:41 +00:00
|
|
|
|
2010-10-16 20:20:49 +00:00
|
|
|
import qualified Backend.File
|
2010-10-18 06:06:27 +00:00
|
|
|
import TypeInternals
|
2010-11-08 19:15:21 +00:00
|
|
|
import Messages
|
2010-11-13 18:59:27 +00:00
|
|
|
import qualified Annex
|
|
|
|
import Locations
|
|
|
|
import Core
|
2010-10-10 19:27:49 +00:00
|
|
|
|
2010-10-31 20:00:32 +00:00
|
|
|
backend :: Backend
|
2010-10-14 07:50:28 +00:00
|
|
|
backend = Backend.File.backend {
|
2010-10-15 23:33:10 +00:00
|
|
|
name = "SHA1",
|
2010-11-13 18:59:27 +00:00
|
|
|
getKey = keyValue,
|
|
|
|
fsckKey = Backend.File.checkKey checkKeySHA1
|
2010-10-10 19:27:49 +00:00
|
|
|
}
|
|
|
|
|
2010-11-13 18:59:27 +00:00
|
|
|
sha1 :: FilePath -> Annex String
|
|
|
|
sha1 file = do
|
2010-11-02 06:24:19 +00:00
|
|
|
showNote "checksum..."
|
2010-11-02 02:50:53 +00:00
|
|
|
liftIO $ pOpen ReadFromPipe "sha1sum" [file] $ \h -> do
|
2010-10-27 19:00:41 +00:00
|
|
|
line <- hGetLine h
|
|
|
|
let bits = split " " line
|
|
|
|
if (null bits)
|
|
|
|
then error "sha1sum parse error"
|
2010-11-13 18:59:27 +00:00
|
|
|
else return $ bits !! 0
|
|
|
|
|
|
|
|
-- A key is a sha1 of its contents.
|
|
|
|
keyValue :: FilePath -> Annex (Maybe Key)
|
|
|
|
keyValue file = do
|
|
|
|
s <- sha1 file
|
|
|
|
return $ Just $ Key ((name backend), s)
|
|
|
|
|
|
|
|
-- A key's sha1 is checked during fsck.
|
|
|
|
checkKeySHA1 :: Key -> Annex Bool
|
|
|
|
checkKeySHA1 key = do
|
|
|
|
g <- Annex.gitRepo
|
|
|
|
let file = annexLocation g key
|
|
|
|
present <- liftIO $ doesFileExist file
|
|
|
|
if (not present)
|
|
|
|
then return True
|
|
|
|
else do
|
|
|
|
s <- sha1 file
|
|
|
|
if (s == keyName key)
|
|
|
|
then return True
|
|
|
|
else do
|
|
|
|
dest <- moveBad key
|
|
|
|
showNote $ "bad file content (moved to "++dest++")"
|
|
|
|
return False
|