2011-03-15 21:34:13 -04:00
|
|
|
{- git-annex key/value backend data type
|
2010-10-14 02:52:17 -04:00
|
|
|
-
|
2011-10-10 17:37:44 -04:00
|
|
|
- Most things should not need this, using Remotes instead
|
2010-10-27 16:53:54 -04:00
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
2010-10-14 02:52:17 -04:00
|
|
|
-}
|
2010-10-12 15:52:18 -04:00
|
|
|
|
2011-06-01 21:56:04 -04:00
|
|
|
module Types.Backend where
|
2010-10-12 15:52:18 -04:00
|
|
|
|
2011-06-01 21:56:04 -04:00
|
|
|
import Types.Key
|
2010-10-13 02:31:24 -04:00
|
|
|
|
2011-01-26 00:37:50 -04:00
|
|
|
data Backend a = Backend {
|
|
|
|
-- name of this backend
|
|
|
|
name :: String,
|
|
|
|
-- converts a filename to a key
|
|
|
|
getKey :: FilePath -> a (Maybe Key),
|
|
|
|
-- called during fsck to check a key
|
2011-07-05 18:31:46 -04:00
|
|
|
fsckKey :: Key -> a Bool
|
2011-01-26 00:37:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
instance Show (Backend a) where
|
|
|
|
show backend = "Backend { name =\"" ++ name backend ++ "\" }"
|
|
|
|
|
|
|
|
instance Eq (Backend a) where
|
|
|
|
a == b = name a == name b
|