1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
|
module AbstractHaskell.Printer
( Options (..), defaultOptions, pPrint, ppProg, ppHeader, ppImports
, ppDecls
) where
import Text.Pretty
import AbstractHaskell.Types
import AbstractHaskell.Goodies (tyVarsOf)
data Options = Options
{ currentModule :: String
, qualImpModule :: String -> Bool
}
defaultOptions :: Options
defaultOptions = Options { currentModule = "", qualImpModule = const False }
pPrint :: Doc -> String
pPrint = showWidth 80
ppProg :: Options -> Prog -> Doc
ppProg opts (Prog m is ts fs os) = compose (<$+$>)
[ ppHeader opts' m ts fs
, ppImports opts' is
, ppDecls opts' os ts fs
]
where opts' = opts { currentModule = m }
ppHeader :: Options -> String -> [TypeDecl] -> [FuncDecl] -> Doc
opts m ts fs = indent $ sep
[ text "module" <+> text m
, ppExports opts ts fs
, text "where"
]
ppDecls :: Options -> [OpDecl] -> [TypeDecl] -> [FuncDecl] -> Doc
ppDecls opts os ts fs = compose (<$+$>)
[ ppOpDecls os
, ppTypeDecls opts ts
, ppFuncDecls opts fs
]
ppExports :: Options -> [TypeDecl] -> [FuncDecl] -> Doc
ppExports opts ts fs = tupledSpaced $ filter (not . isEmpty)
$ map ppTypeExport ts ++ map ppFuncExport fs
where
ppTypeExport :: TypeDecl -> Doc
ppTypeExport (Type qn vis _ _)
| vis == Public = ppQName opts qn <+> text "(..)"
| otherwise = empty
ppTypeExport (TypeSyn qn vis _ _)
| vis == Public = ppQName opts qn
| otherwise = empty
ppTypeExport (Instance _ _ _ _) = empty
ppFuncExport :: FuncDecl -> Doc
ppFuncExport (Func _ qn _ vis _ _)
| vis == Public = ppPrefixQOp opts qn
| otherwise = empty
ppImports :: Options -> [String] -> Doc
ppImports opts = vsep . map (ppImport opts)
ppImport :: Options -> String -> Doc
ppImport opts imp
| qualImpModule opts imp = indent $ fillSep $ map text
["import", "qualified", imp]
| otherwise = indent $ text "import" <+> text imp
ppOpDecls :: [OpDecl] -> Doc
ppOpDecls = vsep . map ppOpDecl
ppOpDecl :: OpDecl -> Doc
ppOpDecl (Op qn fix prec) = ppFixity fix <+> int prec <+> ppInfixOp (snd qn)
ppFixity :: Fixity -> Doc
ppFixity InfixOp = text "infix"
ppFixity InfixlOp = text "infixl"
ppFixity InfixrOp = text "infixr"
ppTypeDecls :: Options -> [TypeDecl] -> Doc
ppTypeDecls opts = compose (<$+$>) . map (ppTypeDecl opts)
ppTypeDecl :: Options -> TypeDecl -> Doc
ppTypeDecl opts (TypeSyn qname _ vs ty) = indent $
text "type" <+> ppName qname <+> fillSep (map ppTypeVar vs)
</> equals <+> ppTypeExp opts ty
ppTypeDecl opts (Type qname _ vs cs)
| null cs = empty
| otherwise = indent $
(text "data" <+> ppName qname <+> fillSep (map ppTypeVar vs))
$$ ppConsDecls opts cs
ppTypeDecl opts (Instance qname ty ctxts rs) = indent $
text "instance" <+> ppContexts opts ctxts
<+> ppQName opts qname <+> ppTypeExpr opts 2 ty
<+> (text "where" $$ vsep (map ppInstRule rs))
where ppInstRule ((_, f), r) = ppRule opts f r
ppConsDecls :: Options -> [ConsDecl] -> Doc
ppConsDecls o cs = vsep $ zipWith (<+>) (equals : repeat bar)
(map (ppConsDecl o) cs)
ppConsDecl :: Options -> ConsDecl -> Doc
ppConsDecl o (Cons (_, qn) _ _ tys) = indent $ fillSep
$ ppPrefixOp qn : map (ppTypeExpr o 2) tys
ppContexts :: Options -> [Context] -> Doc
ppContexts opts cs
| null cs = empty
| otherwise = tupled (map (ppContext opts) cs) <+> doubleArrow
ppContext :: Options -> Context -> Doc
ppContext opts (Context qn ts) = ppTypeExp opts (TCons qn ts)
ppTypeExp :: Options -> TypeExpr -> Doc
ppTypeExp o = ppTypeExpr o 0
ppTypeExpr :: Options -> Int -> TypeExpr -> Doc
ppTypeExpr _ _ (TVar v) = ppTypeVar v
ppTypeExpr o p (FuncType t1 t2) = parensIf (p > 0) $
ppTypeExpr o 1 t1 </> rarrow <+> ppTypeExp o t2
ppTypeExpr o p (TCons qn tys)
| isList qn && length tys == 1 = brackets (ppTypeExp o (head tys))
| isTuple qn = tupled (map (ppTypeExp o) tys)
| otherwise = parensIf (p > 1 && not (null tys))
$ fillSep
$ ppQName o qn : map (ppTypeExpr o 2) tys
ppTypeExpr o p (ForallType vs cx t) = parensIf (p > 0) $
text "forall" <+> fillSep (map ppTypeVar vs) <+> dot <+> ppContexts o cx <+> ppTypeExp o t
ppTypeVar :: TVarIName -> Doc
ppTypeVar (_, name) = text name
ppFunc :: FuncDecl -> Doc
ppFunc = ppFuncDecl defaultOptions
ppFuncDecls :: Options -> [FuncDecl] -> Doc
ppFuncDecls opts = compose (<$+$>) . map (ppFuncDecl opts)
ppFuncDecl :: Options -> FuncDecl -> Doc
ppFuncDecl opts (Func cmt (_,name) _ _ ty (Rules rs))
= ppComment cmt
$$ indent (ppTypeSig opts name ty)
$$ vsep (map (ppRule opts name) rs)
ppFuncDecl _ (Func _ _ _ _ _ External) = empty
ppComment :: String -> Doc
= vsep . map (\c -> text "---" <+> text c) . lines
ppTypeSig :: Options -> String -> TypeSig -> Doc
ppTypeSig _ _ Untyped = empty
ppTypeSig opts f (CType ctxt ty) = hsep [ ppPrefixOp f, doubleColon
, ppScopedTyVars ty
, ppContexts opts ctxt
, ppTypeExp opts ty
]
ppScopedTyVars :: TypeExpr -> Doc
ppScopedTyVars ty
| null tvs = empty
| otherwise = text "forall" <+> fillSep (map ppTypeVar tvs) <+> dot
where tvs = tyVarsOf ty
ppRule :: Options -> String -> Rule -> Doc
ppRule opts f (Rule ps rhs ds) = indent $
hsep (ppPrefixOp f : map (ppPattern opts 1) ps)
<+> equals </> ppRhs opts rhs $$ ppLocalDecls opts ds
ppRhs :: Options -> Rhs -> Doc
ppRhs opts (SimpleRhs e) = ppExpr opts 0 e
ppRhs opts (GuardedRhs gs) = indent $ vsep (map (ppCond opts) gs)
ppCond :: Options -> (Expr, Expr) -> Doc
ppCond opts (c, e) = bar <+> ppExpr opts 0 c </> equals <+> ppExpr opts 0 e
ppLocalDecls :: Options -> [LocalDecl] -> Doc
ppLocalDecls opts ds
| null ds = empty
| otherwise = text "where" $$ ppBlock opts ds
ppBlock :: Options -> [LocalDecl] -> Doc
ppBlock opts ds = align ((compose (<$!$>)) (map (ppLocalDecl opts) ds))
ppLocalDecl :: Options -> LocalDecl -> Doc
ppLocalDecl opts (LocalFunc f) = ppFuncDecl opts f
ppLocalDecl opts (LocalPat p e ds) = indent $
ppPattern opts 0 p <+> equals <+> ppExpr opts 0 e
$$ ppLocalDecls opts ds
ppExp :: Expr -> Doc
ppExp = ppExpr defaultOptions 0
ppExpr :: Options -> Int -> Expr -> Doc
ppExpr _ _ (Var v) = ppVar v
ppExpr _ _ (Lit l) = ppLiteral l
ppExpr opts _ (Symbol op) = ppPrefixQOp opts op
ppExpr opts p (Apply e1 e2) = parensIf (p > 1) $
fillSep [ppExpr opts 1 e1, ppExpr opts 2 e2]
ppExpr opts p (InfixApply e1 op e2) = parensIf (p > 0) $
fillSep [ppExpr opts 1 e1 <+> ppInfixQOp opts op, ppExpr opts 1 e2]
ppExpr opts p (Lambda ps e) = parensIf (p > 0) $
fillSep [ char '\\' <> hsep (map (ppPattern opts 1) ps) <+> rarrow
, ppExpr opts 0 e
]
ppExpr opts p (Let ds e) = parensIf (p > 0) $
sep [text "let" <+> ppBlock opts ds, text "in" <+> ppExpr opts 0 e]
ppExpr opts p (DoExpr sts) = parensIf (p > 0) $
text "do" <+> vsep (map (ppStmt opts) sts)
ppExpr opts _ (ListComp e qs) = brackets $
ppExpr opts 0 e <+> bar <+> sequence (map (ppStmt opts) qs)
ppExpr opts p (Case e bs) = parensIf (p > 0)
(text "case" <+> ppExpr opts 0 e <+> text "of"
$$ align (vsep (map (ppBranchExpr opts) bs)))
ppExpr opts p (Typed e ty) = parensIf (p > 0) $
ppExpr opts 0 e <+> doubleColon <+> ppTypeExp opts ty
ppExpr opts p (IfThenElse c t e) = parensIf (p > 0) $
text "if" <+> fillSep [ ppExpr opts 0 c
, text "then" <+> ppExpr opts 0 t
, text "else" <+> ppExpr opts 0 e
]
ppExpr opts _ (Tuple es) = tupled (map (ppExpr opts 0) es)
ppExpr opts _ (List es) = list (map (ppExpr opts 0) es)
ppStmt :: Options -> Statement -> Doc
ppStmt opts (SExpr e) = ppExpr opts 0 e
ppStmt opts (SPat p e) = fillSep [ppPattern opts 0 p, larrow, ppExpr opts 0 e]
ppStmt opts (SLet ds) = text "let" <+> ppBlock opts ds
ppPattern :: Options -> Int -> Pattern -> Doc
ppPattern _ _ (PVar v) = ppVar v
ppPattern opts _ (PLit l) = ppLitPattern opts l
ppPattern opts p (PComb c ts) = parensIf (p > 0 && not (null ts))
$ hsep (ppQName opts c : map (ppPattern opts 1) ts)
ppPattern opts _ (PAs v t) = ppVar v <> at <> ppPattern opts 1 t
ppPattern opts _ (PTuple ts) = tupled (map (ppPattern opts 0) ts)
ppPattern opts _ (PList ts) = list (map (ppPattern opts 0) ts)
ppVar :: VarIName -> Doc
ppVar (_, name) = text name
ppLitPattern :: Options -> Literal -> Doc
ppLitPattern _ l = ppLiteral l
ppBranchExpr :: Options -> BranchExpr -> Doc
ppBranchExpr opts (Branch p e) = indent $
ppPattern opts 0 p <+> rarrow <+> ppExpr opts 0 e
ppLiteral :: Literal -> Doc
ppLiteral (Intc i) = int i
ppLiteral (Floatc f) = float f
ppLiteral (Charc c) = text (show c)
ppLiteral (Stringc s) = text (show s)
ppPrefixOp :: String -> Doc
ppPrefixOp op = parensIf (isInfixOpName op) (text op)
ppInfixOp :: String -> Doc
ppInfixOp op = if isInfixOpName op then text op else bquotes (text op)
ppPrefixQOp :: Options -> QName -> Doc
ppPrefixQOp opts op = parensIf (isInfixOpName (snd op)) (ppQName opts op)
ppInfixQOp :: Options -> QName -> Doc
ppInfixQOp opts op = if isInfixOpName (snd op) then ppQName opts op
else bquotes (ppQName opts op)
ppName :: QName -> Doc
ppName (_, n) = text n
ppQName :: Options -> QName -> Doc
ppQName opts (modName, symName)
| modName == currentModule opts ||
not (qualImpModule opts modName) = text symName
| otherwise = text $ modName ++ "." ++ symName
isList :: QName -> Bool
isList (_, s) = s == "[]"
isTuple :: QName -> Bool
isTuple (_, [] ) = False
isTuple (_, (x:xs)) = (x == '(') && (p1_isTuple xs)
where
p1_isTuple [] = False
p1_isTuple (z:[]) = z == ')'
p1_isTuple (z1:z2:zs) = (z1 == ',') && (p1_isTuple (z2:zs))
isInfixOpName :: String -> Bool
isInfixOpName = all (`elem` infixIDs)
infixIDs :: String
infixIDs = "~!@#$%^&*+-=<>?./|\\:"
parensIf :: Bool -> Doc -> Doc
parensIf nested s
| nested = parens s
| otherwise = s
indent :: Doc -> Doc
indent = nest 2
sequence :: [Doc] -> Doc
sequence = fillSep . punctuate comma
fillEncloseSep :: Doc -> Doc -> Doc -> [Doc] -> Doc
fillEncloseSep l r _ [] = l <> r
fillEncloseSep l r s (d:ds) = enclose l r (fillCat (d:map (s<>) ds))
list :: [Doc] -> Doc
list = fillEncloseSep lbracket rbracket (comma <> space)
tupled :: [Doc] -> Doc
tupled = fillEncloseSep lparen rparen (comma <> space)
|