32 lines
978 B
Haskell
32 lines
978 B
Haskell
{- git-annex "file" backend
|
|
- -}
|
|
|
|
module BackendFile (backend) where
|
|
|
|
import Types
|
|
|
|
backend = Backend {
|
|
name = "file",
|
|
getKey = keyValue,
|
|
storeFileKey = dummyStore,
|
|
retrieveKeyFile = copyFromOtherRepo,
|
|
removeKey = dummyRemove
|
|
}
|
|
|
|
-- direct mapping from filename to key
|
|
keyValue :: State -> FilePath -> IO (Maybe Key)
|
|
keyValue state file = return $ Just file
|
|
|
|
{- This backend does not really do any independant data storage,
|
|
- it relies on the file contents in .git/annex/ in this repo,
|
|
- and other accessible repos. So storing or removing a key is
|
|
- a no-op. -}
|
|
dummyStore :: State -> FilePath -> Key -> IO (Bool)
|
|
dummyStore state file key = return True
|
|
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 :: State -> Key -> FilePath -> IO (Bool)
|
|
copyFromOtherRepo state key file = error "copyFromOtherRepo unimplemented" -- TODO
|