git-annex/Backend/SHA.hs

110 lines
2.8 KiB
Haskell
Raw Normal View History

2011-07-01 17:17:02 -04:00
{- git-annex SHA backend
2011-03-01 16:50:53 -04:00
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Backend.SHA (backends) where
2011-03-01 16:50:53 -04:00
2011-10-05 16:02:51 -04:00
import Common.Annex
2011-03-01 16:50:53 -04:00
import qualified Annex
import Types.Backend
import Types.Key
2011-08-20 16:11:42 -04:00
import qualified Build.SysConfig as SysConfig
2011-03-01 16:50:53 -04:00
type SHASize = Int
-- order is slightly significant; want SHA256 first, and more general
-- sizes earlier
sizes :: [Int]
sizes = [256, 1, 512, 224, 384]
2011-12-31 04:11:39 -04:00
backends :: [Backend]
backends = catMaybes $ map genBackend sizes ++ map genBackendE sizes
2011-12-31 04:11:39 -04:00
genBackend :: SHASize -> Maybe Backend
genBackend size
2011-09-20 23:24:48 -04:00
| isNothing (shaCommand size) = Nothing
| otherwise = Just b
where
2011-12-31 04:11:39 -04:00
b = Backend
{ name = shaName size
, getKey = keyValue size
, fsckKey = Just $ checkKeyChecksum size
}
2011-12-31 04:11:39 -04:00
genBackendE :: SHASize -> Maybe Backend
genBackendE size =
case genBackend size of
Nothing -> Nothing
Just b -> Just $ b
{ name = shaNameE size
, getKey = keyValueE size
}
shaCommand :: SHASize -> Maybe String
shaCommand 1 = SysConfig.sha1
shaCommand 256 = SysConfig.sha256
shaCommand 224 = SysConfig.sha224
shaCommand 384 = SysConfig.sha384
shaCommand 512 = SysConfig.sha512
shaCommand _ = Nothing
2011-03-01 16:50:53 -04:00
shaName :: SHASize -> String
shaName size = "SHA" ++ show size
shaNameE :: SHASize -> String
shaNameE size = shaName size ++ "E"
2011-03-01 16:50:53 -04:00
shaN :: SHASize -> FilePath -> Annex String
shaN size file = do
showAction "checksum"
2011-03-01 16:50:53 -04:00
liftIO $ pOpen ReadFromPipe command (toCommand [File file]) $ \h -> do
sha <- fst . separate (== ' ') <$> hGetLine h
if null sha
2011-03-01 16:50:53 -04:00
then error $ command ++ " parse error"
else return sha
2011-03-01 16:50:53 -04:00
where
command = fromJust $ shaCommand size
2011-03-01 16:50:53 -04:00
{- A key is a checksum of its contents. -}
2011-03-01 16:50:53 -04:00
keyValue :: SHASize -> FilePath -> Annex (Maybe Key)
keyValue size file = do
s <- shaN size file
stat <- liftIO $ getFileStatus file
return $ Just $ stubKey
{ keyName = s
, keyBackendName = shaName size
, keySize = Just $ fromIntegral $ fileSize stat
}
{- Extension preserving keys. -}
keyValueE :: SHASize -> FilePath -> Annex (Maybe Key)
keyValueE size file = keyValue size file >>= maybe (return Nothing) addE
where
addE k = return $ Just $ k
{ keyName = keyName k ++ extension
, keyBackendName = shaNameE size
}
naiveextension = takeExtension file
extension
-- long or newline containing extensions are
-- probably not really an extension
| length naiveextension > 6 ||
'\n' `elem` naiveextension = ""
| otherwise = naiveextension
2011-03-01 16:50:53 -04:00
2011-08-06 12:50:20 -04:00
{- A key's checksum is checked during fsck. -}
checkKeyChecksum :: SHASize -> Key -> FilePath -> Annex Bool
checkKeyChecksum size key file = do
fast <- Annex.getState Annex.fast
2011-03-01 16:50:53 -04:00
present <- liftIO $ doesFileExist file
if not present || fast
2011-03-01 16:50:53 -04:00
then return True
else check <$> shaN size file
2011-10-11 14:43:45 -04:00
where
check s
| s == dropExtension (keyName key) = True
| otherwise = False