2016-01-20 16:36:33 -04:00
|
|
|
{- git-annex key 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
|
|
|
-
|
2024-02-29 17:21:29 -04:00
|
|
|
- Copyright 2010-2024 Joey Hess <id@joeyh.name>
|
2010-10-27 16:53:54 -04:00
|
|
|
-
|
2019-03-13 15:48:14 -04:00
|
|
|
- Licensed under the GNU AGPL 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
|
2019-06-25 11:37:52 -04:00
|
|
|
import Utility.Metered
|
2019-01-11 16:34:04 -04:00
|
|
|
import Utility.FileSystemEncoding
|
2021-08-18 13:19:02 -04:00
|
|
|
import Utility.Hash (IncrementalVerifier)
|
2021-02-09 15:00:51 -04:00
|
|
|
|
2012-06-06 11:58:08 -04:00
|
|
|
data BackendA a = Backend
|
2017-02-24 15:16:56 -04:00
|
|
|
{ backendVariety :: KeyVariety
|
2020-07-20 14:06:05 -04:00
|
|
|
, genKey :: Maybe (KeySource -> MeterUpdate -> a Key)
|
2021-02-09 15:00:51 -04:00
|
|
|
-- Verifies the content of a key, stored in a file, using a hash.
|
|
|
|
-- This does not need to be cryptographically secure.
|
2020-11-05 11:26:34 -04:00
|
|
|
, verifyKeyContent :: Maybe (Key -> RawFilePath -> a Bool)
|
2021-02-09 15:00:51 -04:00
|
|
|
-- Incrementally verifies the content of a key, using the same
|
|
|
|
-- hash as verifyKeyContent, but with the content provided
|
2023-03-13 22:39:16 -04:00
|
|
|
-- incrementally a piece at a time, until finalized.
|
2021-02-09 15:00:51 -04:00
|
|
|
, verifyKeyContentIncrementally :: Maybe (Key -> a IncrementalVerifier)
|
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).
|
2024-03-01 16:42:02 -04:00
|
|
|
-- 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))
|
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
|
2024-02-29 17:21:29 -04:00
|
|
|
-- Are all keys using this backend verified using a cryptographically
|
|
|
|
-- secure hash?
|
|
|
|
, isCryptographicallySecure :: Bool
|
2020-07-20 12:08:37 -04:00
|
|
|
-- Checks if a key is verified using a cryptographically secure hash.
|
2024-02-29 17:21:29 -04:00
|
|
|
, isCryptographicallySecureKey :: Key -> a 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
|
2019-01-11 16:34:04 -04:00
|
|
|
show backend = "Backend { name =\"" ++ decodeBS (formatKeyVariety (backendVariety backend)) ++ "\" }"
|
2011-01-26 00:37:50 -04:00
|
|
|
|
2011-12-31 04:11:39 -04:00
|
|
|
instance Eq (BackendA a) where
|
2017-02-24 15:16:56 -04:00
|
|
|
a == b = backendVariety a == backendVariety b
|