Read depend packages from *.cabal, and adjust compiler package flags.
This commit is contained in:
parent
e5a2628dfa
commit
ff9fa49141
6
Cabal.hs
6
Cabal.hs
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
module Cabal (initializeGHC) where
|
module Cabal (initializeGHC) where
|
||||||
|
|
||||||
|
import CabalApi (dependPackages)
|
||||||
import Control.Applicative
|
import Control.Applicative
|
||||||
import Control.Exception
|
import Control.Exception
|
||||||
import Control.Monad
|
import Control.Monad
|
||||||
@ -29,7 +30,7 @@ initializeGHC :: Options -> FilePath -> [String] -> Bool -> Ghc (FilePath,LogRea
|
|||||||
initializeGHC opt fileName ghcOptions logging = withCabal ||> withoutCabal
|
initializeGHC opt fileName ghcOptions logging = withCabal ||> withoutCabal
|
||||||
where
|
where
|
||||||
withoutCabal = do
|
withoutCabal = do
|
||||||
logReader <- initSession opt ghcOptions importDirs logging
|
logReader <- initSession opt ghcOptions importDirs Nothing logging
|
||||||
return (fileName,logReader)
|
return (fileName,logReader)
|
||||||
withCabal = do
|
withCabal = do
|
||||||
(owdir,cdir,cfile) <- liftIO getDirs
|
(owdir,cdir,cfile) <- liftIO getDirs
|
||||||
@ -42,7 +43,8 @@ initializeGHC opt fileName ghcOptions logging = withCabal ||> withoutCabal
|
|||||||
idirs = case hsSourceDirs of
|
idirs = case hsSourceDirs of
|
||||||
[] -> [cdir,owdir]
|
[] -> [cdir,owdir]
|
||||||
dirs -> map (cdir </>) dirs ++ [owdir]
|
dirs -> map (cdir </>) dirs ++ [owdir]
|
||||||
logReader <- initSession opt gopts idirs logging
|
depPkgs <- liftIO $ dependPackages cfile
|
||||||
|
logReader <- initSession opt gopts idirs (Just depPkgs) logging
|
||||||
return (fileName,logReader)
|
return (fileName,logReader)
|
||||||
addX = ("-X" ++)
|
addX = ("-X" ++)
|
||||||
|
|
||||||
|
39
CabalApi.hs
Normal file
39
CabalApi.hs
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
module CabalApi (dependPackages) where
|
||||||
|
|
||||||
|
import Data.Maybe (maybeToList)
|
||||||
|
import Data.Set (fromList, toList)
|
||||||
|
|
||||||
|
import Distribution.Verbosity (silent)
|
||||||
|
import Distribution.Package (Dependency(Dependency), PackageName(PackageName))
|
||||||
|
import Distribution.PackageDescription
|
||||||
|
(GenericPackageDescription,
|
||||||
|
condLibrary, condExecutables, condTestSuites, condBenchmarks,
|
||||||
|
CondTree, condTreeConstraints)
|
||||||
|
import Distribution.PackageDescription.Parse (readPackageDescription)
|
||||||
|
|
||||||
|
----------------------------------------------------------------
|
||||||
|
|
||||||
|
parseGenericDescription :: FilePath -> IO GenericPackageDescription
|
||||||
|
parseGenericDescription = readPackageDescription silent
|
||||||
|
|
||||||
|
getDepsOfPairs :: [(a1, CondTree v [b] a)] -> [b]
|
||||||
|
getDepsOfPairs = concatMap (condTreeConstraints . snd)
|
||||||
|
|
||||||
|
allDependsOfDescription :: GenericPackageDescription -> [Dependency]
|
||||||
|
allDependsOfDescription pd =
|
||||||
|
concat [depLib, depExe, depTests, depBench]
|
||||||
|
where
|
||||||
|
depLib = concatMap condTreeConstraints (maybeToList . condLibrary $ pd)
|
||||||
|
depExe = getDepsOfPairs . condExecutables $ pd
|
||||||
|
depTests = getDepsOfPairs . condTestSuites $ pd
|
||||||
|
depBench = getDepsOfPairs . condBenchmarks $ pd
|
||||||
|
|
||||||
|
getDependencyPackageName :: Dependency -> String
|
||||||
|
getDependencyPackageName (Dependency (PackageName n) _) = n
|
||||||
|
|
||||||
|
dependPackages :: FilePath -> IO [String]
|
||||||
|
dependPackages =
|
||||||
|
fmap (toList . fromList
|
||||||
|
. map getDependencyPackageName
|
||||||
|
. allDependsOfDescription)
|
||||||
|
. parseGenericDescription
|
20
GHCApi.hs
20
GHCApi.hs
@ -31,29 +31,33 @@ initSession0 :: Options -> Ghc [PackageId]
|
|||||||
initSession0 opt = getSessionDynFlags >>=
|
initSession0 opt = getSessionDynFlags >>=
|
||||||
(>>= setSessionDynFlags) . setGhcFlags opt
|
(>>= setSessionDynFlags) . setGhcFlags opt
|
||||||
|
|
||||||
initSession :: Options -> [String] -> [FilePath] -> Bool -> Ghc LogReader
|
initSession :: Options -> [String] -> [FilePath] -> Maybe [String] -> Bool -> Ghc LogReader
|
||||||
initSession opt cmdOpts idirs logging = do
|
initSession opt cmdOpts idirs mayPkgs logging = do
|
||||||
dflags <- getSessionDynFlags
|
dflags <- getSessionDynFlags
|
||||||
let opts = map noLoc cmdOpts
|
let opts = map noLoc cmdOpts
|
||||||
(dflags',_,_) <- parseDynamicFlags dflags opts
|
(dflags',_,_) <- parseDynamicFlags dflags opts
|
||||||
(dflags'',readLog) <- liftIO . (>>= setLogger logging) . setGhcFlags opt . setFlags opt dflags' $ idirs
|
(dflags'',readLog) <- liftIO . (>>= setLogger logging)
|
||||||
|
. setGhcFlags opt . setFlags opt dflags' idirs $ mayPkgs
|
||||||
_ <- setSessionDynFlags dflags''
|
_ <- setSessionDynFlags dflags''
|
||||||
return readLog
|
return readLog
|
||||||
|
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
|
|
||||||
setFlags :: Options -> DynFlags -> [FilePath] -> DynFlags
|
setFlags :: Options -> DynFlags -> [FilePath] -> Maybe [String] -> DynFlags
|
||||||
setFlags opt d idirs
|
setFlags opt d idirs mayPkgs
|
||||||
| expandSplice opt = dopt_set d' Opt_D_dump_splices
|
| expandSplice opt = dopt_set d' Opt_D_dump_splices
|
||||||
| otherwise = d'
|
| otherwise = d'
|
||||||
where
|
where
|
||||||
d' = d {
|
d' = maySetExpose $ d {
|
||||||
packageFlags = ghcPackage : packageFlags d
|
importPaths = idirs
|
||||||
, importPaths = idirs
|
|
||||||
, ghcLink = LinkInMemory
|
, ghcLink = LinkInMemory
|
||||||
, hscTarget = HscInterpreted
|
, hscTarget = HscInterpreted
|
||||||
, flags = flags d
|
, flags = flags d
|
||||||
}
|
}
|
||||||
|
-- Do hide-all only when depend packages specified
|
||||||
|
maySetExpose df = maybe df (\x -> (dopt_set df Opt_HideAllPackages) {
|
||||||
|
packageFlags = map ExposePackage x ++ packageFlags df
|
||||||
|
}) mayPkgs
|
||||||
|
|
||||||
ghcPackage :: PackageFlag
|
ghcPackage :: PackageFlag
|
||||||
ghcPackage = ExposePackage "ghc"
|
ghcPackage = ExposePackage "ghc"
|
||||||
|
@ -28,6 +28,7 @@ Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el
|
|||||||
Executable ghc-mod
|
Executable ghc-mod
|
||||||
Main-Is: GHCMod.hs
|
Main-Is: GHCMod.hs
|
||||||
Other-Modules: Browse
|
Other-Modules: Browse
|
||||||
|
CabalApi
|
||||||
Cabal
|
Cabal
|
||||||
CabalDev
|
CabalDev
|
||||||
Check
|
Check
|
||||||
@ -45,6 +46,7 @@ Executable ghc-mod
|
|||||||
GHC-Options: -Wall
|
GHC-Options: -Wall
|
||||||
Build-Depends: base >= 4.0 && < 5
|
Build-Depends: base >= 4.0 && < 5
|
||||||
, Cabal
|
, Cabal
|
||||||
|
, containers
|
||||||
, convertible
|
, convertible
|
||||||
, directory
|
, directory
|
||||||
, filepath
|
, filepath
|
||||||
|
Loading…
Reference in New Issue
Block a user