2011-03-30 17:18:46 +00:00
|
|
|
{- A "remote" that is just a local directory.
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Remote.Directory (remote) where
|
|
|
|
|
|
|
|
import IO
|
|
|
|
import Control.Exception.Extensible (IOException)
|
|
|
|
import qualified Data.Map as M
|
|
|
|
import Control.Monad (when)
|
|
|
|
import Control.Monad.State (liftIO)
|
|
|
|
import System.Directory (doesDirectoryExist, doesFileExist, removeFile)
|
|
|
|
import System.FilePath
|
|
|
|
|
|
|
|
import RemoteClass
|
|
|
|
import Types
|
|
|
|
import qualified GitRepo as Git
|
|
|
|
import qualified Annex
|
|
|
|
import UUID
|
|
|
|
import Locations
|
|
|
|
import CopyFile
|
2011-03-30 18:32:08 +00:00
|
|
|
import Config
|
2011-03-30 18:00:54 +00:00
|
|
|
import Remote.Special
|
2011-03-30 17:18:46 +00:00
|
|
|
|
|
|
|
remote :: RemoteType Annex
|
|
|
|
remote = RemoteType {
|
|
|
|
typename = "directory",
|
2011-03-30 18:00:54 +00:00
|
|
|
enumerate = findSpecialRemotes "directory",
|
2011-03-30 17:18:46 +00:00
|
|
|
generate = gen,
|
2011-03-30 18:00:54 +00:00
|
|
|
setup = directorySetup
|
2011-03-30 17:18:46 +00:00
|
|
|
}
|
|
|
|
|
2011-03-30 18:00:54 +00:00
|
|
|
gen :: Git.Repo -> UUID -> Cost -> Maybe (M.Map String String) -> Annex (Remote Annex)
|
2011-03-30 18:32:08 +00:00
|
|
|
gen r u cst _ = do
|
|
|
|
dir <- getConfig r "directory" (error "missing directory")
|
|
|
|
return $ Remote {
|
|
|
|
uuid = u,
|
|
|
|
cost = cst,
|
|
|
|
name = Git.repoDescribe r,
|
|
|
|
storeKey = store dir,
|
|
|
|
retrieveKeyFile = retrieve dir,
|
|
|
|
removeKey = remove dir,
|
|
|
|
hasKey = checkPresent dir,
|
|
|
|
hasKeyCheap = True,
|
|
|
|
config = Nothing
|
|
|
|
}
|
2011-03-30 17:18:46 +00:00
|
|
|
|
2011-03-30 18:00:54 +00:00
|
|
|
directorySetup :: UUID -> M.Map String String -> Annex (M.Map String String)
|
|
|
|
directorySetup u c = do
|
2011-03-30 17:18:46 +00:00
|
|
|
-- verify configuration is sane
|
|
|
|
let dir = case M.lookup "directory" c of
|
|
|
|
Nothing -> error "Specify directory="
|
|
|
|
Just d -> d
|
|
|
|
e <- liftIO $ doesDirectoryExist dir
|
|
|
|
when (not e) $ error $ "Directory does not exist: " ++ dir
|
|
|
|
|
2011-03-30 18:32:08 +00:00
|
|
|
-- The directory is stored in git config, not in this remote's
|
|
|
|
-- persistant state, so it can vary between hosts.
|
|
|
|
gitConfigSpecialRemote u c "directory" dir
|
|
|
|
return $ M.delete "directory" c
|
2011-03-30 17:18:46 +00:00
|
|
|
|
2011-03-30 18:32:08 +00:00
|
|
|
dirKey :: FilePath -> Key -> FilePath
|
|
|
|
dirKey d k = d </> show k
|
2011-03-30 17:18:46 +00:00
|
|
|
|
2011-03-30 18:32:08 +00:00
|
|
|
store :: FilePath -> Key -> Annex Bool
|
|
|
|
store d k = do
|
2011-03-30 17:18:46 +00:00
|
|
|
g <- Annex.gitRepo
|
2011-03-30 18:32:08 +00:00
|
|
|
liftIO $ copyFile (gitAnnexLocation g k) (dirKey d k)
|
2011-03-30 17:18:46 +00:00
|
|
|
|
2011-03-30 18:32:08 +00:00
|
|
|
retrieve :: FilePath -> Key -> FilePath -> Annex Bool
|
|
|
|
retrieve d k f = liftIO $ copyFile (dirKey d k) f
|
2011-03-30 17:18:46 +00:00
|
|
|
|
2011-03-30 18:32:08 +00:00
|
|
|
remove :: FilePath -> Key -> Annex Bool
|
|
|
|
remove d k = liftIO $ catch
|
|
|
|
(removeFile (dirKey d k) >> return True)
|
2011-03-30 17:18:46 +00:00
|
|
|
(const $ return False)
|
|
|
|
|
2011-03-30 18:32:08 +00:00
|
|
|
checkPresent :: FilePath -> Key -> Annex (Either IOException Bool)
|
|
|
|
checkPresent d k = liftIO $ try $ doesFileExist (dirKey d k)
|