2011-07-05 22:31:46 +00:00
|
|
|
{- git-annex key/value backends
|
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
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2010-10-27 20:53:54 +00:00
|
|
|
-}
|
2010-10-10 17:47:04 +00:00
|
|
|
|
2010-10-11 21:52:46 +00:00
|
|
|
module Backend (
|
2010-10-21 20:30:16 +00:00
|
|
|
list,
|
2017-05-09 19:04:07 +00:00
|
|
|
defaultBackend,
|
2011-07-05 22:31:46 +00:00
|
|
|
genKey,
|
2014-04-17 22:03:39 +00:00
|
|
|
getBackend,
|
2012-02-14 03:42:44 +00:00
|
|
|
chooseBackend,
|
2017-02-24 19:16:56 +00:00
|
|
|
lookupBackendVariety,
|
|
|
|
maybeLookupBackendVariety,
|
2014-07-30 14:34:39 +00:00
|
|
|
isStableKey,
|
2010-10-11 21:52:46 +00:00
|
|
|
) where
|
2010-10-10 17:47:04 +00:00
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
import Annex.Common
|
2010-10-14 07:18:11 +00:00
|
|
|
import qualified Annex
|
2012-02-14 03:42:44 +00:00
|
|
|
import Annex.CheckAttr
|
2017-02-24 19:16:56 +00:00
|
|
|
import Types.Key
|
2012-06-20 20:07:14 +00:00
|
|
|
import Types.KeySource
|
2011-06-02 01:56:04 +00:00
|
|
|
import qualified Types.Backend as B
|
2019-06-25 15:37:52 +00:00
|
|
|
import Utility.Metered
|
2011-07-05 22:31:46 +00:00
|
|
|
|
|
|
|
-- When adding a new backend, import it here and add it to the list.
|
2013-10-02 00:34:06 +00:00
|
|
|
import qualified Backend.Hash
|
2011-11-04 19:21:45 +00:00
|
|
|
import qualified Backend.WORM
|
2011-08-06 18:57:22 +00:00
|
|
|
import qualified Backend.URL
|
2011-07-05 22:31:46 +00:00
|
|
|
|
2014-07-27 16:24:12 +00:00
|
|
|
import qualified Data.Map as M
|
2019-01-11 20:34:04 +00:00
|
|
|
import qualified Data.ByteString.Char8 as S8
|
2014-07-27 16:24:12 +00:00
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
list :: [Backend]
|
2013-10-02 00:34:06 +00:00
|
|
|
list = Backend.Hash.backends ++ Backend.WORM.backends ++ Backend.URL.backends
|
2010-10-14 19:58:53 +00:00
|
|
|
|
2017-05-09 19:04:07 +00:00
|
|
|
{- Backend to use by default when generating a new key. -}
|
|
|
|
defaultBackend :: Annex Backend
|
|
|
|
defaultBackend = maybe cache return =<< Annex.getState Annex.backend
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
2017-05-09 19:04:07 +00:00
|
|
|
cache = do
|
|
|
|
n <- maybe (annexBackend <$> Annex.getGitConfig) (return . Just)
|
|
|
|
=<< Annex.getState Annex.forcebackend
|
|
|
|
let b = case n of
|
|
|
|
Just name | valid name -> lookupname name
|
|
|
|
_ -> Prelude.head list
|
|
|
|
Annex.changeState $ \s -> s { Annex.backend = Just b }
|
|
|
|
return b
|
|
|
|
valid name = not (null name)
|
2019-01-11 20:34:04 +00:00
|
|
|
lookupname = lookupBackendVariety . parseKeyVariety . encodeBS
|
2010-10-17 15:47:36 +00:00
|
|
|
|
2017-05-09 19:04:07 +00:00
|
|
|
{- Generates a key for a file. -}
|
2019-06-25 15:37:52 +00:00
|
|
|
genKey :: KeySource -> MeterUpdate -> Maybe Backend -> Annex (Maybe (Key, Backend))
|
|
|
|
genKey source meterupdate preferredbackend = do
|
2017-05-09 19:04:07 +00:00
|
|
|
b <- maybe defaultBackend return preferredbackend
|
2019-06-25 15:37:52 +00:00
|
|
|
B.getKey b source meterupdate >>= return . \case
|
2017-05-09 19:04:07 +00:00
|
|
|
Nothing -> Nothing
|
|
|
|
Just k -> Just (makesane k, b)
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
|
|
|
-- keyNames should not contain newline characters.
|
2019-11-22 20:24:04 +00:00
|
|
|
makesane k = alterKey k $ \d -> d
|
|
|
|
{ keyName = S8.map fixbadchar (fromKey keyName k)
|
|
|
|
}
|
2012-10-29 02:09:09 +00:00
|
|
|
fixbadchar c
|
|
|
|
| c == '\n' = '_'
|
|
|
|
| otherwise = c
|
2011-03-23 21:57:10 +00:00
|
|
|
|
2014-04-17 22:03:39 +00:00
|
|
|
getBackend :: FilePath -> Key -> Annex (Maybe Backend)
|
2019-11-22 20:24:04 +00:00
|
|
|
getBackend file k = case maybeLookupBackendVariety (fromKey keyVariety k) of
|
2017-02-24 19:16:56 +00:00
|
|
|
Just backend -> return $ Just backend
|
|
|
|
Nothing -> do
|
2019-11-22 20:24:04 +00:00
|
|
|
warning $ "skipping " ++ file ++ " (unknown backend " ++ decodeBS (formatKeyVariety (fromKey keyVariety k)) ++ ")"
|
2017-02-24 19:16:56 +00:00
|
|
|
return Nothing
|
2010-11-01 21:50:37 +00:00
|
|
|
|
2012-02-14 03:42:44 +00:00
|
|
|
{- Looks up the backend that should be used for a file.
|
2017-05-09 19:04:07 +00:00
|
|
|
- That can be configured on a per-file basis in the gitattributes file,
|
|
|
|
- or forced with --backend. -}
|
2012-02-14 03:42:44 +00:00
|
|
|
chooseBackend :: FilePath -> Annex (Maybe Backend)
|
|
|
|
chooseBackend f = Annex.getState Annex.forcebackend >>= go
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
2019-01-11 20:34:04 +00:00
|
|
|
go Nothing = maybeLookupBackendVariety . parseKeyVariety . encodeBS
|
2017-02-24 19:16:56 +00:00
|
|
|
<$> checkAttr "annex.backend" f
|
2017-05-09 19:04:07 +00:00
|
|
|
go (Just _) = Just <$> defaultBackend
|
2011-03-23 06:10:59 +00:00
|
|
|
|
2017-02-24 19:16:56 +00:00
|
|
|
{- Looks up a backend by variety. May fail if unsupported or disabled. -}
|
|
|
|
lookupBackendVariety :: KeyVariety -> Backend
|
|
|
|
lookupBackendVariety v = fromMaybe unknown $ maybeLookupBackendVariety v
|
2012-10-29 02:09:09 +00:00
|
|
|
where
|
2019-01-11 20:34:04 +00:00
|
|
|
unknown = giveup $ "unknown backend " ++ decodeBS (formatKeyVariety v)
|
2014-07-27 16:24:12 +00:00
|
|
|
|
2017-02-24 19:16:56 +00:00
|
|
|
maybeLookupBackendVariety :: KeyVariety -> Maybe Backend
|
|
|
|
maybeLookupBackendVariety v = M.lookup v varietyMap
|
2014-07-27 16:24:12 +00:00
|
|
|
|
2017-02-24 19:16:56 +00:00
|
|
|
varietyMap :: M.Map KeyVariety Backend
|
|
|
|
varietyMap = M.fromList $ zip (map B.backendVariety list) list
|
2014-07-27 16:33:46 +00:00
|
|
|
|
2014-07-30 14:34:39 +00:00
|
|
|
isStableKey :: Key -> Bool
|
|
|
|
isStableKey k = maybe False (`B.isStableKey` k)
|
2019-11-22 20:24:04 +00:00
|
|
|
(maybeLookupBackendVariety (fromKey keyVariety k))
|