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)
prettyFieldGrammar :: CabalSpecVersion -> PrettyFieldGrammar s a -> s -> [PrettyField ()]
prettyFieldGrammar = flip fieldGrammarPretty
instance FieldGrammar 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
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 =
[ PrettyField () (toUTF8BS n) $ PP.vcat $ map PP.text $ lines s
| (n, s) <- xs
]
knownField _ = pure ()
deprecatedSince _ _ x = x
removedIn _ _ x = x
availableSince _ _ = id
hiddenField _ = PrettyFG (\_ -> mempty)
ppField :: FieldName -> Doc -> [PrettyField ()]
ppField name fielddoc
| PP.isEmpty fielddoc = []
| otherwise = [ PrettyField () name fielddoc ]