ormolu-0.0.2.0: src/Ormolu/Printer/Combinators.hs
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
-- | Printing combinators. The definitions here are presented in such an
-- order so you can just go through the Haddocks and by the end of the file
-- you should have a pretty good idea how to program rendering logic.
module Ormolu.Printer.Combinators
( -- * The 'R' monad
R,
runR,
getAnns,
getEnclosingSpan,
-- * Combinators
-- ** Basic
txt,
atom,
space,
newline,
inci,
located,
located',
locatedPat,
switchLayout,
Layout (..),
vlayout,
getLayout,
breakpoint,
breakpoint',
-- ** Formatting lists
sep,
sepSemi,
canUseBraces,
useBraces,
dontUseBraces,
-- ** Wrapping
BracketStyle (..),
sitcc,
backticks,
banana,
braces,
brackets,
parens,
parensHash,
pragmaBraces,
pragma,
-- ** Literals
comma,
-- ** Comments
HaddockStyle (..),
setLastCommentSpan,
getLastCommentSpan,
)
where
import Control.Monad
import Data.Data (Data)
import Data.List (intersperse)
import Data.Text (Text)
import GHC (Pat (XPat), XXPat)
import Ormolu.Printer.Comments
import Ormolu.Printer.Internal
import Ormolu.Utils (isModule)
import SrcLoc
----------------------------------------------------------------------------
-- Basic
-- | Enter a 'Located' entity. This combinator handles outputting comments
-- and sets layout (single-line vs multi-line) for the inner computation.
-- Roughly, the rule for using 'located' is that every time there is a
-- 'Located' wrapper, it should be “discharged” with a corresponding
-- 'located' invocation.
located ::
Data a =>
-- | Thing to enter
Located a ->
-- | How to render inner value
(a -> R ()) ->
R ()
located loc f = do
let withRealLocated (L l a) g =
case l of
UnhelpfulSpan _ -> return ()
RealSrcSpan l' -> g (L l' a)
withRealLocated loc spitPrecedingComments
let setEnclosingSpan =
case getLoc loc of
UnhelpfulSpan _ -> id
RealSrcSpan orf ->
if isModule (unLoc loc)
then id
else withEnclosingSpan orf
setEnclosingSpan $ switchLayout [getLoc loc] (f (unLoc loc))
withRealLocated loc spitFollowingComments
-- | A version of 'located' with arguments flipped.
located' ::
Data a =>
-- | How to render inner value
(a -> R ()) ->
-- | Thing to enter
Located a ->
R ()
located' = flip located
-- | A version of 'located' that works on 'Pat'.
--
-- Starting from GHC 8.8, @'LPat' == 'Pat'@. Located 'Pat's are always
-- constructed with the 'XPat' constructor, containing a @'Located' 'Pat'@.
--
-- Most of the time, we can just use 'p_pat' directly, because it handles
-- located 'Pat's. However, sometimes we want to use the location to render
-- something other than the given 'Pat'.
--
-- If given 'Pat' does not contain a location, we error out.
--
-- This should become unnecessary if
-- <https://gitlab.haskell.org/ghc/ghc/issues/17330> is ever fixed.
locatedPat ::
(Data (Pat pass), XXPat pass ~ Located (Pat pass)) =>
Pat pass ->
(Pat pass -> R ()) ->
R ()
locatedPat p f = case p of
XPat pat -> located pat f
_ -> error "locatedPat: Pat does not contain a location"
-- | Set layout according to combination of given 'SrcSpan's for a given.
-- Use this only when you need to set layout based on e.g. combined span of
-- several elements when there is no corresponding 'Located' wrapper
-- provided by GHC AST. It is relatively rare that this one is needed.
--
-- Given empty list this function will set layout to single line.
switchLayout ::
-- | Span that controls layout
[SrcSpan] ->
-- | Computation to run with changed layout
R () ->
R ()
switchLayout spans' = enterLayout (spansLayout spans')
-- | Which layout combined spans result in?
spansLayout :: [SrcSpan] -> Layout
spansLayout = \case
[] -> SingleLine
(x : xs) ->
if isOneLineSpan (foldr combineSrcSpans x xs)
then SingleLine
else MultiLine
-- | Insert a space if enclosing layout is single-line, or newline if it's
-- multiline.
--
-- > breakpoint = vlayout space newline
breakpoint :: R ()
breakpoint = vlayout space newline
-- | Similar to 'breakpoint' but outputs nothing in case of single-line
-- layout.
--
-- > breakpoint' = vlayout (return ()) newline
breakpoint' :: R ()
breakpoint' = vlayout (return ()) newline
----------------------------------------------------------------------------
-- Formatting lists
-- | Render a collection of elements inserting a separator between them.
sep ::
-- | Separator
R () ->
-- | How to render an element
(a -> R ()) ->
-- | Elements to render
[a] ->
R ()
sep s f xs = sequence_ (intersperse s (f <$> xs))
-- | Render a collection of elements layout-sensitively using given printer,
-- inserting semicolons if necessary and respecting 'useBraces' and
-- 'dontUseBraces' combinators.
--
-- > useBraces $ sepSemi txt ["foo", "bar"]
-- > == vlayout (txt "{ foo; bar }") (txt "foo\nbar")
--
-- > dontUseBraces $ sepSemi txt ["foo", "bar"]
-- > == vlayout (txt "foo; bar") (txt "foo\nbar")
sepSemi ::
-- | How to render an element
(a -> R ()) ->
-- | Elements to render
[a] ->
R ()
sepSemi f xs = vlayout singleLine multiLine
where
singleLine = do
ub <- canUseBraces
case xs of
[] -> when ub $ txt "{}"
xs' ->
if ub
then do
txt "{ "
sep (txt "; ") (dontUseBraces . f) xs'
txt " }"
else sep (txt "; ") f xs'
multiLine =
sep newline (dontUseBraces . f) xs
----------------------------------------------------------------------------
-- Wrapping
-- | 'BracketStyle' controlling how closing bracket is rendered.
data BracketStyle
= -- | Normal
N
| -- | Shifted one level
S
-- | Surround given entity by backticks.
backticks :: R () -> R ()
backticks m = do
txt "`"
m
txt "`"
-- | Surround given entity by banana brackets (i.e., from arrow notation.)
banana :: R () -> R ()
banana = brackets_ True "(|" "|)" N
-- | Surround given entity by curly braces @{@ and @}@.
braces :: BracketStyle -> R () -> R ()
braces = brackets_ False "{" "}"
-- | Surround given entity by square brackets @[@ and @]@.
brackets :: BracketStyle -> R () -> R ()
brackets = brackets_ False "[" "]"
-- | Surround given entity by parentheses @(@ and @)@.
parens :: BracketStyle -> R () -> R ()
parens = brackets_ False "(" ")"
-- | Surround given entity by @(# @ and @ #)@.
parensHash :: BracketStyle -> R () -> R ()
parensHash = brackets_ True "(#" "#)"
-- | Braces as used for pragmas: @{-#@ and @#-}@.
pragmaBraces :: R () -> R ()
pragmaBraces m = sitcc $ do
txt "{-#"
space
m
breakpoint
inci (txt "#-}")
-- | Surround the body with a pragma name and 'pragmaBraces'.
pragma ::
-- | Pragma text
Text ->
-- | Pragma body
R () ->
R ()
pragma pragmaText body = pragmaBraces $ do
txt pragmaText
breakpoint
body
-- | A helper for defining wrappers like 'parens' and 'braces'.
brackets_ ::
-- | Insert breakpoints around brackets
Bool ->
-- | Opening bracket
Text ->
-- | Closing bracket
Text ->
-- | Bracket style
BracketStyle ->
-- | Inner expression
R () ->
R ()
brackets_ needBreaks open close style m = sitcc (vlayout singleLine multiLine)
where
singleLine = do
txt open
when needBreaks space
m
when needBreaks space
txt close
multiLine = do
txt open
if needBreaks
then newline >> inci m
else space >> sitcc m
newline
case style of
N -> txt close
S -> inci (txt close)
----------------------------------------------------------------------------
-- Literals
-- | Print @,@.
comma :: R ()
comma = txt ","