aboutsummaryrefslogtreecommitdiff
path: root/Backend.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-17 11:47:36 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-17 11:47:36 -0400
commitb471822cfe4476995f539c6e7e7da7f7bf2b5e02 (patch)
tree31963b299051850ee0514dfec9a655e4a326c503 /Backend.hs
parent6bfa534aa4d7552c4ccfdb9523b55da19fac8883 (diff)
move supportedBackends list into annex monad
This was necessary so the File backend could import Backend w/o a cycle. Moved code that checks whether enough backends have a file into File backend.
Diffstat (limited to 'Backend.hs')
-rw-r--r--Backend.hs35
1 files changed, 25 insertions, 10 deletions
diff --git a/Backend.hs b/Backend.hs
index 874191924..dfaa55970 100644
--- a/Backend.hs
+++ b/Backend.hs
@@ -28,14 +28,12 @@ import System.FilePath
import Data.String.Utils
import System.Posix.Files
-import BackendList
import Locations
import qualified GitRepo as Git
import qualified Annex
import Utility
import Types
import qualified BackendTypes as B
-import BackendList
{- List of backends in the order to try them when storing a new key. -}
backendList :: Annex [Backend]
@@ -44,10 +42,24 @@ backendList = do
if (0 < length l)
then return l
else do
+ all <- Annex.supportedBackends
g <- Annex.gitRepo
- let l = parseBackendList $ Git.configGet g "annex.backends" ""
+ let l = parseBackendList all $ Git.configGet g "annex.backends" ""
Annex.backendsChange l
return l
+ where
+ parseBackendList all s =
+ if (length s == 0)
+ then all
+ else map (lookupBackendName all) $ words s
+
+{- Looks up a backend in the list of supportedBackends -}
+lookupBackendName :: [Backend] -> String -> Backend
+lookupBackendName all s =
+ if ((length matches) /= 1)
+ then error $ "unknown backend " ++ s
+ else matches !! 0
+ where matches = filter (\b -> s == B.name b) all
{- Attempts to store a file in one of the backends. -}
storeFileKey :: FilePath -> Annex (Maybe (Key, Backend))
@@ -81,21 +93,24 @@ removeKey backend key = (B.removeKey backend) key
{- Checks if a backend has its key. -}
hasKey :: Key -> Annex Bool
-hasKey key = (B.hasKey (lookupBackendName $ backendName key)) key
+hasKey key = do
+ all <- Annex.supportedBackends
+ (B.hasKey (lookupBackendName all $ backendName key)) key
{- Looks up the key and backend corresponding to an annexed file,
- by examining what the file symlinks to. -}
-lookupFile :: FilePath -> IO (Maybe (Key, Backend))
+lookupFile :: FilePath -> Annex (Maybe (Key, Backend))
lookupFile file = do
- result <- try (lookup)::IO (Either SomeException (Maybe (Key, Backend)))
+ all <- Annex.supportedBackends
+ result <- liftIO $ (try (lookup all)::IO (Either SomeException (Maybe (Key, Backend))))
case (result) of
Left err -> return Nothing
Right succ -> return succ
where
- lookup = do
+ lookup all = do
l <- readSymbolicLink file
- return $ Just $ pair $ takeFileName l
- pair file = (k, b)
+ return $ Just $ pair all $ takeFileName l
+ pair all file = (k, b)
where
k = fileKey file
- b = lookupBackendName $ backendName k
+ b = lookupBackendName all $ backendName k