aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-12 16:10:15 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-12 16:10:15 -0400
commit20acda0423b1a00eae64296835679887ca79ea2f (patch)
tree3520f9c0b8a6ccffd17d23cd7f9962d5f28be54e
parent2ac47a3a59b2b9b8980b4a9d3277bcb653bcb026 (diff)
more state
-rw-r--r--Backend.hs4
-rw-r--r--BackendChecksum.hs1
-rw-r--r--BackendFile.hs9
-rw-r--r--BackendUrl.hs8
-rw-r--r--Types.hs4
5 files changed, 12 insertions, 14 deletions
diff --git a/Backend.hs b/Backend.hs
index ddfd8b19d..622d558e3 100644
--- a/Backend.hs
+++ b/Backend.hs
@@ -68,7 +68,7 @@ retrieveFile backends state file dest = do
Nothing -> return False
Just b -> do
key <- lookupKey b state file
- (retrieveKeyFile b) key dest
+ (retrieveKeyFile b) state key dest
{- Drops the key for a file from the backend that has it. -}
dropFile :: [Backend] -> State -> FilePath -> IO (Maybe Key)
@@ -78,7 +78,7 @@ dropFile backends state file = do
Nothing -> return Nothing
Just b -> do
key <- lookupKey b state file
- (removeKey b) key
+ (removeKey b) state key
removeFile $ backendFile b state file
return $ Just key
diff --git a/BackendChecksum.hs b/BackendChecksum.hs
index 72b4744e3..efa224412 100644
--- a/BackendChecksum.hs
+++ b/BackendChecksum.hs
@@ -6,7 +6,6 @@ module BackendChecksum (backend) where
import qualified BackendFile
import Data.Digest.Pure.SHA
import Types
-import GitRepo
-- based on BackendFile just with a different key type
backend = BackendFile.backend {
diff --git a/BackendFile.hs b/BackendFile.hs
index 33c2985bc..c59cbcbaa 100644
--- a/BackendFile.hs
+++ b/BackendFile.hs
@@ -4,7 +4,6 @@
module BackendFile (backend) where
import Types
-import GitRepo
backend = Backend {
name = "file",
@@ -24,10 +23,10 @@ keyValue state file = return $ Just file
- a no-op. -}
dummyStore :: State -> FilePath -> Key -> IO (Bool)
dummyStore state file key = return True
-dummyRemove :: Key -> IO Bool
-dummyRemove url = return False
+dummyRemove :: State -> Key -> IO Bool
+dummyRemove state url = return False
{- Try to find a copy of the file in one of the other repos,
- and copy it over to this one. -}
-copyFromOtherRepo :: Key -> FilePath -> IO (Bool)
-copyFromOtherRepo key file = error "copyFromOtherRepo unimplemented" -- TODO
+copyFromOtherRepo :: State -> Key -> FilePath -> IO (Bool)
+copyFromOtherRepo state key file = error "copyFromOtherRepo unimplemented" -- TODO
diff --git a/BackendUrl.hs b/BackendUrl.hs
index aad647744..71503c5c1 100644
--- a/BackendUrl.hs
+++ b/BackendUrl.hs
@@ -20,8 +20,8 @@ keyValue repo file = return Nothing
-- cannot change urls
dummyStore :: State -> FilePath -> Key -> IO Bool
dummyStore repo file url = return False
-dummyRemove :: Key -> IO Bool
-dummyRemove url = return False
+dummyRemove :: State -> Key -> IO Bool
+dummyRemove state url = return False
-downloadUrl :: Key -> FilePath -> IO Bool
-downloadUrl url file = error "downloadUrl unimplemented"
+downloadUrl :: State -> Key -> FilePath -> IO Bool
+downloadUrl state url file = error "downloadUrl unimplemented"
diff --git a/Types.hs b/Types.hs
index de6bff9ff..26ba2a904 100644
--- a/Types.hs
+++ b/Types.hs
@@ -26,9 +26,9 @@ data Backend = Backend {
-- stores a file's contents to a key
storeFileKey :: State -> FilePath -> Key -> IO Bool,
-- retrieves a key's contents to a file
- retrieveKeyFile :: Key -> FilePath -> IO Bool,
+ retrieveKeyFile :: State -> Key -> FilePath -> IO Bool,
-- removes a key
- removeKey :: Key -> IO Bool
+ removeKey :: State -> Key -> IO Bool
}
instance Show Backend where