2010-11-02 23:04:24 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Get where
|
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2010-11-02 23:04:24 +00:00
|
|
|
import Command
|
2011-06-09 22:54:49 +00:00
|
|
|
import qualified Annex
|
|
|
|
import qualified Remote
|
2011-10-04 04:40:47 +00:00
|
|
|
import Annex.Content
|
2011-06-09 22:54:49 +00:00
|
|
|
import qualified Command.Move
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2011-10-29 19:19:05 +00:00
|
|
|
def :: [Command]
|
|
|
|
def = [dontCheck fromOpt $ command "get" paramPaths seek
|
|
|
|
"make content of annexed files available"]
|
2010-12-30 19:06:26 +00:00
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
seek :: [CommandSeek]
|
2011-11-11 03:35:08 +00:00
|
|
|
seek = [withNumCopies $ \n -> whenAnnexed $ start n]
|
2010-11-11 22:54:52 +00:00
|
|
|
|
2011-11-11 03:35:08 +00:00
|
|
|
start :: Maybe Int -> FilePath -> (Key, Backend Annex) -> CommandStart
|
|
|
|
start numcopies file (key, _) = do
|
2010-11-02 23:04:24 +00:00
|
|
|
inannex <- inAnnex key
|
2010-11-22 21:51:55 +00:00
|
|
|
if inannex
|
2011-05-15 06:02:46 +00:00
|
|
|
then stop
|
2011-09-15 17:30:04 +00:00
|
|
|
else autoCopies key (<) numcopies $ do
|
2011-06-09 22:54:49 +00:00
|
|
|
from <- Annex.getState Annex.fromremote
|
|
|
|
case from of
|
2011-11-18 21:09:10 +00:00
|
|
|
Nothing -> go $ perform key
|
2011-06-09 22:54:49 +00:00
|
|
|
Just name -> do
|
2011-09-15 18:34:15 +00:00
|
|
|
-- get --from = copy --from
|
2011-06-09 22:54:49 +00:00
|
|
|
src <- Remote.byName name
|
2011-11-18 21:09:10 +00:00
|
|
|
ok <- Command.Move.fromOk src key
|
|
|
|
if ok
|
|
|
|
then go $ Command.Move.fromPerform src False key
|
|
|
|
else stop
|
|
|
|
where
|
|
|
|
go a = do
|
|
|
|
showStart "get" file
|
|
|
|
next a
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2011-07-05 22:31:46 +00:00
|
|
|
perform :: Key -> CommandPerform
|
|
|
|
perform key = do
|
|
|
|
ok <- getViaTmp key (getKeyFile key)
|
2010-11-22 21:51:55 +00:00
|
|
|
if ok
|
2011-05-15 06:02:46 +00:00
|
|
|
then next $ return True -- no cleanup needed
|
|
|
|
else stop
|
2011-07-05 22:31:46 +00:00
|
|
|
|
|
|
|
{- Try to find a copy of the file in one of the remotes,
|
|
|
|
- and copy it to here. -}
|
|
|
|
getKeyFile :: Key -> FilePath -> Annex Bool
|
|
|
|
getKeyFile key file = do
|
|
|
|
remotes <- Remote.keyPossibilities key
|
|
|
|
if null remotes
|
|
|
|
then do
|
|
|
|
showNote "not available"
|
|
|
|
Remote.showLocations key []
|
|
|
|
return False
|
|
|
|
else trycopy remotes remotes
|
|
|
|
where
|
|
|
|
trycopy full [] = do
|
|
|
|
Remote.showTriedRemotes full
|
|
|
|
Remote.showLocations key []
|
|
|
|
return False
|
|
|
|
trycopy full (r:rs) = do
|
|
|
|
probablythere <- probablyPresent r
|
|
|
|
if probablythere
|
|
|
|
then docopy r (trycopy full rs)
|
|
|
|
else trycopy full rs
|
|
|
|
-- This check is to avoid an ugly message if a remote is a
|
|
|
|
-- drive that is not mounted.
|
|
|
|
probablyPresent r =
|
|
|
|
if Remote.hasKeyCheap r
|
|
|
|
then do
|
|
|
|
res <- Remote.hasKey r key
|
|
|
|
case res of
|
|
|
|
Right b -> return b
|
|
|
|
Left _ -> return False
|
|
|
|
else return True
|
|
|
|
docopy r continue = do
|
2011-07-19 18:07:23 +00:00
|
|
|
showAction $ "from " ++ Remote.name r
|
2011-07-05 22:31:46 +00:00
|
|
|
copied <- Remote.retrieveKeyFile r key file
|
|
|
|
if copied
|
|
|
|
then return True
|
|
|
|
else continue
|