git-annex/Utility/Rsync.hs

142 lines
4.4 KiB
Haskell
Raw Normal View History

2012-09-19 18:28:32 +00:00
{- various rsync stuff
-
- Copyright 2010-2013 Joey Hess <id@joeyh.name>
-
- License: BSD-2-clause
-}
{-# LANGUAGE CPP #-}
2012-09-19 18:28:32 +00:00
module Utility.Rsync where
import Common
import Utility.Metered
2012-09-19 19:21:52 +00:00
import Data.Char
import System.Console.GetOpt
2013-03-30 23:05:51 +00:00
import Data.Tuple.Utils
{- Generates parameters to make rsync use a specified command as its remote
- shell. -}
2011-02-28 20:25:31 +00:00
rsyncShell :: [CommandParam] -> [CommandParam]
rsyncShell command = [Param "-e", Param $ unwords $ map escape (toCommand command)]
2012-12-13 04:24:19 +00:00
where
{- rsync requires some weird, non-shell like quoting in
- here. A doubled single quote inside the single quoted
- string is a single quote. -}
escape s = "'" ++ intercalate "''" (split "'" s) ++ "'"
{- Runs rsync in server mode to send a file. -}
rsyncServerSend :: [CommandParam] -> FilePath -> IO Bool
rsyncServerSend options file = rsync $
rsyncServerParams ++ Param "--sender" : options ++ [File file]
{- Runs rsync in server mode to receive a file. -}
rsyncServerReceive :: [CommandParam] -> FilePath -> IO Bool
rsyncServerReceive options file = rsync $
rsyncServerParams ++ options ++ [File file]
2011-02-28 20:25:31 +00:00
rsyncServerParams :: [CommandParam]
rsyncServerParams =
[ Param "--server"
-- preserve timestamps
, Param "-t"
-- allow resuming of transfers of big files
, Param "--inplace"
-- other options rsync normally uses in server mode
, Param "-e.Lsf"
, Param "."
]
rsyncUseDestinationPermissions :: CommandParam
rsyncUseDestinationPermissions = Param "--chmod=ugo=rwX"
2011-02-28 20:25:31 +00:00
rsync :: [CommandParam] -> IO Bool
2013-05-14 17:24:15 +00:00
rsync = boolSystem "rsync" . rsyncParamsFixup
{- On Windows, rsync is from Cygwin, and expects to get Cygwin formatted
- paths to files. (It thinks that C:foo refers to a host named "C").
- Fix up the Params appropriately. -}
2013-05-14 17:24:15 +00:00
rsyncParamsFixup :: [CommandParam] -> [CommandParam]
#ifdef mingw32_HOST_OS
2013-05-14 17:24:15 +00:00
rsyncParamsFixup = map fixup
where
fixup (File f) = File (toCygPath f)
fixup (Param s)
| rsyncUrlIsPath s = Param (toCygPath s)
2013-05-14 17:24:15 +00:00
fixup p = p
#else
rsyncParamsFixup = id
#endif
{- Checks if an rsync url involves the remote shell (ssh or rsh).
- Use of such urls with rsync requires additional shell
- escaping. -}
rsyncUrlIsShell :: String -> Bool
rsyncUrlIsShell s
| "rsync://" `isPrefixOf` s = False
| otherwise = go s
2012-12-13 04:24:19 +00:00
where
-- host::dir is rsync protocol, while host:dir is ssh/rsh
go [] = False
go (c:cs)
| c == '/' = False -- got to directory with no colon
| c == ':' = not $ ":" `isPrefixOf` cs
| otherwise = go cs
{- Checks if a rsync url is really just a local path. -}
rsyncUrlIsPath :: String -> Bool
rsyncUrlIsPath s
#ifdef mingw32_HOST_OS
| not (null (takeDrive s)) = True
#endif
| rsyncUrlIsShell s = False
| otherwise = ':' `notElem` s
2012-09-19 19:21:52 +00:00
{- Runs rsync, but intercepts its progress output and updates a progress
- meter.
2012-09-19 19:21:52 +00:00
-
2014-12-17 17:21:55 +00:00
- The params must enable rsync's --progress mode for this to work.
-}
rsyncProgress :: OutputHandler -> MeterUpdate -> [CommandParam] -> IO Bool
rsyncProgress oh meter = commandMeter parseRsyncProgress oh meter "rsync" . rsyncParamsFixup
2014-12-17 17:21:55 +00:00
{- Strategy: Look for chunks prefixed with \r (rsync writes a \r before
2012-09-19 19:21:52 +00:00
- the first progress output, and each thereafter). The first number
- after the \r is the number of bytes processed. After the number,
- there must appear some whitespace, or we didn't get the whole number,
- and return the \r and part we did get, for later processing.
-
- In some locales, the number will have one or more commas in the middle
- of it.
2012-09-19 19:21:52 +00:00
-}
2014-12-17 17:21:55 +00:00
parseRsyncProgress :: ProgressParser
2012-09-19 19:21:52 +00:00
parseRsyncProgress = go [] . reverse . progresschunks
2012-12-13 04:24:19 +00:00
where
go remainder [] = (Nothing, remainder)
go remainder (x:xs) = case parsebytes (findbytesstart x) of
Nothing -> go (delim:x++remainder) xs
2014-12-17 17:21:55 +00:00
Just b -> (Just (toBytesProcessed b), remainder)
2012-09-19 19:21:52 +00:00
2012-12-13 04:24:19 +00:00
delim = '\r'
2014-12-17 17:21:55 +00:00
2012-12-13 04:24:19 +00:00
{- Find chunks that each start with delim.
- The first chunk doesn't start with it
- (it's empty when delim is at the start of the string). -}
progresschunks = drop 1 . split [delim]
findbytesstart s = dropWhile isSpace s
2014-12-17 17:21:55 +00:00
parsebytes :: String -> Maybe Integer
2012-12-13 04:24:19 +00:00
parsebytes s = case break isSpace s of
([], _) -> Nothing
(_, []) -> Nothing
(b, _) -> readish $ filter (/= ',') b
2013-03-30 23:05:51 +00:00
{- Filters options to those that are safe to pass to rsync in server mode,
- without causing it to eg, expose files. -}
filterRsyncSafeOptions :: [String] -> [String]
filterRsyncSafeOptions = fst3 . getOpt Permute
[ Option [] ["bwlimit"] (reqArgLong "bwlimit") "" ]
where
reqArgLong x = ReqArg (\v -> "--" ++ x ++ "=" ++ v) ""