stack-3.9.1: src/Stack/Types/Compiler.hs
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TypeFamilies #-}
{-|
Module : Stack.Types.Compiler
License : BSD-3-Clause
-}
module Stack.Types.Compiler
( ActualCompiler (..)
, WhichCompiler (..)
, CompilerRepository (..)
, CompilerTarget (..)
, CompilerBindistPath (..)
, CompilerException (..)
, defaultCompilerRepository
, defaultCompilerTarget
, defaultCompilerBindistPath
, getGhcVersion
, whichCompiler
, compilerVersionText
, compilerVersionString
, isWantedCompiler
, wantedToActual
, actualToWanted
, parseActualCompiler
, whichCompilerL
) where
import Data.Aeson
( FromJSON (..), FromJSONKey (..), FromJSONKeyFunction (..)
, ToJSON (..), Value (..), withText
)
import Database.Persist.Sql
( PersistField (..), PersistFieldSql (..), SqlType (..) )
import qualified Data.Text as T
import Distribution.Version ( mkVersion )
import Stack.Prelude
import Stack.Types.Version ( VersionCheck, checkVersion )
import System.Permissions ( osIsWindows )
-- | Type representing exceptions thrown by functions exported by the
-- "Stack.Types.Compiler" module.
data CompilerException
= GhcjsNotSupported
| PantryException PantryException
deriving Show
instance Exception CompilerException where
displayException GhcjsNotSupported =
"Error: [S-7903]\n"
++ "GHCJS is no longer supported by Stack."
displayException (PantryException p) =
"Error: [S-7972]\n"
++ displayException p
-- | Variety of compiler to use.
data WhichCompiler
= Ghc
deriving (Eq, Ord, Show)
-- | Specifies a compiler and its version number(s).
--
-- Note that despite having this datatype, Stack isn't in a hurry to
-- support compilers other than GHC.
data ActualCompiler
= ACGhc !Version
| ACGhcGit !Text !Text
deriving (Data, Eq, Generic, Ord, Show)
instance NFData ActualCompiler
instance Display ActualCompiler where
display (ACGhc x) = display (WCGhc x)
display (ACGhcGit x y) = display (WCGhcGit x y)
instance ToJSON ActualCompiler where
toJSON = toJSON . compilerVersionText
instance FromJSON ActualCompiler where
parseJSON (String t) =
either
(const $ fail "Failed to parse compiler version")
pure
(parseActualCompiler t)
parseJSON _ = fail "Invalid CompilerVersion, must be String"
instance FromJSONKey ActualCompiler where
fromJSONKey = FromJSONKeyTextParser $ \k ->
case parseActualCompiler k of
Left _ -> fail $ "Failed to parse CompilerVersion " ++ T.unpack k
Right parsed -> pure parsed
instance PersistField ActualCompiler where
toPersistValue = toPersistValue . compilerVersionText
fromPersistValue = (mapLeft tshow . parseActualCompiler) <=< fromPersistValue
instance PersistFieldSql ActualCompiler where
sqlType _ = SqlString
wantedToActual :: WantedCompiler -> Either CompilerException ActualCompiler
wantedToActual (WCGhc x) = Right $ ACGhc x
wantedToActual (WCGhcjs _ _) = Left GhcjsNotSupported
wantedToActual (WCGhcGit x y) = Right $ ACGhcGit x y
actualToWanted :: ActualCompiler -> WantedCompiler
actualToWanted (ACGhc x) = WCGhc x
actualToWanted (ACGhcGit x y) = WCGhcGit x y
parseActualCompiler :: T.Text -> Either CompilerException ActualCompiler
parseActualCompiler =
either
(Left . PantryException)
wantedToActual . parseWantedCompiler
compilerVersionText :: ActualCompiler -> T.Text
compilerVersionText = utf8BuilderToText . display
compilerVersionString :: ActualCompiler -> String
compilerVersionString = T.unpack . compilerVersionText
whichCompiler :: ActualCompiler -> WhichCompiler
whichCompiler ACGhc{} = Ghc
whichCompiler ACGhcGit{} = Ghc
isWantedCompiler :: VersionCheck -> WantedCompiler -> ActualCompiler -> Bool
isWantedCompiler check (WCGhc wanted) (ACGhc actual) =
checkVersion check wanted actual
isWantedCompiler _check (WCGhcGit wCommit wFlavour) (ACGhcGit aCommit aFlavour) =
wCommit == aCommit && wFlavour == aFlavour
isWantedCompiler _ _ _ = False
getGhcVersion :: ActualCompiler -> Version
getGhcVersion (ACGhc v) = v
getGhcVersion (ACGhcGit _ _) =
-- We can't return the actual version without running the installed ghc.
-- For now we assume that users of ghc-git use it with a recent commit so we
-- return a version far in the future. This disables our hacks for older
-- versions and passes version checking when we use newer features.
mkVersion [999, 0, 0]
-- | Repository containing the compiler sources
newtype CompilerRepository
= CompilerRepository Text
deriving Show
instance FromJSON CompilerRepository where
parseJSON = withText "CompilerRepository" (pure . CompilerRepository)
defaultCompilerRepository :: CompilerRepository
defaultCompilerRepository =
CompilerRepository "https://gitlab.haskell.org/ghc/ghc.git"
-- | Target for Hadrian build
newtype CompilerTarget
= CompilerTarget Text
deriving Show
instance FromJSON CompilerTarget where
parseJSON = withText "CompilerTarget" (pure . CompilerTarget)
defaultCompilerTarget :: CompilerTarget
defaultCompilerTarget = if osIsWindows
then CompilerTarget "reloc-binary-dist"
else CompilerTarget "binary-dist"
-- | Hadrian path to built binary distribution
newtype CompilerBindistPath
= CompilerBindistPath Text
deriving Show
instance FromJSON CompilerBindistPath where
parseJSON = withText "CompilerBindistPath" (pure . CompilerBindistPath)
defaultCompilerBindistPath :: CompilerBindistPath
defaultCompilerBindistPath = if osIsWindows
then CompilerBindistPath "_build/reloc-bindist"
else CompilerBindistPath "_build/bindist"
whichCompilerL :: Getting r ActualCompiler WhichCompiler
whichCompilerL = to whichCompiler