Reorganisation of the source tree
[ghc-hetmet.git] / compiler / main / PprTyThing.hs
1 -----------------------------------------------------------------------------
2 --
3 -- Pretty-printing TyThings
4 --
5 -- (c) The GHC Team 2005
6 --
7 -----------------------------------------------------------------------------
8
9 module PprTyThing (
10         pprTyThing,
11         pprTyThingInContext,
12         pprTyThingLoc,
13         pprTyThingInContextLoc,
14         pprTyThingHdr
15   ) where
16
17 #include "HsVersions.h"
18
19 import qualified GHC
20 import GHC ( TyThing(..), SrcLoc )
21 import Outputable
22
23 -- -----------------------------------------------------------------------------
24 -- Pretty-printing entities that we get from the GHC API
25
26 -- This should be a good source of sample code for using the GHC API to
27 -- inspect source code entities.
28
29 -- | Pretty-prints a 'TyThing' with its defining location.
30 pprTyThingLoc :: Bool -> TyThing -> SDoc
31 pprTyThingLoc exts tyThing 
32   = showWithLoc loc (pprTyThing exts tyThing)
33   where loc = GHC.nameSrcLoc (GHC.getName tyThing)
34
35 -- | Pretty-prints a 'TyThing'.
36 pprTyThing :: Bool -> TyThing -> SDoc
37 pprTyThing exts (AnId id)          = pprId         exts id
38 pprTyThing exts (ADataCon dataCon) = pprDataConSig exts dataCon
39 pprTyThing exts (ATyCon tyCon)     = pprTyCon      exts tyCon
40 pprTyThing exts (AClass cls)       = pprClass      exts cls
41         
42 -- | Like 'pprTyThingInContext', but adds the defining location.
43 pprTyThingInContextLoc :: Bool -> TyThing -> SDoc
44 pprTyThingInContextLoc exts tyThing 
45   = showWithLoc loc (pprTyThingInContext exts tyThing)
46   where loc = GHC.nameSrcLoc (GHC.getName tyThing)
47
48 -- | Pretty-prints a 'TyThing' in context: that is, if the entity
49 -- is a data constructor, record selector, or class method, then 
50 -- the entity's parent declaration is pretty-printed with irrelevant
51 -- parts omitted.
52 pprTyThingInContext :: Bool -> TyThing -> SDoc
53 pprTyThingInContext exts (AnId id)          = pprIdInContext exts id
54 pprTyThingInContext exts (ADataCon dataCon) = pprDataCon exts dataCon
55 pprTyThingInContext exts (ATyCon tyCon)     = pprTyCon   exts tyCon
56 pprTyThingInContext exts (AClass cls)       = pprClass   exts cls
57
58 -- | Pretty-prints the 'TyThing' header. For functions and data constructors
59 -- the function is equivalent to 'pprTyThing' but for type constructors
60 -- and classes it prints only the header part of the declaration.
61 pprTyThingHdr :: Bool -> TyThing -> SDoc
62 pprTyThingHdr exts (AnId id)          = pprId         exts id
63 pprTyThingHdr exts (ADataCon dataCon) = pprDataConSig exts dataCon
64 pprTyThingHdr exts (ATyCon tyCon)     = pprTyConHdr   exts tyCon
65 pprTyThingHdr exts (AClass cls)       = pprClassHdr   exts cls
66         
67 pprTyConHdr exts tyCon =
68   ptext keyword <+> ppr_bndr tyCon <+> hsep (map ppr vars)
69   where
70     vars | GHC.isPrimTyCon tyCon || 
71            GHC.isFunTyCon tyCon = take (GHC.tyConArity tyCon) GHC.alphaTyVars
72          | otherwise = GHC.tyConTyVars tyCon
73
74     keyword | GHC.isSynTyCon tyCon = SLIT("type")
75             | GHC.isNewTyCon tyCon = SLIT("newtype")
76             | otherwise            = SLIT("data")
77
78 pprDataConSig exts dataCon =
79   ppr_bndr dataCon <+> dcolon <+> pprType exts (GHC.dataConType dataCon)
80
81 pprClassHdr exts cls =
82   let (tyVars, funDeps) = GHC.classTvsFds cls
83   in ptext SLIT("class") <+> 
84      GHC.pprThetaArrow (GHC.classSCTheta cls) <+>
85      ppr_bndr cls <+>
86      hsep (map ppr tyVars) <+>
87      GHC.pprFundeps funDeps
88
89 pprIdInContext exts id
90   | GHC.isRecordSelector id               = pprRecordSelector exts id
91   | Just cls <- GHC.isClassOpId_maybe id  = pprClassOneMethod exts cls id
92   | otherwise                             = pprId exts id
93
94 pprRecordSelector exts id
95   = pprAlgTyCon exts tyCon show_con show_label
96   where
97         (tyCon,label) = GHC.recordSelectorFieldLabel id
98         show_con dataCon  = label `elem` GHC.dataConFieldLabels dataCon
99         show_label label' = label == label'
100
101 pprId exts id
102   = hang (ppr_bndr id <+> dcolon) 2 
103         (pprType exts (GHC.idType id))
104
105 pprType True  ty = ppr ty
106 pprType False ty = ppr (GHC.dropForAlls ty)
107
108 pprTyCon exts tyCon
109   | GHC.isSynTyCon tyCon
110   = let rhs_type = GHC.synTyConRhs tyCon
111     in hang (pprTyConHdr exts tyCon <+> equals) 2 (pprType exts rhs_type)
112   | otherwise
113   = pprAlgTyCon exts tyCon (const True) (const True)
114
115 pprAlgTyCon exts tyCon ok_con ok_label
116   | gadt      = pprTyConHdr exts tyCon <+> ptext SLIT("where") $$ 
117                    nest 2 (vcat (ppr_trim show_con datacons))
118   | otherwise = hang (pprTyConHdr exts tyCon)
119                    2 (add_bars (ppr_trim show_con datacons))
120   where
121     datacons = GHC.tyConDataCons tyCon
122     gadt = any (not . GHC.isVanillaDataCon) datacons
123
124     show_con dataCon
125       | ok_con dataCon = Just (pprDataConDecl exts gadt ok_label dataCon)
126       | otherwise      = Nothing
127
128 pprDataCon exts dataCon = pprAlgTyCon exts tyCon (== dataCon) (const True)
129   where tyCon = GHC.dataConTyCon dataCon
130
131 pprDataConDecl exts gadt_style show_label dataCon
132   | not gadt_style = ppr_fields tys_w_strs
133   | otherwise      = ppr_bndr dataCon <+> dcolon <+> 
134                         sep [ ppr_tvs, GHC.pprThetaArrow theta, pp_tau ]
135   where
136     (tyvars, theta, argTypes, tyCon, res_tys) = GHC.dataConSig dataCon
137     labels = GHC.dataConFieldLabels dataCon
138     qualVars = filter (flip notElem (GHC.tyConTyVars tyCon)) tyvars
139     stricts = GHC.dataConStrictMarks dataCon
140     tys_w_strs = zip stricts argTypes
141
142     ppr_tvs 
143         | null qualVars = empty
144         | otherwise     = ptext SLIT("forall") <+> 
145                                 hsep (map ppr qualVars) <> dot
146
147         -- printing out the dataCon as a type signature, in GADT style
148     pp_tau = foldr add pp_res_ty tys_w_strs
149     pp_res_ty = ppr_bndr tyCon <+> hsep (map GHC.pprParendType res_tys)
150     add (str,ty) pp_ty = pprBangTy str ty <+> arrow <+> pp_ty
151
152     pprParendBangTy (strict,ty)
153         | GHC.isMarkedStrict strict = char '!' <> GHC.pprParendType ty
154         | otherwise                 = GHC.pprParendType ty
155
156     pprBangTy strict ty
157         | GHC.isMarkedStrict strict = char '!' <> ppr ty
158         | otherwise                 = ppr ty
159
160     maybe_show_label (lbl,(strict,tp))
161         | show_label lbl = Just (ppr lbl <+> dcolon <+> pprBangTy strict tp)
162         | otherwise      = Nothing
163
164     ppr_fields [ty1, ty2]
165         | GHC.dataConIsInfix dataCon && null labels
166         = sep [pprParendBangTy ty1, ppr dataCon, pprParendBangTy ty2]
167     ppr_fields fields
168         | null labels
169         = ppr_bndr dataCon <+> sep (map pprParendBangTy fields)
170         | otherwise
171         = ppr_bndr dataCon <+> 
172                 braces (sep (punctuate comma (ppr_trim maybe_show_label 
173                                         (zip labels fields))))
174
175 pprClass exts cls
176   | null methods = 
177         pprClassHdr exts cls
178   | otherwise = 
179         hang (pprClassHdr exts cls <+> ptext SLIT("where"))
180             2 (vcat (map (pprClassMethod exts) methods))
181   where
182         methods = GHC.classMethods cls
183
184 pprClassOneMethod exts cls this_one = 
185   hang (pprClassHdr exts cls <+> ptext SLIT("where"))
186         2 (vcat (ppr_trim show_meth methods))
187   where
188         methods = GHC.classMethods cls
189         show_meth id | id == this_one = Just (pprClassMethod exts id)
190                      | otherwise      = Nothing
191
192 pprClassMethod exts id =
193   hang (ppr_bndr id <+> dcolon) 2 (pprType exts (classOpType id))
194   where
195   -- Here's the magic incantation to strip off the dictionary
196   -- from the class op type.  Stolen from IfaceSyn.tyThingToIfaceDecl.
197   classOpType id = GHC.funResultTy rho_ty
198      where (_sel_tyvars, rho_ty) = GHC.splitForAllTys (GHC.idType id)
199
200 ppr_trim :: (a -> Maybe SDoc) -> [a] -> [SDoc]
201 ppr_trim show xs
202   = snd (foldr go (False, []) xs)
203   where
204     go x (eliding, so_far)
205         | Just doc <- show x = (False, doc : so_far)
206         | otherwise = if eliding then (True, so_far)
207                                  else (True, ptext SLIT("...") : so_far)
208
209 add_bars []      = empty
210 add_bars [c]     = equals <+> c
211 add_bars (c:cs)  = sep ((equals <+> c) : map (char '|' <+>) cs)
212
213 -- Wrap operators in ()
214 ppr_bndr :: GHC.NamedThing a => a -> SDoc
215 ppr_bndr a = GHC.pprParenSymName a
216
217 showWithLoc :: SrcLoc -> SDoc -> SDoc
218 showWithLoc loc doc 
219     = hang doc 2 (char '\t' <> comment <+> GHC.pprDefnLoc loc)
220                 -- The tab tries to make them line up a bit
221   where
222     comment = ptext SLIT("--")
223