Cabal-3.6.0.0: src/Distribution/FieldGrammar/Pretty.hs
{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE MultiParamTypeClasses #-}
module Distribution.FieldGrammar.Pretty (
PrettyFieldGrammar,
prettyFieldGrammar,
) where
import Distribution.CabalSpecVersion
import Distribution.Compat.Lens
import Distribution.Compat.Newtype
import Distribution.Compat.Prelude
import Distribution.Fields.Field (FieldName)
import Distribution.Fields.Pretty (PrettyField (..))
import Distribution.Pretty (Pretty (..), showFreeText, showFreeTextV3)
import Distribution.Simple.Utils (toUTF8BS)
import Prelude ()
import Text.PrettyPrint (Doc)
import qualified Text.PrettyPrint as PP
import Distribution.FieldGrammar.Class
newtype PrettyFieldGrammar s a = PrettyFG
{ fieldGrammarPretty :: CabalSpecVersion -> s -> [PrettyField ()]
}
deriving (Functor)
instance Applicative (PrettyFieldGrammar s) where
pure _ = PrettyFG (\_ _ -> mempty)
PrettyFG f <*> PrettyFG x = PrettyFG (\v s -> f v s <> x v s)
-- | We can use 'PrettyFieldGrammar' to pp print the @s@.
--
-- /Note:/ there is not trailing @($+$ text "")@.
prettyFieldGrammar :: CabalSpecVersion -> PrettyFieldGrammar s a -> s -> [PrettyField ()]
prettyFieldGrammar = flip fieldGrammarPretty
instance FieldGrammar Pretty PrettyFieldGrammar where
blurFieldGrammar f (PrettyFG pp) = PrettyFG (\v -> pp v . aview f)
uniqueFieldAla fn _pack l = PrettyFG $ \_v s ->
ppField fn (pretty (pack' _pack (aview l s)))
booleanFieldDef fn l def = PrettyFG pp
where
pp _v s
| b == def = mempty
| otherwise = ppField fn (PP.text (show b))
where
b = aview l s
optionalFieldAla fn _pack l = PrettyFG pp
where
pp v s = case aview l s of
Nothing -> mempty
Just a -> ppField fn (prettyVersioned v (pack' _pack a))
optionalFieldDefAla fn _pack l def = PrettyFG pp
where
pp v s
| x == def = mempty
| otherwise = ppField fn (prettyVersioned v (pack' _pack x))
where
x = aview l s
freeTextField fn l = PrettyFG pp where
pp v s = maybe mempty (ppField fn . showFT) (aview l s) where
showFT | v >= CabalSpecV3_0 = showFreeTextV3
| otherwise = showFreeText
-- it's ok to just show, as showFreeText of empty string is empty.
freeTextFieldDef fn l = PrettyFG pp where
pp v s = ppField fn (showFT (aview l s)) where
showFT | v >= CabalSpecV3_0 = showFreeTextV3
| otherwise = showFreeText
freeTextFieldDefST = defaultFreeTextFieldDefST
monoidalFieldAla fn _pack l = PrettyFG pp
where
pp v s = ppField fn (prettyVersioned v (pack' _pack (aview l s)))
prefixedFields _fnPfx l = PrettyFG (\_ -> pp . aview l)
where
pp xs =
-- always print the field, even its Doc is empty.
-- i.e. don't use ppField
[ PrettyField () (toUTF8BS n) $ PP.vcat $ map PP.text $ lines s
| (n, s) <- xs
-- fnPfx `isPrefixOf` n
]
knownField _ = pure ()
deprecatedSince _ _ x = x
-- TODO: as PrettyFieldGrammar isn't aware of cabal-version: we output the field
-- this doesn't affect roundtrip as `removedIn` fields cannot be parsed
-- so invalid documents can be only manually constructed.
removedIn _ _ x = x
availableSince _ _ = id
hiddenField _ = PrettyFG (\_ -> mempty)
ppField :: FieldName -> Doc -> [PrettyField ()]
ppField name fielddoc
| PP.isEmpty fielddoc = []
| otherwise = [ PrettyField () name fielddoc ]