HaRe-0.8.2.3: src/Language/Haskell/Refact/Utils/Utils.hs
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TypeSynonymInstances #-}
{-# LANGUAGE UndecidableInstances #-} -- for GHC.DataId
module Language.Haskell.Refact.Utils.Utils
(
-- * Managing the GHC / project environment
getTargetGhc
, parseSourceFileGhc
-- * The bits that do the work
, runRefacSession
, applyRefac
, refactDone
-- , Update(..)
, fileNameFromModSummary
, getModuleName
, clientModsAndFiles
, serverModsAndFiles
, modifiedFiles
, writeRefactoredFiles
) where
import Control.Exception
import Control.Monad.Identity
import Control.Monad.State
import Data.List
import Language.Haskell.GHC.ExactPrint
import Language.Haskell.GHC.ExactPrint.Preprocess
import Language.Haskell.GHC.ExactPrint.Print
import Language.Haskell.GHC.ExactPrint.Types
import Language.Haskell.GHC.ExactPrint.Utils
import qualified Language.Haskell.GhcMod as GM
import qualified Language.Haskell.GhcMod.Internal as GM
import Language.Haskell.Refact.Utils.GhcModuleGraph
import Language.Haskell.Refact.Utils.GhcVersionSpecific
import Language.Haskell.Refact.Utils.Monad
import Language.Haskell.Refact.Utils.MonadFunctions
import Language.Haskell.Refact.Utils.Types
import System.Directory
import System.FilePath.Posix
import qualified Digraph as GHC
import qualified DynFlags as GHC
import qualified GHC as GHC
-- import qualified Outputable as GHC
-- import qualified GHC.SYB.Utils as SYB
-- import qualified Data.Generics as SYB
import qualified Data.Map as Map
import qualified Data.Set as Set
-- import Debug.Trace
-- ---------------------------------------------------------------------
-- | Extract the module name from the parsed source, if there is one
getModuleName :: GHC.ParsedSource -> Maybe (GHC.ModuleName,String)
getModuleName (GHC.L _ modn) =
case (GHC.hsmodName modn) of
Nothing -> Nothing
Just (GHC.L _ modname) -> Just $ (modname,GHC.moduleNameString modname)
-- ---------------------------------------------------------------------
getTargetGhc :: TargetModule -> RefactGhc ()
getTargetGhc (GM.ModulePath _mn fp) = parseSourceFileGhc fp
-- ---------------------------------------------------------------------
-- | Parse a single source file into a GHC session
parseSourceFileGhc :: FilePath -> RefactGhc ()
parseSourceFileGhc targetFile = do
logm $ "parseSourceFileGhc:targetFile=" ++ show targetFile
setTargetSession targetFile
logm $ "parseSourceFileGhc:after setTargetSession"
graph <- GHC.getModuleGraph
cgraph <- canonicalizeGraph graph
cfileName <- liftIO $ canonicalizePath targetFile
let mm = filter (\(mfn,_ms) -> mfn == Just cfileName) cgraph
case mm of
[(_,modSum)] -> loadFromModSummary modSum
_ -> error $ "HaRe:unexpected error parsing " ++ targetFile
-- ---------------------------------------------------------------------
setTargetSession :: FilePath -> RefactGhc ()
-- setTargetSession targetFile = RefactGhc $ GM.runGmlT' [Left targetFile] setDynFlags (return ())
setTargetSession targetFile = RefactGhc $ GM.runGmlT' [Left targetFile] return (return ())
setDynFlags :: GHC.DynFlags -> GHC.Ghc GHC.DynFlags
setDynFlags df = return (GHC.gopt_set df GHC.Opt_KeepRawTokenStream)
-- setDynFlags df = return df
-- ---------------------------------------------------------------------
-- |For GHC 7.10.2, setting 'GHC.Opt_KeepRawTokenStream' prevents the pragmas at
-- the top of a source file from being read if there is a comment mixed in them
-- anywhere. To work around this, we need to inject that setting into the cached
-- dynflags in the 'GHC.ModSummary' before parsing it for refactoring, otherwise
-- all comments will be discarded.
-- See https://ghc.haskell.org/trac/ghc/ticket/10942
tweakModSummaryDynFlags :: GHC.ModSummary -> GHC.ModSummary
tweakModSummaryDynFlags ms =
let df = GHC.ms_hspp_opts ms
in ms { GHC.ms_hspp_opts = GHC.gopt_set df GHC.Opt_KeepRawTokenStream }
-- ---------------------------------------------------------------------
-- | In the existing GHC session, put the requested TypeCheckedModule
-- into the RefactGhc monad
loadFromModSummary :: GHC.ModSummary -> RefactGhc ()
loadFromModSummary modSum = do
logm $ "loadFromModSummary:modSum=" ++ show modSum
let modSumWithRaw = tweakModSummaryDynFlags modSum
p <- GHC.parseModule modSumWithRaw
t <- GHC.typecheckModule p
-- dflags <- GHC.getDynFlags
-- cppComments <- if (GHC.xopt GHC.Opt_Cpp dflags)
cppComments <- if True
then do
-- ++AZ++:TODO: enable the CPP option check some time
logm $ "loadFromModSummary:CPP flag set"
case GHC.ml_hs_file $ GHC.ms_location modSum of
Just fileName -> getCppTokensAsComments defaultCppOptions fileName
Nothing -> return []
else do
logm $ "loadFromModSummary:no CPP"
return []
-- required for inscope queries. Is there a better way to do those?
setGhcContext modSum
(mfp,_modSum) <- canonicalizeModSummary modSum
newTargetModule <- case mfp of
Nothing -> error $ "HaRe:no file path for module:" ++ showGhc modSum
Just fp -> return $ GM.ModulePath (GHC.moduleName $ GHC.ms_mod modSum) fp
oldTargetModule <- gets rsCurrentTarget
let
putModule = do
putParsedModule cppComments t
settings <- get
put $ settings { rsCurrentTarget = Just newTargetModule }
mtm <- gets rsModule
case mtm of
Just tm -> if ((rsStreamModified tm == RefacUnmodifed)
&& oldTargetModule == Just newTargetModule)
then do
logm $ "loadFromModSummary:not calling putParsedModule for targetModule=" ++ show newTargetModule
return ()
else if rsStreamModified tm == RefacUnmodifed
then putModule
else error $ "loadFromModSummary: trying to load a module without finishing with active one."
Nothing -> putModule
return ()
-- ---------------------------------------------------------------------
-- | Manage a whole refactor session. Initialise the monad, load the
-- whole project if required, and then apply the individual
-- refactorings, and write out the resulting files.
--
-- It is intended that this forms the umbrella function, in which
-- applyRefac is called
--
runRefacSession ::
RefactSettings
-> GM.Options -- ^ ghc-mod options
-> RefactGhc [ApplyRefacResult] -- ^ The computation doing the
-- refactoring. Normally created
-- via 'applyRefac'
-> IO [FilePath]
runRefacSession settings opt comp = do
let
initialState = RefSt
{ rsSettings = settings
, rsUniqState = 1
, rsSrcSpanCol = 1
, rsFlags = RefFlags False
, rsStorage = StorageNone
, rsCurrentTarget = Nothing
, rsModule = Nothing
}
(refactoredMods,_s) <- runRefactGhc comp initialState opt
let verbosity = rsetVerboseLevel (rsSettings initialState)
writeRefactoredFiles verbosity refactoredMods
return $ modifiedFiles refactoredMods
-- ---------------------------------------------------------------------
cdAndDo :: FilePath -> IO a -> IO a
cdAndDo path fn = do
old <- getCurrentDirectory
r <- GHC.gbracket (setCurrentDirectory path) (\_ -> setCurrentDirectory old)
$ const fn
return r
-- ---------------------------------------------------------------------
canonicalizeTargets :: Targets-> IO Targets
canonicalizeTargets tgts = do
cur <- getCurrentDirectory
let
canonicalizeTarget (Left path) = Left <$> canonicalizePath (cur </> path)
canonicalizeTarget (Right modname) = return $ Right modname
mapM canonicalizeTarget tgts
-- ---------------------------------------------------------------------
-- TODO: the module should be stored in the state, and returned if it
-- has been modified in a prior refactoring, instead of being parsed
-- afresh each time.
-- | Apply a refactoring (or part of a refactoring) to a single module
applyRefac
:: RefactGhc a -- ^ The refactoring
-> RefacSource -- ^ where to get the module and toks
-> RefactGhc (ApplyRefacResult,a)
applyRefac refac source = do
-- TODO: currently a temporary, poor man's surrounding state
-- management: store state now, set it to fresh, run refac, then
-- restore the state. Fix this to store the modules in some kind of cache.
fileName <- case source of
RSFile fname -> do parseSourceFileGhc fname
return fname
RSMod ms -> do parseSourceFileGhc $ fileNameFromModSummary ms
return $ fileNameFromModSummary ms
RSAlreadyLoaded -> do mfn <- getRefactFileName
case mfn of
Just fname -> return fname
Nothing -> error "applyRefac RSAlreadyLoaded: nothing loaded"
res <- refac -- Run the refactoring, updating the state as required
mod' <- getRefactParsed
anns <- fetchAnnsFinal
m <- getRefactStreamModified
-- Clear the refactoring state
clearParsedModule
absFileName <- liftIO $ canonicalizePath fileName
return (((absFileName,m),(anns, mod')),res)
-- ---------------------------------------------------------------------
-- |Returns True if any of the results has its modified flag set
refactDone :: [ApplyRefacResult] -> Bool
refactDone rs = any (\((_,d),_) -> d == RefacModified) rs
-- ---------------------------------------------------------------------
modifiedFiles :: [ApplyRefacResult] -> [String]
modifiedFiles refactResult = map (\((s,_),_) -> s)
$ filter (\((_,b),_) -> b == RefacModified) refactResult
-- ---------------------------------------------------------------------
{-
getEnabledTargets :: RefactSettings -> ([FilePath],[FilePath],[FilePath],[FilePath]) -> ([FilePath],[FilePath])
getEnabledTargets settings (libt,exet,testt,bencht) = (targetsLib,targetsExe)
where
(libEnabled, exeEnabled, testEnabled, benchEnabled) = rsetEnabledTargets settings
targetsLib = on libEnabled libt
targetsExe = on exeEnabled exet
++ on testEnabled testt
++ on benchEnabled bencht
on flag xs = if flag then xs else []
-}
-- ---------------------------------------------------------------------
{-
-- ++AZ++ I think the intended function of this class has been superseded by
-- ghc-exactprint HasDecls.
class (SYB.Data t, SYB.Data t1) => Update t t1 where
-- | Update the occurrence of one syntax phrase in a given scope by
-- another syntax phrase of the same type
update:: t -- ^ The syntax phrase to be updated.
-> t -- ^ The new syntax phrase.
-> t1 -- ^ The contex where the old syntax phrase occurs.
-> RefactGhc t1 -- ^ The result.
instance (SYB.Data t, GHC.OutputableBndr n, GHC.DataId n)
=> Update (GHC.LHsExpr n) t where
update oldExp newExp t
= SYB.everywhereMStaged SYB.Parser (SYB.mkM inExp) t
where
inExp (e::GHC.LHsExpr n)
| sameOccurrence e oldExp
= return newExp
| otherwise = return e
instance (SYB.Data t, GHC.OutputableBndr n, GHC.DataId n)
=> Update (GHC.LPat n) t where
update oldPat newPat t
= SYB.everywhereMStaged SYB.Parser (SYB.mkM inPat) t
where
inPat (p::GHC.LPat n)
| sameOccurrence p oldPat
= return newPat
| otherwise = return p
instance (SYB.Data t, GHC.OutputableBndr n, GHC.DataId n)
=> Update (GHC.LHsType n) t where
update oldTy newTy t
= SYB.everywhereMStaged SYB.Parser (SYB.mkM inTyp) t
where
inTyp (t'::GHC.LHsType n)
| sameOccurrence t' oldTy
= return newTy
| otherwise = return t'
instance (SYB.Data t, GHC.OutputableBndr n1, GHC.OutputableBndr n2, GHC.DataId n1, GHC.DataId n2)
=> Update (GHC.LHsBindLR n1 n2) t where
update oldBind newBind t
= SYB.everywhereMStaged SYB.Parser (SYB.mkM inBind) t
where
inBind (t'::GHC.LHsBindLR n1 n2)
| sameOccurrence t' oldBind
= return newBind
| otherwise = return t'
-}
-- ---------------------------------------------------------------------
-- | Write refactored program source to files.
writeRefactoredFiles ::
VerboseLevel -> [ApplyRefacResult] -> IO ()
writeRefactoredFiles verbosity files
= do let filesModified = filter (\((_f,m),_) -> m == RefacModified) files
-- TODO: restore the history function
-- ++AZ++ PFE0.addToHistory isSubRefactor (map (fst.fst) filesModified)
sequence_ (map modifyFile filesModified)
-- mapM_ writeTestDataForFile files -- This should be removed for the release version.
where
modifyFile ((fileName,_),(ann,parsed)) = do
let rigidOptions :: PrintOptions Identity String
rigidOptions = printOptions (\_ b -> return b) return return RigidLayout
exactPrintRigid ast as = runIdentity (exactPrintWithOptions rigidOptions ast as)
exactPrintNormal ast as = runIdentity (exactPrintWithOptions stringOptions ast as)
-- let source = exactPrint parsed ann
-- let source = exactPrintRigid parsed ann
let source = exactPrintNormal parsed ann
let (baseFileName,ext) = splitExtension fileName
seq (length source) (writeFile (baseFileName ++ ".refactored" ++ ext) source)
when (verbosity == Debug) $
do
writeFile (fileName ++ ".parsed_out") (showGhc parsed)
writeFile (fileName ++ ".AST_out") ((showGhc parsed) ++
"\n\n----------------------\n\n" ++
-- (SYB.showData SYB.Parser 0 parsed) ++
(showAnnData ann 0 parsed) ++
"\n\n----------------------\n\n" ++
(showGhc ann) ++
"\n\n----------------------\n\n"
-- (showAnnData (organiseAnns ann) 0 parsed)
)
-- ---------------------------------------------------------------------
-- | Return the client modules and file names. The client modules of
-- module, say m, are those modules which directly or indirectly
-- import module m.
-- clientModsAndFiles :: GHC.ModuleName -> RefactGhc [TargetModule]
clientModsAndFiles :: GM.ModulePath -> RefactGhc [TargetModule]
clientModsAndFiles m = do
mgs <- cabalModuleGraphs
-- logm $ "clientModsAndFiles:mgs=" ++ show mgs
-- mgs is [Map ModulePath (Set ModulePath)]
-- where eack key imports the corresponding set.
-- There are no cycles
-- We need the reverse of this, the transitive set of values where if the
-- ModulePath is in the set, then the key is of interest.
-- So
-- Flatten the module graph, reverse the dependencies, then rebuild it
let
flattenSwap (GM.GmModuleGraph mg)
= concatMap (\(k,vs) -> map (\v -> (v,Set.singleton k)) (Set.elems vs)) $ Map.toList mg
transposed = mgs'
where
kvs = concatMap flattenSwap mgs
mgs' = foldl' (\acc (k,v) -> Map.insertWith Set.union k v acc) Map.empty kvs
-- transposed is a map from each module to those that import it. We need the
-- transitive closure of all the importers of the given module.
check acc k =
case Map.lookup k transposed of
Nothing -> (acc,[])
Just s -> (Set.union acc s, Set.toList $ s Set.\\ acc)
go (acc,[]) = acc
go (acc,c:s) = go (acc',s')
where
(acc',q) = check acc c
s' = nub (q ++ s)
r = go (Set.empty, [m])
return $ Set.toList r
-- TODO : find decent name and place for this.
mycomp :: GHC.ModSummary -> GHC.ModSummary -> Bool
mycomp ms1 ms2 = (GHC.ms_mod ms1) == (GHC.ms_mod ms2)
-- ---------------------------------------------------------------------
-- | Return the server module and file names. The server modules of
-- module, say m, are those modules which are directly or indirectly
-- imported by module m. This can only be called in a live GHC session
-- TODO: make sure this works with multiple targets. Is that needed? No?
serverModsAndFiles
:: GHC.GhcMonad m => GHC.ModuleName -> m [GHC.ModSummary]
serverModsAndFiles m = do
ms <- GHC.getModuleGraph
modsum <- GHC.getModSummary m
let mg = getModulesAsGraph False ms Nothing
modNode = gfromJust "serverModsAndFiles" $ find (\(msum',_,_) -> mycomp msum' modsum) (GHC.verticesG mg)
serverMods = filter (\msum' -> not (mycomp msum' modsum))
$ map summaryNodeSummary $ GHC.reachableG mg modNode
return serverMods