dhall-1.40.2: src/Dhall/Util.hs
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeApplications #-}
-- | Shared utility functions
module Dhall.Util
( snip
, snipDoc
, insert
, _ERROR
, Censor(..)
, Input(..)
, Transitivity(..)
, OutputMode(..)
, Output(..)
, getExpression
, getExpressionAndHeader
, getExpressionAndHeaderFromStdinText
, Header(..)
, CheckFailed(..)
, MultipleCheckFailed(..)
, handleMultipleChecksFailed
, renderExpression
) where
import Control.Exception (Exception (..))
import Control.Monad.IO.Class (MonadIO (..))
import Data.Bifunctor (first)
import Data.Either (lefts)
import Data.Foldable (toList)
import Data.List.NonEmpty (NonEmpty (..))
import Data.String (IsString)
import Data.Text (Text)
import Dhall.Parser (Header (..), ParseError)
import Dhall.Pretty (Ann, CharacterSet)
import Dhall.Src (Src)
import Dhall.Syntax (Expr, Import)
import Prettyprinter (Doc, Pretty)
import qualified Control.Exception
import qualified Data.Text
import qualified Data.Text.IO
import qualified Dhall.Parser
import qualified Dhall.Pretty
import qualified Prettyprinter as Pretty
import qualified Prettyprinter.Render.Terminal as Pretty.Terminal
import qualified Prettyprinter.Render.Text as Pretty.Text
import qualified System.Console.ANSI as ANSI
import qualified System.IO as IO
-- | Utility function to cut out the interior of a large text block
snip :: Text -> Text
snip text
| length ls <= numberOfLinesOfContext * 2 + 1 = text
| otherwise =
if Data.Text.last text == '\n' then preview else Data.Text.init preview
where
numberOfLinesOfContext = 20
ls = Data.Text.lines text
header = take numberOfLinesOfContext ls
footer = takeEnd numberOfLinesOfContext ls
excerpt = filter (Data.Text.any (/= ' ')) (header <> footer)
leadingSpaces =
Data.Text.length . Data.Text.takeWhile (== ' ')
minSpaces = minimum (map leadingSpaces excerpt)
maxLength = maximum (map Data.Text.length excerpt)
separator =
Data.Text.replicate minSpaces " "
<> Data.Text.replicate (maxLength - minSpaces) "="
preview =
Data.Text.unlines header
<> Data.Text.take 80 separator <> "\n"
<> Data.Text.unlines footer
{-| Like `snip`, but for `Doc`s
Note that this has to be opinionated and render ANSI color codes, but that
should be fine because we don't use this in a non-interactive context
-}
snipDoc :: Doc Ann -> Doc a
snipDoc doc = Pretty.align (Pretty.pretty (snip text))
where
stream = Dhall.Pretty.layout doc
ansiStream = fmap Dhall.Pretty.annToAnsiStyle stream
text = Pretty.Terminal.renderStrict ansiStream
takeEnd :: Int -> [a] -> [a]
takeEnd n l = go (drop n l) l
where
go (_:xs) (_:ys) = go xs ys
go _ r = r
-- | Function to insert an aligned pretty expression
insert :: Pretty a => a -> Doc Ann
insert expression =
"↳ " <> Pretty.align (snipDoc (Pretty.pretty expression))
-- | Prefix used for error messages
_ERROR :: IsString string => string
_ERROR = "\ESC[1;31mError\ESC[0m"
get
:: (String -> Text -> Either ParseError a)
-> Censor
-> InputOrTextFromStdin
-> IO a
get parser censor input = do
inText <-
case input of
Input_ (InputFile file) -> Data.Text.IO.readFile file
Input_ StandardInput -> Data.Text.IO.getContents
StdinText _ text -> pure text
let name =
case input of
Input_ (InputFile file) -> file
Input_ StandardInput -> "(input)"
StdinText inputName _ -> inputName
let result = parser name inText
let censoredResult =
case censor of
NoCensor -> result
Censor -> first Dhall.Parser.censor result
throws censoredResult
{-| Convenience utility for converting `Either`-based exceptions to `IO`-based
exceptions
-}
throws :: (Exception e, MonadIO io) => Either e a -> io a
throws (Left e) = liftIO (Control.Exception.throwIO e)
throws (Right r) = return r
-- | Set to `Censor` if you want to censor error text that might include secrets
data Censor = NoCensor | Censor
-- | Path to input
data Input = StandardInput | InputFile FilePath deriving (Eq)
-- | Path to input or raw input text, necessary since we can't read STDIN twice
data InputOrTextFromStdin
= Input_ Input
| StdinText String Text
-- ^ @StdinText name text@ where name is a user-friendly name describing the
-- input expression, used in parsing error messages
{-| Specifies whether or not an input's transitive dependencies should also be
processed. Transitive dependencies are restricted to relative file imports.
-}
data Transitivity
= NonTransitive
-- ^ Do not process transitive dependencies
| Transitive
-- ^ Process transitive dependencies in the same way
-- | Path to output
data Output = StandardOutput | OutputFile FilePath
{-| Some command-line subcommands can either `Write` their input or `Check`
that the input has already been modified. This type is shared between them
to record that choice.
-}
data OutputMode = Write | Check
-- | A check failure corresponding to a single input.
-- This type is intended to be used with 'MultipleCheckFailed' for error
-- reporting.
newtype CheckFailed = CheckFailed { input :: Input }
-- | Exception thrown when the @--check@ flag to a command-line subcommand fails
data MultipleCheckFailed = MultipleCheckFailed
{ command :: Text
, modified :: Text
, inputs :: NonEmpty Input
}
instance Exception MultipleCheckFailed
instance Show MultipleCheckFailed where
show MultipleCheckFailed{..} =
_ERROR <> ": ❰dhall " <> command_ <> " --check❱ failed on:\n\
\\n" <> files <>
"\n\
\You ran ❰dhall " <> command_ <> " --check❱, but the input appears to have not\n\
\been " <> modified_ <> " before, or was changed since the last time the input\n\
\was " <> modified_ <> ".\n"
where
modified_ = Data.Text.unpack modified
command_ = Data.Text.unpack command
files = unlines . map format $ toList inputs
format input = case input of
StandardInput -> "↳ (stdin)"
InputFile file -> "↳ " <> file
-- | Run IO for multiple inputs, then collate all the check failures before
-- throwing if there was any failure
handleMultipleChecksFailed
:: (Foldable t, Traversable t)
=> Text
-> Text
-> (a -> IO (Either CheckFailed ()))
-> t a
-> IO ()
handleMultipleChecksFailed command modified f xs = post =<< mapM f xs
where
post results =
case lefts (toList results) of
[] -> pure ()
cf:cfs -> Control.Exception.throwIO $ MultipleCheckFailed
{ command
, modified
, inputs = fmap input (cf:|cfs)
}
-- | Convenient utility for retrieving an expression
getExpression :: Censor -> Input -> IO (Expr Src Import)
getExpression censor = get Dhall.Parser.exprFromText censor . Input_
-- | Convenient utility for retrieving an expression along with its header
getExpressionAndHeader :: Censor -> Input -> IO (Header, Expr Src Import)
getExpressionAndHeader censor =
get Dhall.Parser.exprAndHeaderFromText censor . Input_
-- | Convenient utility for retrieving an expression along with its header from
-- | text already read from STDIN (so it's not re-read)
getExpressionAndHeaderFromStdinText
:: Censor -> String -> Text -> IO (Header, Expr Src Import)
getExpressionAndHeaderFromStdinText censor inputName =
get Dhall.Parser.exprAndHeaderFromText censor . StdinText inputName
{-| Convenient utility to output an expression either to a file
or to stdout.
-}
renderExpression :: Pretty a => CharacterSet -> Bool -> Maybe FilePath -> Expr Src a -> IO ()
renderExpression characterSet plain output expression = do
let document = Dhall.Pretty.prettyCharacterSet characterSet expression
let stream = Dhall.Pretty.layout document
case output of
Nothing -> do
supportsANSI <- ANSI.hSupportsANSI IO.stdout
let ansiStream =
if supportsANSI && not plain
then fmap Dhall.Pretty.annToAnsiStyle stream
else Pretty.unAnnotateS stream
Pretty.Terminal.renderIO IO.stdout ansiStream
Data.Text.IO.putStrLn ""
Just file_ ->
IO.withFile file_ IO.WriteMode $ \h -> do
Pretty.Text.renderIO h stream
Data.Text.IO.hPutStrLn h ""