Add -XPackageImports, new syntax for package-qualified imports
[ghc-hetmet.git] / compiler / hsSyn / HsImpExp.lhs
1 %
2 % (c) The University of Glasgow 2006
3 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 %
5
6 HsImpExp: Abstract syntax: imports, exports, interfaces
7
8 \begin{code}
9 {-# OPTIONS -fno-warn-incomplete-patterns #-}
10 -- The above warning supression flag is a temporary kludge.
11 -- While working on this module you are encouraged to remove it and fix
12 -- any warnings in the module. See
13 --     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
14 -- for details
15
16 module HsImpExp where
17
18 import Module           ( ModuleName )
19 import HsDoc            ( HsDoc )
20
21 import Outputable
22 import FastString
23 import SrcLoc           ( Located(..) )
24 \end{code}
25
26 %************************************************************************
27 %*                                                                      *
28 \subsection{Import and export declaration lists}
29 %*                                                                      *
30 %************************************************************************
31
32 One per \tr{import} declaration in a module.
33 \begin{code}
34 type LImportDecl name = Located (ImportDecl name)
35
36 data ImportDecl name
37   = ImportDecl    (Located ModuleName)          -- module name
38                   (Maybe FastString)            -- package qualifier
39                   Bool                          -- True <=> {-# SOURCE #-} import
40                   Bool                          -- True => qualified
41                   (Maybe ModuleName)            -- as Module
42                   (Maybe (Bool, [LIE name]))    -- (True => hiding, names)
43 \end{code}
44
45 \begin{code}
46 instance (Outputable name) => Outputable (ImportDecl name) where
47     ppr (ImportDecl mod pkg from qual as spec)
48       = hang (hsep [ptext (sLit "import"), ppr_imp from, 
49                     pp_qual qual, pp_pkg pkg, ppr mod, pp_as as])
50              4 (pp_spec spec)
51       where
52         pp_pkg Nothing  = empty
53         pp_pkg (Just p) = doubleQuotes (ftext p)
54
55         pp_qual False   = empty
56         pp_qual True    = ptext (sLit "qualified")
57
58         pp_as Nothing   = empty
59         pp_as (Just a)  = ptext (sLit "as ") <+> ppr a
60
61         ppr_imp True  = ptext (sLit "{-# SOURCE #-}")
62         ppr_imp False = empty
63
64         pp_spec Nothing = empty
65         pp_spec (Just (False, spec))
66                         = parens (interpp'SP spec)
67         pp_spec (Just (True, spec))
68                         = ptext (sLit "hiding") <+> parens (interpp'SP spec)
69
70 ideclName :: ImportDecl name -> Located ModuleName
71 ideclName (ImportDecl mod_nm _ _ _ _ _) = mod_nm
72 \end{code}
73
74 %************************************************************************
75 %*                                                                      *
76 \subsection{Imported and exported entities}
77 %*                                                                      *
78 %************************************************************************
79
80 \begin{code}
81 type LIE name = Located (IE name)
82
83 data IE name
84   = IEVar               name
85   | IEThingAbs          name             -- Class/Type (can't tell)
86   | IEThingAll          name             -- Class/Type plus all methods/constructors
87   | IEThingWith         name [name]      -- Class/Type plus some methods/constructors
88   | IEModuleContents    ModuleName       -- (Export Only)
89   | IEGroup             Int (HsDoc name) -- Doc section heading
90   | IEDoc               (HsDoc name)     -- Some documentation
91   | IEDocNamed          String           -- Reference to named doc
92 \end{code}
93
94 \begin{code}
95 ieName :: IE name -> name
96 ieName (IEVar n)         = n
97 ieName (IEThingAbs  n)   = n
98 ieName (IEThingWith n _) = n
99 ieName (IEThingAll  n)   = n
100
101 ieNames :: IE a -> [a]
102 ieNames (IEVar            n   ) = [n]
103 ieNames (IEThingAbs       n   ) = [n]
104 ieNames (IEThingAll       n   ) = [n]
105 ieNames (IEThingWith      n ns) = n:ns
106 ieNames (IEModuleContents _   ) = []
107 ieNames (IEGroup          _ _ ) = []
108 ieNames (IEDoc            _   ) = []
109 ieNames (IEDocNamed       _   ) = []        
110 \end{code}
111
112 \begin{code}
113 instance (Outputable name) => Outputable (IE name) where
114     ppr (IEVar          var)    = pprHsVar var
115     ppr (IEThingAbs     thing)  = ppr thing
116     ppr (IEThingAll     thing)  = hcat [ppr thing, text "(..)"]
117     ppr (IEThingWith thing withs)
118         = ppr thing <> parens (fsep (punctuate comma (map pprHsVar withs)))
119     ppr (IEModuleContents mod)
120         = ptext (sLit "module") <+> ppr mod
121     ppr (IEGroup n _)           = text ("<IEGroup: " ++ (show n) ++ ">")
122     ppr (IEDoc doc)             = ppr doc
123     ppr (IEDocNamed string)     = text ("<IEDocNamed: " ++ string ++ ">")
124 \end{code}
125
126