2011-03-15 21:34:13 -04:00
|
|
|
{- git-annex key/value backend data type
|
2010-10-14 02:52:17 -04:00
|
|
|
-
|
2011-12-31 04:14:33 -04:00
|
|
|
- Most things should not need this, using Types instead
|
2010-10-27 16:53:54 -04:00
|
|
|
-
|
2012-06-05 19:51:03 -04:00
|
|
|
- Copyright 2010,2012 Joey Hess <joey@kitenet.net>
|
2010-10-27 16:53:54 -04:00
|
|
|
-
|
|
|
|
- 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
|
2012-06-20 16:07:14 -04:00
|
|
|
import Types.KeySource
|
2012-06-05 19:51:03 -04:00
|
|
|
|
2012-06-06 11:58:08 -04:00
|
|
|
data BackendA a = Backend
|
|
|
|
{ name :: String
|
|
|
|
, getKey :: KeySource -> a (Maybe Key)
|
2014-07-27 12:33:46 -04:00
|
|
|
-- Checks the content of a key.
|
2012-06-06 11:58:08 -04:00
|
|
|
, fsckKey :: Maybe (Key -> FilePath -> a Bool)
|
2014-07-27 12:33:46 -04:00
|
|
|
-- Checks if a key can be upgraded to a better form.
|
2012-12-20 15:43:14 -04:00
|
|
|
, canUpgradeKey :: Maybe (Key -> Bool)
|
2014-07-27 12:33:46 -04:00
|
|
|
-- Checks if there is a fast way to migrate a key to a different
|
|
|
|
-- backend (ie, without re-hashing).
|
2015-01-04 12:33:10 -04:00
|
|
|
, fastMigrate :: Maybe (Key -> BackendA a -> AssociatedFile -> Maybe Key)
|
2014-07-27 12:33:46 -04:00
|
|
|
-- Checks if a key is known (or assumed) to always refer to the
|
|
|
|
-- same data.
|
|
|
|
, isStableKey :: Key -> Bool
|
2012-06-06 11:58:08 -04:00
|
|
|
}
|
2011-01-26 00:37:50 -04:00
|
|
|
|
2011-12-31 04:11:39 -04:00
|
|
|
instance Show (BackendA a) where
|
2011-01-26 00:37:50 -04:00
|
|
|
show backend = "Backend { name =\"" ++ name backend ++ "\" }"
|
|
|
|
|
2011-12-31 04:11:39 -04:00
|
|
|
instance Eq (BackendA a) where
|
2011-01-26 00:37:50 -04:00
|
|
|
a == b = name a == name b
|