stack-3.7.1: src/Stack/Types/CabalConfigKey.hs
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-|
Module : Stack.Types.CabalConfigKey
License : BSD-3-Clause
-}
module Stack.Types.CabalConfigKey
( CabalConfigKey (..)
, parseCabalConfigKey
) where
import Data.Aeson.Types
( FromJSON (..), FromJSONKey (..), FromJSONKeyFunction (..)
, withText
)
import qualified Data.Text as T
import Stack.Prelude
-- | Which packages do configure opts apply to?
data CabalConfigKey
= CCKTargets -- ^ See AGOTargets
| CCKLocals -- ^ See AGOLocals
| CCKEverything -- ^ See AGOEverything
| CCKPackage !PackageName -- ^ A specific package
deriving (Show, Read, Eq, Ord)
instance FromJSON CabalConfigKey where
parseJSON = withText "CabalConfigKey" parseCabalConfigKey
instance FromJSONKey CabalConfigKey where
fromJSONKey = FromJSONKeyTextParser parseCabalConfigKey
parseCabalConfigKey :: (Monad m, MonadFail m) => Text -> m CabalConfigKey
parseCabalConfigKey "$targets" = pure CCKTargets
parseCabalConfigKey "$locals" = pure CCKLocals
parseCabalConfigKey "$everything" = pure CCKEverything
parseCabalConfigKey name =
case parsePackageName $ T.unpack name of
Nothing -> fail $ "Invalid CabalConfigKey: " ++ show name
Just x -> pure $ CCKPackage x