2018-03-27 16:41:57 +00:00
|
|
|
{- Remote on Android device accessed using adb.
|
|
|
|
-
|
2020-01-14 19:41:34 +00:00
|
|
|
- Copyright 2018-2020 Joey Hess <id@joeyh.name>
|
2018-03-27 16:41:57 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Remote.Adb (remote) where
|
|
|
|
|
|
|
|
import Annex.Common
|
|
|
|
import Types.Remote
|
|
|
|
import Types.Creds
|
2018-03-27 20:10:28 +00:00
|
|
|
import Types.Export
|
2019-04-09 21:52:41 +00:00
|
|
|
import Types.Import
|
2018-03-27 16:41:57 +00:00
|
|
|
import qualified Git
|
|
|
|
import Config.Cost
|
|
|
|
import Remote.Helper.Special
|
|
|
|
import Remote.Helper.Messages
|
2019-02-20 19:55:01 +00:00
|
|
|
import Remote.Helper.ExportImport
|
2018-03-27 16:41:57 +00:00
|
|
|
import Annex.UUID
|
2018-03-27 20:10:28 +00:00
|
|
|
import Utility.Metered
|
2020-01-10 18:10:20 +00:00
|
|
|
import Types.ProposedAccepted
|
2020-01-14 19:41:34 +00:00
|
|
|
import Annex.SpecialRemote.Config
|
2018-03-27 16:41:57 +00:00
|
|
|
|
2019-04-09 21:52:41 +00:00
|
|
|
import qualified Data.Map as M
|
|
|
|
import qualified System.FilePath.Posix as Posix
|
|
|
|
|
2018-03-27 16:41:57 +00:00
|
|
|
-- | Each Android device has a serial number.
|
|
|
|
newtype AndroidSerial = AndroidSerial { fromAndroidSerial :: String }
|
|
|
|
deriving (Show, Eq)
|
|
|
|
|
|
|
|
-- | A location on an Android device.
|
|
|
|
newtype AndroidPath = AndroidPath { fromAndroidPath :: FilePath }
|
|
|
|
|
|
|
|
remote :: RemoteType
|
2020-01-14 19:41:34 +00:00
|
|
|
remote = specialRemoteType $ RemoteType
|
2018-03-27 16:41:57 +00:00
|
|
|
{ typename = "adb"
|
|
|
|
, enumerate = const (findSpecialRemotes "adb")
|
|
|
|
, generate = gen
|
2020-01-14 19:41:34 +00:00
|
|
|
, configParser = mkRemoteConfigParser
|
|
|
|
[ optionalStringParser androiddirectoryField
|
2020-01-20 19:20:04 +00:00
|
|
|
(FieldDesc "location on the Android device where the files are stored")
|
2020-01-14 19:41:34 +00:00
|
|
|
, optionalStringParser androidserialField
|
2020-01-20 19:20:04 +00:00
|
|
|
(FieldDesc "sometimes needed to specify which Android device to use")
|
2020-01-14 19:41:34 +00:00
|
|
|
]
|
2018-03-27 16:41:57 +00:00
|
|
|
, setup = adbSetup
|
2018-03-27 20:10:28 +00:00
|
|
|
, exportSupported = exportIsSupported
|
2019-04-09 21:52:41 +00:00
|
|
|
, importSupported = importIsSupported
|
2018-03-27 16:41:57 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 19:41:34 +00:00
|
|
|
androiddirectoryField :: RemoteConfigField
|
|
|
|
androiddirectoryField = Accepted "androiddirectory"
|
|
|
|
|
|
|
|
androidserialField :: RemoteConfigField
|
|
|
|
androidserialField = Accepted "androidserial"
|
|
|
|
|
fix encryption of content to gcrypt and git-lfs
Fix serious regression in gcrypt and encrypted git-lfs remotes.
Since version 7.20200202.7, git-annex incorrectly stored content
on those remotes without encrypting it.
Problem was, Remote.Git enumerates all git remotes, including git-lfs
and gcrypt. It then dispatches to those. So, Remote.List used the
RemoteConfigParser from Remote.Git, instead of from git-lfs or gcrypt,
and that parser does not know about encryption fields, so did not
include them in the ParsedRemoteConfig. (Also didn't include other
fields specific to those remotes, perhaps chunking etc also didn't
get through.)
To fix, had to move RemoteConfig parsing down into the generate methods
of each remote, rather than doing it in Remote.List.
And a consequence of that was that ParsedRemoteConfig had to change to
include the RemoteConfig that got parsed, so that testremote can
generate a new remote based on an existing remote.
(I would have rather fixed this just inside Remote.Git, but that was not
practical, at least not w/o re-doing work that Remote.List already did.
Big ugly mostly mechanical patch seemed preferable to making git-annex
slower.)
2020-02-26 21:20:56 +00:00
|
|
|
gen :: Git.Repo -> UUID -> RemoteConfig -> RemoteGitConfig -> RemoteStateHandle -> Annex (Maybe Remote)
|
|
|
|
gen r u rc gc rs = do
|
|
|
|
c <- parsedRemoteConfig remote rc
|
2018-03-27 16:41:57 +00:00
|
|
|
let this = Remote
|
|
|
|
{ uuid = u
|
|
|
|
-- adb operates over USB or wifi, so is not as cheap
|
|
|
|
-- as local, but not too expensive
|
|
|
|
, cost = semiExpensiveRemoteCost
|
|
|
|
, name = Git.repoDescribe r
|
|
|
|
, storeKey = storeKeyDummy
|
2020-05-13 21:05:56 +00:00
|
|
|
, retrieveKeyFile = retrieveKeyFileDummy
|
|
|
|
, retrieveKeyFileCheap = Nothing
|
2018-06-21 15:35:27 +00:00
|
|
|
, retrievalSecurityPolicy = RetrievalAllKeysSecure
|
2018-03-27 16:41:57 +00:00
|
|
|
, removeKey = removeKeyDummy
|
|
|
|
, lockContent = Nothing
|
|
|
|
, checkPresent = checkPresentDummy
|
|
|
|
, checkPresentCheap = False
|
2019-01-30 18:55:28 +00:00
|
|
|
, exportActions = ExportActions
|
2018-03-27 20:10:28 +00:00
|
|
|
{ storeExport = storeExportM serial adir
|
|
|
|
, retrieveExport = retrieveExportM serial adir
|
|
|
|
, removeExport = removeExportM serial adir
|
|
|
|
, checkPresentExport = checkPresentExportM this serial adir
|
|
|
|
, removeExportDirectory = Just $ removeExportDirectoryM serial adir
|
|
|
|
, renameExport = renameExportM serial adir
|
|
|
|
}
|
2019-04-09 21:52:41 +00:00
|
|
|
, importActions = ImportActions
|
|
|
|
{ listImportableContents = listImportableContentsM serial adir
|
|
|
|
, retrieveExportWithContentIdentifier = retrieveExportWithContentIdentifierM serial adir
|
|
|
|
, storeExportWithContentIdentifier = storeExportWithContentIdentifierM serial adir
|
|
|
|
, removeExportWithContentIdentifier = removeExportWithContentIdentifierM serial adir
|
|
|
|
, removeExportDirectoryWhenEmpty = Nothing
|
|
|
|
, checkPresentExportWithContentIdentifier = checkPresentExportWithContentIdentifierM serial adir
|
|
|
|
}
|
2018-03-27 16:41:57 +00:00
|
|
|
, whereisKey = Nothing
|
|
|
|
, remoteFsck = Nothing
|
|
|
|
, repairRepo = Nothing
|
|
|
|
, config = c
|
2018-06-04 18:31:55 +00:00
|
|
|
, getRepo = return r
|
2018-03-27 16:41:57 +00:00
|
|
|
, gitconfig = gc
|
|
|
|
, localpath = Nothing
|
|
|
|
, remotetype = remote
|
|
|
|
, availability = LocallyAvailable
|
|
|
|
, readonly = False
|
2018-08-30 15:12:18 +00:00
|
|
|
, appendonly = False
|
2018-03-27 16:41:57 +00:00
|
|
|
, mkUnavailable = return Nothing
|
|
|
|
, getInfo = return
|
|
|
|
[ ("androidserial", fromAndroidSerial serial)
|
|
|
|
, ("androiddirectory", fromAndroidPath adir)
|
|
|
|
]
|
|
|
|
, claimUrl = Nothing
|
|
|
|
, checkUrl = Nothing
|
add RemoteStateHandle
This solves the problem of sameas remotes trampling over per-remote
state. Used for:
* per-remote state, of course
* per-remote metadata, also of course
* per-remote content identifiers, because two remote implementations
could in theory generate the same content identifier for two different
peices of content
While chunk logs are per-remote data, they don't use this, because the
number and size of chunks stored is a common property across sameas
remotes.
External special remote had a complication, where it was theoretically
possible for a remote to send SETSTATE or GETSTATE during INITREMOTE or
EXPORTSUPPORTED. Since the uuid of the remote is typically generate in
Remote.setup, it would only be possible to pass a Maybe
RemoteStateHandle into it, and it would otherwise have to construct its
own. Rather than go that route, I decided to send an ERROR in this case.
It seems unlikely that any existing external special remote will be
affected. They would have to make up a git-annex key, and set state for
some reason during INITREMOTE. I can imagine such a hack, but it doesn't
seem worth complicating the code in such an ugly way to support it.
Unfortunately, both TestRemote and Annex.Import needed the Remote
to have a new field added that holds its RemoteStateHandle.
2019-10-14 16:33:27 +00:00
|
|
|
, remoteStateHandle = rs
|
2018-03-27 16:41:57 +00:00
|
|
|
}
|
|
|
|
return $ Just $ specialRemote c
|
2020-05-13 15:50:31 +00:00
|
|
|
(store serial adir)
|
|
|
|
(retrieve serial adir)
|
|
|
|
(remove serial adir)
|
|
|
|
(checkKey this serial adir)
|
2018-03-27 16:41:57 +00:00
|
|
|
this
|
|
|
|
where
|
|
|
|
adir = maybe (giveup "missing androiddirectory") AndroidPath
|
|
|
|
(remoteAnnexAndroidDirectory gc)
|
|
|
|
serial = maybe (giveup "missing androidserial") AndroidSerial
|
|
|
|
(remoteAnnexAndroidSerial gc)
|
|
|
|
|
|
|
|
adbSetup :: SetupStage -> Maybe UUID -> Maybe CredPair -> RemoteConfig -> RemoteGitConfig -> Annex (RemoteConfig, UUID)
|
|
|
|
adbSetup _ mu _ c gc = do
|
|
|
|
u <- maybe (liftIO genUUID) return mu
|
|
|
|
|
|
|
|
-- verify configuration
|
2020-01-10 18:10:20 +00:00
|
|
|
adir <- maybe
|
|
|
|
(giveup "Specify androiddirectory=")
|
|
|
|
(pure . AndroidPath . fromProposedAccepted)
|
2020-01-14 19:41:34 +00:00
|
|
|
(M.lookup androiddirectoryField c)
|
2020-04-02 14:46:46 +00:00
|
|
|
serial <- getserial =<< enumerateAdbConnected
|
2020-01-14 19:41:34 +00:00
|
|
|
let c' = M.insert androidserialField (Proposed (fromAndroidSerial serial)) c
|
2018-03-27 16:41:57 +00:00
|
|
|
|
2018-03-27 21:34:31 +00:00
|
|
|
(c'', _encsetup) <- encryptionSetup c' gc
|
2018-03-27 16:41:57 +00:00
|
|
|
|
2020-04-02 14:46:46 +00:00
|
|
|
ok <- adbShellBool serial
|
2018-03-27 16:41:57 +00:00
|
|
|
[Param "mkdir", Param "-p", File (fromAndroidPath adir)]
|
|
|
|
unless ok $
|
|
|
|
giveup "Creating directory on Android device failed."
|
|
|
|
|
2018-03-27 21:34:31 +00:00
|
|
|
gitConfigSpecialRemote u c''
|
2018-03-27 16:41:57 +00:00
|
|
|
[ ("adb", "true")
|
|
|
|
, ("androiddirectory", fromAndroidPath adir)
|
|
|
|
, ("androidserial", fromAndroidSerial serial)
|
|
|
|
]
|
|
|
|
|
2018-03-27 21:34:31 +00:00
|
|
|
return (c'', u)
|
2018-03-27 16:41:57 +00:00
|
|
|
where
|
|
|
|
getserial [] = giveup "adb does not list any connected android devices. Plug in an Android device, or configure adb, and try again.."
|
2020-01-14 19:41:34 +00:00
|
|
|
getserial l = case fromProposedAccepted <$> M.lookup androidserialField c of
|
2018-03-27 21:34:31 +00:00
|
|
|
Nothing -> case l of
|
|
|
|
(s:[]) -> return s
|
|
|
|
_ -> giveup $ unlines $
|
|
|
|
"There are multiple connected android devices, specify which to use with androidserial="
|
|
|
|
: map fromAndroidSerial l
|
2018-03-27 16:41:57 +00:00
|
|
|
Just cs
|
|
|
|
| AndroidSerial cs `elem` l -> return (AndroidSerial cs)
|
|
|
|
| otherwise -> giveup $ "The device with androidserial=" ++ cs ++ " is not connected."
|
|
|
|
|
|
|
|
store :: AndroidSerial -> AndroidPath -> Storer
|
2018-03-27 20:10:28 +00:00
|
|
|
store serial adir = fileStorer $ \k src _p ->
|
|
|
|
let dest = androidLocation adir k
|
2020-05-13 18:03:00 +00:00
|
|
|
in unlessM (store' serial dest src) $
|
|
|
|
giveup "adb failed"
|
2018-03-27 20:10:28 +00:00
|
|
|
|
|
|
|
store' :: AndroidSerial -> AndroidPath -> FilePath -> Annex Bool
|
2019-04-09 23:11:38 +00:00
|
|
|
store' serial dest src = store'' serial dest src (return True)
|
2019-04-09 21:52:41 +00:00
|
|
|
|
2019-04-09 23:11:38 +00:00
|
|
|
store'' :: AndroidSerial -> AndroidPath -> FilePath -> Annex Bool -> Annex Bool
|
2020-04-02 14:46:46 +00:00
|
|
|
store'' serial dest src canoverwrite = checkAdbInPath False $ do
|
2018-03-27 20:10:28 +00:00
|
|
|
let destdir = takeDirectory $ fromAndroidPath dest
|
2020-04-02 14:46:46 +00:00
|
|
|
void $ adbShell serial [Param "mkdir", Param "-p", File destdir]
|
2018-03-27 16:41:57 +00:00
|
|
|
showOutput -- make way for adb push output
|
2019-04-09 21:52:41 +00:00
|
|
|
let tmpdest = fromAndroidPath dest ++ ".annextmp"
|
2018-03-27 16:41:57 +00:00
|
|
|
ifM (liftIO $ boolSystem "adb" (mkAdbCommand serial [Param "push", File src, File tmpdest]))
|
2019-04-09 23:11:38 +00:00
|
|
|
( ifM canoverwrite
|
|
|
|
-- move into place atomically
|
2020-04-02 14:46:46 +00:00
|
|
|
( adbShellBool serial [Param "mv", File tmpdest, File (fromAndroidPath dest)]
|
2019-04-09 23:11:38 +00:00
|
|
|
, do
|
2019-04-09 21:52:41 +00:00
|
|
|
void $ remove' serial (AndroidPath tmpdest)
|
2019-04-09 23:11:38 +00:00
|
|
|
return False
|
|
|
|
)
|
|
|
|
, return False
|
2018-03-27 16:41:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
retrieve :: AndroidSerial -> AndroidPath -> Retriever
|
2018-03-27 20:10:28 +00:00
|
|
|
retrieve serial adir = fileRetriever $ \dest k _p ->
|
|
|
|
let src = androidLocation adir k
|
2020-05-15 16:51:09 +00:00
|
|
|
in retrieve' serial src dest
|
2018-03-27 20:10:28 +00:00
|
|
|
|
2020-05-15 16:51:09 +00:00
|
|
|
retrieve' :: AndroidSerial -> AndroidPath -> FilePath -> Annex ()
|
|
|
|
retrieve' serial src dest =
|
|
|
|
unlessM go $
|
|
|
|
giveup "adb pull failed"
|
|
|
|
where
|
|
|
|
go = checkAdbInPath False $ do
|
|
|
|
showOutput -- make way for adb pull output
|
|
|
|
liftIO $ boolSystem "adb" $ mkAdbCommand serial
|
|
|
|
[ Param "pull"
|
|
|
|
, File $ fromAndroidPath src
|
|
|
|
, File dest
|
|
|
|
]
|
2018-03-27 16:41:57 +00:00
|
|
|
|
|
|
|
remove :: AndroidSerial -> AndroidPath -> Remover
|
2020-05-14 18:08:09 +00:00
|
|
|
remove serial adir k =
|
|
|
|
unlessM (remove' serial (androidLocation adir k)) $
|
|
|
|
giveup "adb failed"
|
2018-03-27 20:10:28 +00:00
|
|
|
|
|
|
|
remove' :: AndroidSerial -> AndroidPath -> Annex Bool
|
2020-04-02 14:46:46 +00:00
|
|
|
remove' serial aloc = adbShellBool serial
|
2018-03-27 20:10:28 +00:00
|
|
|
[Param "rm", Param "-f", File (fromAndroidPath aloc)]
|
2018-03-27 16:41:57 +00:00
|
|
|
|
|
|
|
checkKey :: Remote -> AndroidSerial -> AndroidPath -> CheckPresent
|
2018-03-27 20:10:28 +00:00
|
|
|
checkKey r serial adir k = checkKey' r serial (androidLocation adir k)
|
|
|
|
|
|
|
|
checkKey' :: Remote -> AndroidSerial -> AndroidPath -> Annex Bool
|
|
|
|
checkKey' r serial aloc = do
|
2018-03-27 16:41:57 +00:00
|
|
|
showChecking r
|
2020-04-02 14:46:46 +00:00
|
|
|
out <- adbShellRaw serial $ unwords
|
2018-03-27 20:10:28 +00:00
|
|
|
[ "if test -e ", shellEscape (fromAndroidPath aloc)
|
2018-03-27 16:41:57 +00:00
|
|
|
, "; then echo y"
|
|
|
|
, "; else echo n"
|
|
|
|
, "; fi"
|
|
|
|
]
|
2019-04-09 21:52:41 +00:00
|
|
|
case out of
|
|
|
|
Just ["y"] -> return True
|
|
|
|
Just ["n"] -> return False
|
|
|
|
_ -> giveup "unable to access Android device"
|
2018-03-27 16:41:57 +00:00
|
|
|
|
|
|
|
androidLocation :: AndroidPath -> Key -> AndroidPath
|
|
|
|
androidLocation adir k = AndroidPath $
|
2019-01-14 17:03:35 +00:00
|
|
|
fromAndroidPath (androidHashDir adir k) ++ serializeKey k
|
2018-03-27 16:41:57 +00:00
|
|
|
|
|
|
|
androidHashDir :: AndroidPath -> Key -> AndroidPath
|
|
|
|
androidHashDir adir k = AndroidPath $
|
|
|
|
fromAndroidPath adir ++ "/" ++ hdir
|
|
|
|
where
|
2019-12-11 18:12:22 +00:00
|
|
|
hdir = replace [pathSeparator] "/" (fromRawFilePath (hashDirLower def k))
|
2018-03-27 16:41:57 +00:00
|
|
|
|
2020-05-15 16:17:15 +00:00
|
|
|
storeExportM :: AndroidSerial -> AndroidPath -> FilePath -> Key -> ExportLocation -> MeterUpdate -> Annex ()
|
|
|
|
storeExportM serial adir src _k loc _p =
|
|
|
|
unlessM (store' serial dest src) $
|
|
|
|
giveup "adb failed"
|
2018-03-27 20:10:28 +00:00
|
|
|
where
|
|
|
|
dest = androidExportLocation adir loc
|
|
|
|
|
2020-05-15 16:51:09 +00:00
|
|
|
retrieveExportM :: AndroidSerial -> AndroidPath -> Key -> ExportLocation -> FilePath -> MeterUpdate -> Annex ()
|
2018-03-27 20:10:28 +00:00
|
|
|
retrieveExportM serial adir _k loc dest _p = retrieve' serial src dest
|
|
|
|
where
|
|
|
|
src = androidExportLocation adir loc
|
|
|
|
|
2020-05-15 18:11:59 +00:00
|
|
|
removeExportM :: AndroidSerial -> AndroidPath -> Key -> ExportLocation -> Annex ()
|
|
|
|
removeExportM serial adir _k loc =
|
|
|
|
unlessM (remove' serial aloc) $
|
|
|
|
giveup "adb failed"
|
2018-03-27 20:10:28 +00:00
|
|
|
where
|
|
|
|
aloc = androidExportLocation adir loc
|
|
|
|
|
|
|
|
removeExportDirectoryM :: AndroidSerial -> AndroidPath -> ExportDirectory -> Annex Bool
|
2020-04-02 14:46:46 +00:00
|
|
|
removeExportDirectoryM serial abase dir = adbShellBool serial
|
2018-03-27 20:10:28 +00:00
|
|
|
[Param "rm", Param "-rf", File (fromAndroidPath adir)]
|
|
|
|
where
|
|
|
|
adir = androidExportLocation abase (mkExportLocation (fromExportDirectory dir))
|
|
|
|
|
|
|
|
checkPresentExportM :: Remote -> AndroidSerial -> AndroidPath -> Key -> ExportLocation -> Annex Bool
|
|
|
|
checkPresentExportM r serial adir _k loc = checkKey' r serial aloc
|
|
|
|
where
|
|
|
|
aloc = androidExportLocation adir loc
|
|
|
|
|
2019-03-11 16:44:12 +00:00
|
|
|
renameExportM :: AndroidSerial -> AndroidPath -> Key -> ExportLocation -> ExportLocation -> Annex (Maybe Bool)
|
2020-04-02 14:46:46 +00:00
|
|
|
renameExportM serial adir _k old new = Just <$> adbShellBool serial ps
|
2018-03-27 20:10:28 +00:00
|
|
|
where
|
|
|
|
oldloc = fromAndroidPath $ androidExportLocation adir old
|
|
|
|
newloc = fromAndroidPath $ androidExportLocation adir new
|
2020-04-02 14:46:46 +00:00
|
|
|
ps =
|
|
|
|
[ Param "mv"
|
|
|
|
, Param "-f"
|
|
|
|
, File oldloc
|
|
|
|
, File newloc
|
|
|
|
]
|
2018-03-27 20:10:28 +00:00
|
|
|
|
2019-04-09 21:52:41 +00:00
|
|
|
listImportableContentsM :: AndroidSerial -> AndroidPath -> Annex (Maybe (ImportableContents (ContentIdentifier, ByteSize)))
|
2020-04-02 14:46:46 +00:00
|
|
|
listImportableContentsM serial adir =
|
2019-04-09 21:52:41 +00:00
|
|
|
process <$> adbShell serial
|
|
|
|
[ Param "find"
|
|
|
|
-- trailing slash is needed, or android's find command
|
|
|
|
-- won't recurse into the directory
|
|
|
|
, File $ fromAndroidPath adir ++ "/"
|
|
|
|
, Param "-type", Param "f"
|
|
|
|
, Param "-exec", Param "stat"
|
|
|
|
, Param "-c", Param statformat
|
|
|
|
, Param "{}", Param "+"
|
|
|
|
]
|
|
|
|
where
|
|
|
|
process Nothing = Nothing
|
|
|
|
process (Just ls) = Just $ ImportableContents (mapMaybe mk ls) []
|
|
|
|
|
|
|
|
statformat = adbStatFormat ++ "\t%n"
|
|
|
|
|
|
|
|
mk ('S':'T':'\t':l) =
|
|
|
|
let (stat, fn) = separate (== '\t') l
|
|
|
|
sz = fromMaybe 0 (readish (takeWhile (/= ' ') stat))
|
|
|
|
cid = ContentIdentifier (encodeBS' stat)
|
2019-12-02 16:26:33 +00:00
|
|
|
loc = mkImportLocation $ toRawFilePath $
|
2019-04-09 21:52:41 +00:00
|
|
|
Posix.makeRelative (fromAndroidPath adir) fn
|
|
|
|
in Just (loc, (cid, sz))
|
|
|
|
mk _ = Nothing
|
|
|
|
|
|
|
|
-- This does not guard against every possible race. As long as the adb
|
|
|
|
-- connection is resonably fast, it's probably as good as
|
|
|
|
-- git's handling of similar situations with files being modified while
|
|
|
|
-- it's updating the working tree for a merge.
|
2020-05-15 16:51:09 +00:00
|
|
|
retrieveExportWithContentIdentifierM :: AndroidSerial -> AndroidPath -> ExportLocation -> ContentIdentifier -> FilePath -> Annex Key -> MeterUpdate -> Annex Key
|
|
|
|
retrieveExportWithContentIdentifierM serial adir loc cid dest mkkey _p = do
|
|
|
|
retrieve' serial src dest
|
|
|
|
k <- mkkey
|
|
|
|
currcid <- getExportContentIdentifier serial adir loc
|
|
|
|
if currcid == Right (Just cid)
|
|
|
|
then return k
|
|
|
|
else giveup "the file on the android device has changed"
|
2019-04-09 21:52:41 +00:00
|
|
|
where
|
|
|
|
src = androidExportLocation adir loc
|
|
|
|
|
2020-05-15 16:17:15 +00:00
|
|
|
storeExportWithContentIdentifierM :: AndroidSerial -> AndroidPath -> FilePath -> Key -> ExportLocation -> [ContentIdentifier] -> MeterUpdate -> Annex ContentIdentifier
|
2019-08-13 16:05:00 +00:00
|
|
|
storeExportWithContentIdentifierM serial adir src _k loc overwritablecids _p =
|
2019-04-09 21:52:41 +00:00
|
|
|
-- Check if overwrite is safe before sending, because sending the
|
|
|
|
-- file is expensive and don't want to do it unncessarily.
|
2019-04-09 23:11:38 +00:00
|
|
|
ifM checkcanoverwrite
|
|
|
|
( ifM (store'' serial dest src checkcanoverwrite)
|
2020-05-15 16:17:15 +00:00
|
|
|
( getExportContentIdentifier serial adir loc >>= \case
|
|
|
|
Right (Just cid) -> return cid
|
|
|
|
Right Nothing -> giveup "adb failed to store file"
|
|
|
|
Left _ -> giveup "unable to get content identifier for file stored by adb"
|
|
|
|
, giveup "adb failed to store file"
|
2019-04-09 23:11:38 +00:00
|
|
|
)
|
2020-05-15 16:17:15 +00:00
|
|
|
, giveup "unsafe to overwrite file"
|
2019-04-09 23:11:38 +00:00
|
|
|
)
|
2019-04-09 21:52:41 +00:00
|
|
|
where
|
|
|
|
dest = androidExportLocation adir loc
|
2020-04-02 14:46:46 +00:00
|
|
|
checkcanoverwrite =
|
2019-04-09 21:52:41 +00:00
|
|
|
getExportContentIdentifier serial adir loc >>= return . \case
|
2019-04-09 23:11:38 +00:00
|
|
|
Right (Just cid) | cid `elem` overwritablecids -> True
|
|
|
|
Right Nothing -> True
|
|
|
|
_ -> False
|
2019-04-09 21:52:41 +00:00
|
|
|
|
2020-05-15 18:11:59 +00:00
|
|
|
removeExportWithContentIdentifierM :: AndroidSerial -> AndroidPath -> Key -> ExportLocation -> [ContentIdentifier] -> Annex ()
|
|
|
|
removeExportWithContentIdentifierM serial adir k loc removeablecids =
|
2020-04-02 14:46:46 +00:00
|
|
|
getExportContentIdentifier serial adir loc >>= \case
|
2020-05-15 18:11:59 +00:00
|
|
|
Right Nothing -> return ()
|
|
|
|
Right (Just cid)
|
|
|
|
| cid `elem` removeablecids ->
|
|
|
|
removeExportM serial adir k loc
|
|
|
|
| otherwise -> giveup "file on Android device is modified, cannot remove"
|
|
|
|
Left _ -> giveup "unable to access Android device"
|
2019-04-09 21:52:41 +00:00
|
|
|
|
|
|
|
checkPresentExportWithContentIdentifierM :: AndroidSerial -> AndroidPath -> Key -> ExportLocation -> [ContentIdentifier] -> Annex Bool
|
|
|
|
checkPresentExportWithContentIdentifierM serial adir _k loc knowncids =
|
2020-04-02 14:46:46 +00:00
|
|
|
getExportContentIdentifier serial adir loc >>= \case
|
2019-04-09 21:52:41 +00:00
|
|
|
Right (Just cid) | cid `elem` knowncids -> return True
|
|
|
|
Right _ -> return False
|
|
|
|
Left _ -> giveup "unable to access Android device"
|
|
|
|
|
2018-03-27 20:10:28 +00:00
|
|
|
androidExportLocation :: AndroidPath -> ExportLocation -> AndroidPath
|
|
|
|
androidExportLocation adir loc = AndroidPath $
|
2019-12-02 16:26:33 +00:00
|
|
|
fromAndroidPath adir ++ "/" ++ fromRawFilePath (fromExportLocation loc)
|
2018-03-27 20:10:28 +00:00
|
|
|
|
2018-03-27 16:41:57 +00:00
|
|
|
-- | List all connected Android devices.
|
2020-04-02 14:46:46 +00:00
|
|
|
enumerateAdbConnected :: Annex [AndroidSerial]
|
|
|
|
enumerateAdbConnected = checkAdbInPath [] $ liftIO $
|
2018-03-27 16:41:57 +00:00
|
|
|
mapMaybe parse . lines <$> readProcess "adb" ["devices"]
|
|
|
|
where
|
|
|
|
parse l =
|
|
|
|
let (serial, desc) = separate (== '\t') l
|
2018-06-12 17:56:01 +00:00
|
|
|
in if null desc || length serial < 4
|
2018-03-27 16:41:57 +00:00
|
|
|
then Nothing
|
|
|
|
else Just (AndroidSerial serial)
|
|
|
|
|
|
|
|
-- | Runs a command on the android device with the given serial number.
|
|
|
|
--
|
2019-04-09 21:52:41 +00:00
|
|
|
-- Any stdout from the command is returned, separated into lines.
|
2020-04-02 14:46:46 +00:00
|
|
|
adbShell :: AndroidSerial -> [CommandParam] -> Annex (Maybe [String])
|
2018-03-27 16:41:57 +00:00
|
|
|
adbShell serial cmd = adbShellRaw serial $
|
|
|
|
unwords $ map shellEscape (toCommand cmd)
|
|
|
|
|
2020-04-02 14:46:46 +00:00
|
|
|
adbShellBool :: AndroidSerial -> [CommandParam] -> Annex Bool
|
2019-04-09 21:52:41 +00:00
|
|
|
adbShellBool serial cmd =
|
|
|
|
adbShellRaw serial cmd' >>= return . \case
|
|
|
|
Just l -> end l == ["y"]
|
|
|
|
Nothing -> False
|
|
|
|
where
|
|
|
|
cmd' = "if " ++ unwords (map shellEscape (toCommand cmd))
|
|
|
|
++ "; then echo y; else echo n; fi"
|
2018-03-27 16:41:57 +00:00
|
|
|
|
|
|
|
-- | Runs a raw shell command on the android device.
|
|
|
|
-- Any necessary shellEscaping must be done by caller.
|
2020-04-02 14:46:46 +00:00
|
|
|
adbShellRaw :: AndroidSerial -> String -> Annex (Maybe [String])
|
|
|
|
adbShellRaw serial cmd = checkAdbInPath Nothing $ liftIO $ catchMaybeIO $
|
2019-04-09 21:52:41 +00:00
|
|
|
processoutput <$> readProcess "adb"
|
|
|
|
[ "-s"
|
|
|
|
, fromAndroidSerial serial
|
|
|
|
, "shell"
|
|
|
|
, cmd
|
|
|
|
]
|
2018-03-27 16:41:57 +00:00
|
|
|
where
|
2019-04-09 21:52:41 +00:00
|
|
|
processoutput s = map trimcr (lines s)
|
2018-03-27 16:41:57 +00:00
|
|
|
-- For some reason, adb outputs lines with \r\n on linux,
|
|
|
|
-- despite both linux and android being unix systems.
|
|
|
|
trimcr = takeWhile (/= '\r')
|
|
|
|
|
2020-04-02 14:46:46 +00:00
|
|
|
checkAdbInPath :: a -> Annex a -> Annex a
|
|
|
|
checkAdbInPath d a = ifM (isJust <$> liftIO (searchPath "adb"))
|
|
|
|
( a
|
|
|
|
, do
|
|
|
|
warning "adb command not found in PATH. Install it to use this remote."
|
|
|
|
return d
|
|
|
|
)
|
|
|
|
|
2018-03-27 16:41:57 +00:00
|
|
|
mkAdbCommand :: AndroidSerial -> [CommandParam] -> [CommandParam]
|
|
|
|
mkAdbCommand serial cmd = [Param "-s", Param (fromAndroidSerial serial)] ++ cmd
|
2019-04-09 21:52:41 +00:00
|
|
|
|
|
|
|
-- Gets the current content identifier for a file on the android device.
|
2019-08-13 16:05:00 +00:00
|
|
|
-- If the file is not present, returns Right Nothing
|
2020-04-02 14:46:46 +00:00
|
|
|
getExportContentIdentifier :: AndroidSerial -> AndroidPath -> ExportLocation -> Annex (Either ExitCode (Maybe ContentIdentifier))
|
|
|
|
getExportContentIdentifier serial adir loc = do
|
2019-04-09 21:52:41 +00:00
|
|
|
ls <- adbShellRaw serial $ unwords
|
|
|
|
[ "if test -e ", shellEscape aloc
|
|
|
|
, "; then stat -c"
|
|
|
|
, shellEscape adbStatFormat
|
|
|
|
, shellEscape aloc
|
|
|
|
, "; else echo n"
|
|
|
|
, "; fi"
|
|
|
|
]
|
|
|
|
return $ case ls of
|
|
|
|
Just ["n"] -> Right Nothing
|
|
|
|
Just (('S':'T':'\t':stat):[]) -> Right $ Just $
|
|
|
|
ContentIdentifier (encodeBS' stat)
|
|
|
|
_ -> Left (ExitFailure 1)
|
|
|
|
where
|
|
|
|
aloc = fromAndroidPath $ androidExportLocation adir loc
|
|
|
|
|
|
|
|
-- Includes size, modificiation time, and inode.
|
|
|
|
-- Device not included because the adb interface ensures we're talking to
|
|
|
|
-- the same android device.
|
|
|
|
adbStatFormat :: String
|
|
|
|
adbStatFormat = "ST\t%s %Y %i"
|