2011-08-22 20:14:12 +00:00
|
|
|
{- path manipulation
|
|
|
|
-
|
|
|
|
- Copyright 2010-2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
2013-04-14 16:51:05 +00:00
|
|
|
|
|
|
|
{-# LANGUAGE PackageImports #-}
|
2011-08-22 20:14:12 +00:00
|
|
|
|
|
|
|
module Utility.Path where
|
|
|
|
|
|
|
|
import Data.String.Utils
|
2013-02-23 12:07:10 +00:00
|
|
|
import "MissingH" System.Path
|
2011-08-22 20:14:12 +00:00
|
|
|
import System.FilePath
|
|
|
|
import System.Directory
|
|
|
|
import Data.List
|
|
|
|
import Data.Maybe
|
2011-08-25 04:28:55 +00:00
|
|
|
import Control.Applicative
|
2011-10-16 04:31:25 +00:00
|
|
|
|
|
|
|
import Utility.Monad
|
2012-10-25 22:17:32 +00:00
|
|
|
import Utility.UserInfo
|
2011-08-22 20:14:12 +00:00
|
|
|
|
|
|
|
{- Returns the parent directory of a path. Parent of / is "" -}
|
|
|
|
parentDir :: FilePath -> FilePath
|
2011-10-11 18:43:45 +00:00
|
|
|
parentDir dir
|
|
|
|
| not $ null dirs = slash ++ join s (init dirs)
|
|
|
|
| otherwise = ""
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
dirs = filter (not . null) $ split s dir
|
|
|
|
slash = if isAbsolute dir then s else ""
|
|
|
|
s = [pathSeparator]
|
2011-08-22 20:14:12 +00:00
|
|
|
|
|
|
|
prop_parentDir_basics :: FilePath -> Bool
|
|
|
|
prop_parentDir_basics dir
|
|
|
|
| null dir = True
|
|
|
|
| dir == "/" = parentDir dir == ""
|
|
|
|
| otherwise = p /= dir
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
p = parentDir dir
|
2011-08-22 20:14:12 +00:00
|
|
|
|
|
|
|
{- Checks if the first FilePath is, or could be said to contain the second.
|
|
|
|
- For example, "foo/" contains "foo/bar". Also, "foo", "./foo", "foo/" etc
|
|
|
|
- are all equivilant.
|
|
|
|
-}
|
|
|
|
dirContains :: FilePath -> FilePath -> Bool
|
|
|
|
dirContains a b = a == b || a' == b' || (a'++"/") `isPrefixOf` b'
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
norm p = fromMaybe "" $ absNormPath p "."
|
|
|
|
a' = norm a
|
|
|
|
b' = norm b
|
2011-08-22 20:14:12 +00:00
|
|
|
|
2012-01-23 20:57:45 +00:00
|
|
|
{- Converts a filename into a normalized, absolute path.
|
|
|
|
-
|
|
|
|
- Unlike Directory.canonicalizePath, this does not require the path
|
|
|
|
- already exists. -}
|
2011-08-22 20:14:12 +00:00
|
|
|
absPath :: FilePath -> IO FilePath
|
|
|
|
absPath file = do
|
|
|
|
cwd <- getCurrentDirectory
|
|
|
|
return $ absPathFrom cwd file
|
|
|
|
|
|
|
|
{- Converts a filename into a normalized, absolute path
|
|
|
|
- from the specified cwd. -}
|
|
|
|
absPathFrom :: FilePath -> FilePath -> FilePath
|
|
|
|
absPathFrom cwd file = fromMaybe bad $ absNormPath cwd file
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
bad = error $ "unable to normalize " ++ file
|
2011-08-22 20:14:12 +00:00
|
|
|
|
|
|
|
{- Constructs a relative path from the CWD to a file.
|
|
|
|
-
|
|
|
|
- For example, assuming CWD is /tmp/foo/bar:
|
|
|
|
- relPathCwdToFile "/tmp/foo" == ".."
|
|
|
|
- relPathCwdToFile "/tmp/foo/bar" == ""
|
|
|
|
-}
|
|
|
|
relPathCwdToFile :: FilePath -> IO FilePath
|
2011-08-25 04:28:55 +00:00
|
|
|
relPathCwdToFile f = relPathDirToFile <$> getCurrentDirectory <*> absPath f
|
2011-08-22 20:14:12 +00:00
|
|
|
|
|
|
|
{- Constructs a relative path from a directory to a file.
|
|
|
|
-
|
|
|
|
- Both must be absolute, and normalized (eg with absNormpath).
|
|
|
|
-}
|
|
|
|
relPathDirToFile :: FilePath -> FilePath -> FilePath
|
2011-10-11 18:43:45 +00:00
|
|
|
relPathDirToFile from to = join s $ dotdots ++ uncommon
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
s = [pathSeparator]
|
|
|
|
pfrom = split s from
|
|
|
|
pto = split s to
|
|
|
|
common = map fst $ takeWhile same $ zip pfrom pto
|
|
|
|
same (c,d) = c == d
|
|
|
|
uncommon = drop numcommon pto
|
|
|
|
dotdots = replicate (length pfrom - numcommon) ".."
|
|
|
|
numcommon = length common
|
2011-08-22 20:14:12 +00:00
|
|
|
|
|
|
|
prop_relPathDirToFile_basics :: FilePath -> FilePath -> Bool
|
|
|
|
prop_relPathDirToFile_basics from to
|
|
|
|
| from == to = null r
|
|
|
|
| otherwise = not (null r)
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
r = relPathDirToFile from to
|
2011-09-19 05:37:04 +00:00
|
|
|
|
2012-03-05 16:42:52 +00:00
|
|
|
prop_relPathDirToFile_regressionTest :: Bool
|
|
|
|
prop_relPathDirToFile_regressionTest = same_dir_shortcurcuits_at_difference
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
{- Two paths have the same directory component at the same
|
|
|
|
- location, but it's not really the same directory.
|
|
|
|
- Code used to get this wrong. -}
|
|
|
|
same_dir_shortcurcuits_at_difference =
|
|
|
|
relPathDirToFile "/tmp/r/lll/xxx/yyy/18" "/tmp/r/.git/annex/objects/18/gk/SHA256-foo/SHA256-foo" == "../../../../.git/annex/objects/18/gk/SHA256-foo/SHA256-foo"
|
2012-03-05 16:42:52 +00:00
|
|
|
|
2012-11-25 21:54:08 +00:00
|
|
|
{- Given an original list of paths, and an expanded list derived from it,
|
|
|
|
- generates a list of lists, where each sublist corresponds to one of the
|
|
|
|
- original paths. When the original path is a direcotry, any items
|
|
|
|
- in the expanded list that are contained in that directory will appear in
|
|
|
|
- its segment.
|
2011-09-19 05:37:04 +00:00
|
|
|
-}
|
2012-11-25 21:54:08 +00:00
|
|
|
segmentPaths :: [FilePath] -> [FilePath] -> [[FilePath]]
|
|
|
|
segmentPaths [] new = [new]
|
|
|
|
segmentPaths [_] new = [new] -- optimisation
|
|
|
|
segmentPaths (l:ls) new = [found] ++ segmentPaths ls rest
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
(found, rest)=partition (l `dirContains`) new
|
2011-09-19 05:37:04 +00:00
|
|
|
|
2012-11-25 21:54:08 +00:00
|
|
|
{- This assumes that it's cheaper to call segmentPaths on the result,
|
|
|
|
- than it would be to run the action separately with each path. In
|
|
|
|
- the case of git file list commands, that assumption tends to hold.
|
2011-09-19 05:37:04 +00:00
|
|
|
-}
|
2012-11-25 21:54:08 +00:00
|
|
|
runSegmentPaths :: ([FilePath] -> IO [FilePath]) -> [FilePath] -> IO [[FilePath]]
|
|
|
|
runSegmentPaths a paths = segmentPaths paths <$> a paths
|
2011-10-16 04:31:25 +00:00
|
|
|
|
2012-08-02 11:47:50 +00:00
|
|
|
{- Converts paths in the home directory to use ~/ -}
|
|
|
|
relHome :: FilePath -> IO String
|
|
|
|
relHome path = do
|
|
|
|
home <- myHomeDir
|
|
|
|
return $ if dirContains home path
|
|
|
|
then "~/" ++ relPathDirToFile home path
|
|
|
|
else path
|
|
|
|
|
2012-12-14 19:52:44 +00:00
|
|
|
{- Checks if a command is available in PATH.
|
|
|
|
-
|
|
|
|
- The command may be fully-qualified, in which case, this succeeds as
|
|
|
|
- long as it exists. -}
|
2011-10-16 04:31:25 +00:00
|
|
|
inPath :: String -> IO Bool
|
2012-12-14 19:52:44 +00:00
|
|
|
inPath command = isJust <$> searchPath command
|
|
|
|
|
|
|
|
{- Finds a command in PATH and returns the full path to it.
|
|
|
|
-
|
|
|
|
- The command may be fully qualified already, in which case it will
|
|
|
|
- be returned if it exists.
|
|
|
|
-}
|
|
|
|
searchPath :: String -> IO (Maybe FilePath)
|
|
|
|
searchPath command
|
|
|
|
| isAbsolute command = check command
|
|
|
|
| otherwise = getSearchPath >>= getM indir
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
2012-12-14 19:52:44 +00:00
|
|
|
indir d = check $ d </> command
|
|
|
|
check f = ifM (doesFileExist f) ( return (Just f), return Nothing )
|
2012-01-03 04:09:09 +00:00
|
|
|
|
|
|
|
{- Checks if a filename is a unix dotfile. All files inside dotdirs
|
|
|
|
- count as dotfiles. -}
|
|
|
|
dotfile :: FilePath -> Bool
|
|
|
|
dotfile file
|
|
|
|
| f == "." = False
|
|
|
|
| f == ".." = False
|
|
|
|
| f == "" = False
|
|
|
|
| otherwise = "." `isPrefixOf` f || dotfile (takeDirectory file)
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
f = takeFileName file
|