The library is based on a single way to concatenate documents, which is associative and has both a left and right unit. This simple design leads to an efficient and short implementation. The simplicity is reflected in the predictable behaviour of the combinators which make them easy to use in practice.
Copyright 2000, Daan Leijen. All rights reserved.Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
This software is provided by the copyright holders “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright holders be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
nil document is called empty.
<$>. The operator
</> is used for soft line breaks.
align, fill and fillBreak. These
are very useful in practice.
fillSep and list.
renderPretty for pretty printing and renderCompact for compact output. The pretty printing algorithm also uses a ribbon-width now for even prettier output.
displayS for strings and displayIO for file based output.
Pretty class.
The concatenation operator <> is associative and has empty
as a left and right unit.
x <> (y <> z) = (x <> y) <> z x <> empty = x empty <> x = x
The text combinator is a homomorphism from string concatenation to document concatenation.
The combinator char behaves like one-element text.
text (s ++ t) = text s <> text t text "" = empty char c = text [c]
The nest combinator is a homomorphism from addition to document composition. nest
also distributes through document concatenation and is absorbed by text and align.
nest (i+j) x = nest i (nest j x) nest 0 x = x nest i (x <> y) = nest i x <> nest j y nest i empty = empty nest i (text s) = text s nest i (align x) = align x
The group combinator is absorbed by empty. It is commutative with nest
and align.
group (empty) = empty group (text s <> x) = text s <> group x group (nest i x) = nest i (group x) group (align x) = align (group x)
The align combinator is absorbed by empty and text.
align (empty) = empty align (text s) = text s align (align x) = align x
From the laws of the primitive combinators, we can derive many other laws for the
derived combinators. For example, the above operator <$>
is defined as:
x <$> y = x <> line <> y
It follows that <$> is associative and that <$> and <> associate with each other.
x <$> (y <$> z) = (x <$> y) <$> z x <> (y <$> z) = (x <> y) <$> z x <$> (y <> z) = (x <$> y) <> z
The same laws also hold for the other line break operators </>, <$$>
and <//>.
Reference guide
Documents
Doc
The abstract data type Doc represents pretty documents.
show
:: Doc -> String
Docis an instance of theShowclass.(show doc)pretty prints documentdocwith a page width of 100 characters and a ribbon width of 40 characters.
show (text "hello" <$> text "world")
Which would return the string
"hello\nworld", i.e.
hello
world
putDoc
:: Doc -> IO ()
The action(putDoc doc)pretty prints documentdocto the standard output. with a page width of 100 characters and a ribbon width of 40 characters.
main :: IO ()
main = do{ putDoc (text "hello" <+> text "world") }
Which would output
hello world
hPutDoc
:: Handle -> Doc -> IO ()
(hPutDoc handle doc)pretty prints documentdocto the file handlehandlewith a page width of 100 characters and a ribbon width of 40 characters.
main = do{ handle <- openFile "MyFile" WriteMode
; hPutDoc handle (vcat (map text
["vertical","text"]))
; hClose handle
}
empty
:: Doc
The empty document is, indeed, empty. Allthoughemptyhas no content, it does have a 'height' of 1 and behaves exactly like(text "")(and is therefore not a unit of<$>).
char
:: Char -> Doc
The document(char c)contains the literal characterc. The character shouldn't be a newline ('\n'), the functionlineshould be used for line breaks.
text
:: String -> Doc
The document(text s)contains the literal strings. The string shouldn't contain any newline ('\n') characters. If the string contains newline characters, the functionstringshould be used.
(<>)
:: Doc -> Doc -> Doc
infixr 6
The document(x <> y)concatenates documentxand documenty. It is an associative operation havingemptyas a left and right unit.
nest
:: Int -> Doc -> Doc
The document(nest i x)renders documentxwith the current indentation level increased byi(See alsohang,alignandindent).
nest 2 (text "hello" <$> text "world") <$> text "!"
outputs as:
hello
world
!
line
:: Doc
Thelinedocument advances to the next line and indents to the current nesting level. Documentlinebehaves like(text " ")if the line break is undone bygroup.
linebreak
:: Doc
Thelinebreakdocument advances to the next line and indents to the current nesting level. Documentlinebreakbehaves likeemptyif the line break is undone bygroup.
group
:: Doc -> Doc
Thegroupcombinator is used to specify alternative layouts. The document(group x)undoes all line breaks in documentx. The resulting line is added to the current line if that fits the page. Otherwise, the documentxis rendered without any changes.
softline
:: Doc
The documentsoftlinebehaves likespaceif the resulting output fits the page, otherwise it behaves likeline.
softbreak
:: Doc
The documentsoftbreakbehaves likeemptyif the resulting output fits the page, otherwise it behaves likeline.
The combinators in this section can not be descibed by Wadler's original combinators.
They align their output relative to the current output position –
in contrast to nest which always aligns to the current nesting level.
This deprives these combinators from being `optimal'. In practice however they
prove to be very useful. The combinators in this section should be used with care,
since they are more expensive than the other combinators. For example, align shouldn't be
used to pretty print all top-level declarations of a language, but using hang
for let expressions is fine.
align
:: Doc -> Doc
The document(align x)renders documentxwith the nesting level set to the current column. It is used for example to implementhang.As an example, we will put a document right above another one, regardless of the current nesting level:
x $$ y = align (x <$> y)
test = text "hi" <+> (text "nice" $$ text "world")
which will be layed out as:
hi nice
world
hang
:: Int -> Doc -> Doc
Thehangcombinator implements hanging indentation. The document(hang i x)renders documentxwith a nesting level set to the current column plusi. The following example uses hanging indentation for some text:
test = hang 4 (fillSep (map text
(words "the hang combinator indents these words !")))
Which lays out on a page with a width of 20 characters as:
the hang combinator
indents these
words !
The
hangcombinator is implemented as:
hang i x = align (nest i x)
indent
:: Int -> Doc -> Doc
The document(indent i x)indents documentxwithispaces.
test = indent 4 (fillSep (map text
(words "the indent combinator indents these words !")))
Which lays out with a page width of 20 as:
the indent
combinator
indents these
words !
encloseSep
:: Doc -> Doc -> Doc -> [Doc] -> Doc
The document(encloseSep l r sep xs)concatenates the documentsxsseperated bysepand encloses the resulting document bylandr. The documents are rendered horizontally if that fits the page. Otherwise they are aligned vertically. All seperators are put in front of the elements. For example, the combinatorlistcan be defined withencloseSep:
list xs = encloseSep lbracket rbracket comma xs
test = text "list" <+> (list (map int [10,200,3000]))
Which is layed out with a page width of 20 as:
list [10,200,3000]
But when the page width is 15, it is layed out as:
list [10
,200
,3000]
list
:: [Doc] -> Doc
The document(list xs)comma seperates the documentsxsand encloses them in square brackets. The documents are rendered horizontally if that fits the page. Otherwise they are aligned vertically. All comma seperators are put in front of the elements.
tupled
:: [Doc] -> Doc
The document(tupled xs)comma seperates the documentsxsand encloses them in parenthesis. The documents are rendered horizontally if that fits the page. Otherwise they are aligned vertically. All comma seperators are put in front of the elements.
semiBraces
:: [Doc] -> Doc
The document(semiBraces xs)seperates the documentsxswith semi colons and encloses them in braces. The documents are rendered horizontally if that fits the page. Otherwise they are aligned vertically. All semi colons are put in front of the elements.
(<+>)
:: Doc -> Doc -> Doc
infixr 6
The document(x <+> y)concatenates documentxandywith aspacein between.
(<$>)
:: Doc -> Doc -> Doc
infixr 5
The document(x <$> y)concatenates documentxandywith alinein between.
(</>)
:: Doc -> Doc -> Doc
infixr 5
The document(x </> y)concatenates documentxandywith asoftlinein between. This effectively putsxandyeither next to each other (with aspacein between) or underneath each other.
(<$$>)
:: Doc -> Doc -> Doc
infixr 5
The document(x <$$> y)concatenates documentxandywith alinebreakin between.
(<//>)
:: Doc -> Doc -> Doc
infixr 5
The document(x <//> y)concatenates documentxandywith asoftbreakin between. This effectively putsxandyeither right next to each other or underneath each other.
hsep
:: [Doc] -> Doc
The document(hsep xs)concatenates all documentsxshorizontally with(<+>).
vsep
:: [Doc] -> Doc
The document(vsep xs)concatenates all documentsxsvertically with(<$>). If agroupundoes the line breaks inserted byvsep, all documents are seperated with aspace.
someText = map text (words ("text to lay out"))
test = text "some" <+> vsep someText
This is layed out as:
some text
to
lay
out
The
aligncombinator can be used to align the documents under their first element
test = text "some" <+> align (vsep someText)
Which is printed as:
some text
to
lay
out
fillSep
:: [Doc] -> Doc
The document(fillSep xs)concatenates documentsxshorizontally with(<+>)as long as its fits the page, than inserts alineand continues doing that for all documents inxs.
fillSep xs = foldr (</>) empty xs
sep
:: [Doc] -> Doc
The document(sep xs)concatenates all documentsxseither horizontally with(<+>), if it fits the page, or vertically with(<$>).
sep xs = group (vsep xs)
hcat
:: [Doc] -> Doc
The document(hcat xs)concatenates all documentsxshorizontally with(<>).
vcat
:: [Doc] -> Doc
The document(vcat xs)concatenates all documentsxsvertically with(<$$>). If agroupundoes the line breaks inserted byvcat, all documents are directly concatenated.
fillCat
:: [Doc] -> Doc
The document(fillCat xs)concatenates documentsxshorizontally with(<>)as long as its fits the page, than inserts alinebreakand continues doing that for all documents inxs.
fillCat xs = foldr (<//>) empty xs
cat
:: [Doc] -> Doc
The document(cat xs)concatenates all documentsxseither horizontally with(<>), if it fits the page, or vertically with(<$$>).
cat xs = group (vcat xs)
punctuate
:: Doc -> [Doc] -> [Doc]
(punctuate p xs)concatenates all in documentsxswith documentpexcept for the last document.
someText = map text ["words","in","a","tuple"]
test = parens (align (cat (punctuate comma someText)))
This is layed out on a page width of 20 as:
(words,in,a,tuple)
But when the page width is 15, it is layed out as:
(words,
in,
a,
tuple)
(If you want put the commas in front of their elements instead of at the end, you should use
tupledor, in general,encloseSep.)
fill
:: Int -> Doc -> Doc
The document(fill i x)renders documentx. It than appends spaces until the width is equal toi. If the width ofxis already larger, nothing is appended. This combinator is quite useful in practice to output a list of bindings. The following example demonstrates this.
types = [("empty","Doc")
,("nest","Int -> Doc -> Doc")
,("linebreak","Doc")]
ptype (name,tp)
= fill 6 (text name) <+> text "::" <+> text tp
test = text "let" <+> align (vcat (map ptype types))
Which is layed out as:
let empty :: Doc
nest :: Int -> Doc -> Doc
linebreak :: Doc
fillBreak
:: Int -> Doc -> Doc
The document(fillBreak i x)first renders documentx. It than appends spaces untill the width is equal toi. If the width ofxis already larger thani, the nesting level is increased byiand alineis appended. When we redefineptypein the previous example to usefillBreak, we get a useful variation of the previous output:
ptype (name,tp)
= fillBreak 6 (text name) <+> text "::" <+> text tp
The output will now be:
let empty :: Doc
nest :: Int -> Doc -> Doc
linebreak
:: Doc
enclose
:: Doc ->Doc -> Doc -> Doc
The document(enclose l r x)encloses documentxbetween documentslandrusing(<>).
enclose l r x = l <> x <> r
squotes
:: Doc -> Doc
Document(squotes x)encloses documentxwith single quotes"'".
dquotes
:: Doc -> Doc
Document(dquotes x)encloses documentxwith double quotes'"'.
parens
:: Doc -> Doc
Document(parens x)encloses documentxin parenthesis,"("and")".
angles
:: Doc -> Doc
Document(angles x)encloses documentxin angles,"<"and">".
braces
:: Doc -> Doc
Document(braces x)encloses documentxin braces,"{"and"}".
brackets
:: Doc -> Doc
Document(brackets x)encloses documentxin square brackets,"["and"]".
lparen
:: Doc
The documentlparencontains a left parenthesis,"(".
rparen
:: Doc
The documentrparencontains a right parenthesis,")".
langle
:: Doc
The documentlanglecontains a left angle,"<".
rangle
:: Doc
The documentranglecontains a right angle,">".
lbrace
:: Doc
The documentlbracecontains a left brace,"{".
rbrace
:: Doc
The documentrbracecontains a right brace,"}".
lbracket
:: Doc
The documentlbracketcontains a left square bracket,"[".
rbracket
:: Doc
The documentrbracketcontains a right square bracket,"]".
squote
:: Doc
The documentsquotecontains a single quote,"'".
dquote
:: Doc
The documentdquotecontains a double quote,'"'.
semi
:: Doc
The documentsemicontains a semi colon,";".
colon
:: Doc
The documentcoloncontains a colon,":".
comma
:: Doc
The documentcommacontains a comma,",".
space
:: Doc
The documentspacecontains a single space,"" "".
x <+> y = x <> space <> y
dot
:: Doc
The documentdotcontains a single dot,".".
backslash
:: Doc
The documentbackslashcontains a back slash,"\".
equals
:: Doc
The documentequalscontains an equal sign,"=".
string
:: String -> Doc
The document(string s)concatenates all characters insusinglinefor newline characters andcharfor all other characters. It is used instead oftextwhenever the text contains newline characters.
int
:: Int -> Doc
The document(int i)shows the literal integeriusingtext.
integer
:: Integer -> Doc
The document(integer i)shows the literal integeriusingtext.
float
:: Float -> Doc
The document(float f)shows the literal floatfusingtext.
double
:: Double -> Doc
The document(double d)shows the literal doubledusingtext.
rational
:: Rational -> Doc
The document(rational r)shows the literal rationalrusingtext.
Pretty
The classPrettyhas two members:
class Pretty a where
pretty :: a -> Doc
prettyList :: [a] -> Doc
The member
prettyListis only used to define the instancePretty a => Pretty [a]. In normal circumstances only theprettyfunction is used. Library defined instances ofPrettyare(),Char,Int,Integer,Float,Double,Rational,Pretty a => Maybe a,Pretty a => [a],Pretty a,Pretty b => (a,b)andPretty a,Pretty b,Pretty c => (a,b,c).
SimpleDoc
The data typeSimpleDocrepresents rendered documents and is used by the display functions.
data SimpleDoc = SEmpty
| SChar Char SimpleDoc
| SText !Int String SimpleDoc
| SLine !Int SimpleDoc
The
IntinSTextcontains the length of the string. TheIntinSLinecontains the indentation for that line. The library provides two default display functionsdisplaySanddisplayIO. You can provide your own display function by writing a function from aSimpleDocto your own output format.
renderPretty
:: Float -> Int -> Doc -> SimpleDoc
This is the default pretty printer which is used byshow,putDocandhPutDoc.(renderPretty ribbonfrac width x)renders documentxwith a page width ofwidthand a ribbon width of(ribbonfrac * width)characters. The ribbon width is the maximal amount of non-indentation characters on a line. The parameterribbonfracshould be between 0.0 and 1.0. If it is lower or higher, the ribbon width will be0orwidthrespectively.
renderCompact
:: Doc -> SimpleDoc
(renderCompact x)renders documentxwithout adding any indentation. Since no 'pretty' printing is involved, this renderer is very fast. The resulting output contains fewer characters as a pretty printed version and can be used for output that is read by other programs.
displayS
:: SimpleDoc -> ShowS
(displayS simpleDoc)takes the outputsimpleDocfrom a rendering function and transforms it to aShowStype (for use in theShowclass).
showWidth :: Int -> Doc -> String
showWidth w x = displayS (renderPretty 0.4 w x) ""
displayIO
:: Handle -> SimpleDoc -> IO ()
(displayIO handle simpleDoc)writessimpleDocto the file handlehandle. This function is used for example byhPutDoc:
hPutDoc handle doc = displayIO handle (renderPretty 0.4 100 doc)
The design of a pretty-printer library.
In J. Jeuring and E. Meijer, editors, Advanced Functional Programming, Springer Verlag LNCS 925.
http://www.cs.chalmers.se/~rjmh/Papers/pretty.ps.
A Haskell pretty-printer library.
http://www.research.microsoft.com/~simonpj/Haskell/pretty.html.
Designing and Implementing Combinator Languages.
Advanced Functional Programming, Springer-Verlag, LNCS 1608:150-206.
http://www.cs.uu.nl/groups/ST/Software.
A prettier printer.
Draft paper.
http://cm.bell-labs.com/cm/cs/who/wadler/topics/language-design.html.