git-annex/Types/Backend.hs

41 lines
1.3 KiB
Haskell
Raw Normal View History

{- 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
-
- Copyright 2010-2020 Joey Hess <id@joeyh.name>
2010-10-27 20:53:54 +00:00
-
- Licensed under the GNU AGPL version 3 or higher.
2010-10-14 06:52:17 +00:00
-}
2010-10-12 19:52:18 +00:00
module Types.Backend where
2010-10-12 19:52:18 +00:00
import Types.Key
import Types.KeySource
import Utility.Metered
import Utility.FileSystemEncoding
2012-06-06 15:58:08 +00:00
data BackendA a = Backend
{ backendVariety :: KeyVariety
, genKey :: Maybe (KeySource -> MeterUpdate -> a Key)
-- Verifies the content of a key using a hash. This does not need
-- to be cryptographically secure.
, verifyKeyContent :: Maybe (Key -> FilePath -> a Bool)
-- Checks if a key can be upgraded to a better form.
, canUpgradeKey :: Maybe (Key -> Bool)
-- Checks if there is a fast way to migrate a key to a different
-- backend (ie, without re-hashing).
, fastMigrate :: Maybe (Key -> BackendA a -> AssociatedFile -> a (Maybe Key))
-- Checks if a key is known (or assumed) to always refer to the
-- same data.
, isStableKey :: Key -> Bool
-- Checks if a key is verified using a cryptographically secure hash.
, isCryptographicallySecure :: Key -> Bool
2012-06-06 15:58:08 +00:00
}
2011-12-31 08:11:39 +00:00
instance Show (BackendA a) where
show backend = "Backend { name =\"" ++ decodeBS (formatKeyVariety (backendVariety backend)) ++ "\" }"
2011-12-31 08:11:39 +00:00
instance Eq (BackendA a) where
a == b = backendVariety a == backendVariety b