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
|
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE PatternGuards #-}
module Main where
import qualified Language.Haskell.Exts.Annotated as L
import System.Console.CmdArgs
import System.IO (hPutStrLn, stderr, stdout, IOMode(..), openFile, hClose)
import qualified Data.Map as Map
import qualified Language.Preprocessor.Cpphs as CPP
import Control.Monad (forM)
import Data.List (sort)
import Data.Maybe (fromMaybe)
import System.FilePath.Posix (takeFileName)
type Database = Map.Map String (L.Module L.SrcSpanInfo)
data Defn = Defn FilePath Int -- file, line
deriving Show
localDecls :: L.Module L.SrcSpanInfo -> Map.Map String Defn
localDecls (L.Module _ _ _ _ decls) = Map.fromList $ concatMap extract decls
where
extract (L.TypeDecl _ head _) = extractDeclHead head
extract (L.TypeFamDecl _ head _) = extractDeclHead head
extract (L.DataDecl _ _ _ head decls _) = extractDeclHead head ++ concatMap extractQualConDecl decls
extract (L.GDataDecl _ _ _ head _ decls _) = extractDeclHead head ++ concatMap extractGadtDecl decls
extract (L.DataFamDecl _ _ head _) = extractDeclHead head
extract (L.ClassDecl _ _ head _ clsdecls) = extractDeclHead head ++ concatMap extractClassDecl (fromMaybe [] clsdecls)
extract (L.TypeSig _ names _) = concatMap extractName names
extract (L.FunBind _ (L.Match _ name _ _ _ : _)) = extractName name
extract (L.FunBind _ (L.InfixMatch _ _ name _ _ _ : _)) = extractName name
extract (L.PatBind _ pat _ _ _) = extractPat pat
extract (L.ForImp _ _ _ _ name _) = extractName name
extract _ = []
extractDeclHead (L.DHead _ name _) = extractName name
extractDeclHead (L.DHInfix _ _ name _) = extractName name
extractDeclHead (L.DHParen _ head') = extractDeclHead head'
extractPat (L.PVar _ name) = extractName name
extractPat (L.PApp _ _ pats) = concatMap extractPat pats
extractPat (L.PTuple _ _ pats) = concatMap extractPat pats
extractPat (L.PList _ pats) = concatMap extractPat pats
extractPat (L.PParen _ pat) = extractPat pat
extractPat (L.PAsPat _ name pat) = extractName name ++ extractPat pat
extractPat (L.PIrrPat _ pat) = extractPat pat
extractPat (L.PatTypeSig _ pat _) = extractPat pat
extractPat (L.PBangPat _ pat) = extractPat pat
extractPat _ = []
extractQualConDecl (L.QualConDecl _ _ _ (L.ConDecl _ name _)) = extractName name
extractQualConDecl (L.QualConDecl _ _ _ (L.RecDecl _ name fields)) = extractName name ++ concatMap extractFieldDecl fields
extractQualConDecl _ = []
extractFieldDecl (L.FieldDecl _ names _) = concatMap extractName names
extractGadtDecl (L.GadtDecl _ name _) = extractName name
extractClassDecl (L.ClsDecl _ decl) = extract decl
extractClassDecl (L.ClsDataFam _ _ head _) = extractDeclHead head
extractClassDecl (L.ClsTyFam _ head _) = extractDeclHead head
extractClassDecl _ = []
extractName (L.Ident loc name) = [(name, getLoc loc)]
extractName (L.Symbol _ _) = [] -- no symbols for now
localDecls _ = Map.empty
getLoc :: L.SrcSpanInfo -> Defn
getLoc (L.SrcSpanInfo (L.SrcSpan file line _ _ _) _) = Defn file line
thingMembers :: L.Module L.SrcSpanInfo -> String -> [String]
thingMembers (L.Module _ _ _ _ decls) name = concatMap extract decls
where
extract (L.DataDecl _ _ _ head condecls _) | nameOfHead head == Just name = concatMap getQualConDecl condecls
extract (L.GDataDecl _ _ _ head _ condecls _) | nameOfHead head == Just name = concatMap getGadtDecl condecls
extract (L.ClassDecl _ _ head _ (Just classdecls)) | nameOfHead head == Just name = concatMap getClassDecl classdecls
extract _ = []
getQualConDecl (L.QualConDecl _ _ _ (L.ConDecl _ (L.Ident _ name) _)) = [name]
getQualConDecl (L.QualConDecl _ _ _ (L.RecDecl _ (L.Ident _ name) fields)) = name : concatMap getField fields
getQualConDecl _ = []
getGadtDecl (L.GadtDecl _ name _) = getName name
getField (L.FieldDecl _ names _) = concatMap getName names
getClassDecl (L.ClsDecl _ (L.FunBind _ (L.Match _ name _ _ _ : _))) = getName name
getClassDecl (L.ClsDecl _ (L.PatBind _ (L.PVar _ name) _ _ _)) = getName name
getClassDecl _ = []
getName (L.Ident _ name) = [name]
getName _ = []
nameOfHead (L.DHead _ (L.Ident _ name) _) = Just name
nameOfHead (L.DHInfix _ _ (L.Ident _ name) _) = Just name
nameOfHead (L.DHParen _ h) = nameOfHead h
nameOfHead _ = Nothing
thingMembers _ _ = []
modExports :: Database -> String -> Map.Map String Defn
modExports db modname =
case Map.lookup modname db of
Nothing -> Map.empty
Just mod -> Map.filterWithKey (\k _ -> exported mod k) (localDecls mod)
exported :: L.Module L.SrcSpanInfo -> String -> Bool
exported mod@(L.Module _ (Just (L.ModuleHead _ _ _ (Just (L.ExportSpecList _ specs)))) _ _ _) name = any (matchesSpec name) specs
where
matchesSpec name (L.EVar _ (L.UnQual _ (L.Ident _ name'))) = name == name'
matchesSpec name (L.EAbs _ (L.UnQual _ (L.Ident _ name'))) = name == name'
matchesSpec name (L.EThingAll _ (L.UnQual _ (L.Ident _ name'))) = name == name' || (name `elem` thingMembers mod name')
matchesSpec name (L.EThingWith _ (L.UnQual _ (L.Ident _ name')) cnames) = name == name' || any (matchesCName name) cnames
matchesSpec _ (L.EModuleContents _ (L.ModuleName _ _)) = False -- XXX wrong, moduleScope handles it though
matchesSpec _ _ = False
matchesCName name (L.VarName _ (L.Ident _ name')) = name == name'
matchesCName name (L.ConName _ (L.Ident _ name')) = name == name'
matchesCName _ _ = False
exported _ _ = True
moduleScope :: Database -> L.Module L.SrcSpanInfo -> Map.Map String Defn
moduleScope db mod@(L.Module _ modhead _ imports _) = Map.unions $ moduleItself : localDecls mod : map extractImport imports
where
moduleItself = moduleDecl modhead `Map.union` enclosingFilename mod
moduleDecl (Just (L.ModuleHead l (L.ModuleName _ name) _ _)) = Map.singleton name (getLoc l)
moduleDecl _ = Map.empty
enclosingFilename (L.Module l _ _ _ _) = Map.singleton (filename l) (getLoc l)
enclosingFilename _ = Map.empty
filename (L.SrcSpanInfo (L.SrcSpan file _ _ _ _) _) = takeFileName file
extractImport decl@(L.ImportDecl { L.importModule = L.ModuleName _ name, L.importSpecs = spec }) =
Map.unions [
if L.importQualified decl then Map.empty else names,
Map.mapKeys ((name ++ ".") ++) names,
case L.importAs decl of
Nothing -> Map.empty
Just (L.ModuleName _ name') -> Map.mapKeys ((name' ++ ".") ++) names,
extraExports
]
where
names | Just (L.ImportSpecList _ True specs) <- spec = normalExports `Map.difference` (Map.fromList (map (flip (,) ()) (concatMap specName specs)))
| Just (L.ImportSpecList _ False specs) <- spec = Map.filterWithKey (\k _ -> k `elem` concatMap specName specs) normalExports
| otherwise = normalExports
normalExports = modExports db name
specName (L.IVar _ (L.Ident _ name)) = [name]
specName (L.IAbs _ (L.Ident _ name)) = [name]
specName (L.IThingAll _ (L.Ident _ name)) = [name] -- XXX incorrect, need its member names
specName (L.IThingWith _ (L.Ident _ name) cnames) = name : concatMap cname cnames
specName _ = []
cname (L.VarName _ (L.Ident _ name)) = [name]
cname (L.ConName _ (L.Ident _ name)) = [name]
cname _ = []
extraExports | Just (L.ModuleHead _ _ _ (Just (L.ExportSpecList _ especs))) <- modhead =
Map.unions [ modExports db modname | L.EModuleContents _ (L.ModuleName _ modname) <- especs ]
| otherwise = Map.empty
moduleScope _ _ = Map.empty
makeTag :: FilePath -> (String, Defn) -> String
makeTag refFile (name, Defn file line) = name ++ "\t" ++ file ++ "\t" ++ show line ++ ";\"\t" ++ "file:" ++ refFile
makeTags :: FilePath -> Map.Map String Defn -> [String]
makeTags refFile = map (makeTag refFile) . Map.assocs
haskellSource :: [L.Extension] -> HotHasktags -> FilePath -> IO String
haskellSource exts conf file = do
contents <- readFile file
let needsCpp = not . null $
[ ()
| Just (_language, extsFile) <- [L.readExtensions contents],
L.EnableExtension L.CPP <- extsFile ]
++ [ () | L.EnableExtension L.CPP <- exts ]
if not needsCpp
then return contents
else do
cppOpts <- either recoverCppOptFail return
(CPP.parseOptions (hh_cpphs conf))
CPP.runCpphs (addOpts cppOpts) file contents
where
addOpts defOpts = defOpts
{ CPP.boolopts = (CPP.boolopts defOpts) { CPP.hashline = False },
CPP.defines = map splitDefines (hh_define conf) ++ CPP.defines defOpts,
CPP.includes = hh_include conf ++ CPP.includes defOpts }
recoverCppOptFail err = do
hPutStrLn stderr $ "cpphs parse error arguments:" ++ err
return CPP.defaultCpphsOptions
splitDefines :: String -> (String,String)
splitDefines s = let (a,b) = break (=='=') s
in (a, case drop 1 b of
[] -> "1"
b' -> b')
makeDatabase :: [L.Extension] -> HotHasktags -> IO Database
makeDatabase exts conf = do
fmap (Map.fromList . concat) . forM (hh_files conf) $ \file -> do
result <- L.parseFileContentsWithMode (mode file)
`fmap` haskellSource exts conf file
case result of
L.ParseOk mod@(L.Module _ (Just (L.ModuleHead _ (L.ModuleName _ name) _ _)) _ _ _) -> do
return [(name, mod)]
L.ParseFailed loc str -> do
hPutStrLn stderr $ "Parse error: " ++ show loc ++ ": " ++ str
return []
_ -> do
return []
where
mode filename = L.ParseMode {
L.parseFilename = filename,
L.extensions = exts,
L.ignoreLanguagePragmas = False,
L.ignoreLinePragmas = False,
L.fixities = Nothing,
L.baseLanguage = L.Haskell2010
}
moduleFile :: L.Module L.SrcSpanInfo -> FilePath
moduleFile (L.Module (L.SrcSpanInfo (L.SrcSpan file _ _ _ _) _) _ _ _ _) = file
moduleFile _ = error "Wtf is an XmlPage/XmlHybrid?"
data HotHasktags = HotHasktags {
hh_files, hh_language, hh_define, hh_include, hh_output, hh_cpphs :: [String] }
deriving (Data,Typeable,Show)
defaultHotHasktags :: HotHasktags
defaultHotHasktags = HotHasktags {
hh_files = []
&= args
&= typ "FILE",
hh_language = []
&= help "Additional language extensions to use when parsing a file. \
\LANGUAGE pragmas are currently obeyed. Always includes at least \
\MultiParamTypeClasses ExistentialQuantification \
\and FlexibleContexts"
&= name "X",
hh_define = []
&= name "D"
&= help "Define for cpphs. -Dx is a shortcut for the flags -c -Dx",
hh_include = []
&= name "I"
&= typ "DIR"
&= help "Add a directory to where cpphs looks for .h includes. Note that \
\paths are currently interpreted as relative to the directory \
\containing the source file \
\-Ifoo is a shortcut for -c -Ifoo",
hh_output = []
&= name "output" &= name "O"
&= explicit
&= typ "FILE"
&= help "Name of output file. Default is to write to stdout",
hh_cpphs = []
&= name "cpp" &= name "c"
&= explicit
&= help "Pass the next argument as an option for cpphs. For example:\n\
\`hothasktags -c --strip -XCPP foo.hs'\
\ see `cpphs --help`"}
main :: IO ()
main = do
conf <- cmdArgs defaultHotHasktags
let exts = map L.classifyExtension $ hh_language conf ++
words "MultiParamTypeClasses ExistentialQuantification FlexibleContexts"
case unwords [ ext | L.UnknownExtension ext <- exts ] of
[] -> return ()
unknown -> hPutStrLn stderr $ "Unknown extensions on command line: "
++ unknown
database <- makeDatabase exts conf
let tags = sort $ concatMap (\mod -> makeTags (moduleFile mod) (moduleScope database mod)) (Map.elems database)
handle <- case (hh_output conf) of
[] -> return stdout
file:_ -> openFile file WriteMode
mapM_ (hPutStrLn handle) tags
case (hh_output conf) of
[] -> return ()
_ -> hClose handle
|