git-annex/Types/Backend.hs

50 lines
1.8 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-2024 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
import Utility.Hash (IncrementalVerifier)
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, stored in a file, using a hash.
-- This does not need to be cryptographically secure.
, verifyKeyContent :: Maybe (Key -> RawFilePath -> a Bool)
-- Incrementally verifies the content of a key, using the same
-- hash as verifyKeyContent, but with the content provided
2023-03-14 02:39:16 +00:00
-- incrementally a piece at a time, until finalized.
, verifyKeyContentIncrementally :: Maybe (Key -> a IncrementalVerifier)
-- 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).
-- The Bool is true if the content of the key has been verified to
-- be inAnnex.
, fastMigrate :: Maybe (Key -> BackendA a -> AssociatedFile -> Bool -> a (Maybe Key))
-- Checks if a key is known (or assumed) to always refer to the
-- same data.
, isStableKey :: Key -> Bool
-- Are all keys using this backend verified using a cryptographically
-- secure hash?
, isCryptographicallySecure :: Bool
-- Checks if a key is verified using a cryptographically secure hash.
, isCryptographicallySecureKey :: Key -> a 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