2011-03-16 01:34:13 +00:00
|
|
|
{- git-annex key/value backend data type
|
2010-10-14 06:52:17 +00:00
|
|
|
-
|
2011-12-31 08:14:33 +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
|
|
|
|
2011-06-02 01:56:04 +00:00
|
|
|
module Types.Backend where
|
2010-10-12 19:52:18 +00:00
|
|
|
|
2011-06-02 01:56:04 +00:00
|
|
|
import Types.Key
|
2010-10-13 06:31:24 +00:00
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
data BackendA a = Backend {
|
2011-01-26 04:37:50 +00:00
|
|
|
-- name of this backend
|
|
|
|
name :: String,
|
|
|
|
-- converts a filename to a key
|
|
|
|
getKey :: FilePath -> a (Maybe Key),
|
2012-01-19 17:51:30 +00:00
|
|
|
-- called during fsck to check a key, if the backend has its own checks
|
2012-01-19 19:24:05 +00:00
|
|
|
fsckKey :: Maybe (Key -> FilePath -> a Bool)
|
2011-01-26 04:37:50 +00:00
|
|
|
}
|
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
instance Show (BackendA a) where
|
2011-01-26 04:37:50 +00:00
|
|
|
show backend = "Backend { name =\"" ++ name backend ++ "\" }"
|
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
instance Eq (BackendA a) where
|
2011-01-26 04:37:50 +00:00
|
|
|
a == b = name a == name b
|