208 lines
7.0 KiB
Haskell
208 lines
7.0 KiB
Haskell
{-# LANGUAGE OverloadedStrings #-}
|
|
{-# LANGUAGE QuasiQuotes #-}
|
|
{-# LANGUAGE TemplateHaskell #-}
|
|
{-# LANGUAGE ScopedTypeVariables #-}
|
|
{-# LANGUAGE CPP #-}
|
|
module Devel
|
|
( devel
|
|
) where
|
|
|
|
|
|
import qualified Distribution.Simple.Utils as D
|
|
import qualified Distribution.Verbosity as D
|
|
import qualified Distribution.PackageDescription.Parse as D
|
|
import qualified Distribution.PackageDescription as D
|
|
import qualified Distribution.ModuleName as D
|
|
|
|
import Control.Concurrent (forkIO, threadDelay)
|
|
import qualified Control.Exception as Ex
|
|
import Control.Monad (forever, when)
|
|
|
|
import Data.Char (isUpper, isNumber)
|
|
import qualified Data.List as L
|
|
import qualified Data.Map as Map
|
|
import qualified Data.Set as Set
|
|
|
|
import System.Directory
|
|
import System.Exit (exitFailure, exitSuccess, ExitCode (..))
|
|
import System.FilePath (splitDirectories, dropExtension, takeExtension)
|
|
import System.Posix.Types (EpochTime)
|
|
import System.PosixCompat.Files (modificationTime, getFileStatus)
|
|
import System.Process (createProcess, proc, terminateProcess, readProcess,
|
|
waitForProcess, rawSystem)
|
|
|
|
import Build (recompDeps, getDeps,findHaskellFiles)
|
|
|
|
lockFile :: FilePath
|
|
lockFile = "dist/devel-terminate"
|
|
|
|
writeLock :: IO ()
|
|
writeLock = do
|
|
createDirectoryIfMissing True "dist"
|
|
writeFile lockFile ""
|
|
|
|
removeLock :: IO ()
|
|
removeLock = try_ (removeFile lockFile)
|
|
|
|
devel :: Bool -> [String] -> IO ()
|
|
devel isCabalDev passThroughArgs = do
|
|
|
|
checkDevelFile
|
|
|
|
writeLock
|
|
|
|
putStrLn "Yesod devel server. Press ENTER to quit"
|
|
_ <- forkIO $ do
|
|
cabal <- D.findPackageDesc "."
|
|
gpd <- D.readPackageDescription D.normal cabal
|
|
|
|
checkCabalFile gpd
|
|
|
|
_<- rawSystem cmd args
|
|
|
|
mainLoop
|
|
|
|
_ <- getLine
|
|
writeLock
|
|
exitSuccess
|
|
where
|
|
cmd | isCabalDev == True = "cabal-dev"
|
|
| otherwise = "cabal"
|
|
|
|
diffArgs | isCabalDev == True = [
|
|
"--cabal-install-arg=-fdevel" -- legacy
|
|
, "--cabal-install-arg=-flibrary-only"
|
|
]
|
|
| otherwise = [
|
|
"-fdevel" -- legacy
|
|
, "-flibrary-only"
|
|
]
|
|
args = "configure":diffArgs ++ ["--disable-library-profiling" ]
|
|
|
|
mainLoop :: IO ()
|
|
mainLoop = do
|
|
ghcVer <- ghcVersion
|
|
forever $ do
|
|
putStrLn "Rebuilding application..."
|
|
|
|
recompDeps
|
|
|
|
list <- getFileList
|
|
exit <- rawSystem cmd ["build"]
|
|
|
|
case exit of
|
|
ExitFailure _ -> putStrLn "Build failure, pausing..."
|
|
_ -> do
|
|
removeLock
|
|
let pkg = pkgConfigs isCabalDev ghcVer
|
|
let dev_args = pkg ++ ["devel.hs"] ++ passThroughArgs
|
|
putStrLn $ "Starting development server: runghc " ++ L.intercalate " " dev_args
|
|
(_,_,_,ph) <- createProcess $ proc "runghc" dev_args
|
|
watchTid <- forkIO . try_ $ do
|
|
watchForChanges list
|
|
putStrLn "Stopping development server..."
|
|
writeLock
|
|
threadDelay 1000000
|
|
putStrLn "Terminating development server..."
|
|
terminateProcess ph
|
|
ec <- waitForProcess ph
|
|
putStrLn $ "Exit code: " ++ show ec
|
|
Ex.throwTo watchTid (userError "process finished")
|
|
watchForChanges list
|
|
|
|
try_ :: forall a. IO a -> IO ()
|
|
try_ x = (Ex.try x :: IO (Either Ex.SomeException a)) >> return ()
|
|
|
|
pkgConfigs :: Bool -> String -> [String]
|
|
pkgConfigs isCabalDev ghcVer
|
|
| isCabalDev = ["-package-confcabal-dev/packages-" ++ ghcVer ++ ".conf", inplacePkg]
|
|
| otherwise = [inplacePkg]
|
|
where
|
|
inplacePkg = "-package-confdist/package.conf.inplace"
|
|
|
|
|
|
type FileList = Map.Map FilePath EpochTime
|
|
|
|
getFileList :: IO FileList
|
|
getFileList = do
|
|
files <- findHaskellFiles "."
|
|
deps <- getDeps
|
|
let files' = files ++ map fst (Map.toList deps)
|
|
fmap Map.fromList $ flip mapM files' $ \f -> do
|
|
fs <- getFileStatus f
|
|
return (f, modificationTime fs)
|
|
|
|
watchForChanges :: FileList -> IO ()
|
|
watchForChanges list = do
|
|
newList <- getFileList
|
|
if list /= newList
|
|
then return ()
|
|
else threadDelay 1000000 >> watchForChanges list
|
|
|
|
checkDevelFile :: IO ()
|
|
checkDevelFile = do
|
|
e <- doesFileExist "devel.hs"
|
|
when (not e) $ failWith "file devel.hs not found"
|
|
|
|
checkCabalFile :: D.GenericPackageDescription -> IO ()
|
|
checkCabalFile gpd = case D.condLibrary gpd of
|
|
Nothing -> failWith "incorrect cabal file, no library"
|
|
Just ct ->
|
|
case lookupDevelLib ct of
|
|
Nothing ->
|
|
failWith "no development flag found in your configuration file. Expected a 'library-only' flag or the older 'devel' flag"
|
|
Just dLib -> do
|
|
case (D.hsSourceDirs . D.libBuildInfo) dLib of
|
|
[] -> return ()
|
|
["."] -> return ()
|
|
_ ->
|
|
putStrLn $ "WARNING: yesod devel may not work correctly with " ++
|
|
"custom hs-source-dirs"
|
|
fl <- getFileList
|
|
let unlisted = checkFileList fl dLib
|
|
when (not . null $ unlisted) $ do
|
|
putStrLn "WARNING: the following source files are not listed in exposed-modules or other-modules:"
|
|
mapM_ putStrLn unlisted
|
|
when (D.fromString "Application" `notElem` D.exposedModules dLib) $ do
|
|
putStrLn "WARNING: no exposed module Application"
|
|
|
|
failWith :: String -> IO a
|
|
failWith msg = do
|
|
putStrLn $ "ERROR: " ++ msg
|
|
exitFailure
|
|
|
|
checkFileList :: FileList -> D.Library -> [FilePath]
|
|
checkFileList fl lib = filter isUnlisted . filter isSrcFile $ sourceFiles
|
|
where
|
|
al = allModules lib
|
|
-- a file is only a possible 'module file' if all path pieces start with a capital letter
|
|
sourceFiles = filter isSrcFile . map fst . Map.toList $ fl
|
|
isSrcFile file = let dirs = filter (/=".") $ splitDirectories file
|
|
in all (isUpper . head) dirs && (takeExtension file `elem` [".hs", ".lhs"])
|
|
isUnlisted file = not (toModuleName file `Set.member` al)
|
|
toModuleName = L.intercalate "." . filter (/=".") . splitDirectories . dropExtension
|
|
|
|
allModules :: D.Library -> Set.Set String
|
|
allModules lib = Set.fromList $ map toString $ D.exposedModules lib ++ (D.otherModules . D.libBuildInfo) lib
|
|
where
|
|
toString = L.intercalate "." . D.components
|
|
|
|
ghcVersion :: IO String
|
|
ghcVersion = fmap getNumber $ readProcess "runghc" ["--numeric-version", "0"] []
|
|
where
|
|
getNumber = filter (\x -> isNumber x || x == '.')
|
|
|
|
|
|
lookupDevelLib :: D.CondTree D.ConfVar c a -> Maybe a
|
|
lookupDevelLib ct | found = Just (D.condTreeData ct)
|
|
| otherwise = Nothing
|
|
where
|
|
found = not . null . map (\(_,x,_) -> D.condTreeData x) .
|
|
filter isDevelLib . D.condTreeComponents $ ct
|
|
isDevelLib ((D.Var (D.Flag (D.FlagName f))), _, _) = f `elem` ["library-only", "devel"]
|
|
isDevelLib _ = False
|
|
|
|
|
|
|
|
|