summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-04-06 12:17:04 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-04-30 01:56:56 -0400
commitea717aa4248b2122e1f7550f30239b50ab560e4f (patch)
tree6be60109187c269575170e569d72a4c918b5016b /compiler
parent9e2c8e0e37a2709d5790d6c9a877a1463d6e88b5 (diff)
downloadhaskell-ea717aa4248b2122e1f7550f30239b50ab560e4f.tar.gz
Factorize mungePackagePaths code
This patch factorizes the duplicated code used in ghc-pkg and in GHC to munge package paths/urls. It also fixes haddock-html munging in GHC (allowed to be either a file or a url) to mimic ghc-pkg behavior.
Diffstat (limited to 'compiler')
-rw-r--r--compiler/GHC/Driver/Packages.hs54
1 files changed, 1 insertions, 53 deletions
diff --git a/compiler/GHC/Driver/Packages.hs b/compiler/GHC/Driver/Packages.hs
index 3b0cf0525a..2f0a8b46d4 100644
--- a/compiler/GHC/Driver/Packages.hs
+++ b/compiler/GHC/Driver/Packages.hs
@@ -94,7 +94,6 @@ import GHC.Utils.Exception
import System.Directory
import System.FilePath as FilePath
-import qualified System.FilePath.Posix as FilePath.Posix
import Control.Monad
import Data.Graph (stronglyConnComp, SCC(..))
import Data.Char ( toUpper )
@@ -656,7 +655,7 @@ mungeUnitInfo :: FilePath -> FilePath
-> UnitInfo -> UnitInfo
mungeUnitInfo top_dir pkgroot =
mungeDynLibFields
- . mungePackagePaths top_dir pkgroot
+ . mungeUnitInfoPaths top_dir pkgroot
mungeDynLibFields :: UnitInfo -> UnitInfo
mungeDynLibFields pkg =
@@ -666,57 +665,6 @@ mungeDynLibFields pkg =
ds -> ds
}
--- TODO: This code is duplicated in utils/ghc-pkg/Main.hs
-mungePackagePaths :: FilePath -> FilePath -> UnitInfo -> UnitInfo
--- Perform path/URL variable substitution as per the Cabal ${pkgroot} spec
--- (http://www.haskell.org/pipermail/libraries/2009-May/011772.html)
--- Paths/URLs can be relative to ${pkgroot} or ${pkgrooturl}.
--- The "pkgroot" is the directory containing the package database.
---
--- Also perform a similar substitution for the older GHC-specific
--- "$topdir" variable. The "topdir" is the location of the ghc
--- installation (obtained from the -B option).
-mungePackagePaths top_dir pkgroot pkg =
- pkg {
- unitImportDirs = munge_paths (unitImportDirs pkg),
- unitIncludeDirs = munge_paths (unitIncludeDirs pkg),
- unitLibraryDirs = munge_paths (unitLibraryDirs pkg),
- unitLibraryDynDirs = munge_paths (unitLibraryDynDirs pkg),
- unitExtDepFrameworkDirs = munge_paths (unitExtDepFrameworkDirs pkg),
- unitHaddockInterfaces = munge_paths (unitHaddockInterfaces pkg),
- unitHaddockHTMLs = munge_urls (unitHaddockHTMLs pkg)
- }
- where
- munge_paths = map munge_path
- munge_urls = map munge_url
-
- munge_path p
- | Just p' <- stripVarPrefix "${pkgroot}" p = pkgroot ++ p'
- | Just p' <- stripVarPrefix "$topdir" p = top_dir ++ p'
- | otherwise = p
-
- munge_url p
- | Just p' <- stripVarPrefix "${pkgrooturl}" p = toUrlPath pkgroot p'
- | Just p' <- stripVarPrefix "$httptopdir" p = toUrlPath top_dir p'
- | otherwise = p
-
- toUrlPath r p = "file:///"
- -- URLs always use posix style '/' separators:
- ++ FilePath.Posix.joinPath
- (r : -- We need to drop a leading "/" or "\\"
- -- if there is one:
- dropWhile (all isPathSeparator)
- (FilePath.splitDirectories p))
-
- -- We could drop the separator here, and then use </> above. However,
- -- by leaving it in and using ++ we keep the same path separator
- -- rather than letting FilePath change it to use \ as the separator
- stripVarPrefix var path = case stripPrefix var path of
- Just [] -> Just []
- Just cs@(c : _) | isPathSeparator c -> Just cs
- _ -> Nothing
-
-
-- -----------------------------------------------------------------------------
-- Modify our copy of the package database based on trust flags,
-- -trust and -distrust.