2016-01-20 20:36:33 +00:00
|
|
|
{- git-annex key 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
|
|
|
-
|
2017-02-24 19:16:56 +00:00
|
|
|
- Copyright 2010-2017 Joey Hess <id@joeyh.name>
|
2010-10-27 20:53:54 +00:00
|
|
|
-
|
|
|
|
- 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
|
2012-06-20 20:07:14 +00:00
|
|
|
import Types.KeySource
|
2012-06-05 23:51:03 +00:00
|
|
|
|
2019-01-11 20:34:04 +00:00
|
|
|
import Utility.FileSystemEncoding
|
|
|
|
|
2012-06-06 15:58:08 +00:00
|
|
|
data BackendA a = Backend
|
2017-02-24 19:16:56 +00:00
|
|
|
{ backendVariety :: KeyVariety
|
2012-06-06 15:58:08 +00:00
|
|
|
, getKey :: KeySource -> a (Maybe Key)
|
2015-10-01 17:28:49 +00:00
|
|
|
-- Verifies the content of a key.
|
|
|
|
, verifyKeyContent :: Maybe (Key -> FilePath -> a Bool)
|
2014-07-27 16:33:46 +00:00
|
|
|
-- Checks if a key can be upgraded to a better form.
|
2012-12-20 19:43:14 +00:00
|
|
|
, canUpgradeKey :: Maybe (Key -> Bool)
|
2014-07-27 16:33:46 +00:00
|
|
|
-- Checks if there is a fast way to migrate a key to a different
|
|
|
|
-- backend (ie, without re-hashing).
|
2018-09-24 16:07:46 +00:00
|
|
|
, fastMigrate :: Maybe (Key -> BackendA a -> AssociatedFile -> a (Maybe Key))
|
2014-07-27 16:33:46 +00:00
|
|
|
-- Checks if a key is known (or assumed) to always refer to the
|
|
|
|
-- same data.
|
|
|
|
, isStableKey :: Key -> Bool
|
2012-06-06 15:58:08 +00:00
|
|
|
}
|
2011-01-26 04:37:50 +00:00
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
instance Show (BackendA a) where
|
2019-01-11 20:34:04 +00:00
|
|
|
show backend = "Backend { name =\"" ++ decodeBS (formatKeyVariety (backendVariety backend)) ++ "\" }"
|
2011-01-26 04:37:50 +00:00
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
instance Eq (BackendA a) where
|
2017-02-24 19:16:56 +00:00
|
|
|
a == b = backendVariety a == backendVariety b
|