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
|
2010-11-13 18:59:27 +00:00
|
|
|
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
|
2010-11-13 18:59:27 +00:00
|
|
|
import Locations
|
|
|
|
import qualified Annex
|
2011-01-16 20:05:05 +00:00
|
|
|
import Content
|
2010-11-13 18:59:27 +00:00
|
|
|
import Messages
|
2011-01-26 01:49:04 +00:00
|
|
|
import Types
|
2010-10-16 20:20:49 +00:00
|
|
|
|
2011-01-26 01:02:34 +00:00
|
|
|
backend :: Backend Annex
|
2010-10-15 20:42:36 +00:00
|
|
|
backend = Backend.File.backend {
|
|
|
|
name = "WORM",
|
2010-11-13 18:59:27 +00:00
|
|
|
getKey = keyValue,
|
|
|
|
fsckKey = Backend.File.checkKey checkKeySize
|
2010-10-15 20:42:36 +00:00
|
|
|
}
|
|
|
|
|
2010-10-17 04:33:05 +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
|
2010-11-22 21:51:55 +00:00
|
|
|
return $ Just $ Key (name backend, key stat)
|
2010-10-15 22:57:05 +00:00
|
|
|
where
|
2010-10-17 04:33:05 +00:00
|
|
|
key stat = uniqueid stat ++ sep ++ base
|
2010-11-22 21:51:55 +00:00
|
|
|
uniqueid stat = show (modificationTime stat) ++ sep ++
|
|
|
|
show (fileSize stat)
|
2010-10-15 22:57:05 +00:00
|
|
|
base = takeFileName file
|
|
|
|
sep = ":"
|
2010-11-13 18:59:27 +00:00
|
|
|
|
|
|
|
{- Extracts the file size from a key. -}
|
|
|
|
keySize :: Key -> FileOffset
|
2010-11-13 19:40:12 +00:00
|
|
|
keySize key = read $ section !! 1
|
2010-11-13 18:59:27 +00:00
|
|
|
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
|
2010-11-22 21:51:55 +00:00
|
|
|
if not present
|
2010-11-13 18:59:27 +00:00
|
|
|
then return True
|
|
|
|
else do
|
|
|
|
s <- liftIO $ getFileStatus file
|
2010-11-22 21:51:55 +00:00
|
|
|
if fileSize s == keySize key
|
2010-11-13 18:59:27 +00:00
|
|
|
then return True
|
|
|
|
else do
|
|
|
|
dest <- moveBad key
|
2010-11-15 22:37:49 +00:00
|
|
|
warning $ "Bad file size; moved to "++dest
|
2010-11-13 18:59:27 +00:00
|
|
|
return False
|