git-annex/Backend/WORM.hs

71 lines
1.8 KiB
Haskell
Raw Normal View History

2010-10-15 20:42:36 +00:00
{- git-annex "WORM" backend -- Write Once, Read Many
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-15 20:42:36 +00:00
2010-10-15 23:33:10 +00:00
module Backend.WORM (backend) where
2010-10-15 20:42:36 +00:00
2010-10-15 22:57:05 +00:00
import Control.Monad.State
2010-10-15 20:52:47 +00:00
import System.FilePath
2010-10-15 22:57:05 +00:00
import System.Posix.Files
import System.Posix.Types
import System.Directory
import Data.String.Utils
2010-10-15 20:42:36 +00:00
2010-10-16 20:20:49 +00:00
import qualified Backend.File
2010-10-18 06:06:27 +00:00
import TypeInternals
import Locations
import qualified Annex
import Core
import Messages
2010-10-16 20:20:49 +00:00
2010-10-31 20:00:32 +00:00
backend :: Backend
2010-10-15 20:42:36 +00:00
backend = Backend.File.backend {
name = "WORM",
getKey = keyValue,
fsckKey = Backend.File.checkKey checkKeySize
2010-10-15 20:42:36 +00:00
}
-- The key is formed from the file size, modification time, and the
-- basename of the filename.
--
-- That allows multiple files with the same names to have different keys,
2010-10-15 22:57:05 +00:00
-- while also allowing a file to be moved around while retaining the
-- same key.
2010-10-15 20:42:36 +00:00
keyValue :: FilePath -> Annex (Maybe Key)
2010-10-15 22:57:05 +00:00
keyValue file = do
stat <- liftIO $ getFileStatus file
return $ Just $ Key ((name backend), key stat)
where
key stat = uniqueid stat ++ sep ++ base
2010-10-17 04:10:04 +00:00
uniqueid stat = (show $ modificationTime stat) ++ sep ++
(show $ fileSize stat)
2010-10-15 22:57:05 +00:00
base = takeFileName file
sep = ":"
{- Extracts the file size from a key. -}
keySize :: Key -> FileOffset
keySize key = read $ section !! 2
where
section = split ":" (keyName key)
{- The size of the data for a key is checked against the size encoded in
- the key. Note that the modification time is not checked. -}
checkKeySize :: Key -> Annex Bool
checkKeySize key = do
g <- Annex.gitRepo
let file = annexLocation g key
present <- liftIO $ doesFileExist file
if (not present)
then return True
else do
s <- liftIO $ getFileStatus file
if (fileSize s == keySize key)
then return True
else do
dest <- moveBad key
2010-11-13 19:24:36 +00:00
showLongNote $ "Bad file size; moved to "++dest
return False