git-annex/BackendTypes.hs

80 lines
2.2 KiB
Haskell
Raw Normal View History

{- git-annex key/value backend data types
2010-10-14 06:52:17 +00:00
-
- Most things should not need this, using Types instead
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-14 06:52:17 +00:00
-}
2010-10-12 19:52:18 +00:00
module BackendTypes where
2010-10-12 19:52:18 +00:00
2010-10-13 00:04:36 +00:00
import Data.String.Utils
import Test.QuickCheck
2010-10-16 20:20:49 +00:00
type KeyName = String
2010-10-14 23:36:11 +00:00
type BackendName = String
newtype Key = Key (BackendName, KeyName) deriving (Eq, Ord)
data Backend a = Backend {
-- name of this backend
name :: String,
-- converts a filename to a key
getKey :: FilePath -> a (Maybe Key),
-- stores a file's contents to a key
storeFileKey :: FilePath -> Key -> a Bool,
-- retrieves a key's contents to a file
retrieveKeyFile :: Key -> FilePath -> a Bool,
-- removes a key, optionally checking that enough copies are stored
-- elsewhere
removeKey :: Key -> Maybe Int -> a Bool,
-- checks if a backend is storing the content of a key
hasKey :: Key -> a Bool,
-- called during fsck to check a key
-- (second parameter may be the filename associated with it)
-- (third parameter may be the number of copies that there should
-- be of the key)
fsckKey :: Key -> Maybe FilePath -> Maybe Int -> a Bool
}
instance Show (Backend a) where
show backend = "Backend { name =\"" ++ name backend ++ "\" }"
instance Eq (Backend a) where
a == b = name a == name b
-- accessors for the parts of a key
keyName :: Key -> KeyName
keyName (Key (_,k)) = k
backendName :: Key -> BackendName
backendName (Key (b,_)) = b
-- constructs a key in a backend
genKey :: Backend a -> KeyName -> Key
genKey b f = Key (name b,f)
2010-10-14 23:36:11 +00:00
-- show a key to convert it to a string; the string includes the
-- name of the backend to avoid collisions between key strings
instance Show Key where
2010-10-14 23:36:11 +00:00
show (Key (b, k)) = b ++ ":" ++ k
instance Read Key where
readsPrec _ s = [(Key (b,k), "")]
2010-10-14 23:36:11 +00:00
where
l = split ":" s
b = if null l then "" else head l
2010-10-14 23:36:11 +00:00
k = join ":" $ drop 1 l
2010-10-12 20:06:10 +00:00
-- for quickcheck
instance Arbitrary Key where
arbitrary = do
backendname <- arbitrary
keyname <- arbitrary
return $ Key (backendname, keyname)
prop_idempotent_key_read_show :: Key -> Bool
prop_idempotent_key_read_show k
-- backend names will never contain colons
2011-01-30 16:01:56 +00:00
| ':' `elem` (backendName k) = True
| otherwise = k == (read $ show k)