{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE DataKinds #-}
module Stack.Types.PackageFile
( GetPackageFileContext (..)
, DotCabalPath (..)
, DotCabalDescriptor (..)
, GetPackageFiles (..)
, PackageWarning (..)
) where
import Distribution.ModuleName ( ModuleName )
import RIO.Process ( HasProcessContext (..) )
import Stack.Prelude
import Stack.Types.BuildConfig
( BuildConfig (..), HasBuildConfig (..) )
import Stack.Types.Config ( HasConfig (..) )
import Stack.Types.EnvConfig ( HasEnvConfig )
import Stack.Types.GHCVariant ( HasGHCVariant (..) )
import Stack.Types.NamedComponent ( NamedComponent )
import Stack.Types.Platform ( HasPlatform (..) )
import Stack.Types.Runner ( HasRunner (..) )
data GetPackageFileContext = GetPackageFileContext
{ GetPackageFileContext -> Path Abs File
ctxFile :: !(Path Abs File)
, GetPackageFileContext -> Path Abs Dir
ctxDistDir :: !(Path Abs Dir)
, GetPackageFileContext -> BuildConfig
ctxBuildConfig :: !BuildConfig
, GetPackageFileContext -> Version
ctxCabalVer :: !Version
}
instance HasPlatform GetPackageFileContext where
platformL :: Lens' GetPackageFileContext Platform
platformL = (Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasConfig env => Lens' env Config
Lens' GetPackageFileContext Config
configL((Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((Platform -> f Platform) -> Config -> f Config)
-> (Platform -> f Platform)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(Platform -> f Platform) -> Config -> f Config
forall env. HasPlatform env => Lens' env Platform
Lens' Config Platform
platformL
{-# INLINE platformL #-}
platformVariantL :: Lens' GetPackageFileContext PlatformVariant
platformVariantL = (Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasConfig env => Lens' env Config
Lens' GetPackageFileContext Config
configL((Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((PlatformVariant -> f PlatformVariant) -> Config -> f Config)
-> (PlatformVariant -> f PlatformVariant)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(PlatformVariant -> f PlatformVariant) -> Config -> f Config
forall env. HasPlatform env => Lens' env PlatformVariant
Lens' Config PlatformVariant
platformVariantL
{-# INLINE platformVariantL #-}
instance HasGHCVariant GetPackageFileContext where
ghcVariantL :: SimpleGetter GetPackageFileContext GHCVariant
ghcVariantL = (Config -> Const r Config)
-> GetPackageFileContext -> Const r GetPackageFileContext
forall env. HasConfig env => Lens' env Config
Lens' GetPackageFileContext Config
configL((Config -> Const r Config)
-> GetPackageFileContext -> Const r GetPackageFileContext)
-> ((GHCVariant -> Const r GHCVariant) -> Config -> Const r Config)
-> (GHCVariant -> Const r GHCVariant)
-> GetPackageFileContext
-> Const r GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(GHCVariant -> Const r GHCVariant) -> Config -> Const r Config
forall env. HasGHCVariant env => SimpleGetter env GHCVariant
SimpleGetter Config GHCVariant
ghcVariantL
{-# INLINE ghcVariantL #-}
instance HasLogFunc GetPackageFileContext where
logFuncL :: Lens' GetPackageFileContext LogFunc
logFuncL = (Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasConfig env => Lens' env Config
Lens' GetPackageFileContext Config
configL((Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((LogFunc -> f LogFunc) -> Config -> f Config)
-> (LogFunc -> f LogFunc)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(LogFunc -> f LogFunc) -> Config -> f Config
forall env. HasLogFunc env => Lens' env LogFunc
Lens' Config LogFunc
logFuncL
instance HasRunner GetPackageFileContext where
runnerL :: Lens' GetPackageFileContext Runner
runnerL = (Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasConfig env => Lens' env Config
Lens' GetPackageFileContext Config
configL((Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((Runner -> f Runner) -> Config -> f Config)
-> (Runner -> f Runner)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(Runner -> f Runner) -> Config -> f Config
forall env. HasRunner env => Lens' env Runner
Lens' Config Runner
runnerL
instance HasStylesUpdate GetPackageFileContext where
stylesUpdateL :: Lens' GetPackageFileContext StylesUpdate
stylesUpdateL = (Runner -> f Runner)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasRunner env => Lens' env Runner
Lens' GetPackageFileContext Runner
runnerL((Runner -> f Runner)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((StylesUpdate -> f StylesUpdate) -> Runner -> f Runner)
-> (StylesUpdate -> f StylesUpdate)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(StylesUpdate -> f StylesUpdate) -> Runner -> f Runner
forall env. HasStylesUpdate env => Lens' env StylesUpdate
Lens' Runner StylesUpdate
stylesUpdateL
instance HasTerm GetPackageFileContext where
useColorL :: Lens' GetPackageFileContext Bool
useColorL = (Runner -> f Runner)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasRunner env => Lens' env Runner
Lens' GetPackageFileContext Runner
runnerL((Runner -> f Runner)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((Bool -> f Bool) -> Runner -> f Runner)
-> (Bool -> f Bool)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(Bool -> f Bool) -> Runner -> f Runner
forall env. HasTerm env => Lens' env Bool
Lens' Runner Bool
useColorL
termWidthL :: Lens' GetPackageFileContext Int
termWidthL = (Runner -> f Runner)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasRunner env => Lens' env Runner
Lens' GetPackageFileContext Runner
runnerL((Runner -> f Runner)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((Int -> f Int) -> Runner -> f Runner)
-> (Int -> f Int)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(Int -> f Int) -> Runner -> f Runner
forall env. HasTerm env => Lens' env Int
Lens' Runner Int
termWidthL
instance HasConfig GetPackageFileContext where
configL :: Lens' GetPackageFileContext Config
configL = (BuildConfig -> f BuildConfig)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasBuildConfig env => Lens' env BuildConfig
Lens' GetPackageFileContext BuildConfig
buildConfigL((BuildConfig -> f BuildConfig)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((Config -> f Config) -> BuildConfig -> f BuildConfig)
-> (Config -> f Config)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(BuildConfig -> Config)
-> (BuildConfig -> Config -> BuildConfig)
-> Lens BuildConfig BuildConfig Config Config
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
lens BuildConfig -> Config
bcConfig (\BuildConfig
x Config
y -> BuildConfig
x { bcConfig :: Config
bcConfig = Config
y })
{-# INLINE configL #-}
instance HasBuildConfig GetPackageFileContext where
buildConfigL :: Lens' GetPackageFileContext BuildConfig
buildConfigL = (GetPackageFileContext -> BuildConfig)
-> (GetPackageFileContext -> BuildConfig -> GetPackageFileContext)
-> Lens' GetPackageFileContext BuildConfig
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
lens GetPackageFileContext -> BuildConfig
ctxBuildConfig (\GetPackageFileContext
x BuildConfig
y -> GetPackageFileContext
x { ctxBuildConfig :: BuildConfig
ctxBuildConfig = BuildConfig
y })
instance HasPantryConfig GetPackageFileContext where
pantryConfigL :: Lens' GetPackageFileContext PantryConfig
pantryConfigL = (Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasConfig env => Lens' env Config
Lens' GetPackageFileContext Config
configL((Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((PantryConfig -> f PantryConfig) -> Config -> f Config)
-> (PantryConfig -> f PantryConfig)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(PantryConfig -> f PantryConfig) -> Config -> f Config
forall env. HasPantryConfig env => Lens' env PantryConfig
Lens' Config PantryConfig
pantryConfigL
instance HasProcessContext GetPackageFileContext where
processContextL :: Lens' GetPackageFileContext ProcessContext
processContextL = (Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext
forall env. HasConfig env => Lens' env Config
Lens' GetPackageFileContext Config
configL((Config -> f Config)
-> GetPackageFileContext -> f GetPackageFileContext)
-> ((ProcessContext -> f ProcessContext) -> Config -> f Config)
-> (ProcessContext -> f ProcessContext)
-> GetPackageFileContext
-> f GetPackageFileContext
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(ProcessContext -> f ProcessContext) -> Config -> f Config
forall env. HasProcessContext env => Lens' env ProcessContext
Lens' Config ProcessContext
processContextL
data DotCabalPath
= DotCabalModulePath !(Path Abs File)
| DotCabalMainPath !(Path Abs File)
| DotCabalFilePath !(Path Abs File)
| DotCabalCFilePath !(Path Abs File)
deriving (DotCabalPath -> DotCabalPath -> Bool
(DotCabalPath -> DotCabalPath -> Bool)
-> (DotCabalPath -> DotCabalPath -> Bool) -> Eq DotCabalPath
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: DotCabalPath -> DotCabalPath -> Bool
== :: DotCabalPath -> DotCabalPath -> Bool
$c/= :: DotCabalPath -> DotCabalPath -> Bool
/= :: DotCabalPath -> DotCabalPath -> Bool
Eq, Eq DotCabalPath
Eq DotCabalPath
-> (DotCabalPath -> DotCabalPath -> Ordering)
-> (DotCabalPath -> DotCabalPath -> Bool)
-> (DotCabalPath -> DotCabalPath -> Bool)
-> (DotCabalPath -> DotCabalPath -> Bool)
-> (DotCabalPath -> DotCabalPath -> Bool)
-> (DotCabalPath -> DotCabalPath -> DotCabalPath)
-> (DotCabalPath -> DotCabalPath -> DotCabalPath)
-> Ord DotCabalPath
DotCabalPath -> DotCabalPath -> Bool
DotCabalPath -> DotCabalPath -> Ordering
DotCabalPath -> DotCabalPath -> DotCabalPath
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
$ccompare :: DotCabalPath -> DotCabalPath -> Ordering
compare :: DotCabalPath -> DotCabalPath -> Ordering
$c< :: DotCabalPath -> DotCabalPath -> Bool
< :: DotCabalPath -> DotCabalPath -> Bool
$c<= :: DotCabalPath -> DotCabalPath -> Bool
<= :: DotCabalPath -> DotCabalPath -> Bool
$c> :: DotCabalPath -> DotCabalPath -> Bool
> :: DotCabalPath -> DotCabalPath -> Bool
$c>= :: DotCabalPath -> DotCabalPath -> Bool
>= :: DotCabalPath -> DotCabalPath -> Bool
$cmax :: DotCabalPath -> DotCabalPath -> DotCabalPath
max :: DotCabalPath -> DotCabalPath -> DotCabalPath
$cmin :: DotCabalPath -> DotCabalPath -> DotCabalPath
min :: DotCabalPath -> DotCabalPath -> DotCabalPath
Ord, Int -> DotCabalPath -> ShowS
[DotCabalPath] -> ShowS
DotCabalPath -> String
(Int -> DotCabalPath -> ShowS)
-> (DotCabalPath -> String)
-> ([DotCabalPath] -> ShowS)
-> Show DotCabalPath
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> DotCabalPath -> ShowS
showsPrec :: Int -> DotCabalPath -> ShowS
$cshow :: DotCabalPath -> String
show :: DotCabalPath -> String
$cshowList :: [DotCabalPath] -> ShowS
showList :: [DotCabalPath] -> ShowS
Show)
data DotCabalDescriptor
= DotCabalModule !ModuleName
| DotCabalMain !FilePath
| DotCabalFile !FilePath
| DotCabalCFile !FilePath
deriving (DotCabalDescriptor -> DotCabalDescriptor -> Bool
(DotCabalDescriptor -> DotCabalDescriptor -> Bool)
-> (DotCabalDescriptor -> DotCabalDescriptor -> Bool)
-> Eq DotCabalDescriptor
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
== :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
$c/= :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
/= :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
Eq, Eq DotCabalDescriptor
Eq DotCabalDescriptor
-> (DotCabalDescriptor -> DotCabalDescriptor -> Ordering)
-> (DotCabalDescriptor -> DotCabalDescriptor -> Bool)
-> (DotCabalDescriptor -> DotCabalDescriptor -> Bool)
-> (DotCabalDescriptor -> DotCabalDescriptor -> Bool)
-> (DotCabalDescriptor -> DotCabalDescriptor -> Bool)
-> (DotCabalDescriptor -> DotCabalDescriptor -> DotCabalDescriptor)
-> (DotCabalDescriptor -> DotCabalDescriptor -> DotCabalDescriptor)
-> Ord DotCabalDescriptor
DotCabalDescriptor -> DotCabalDescriptor -> Bool
DotCabalDescriptor -> DotCabalDescriptor -> Ordering
DotCabalDescriptor -> DotCabalDescriptor -> DotCabalDescriptor
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
$ccompare :: DotCabalDescriptor -> DotCabalDescriptor -> Ordering
compare :: DotCabalDescriptor -> DotCabalDescriptor -> Ordering
$c< :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
< :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
$c<= :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
<= :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
$c> :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
> :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
$c>= :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
>= :: DotCabalDescriptor -> DotCabalDescriptor -> Bool
$cmax :: DotCabalDescriptor -> DotCabalDescriptor -> DotCabalDescriptor
max :: DotCabalDescriptor -> DotCabalDescriptor -> DotCabalDescriptor
$cmin :: DotCabalDescriptor -> DotCabalDescriptor -> DotCabalDescriptor
min :: DotCabalDescriptor -> DotCabalDescriptor -> DotCabalDescriptor
Ord, Int -> DotCabalDescriptor -> ShowS
[DotCabalDescriptor] -> ShowS
DotCabalDescriptor -> String
(Int -> DotCabalDescriptor -> ShowS)
-> (DotCabalDescriptor -> String)
-> ([DotCabalDescriptor] -> ShowS)
-> Show DotCabalDescriptor
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> DotCabalDescriptor -> ShowS
showsPrec :: Int -> DotCabalDescriptor -> ShowS
$cshow :: DotCabalDescriptor -> String
show :: DotCabalDescriptor -> String
$cshowList :: [DotCabalDescriptor] -> ShowS
showList :: [DotCabalDescriptor] -> ShowS
Show)
newtype GetPackageFiles = GetPackageFiles
{ GetPackageFiles
-> forall env.
HasEnvConfig env =>
Path Abs File
-> RIO
env
(Map NamedComponent (Map ModuleName (Path Abs File)),
Map NamedComponent [DotCabalPath], Set (Path Abs File),
[PackageWarning])
getPackageFiles :: forall env. HasEnvConfig env
=> Path Abs File
-> RIO env
( Map NamedComponent (Map ModuleName (Path Abs File))
, Map NamedComponent [DotCabalPath]
, Set (Path Abs File)
, [PackageWarning]
)
}
instance Show GetPackageFiles where
show :: GetPackageFiles -> String
show GetPackageFiles
_ = String
"<GetPackageFiles>"
data PackageWarning
= UnlistedModulesWarning NamedComponent [ModuleName]