packages feed

dash-haskell-1.0.0.1: src/Haddock/Artifact.hs

module Haddock.Artifact where
import           Control.Monad.IO.Class
import           Control.Monad.M
import           Data.String.Util
import           Documentation.Haddock
import qualified Filesystem.Path.CurrentOS as P
import qualified Module as Ghc
import qualified Name as Ghc

-- This ADT approach is heavily influenced by philopen's haddocset package:
-- https://github.com/philopon/haddocset

data Artifact
  = Haddock  P.FilePath -- Note, this is not yet honored. TODO
  | Package  
  | Module   Ghc.Module
  | Function Ghc.Module Ghc.Name

parseError :: String -> P.FilePath -> M r
parseError e p = 
  err $ preposition "parser error" "in" "haddock interface" (P.encodeString p) [e]

fromInterfaces :: Ghc.PackageId -> [InstalledInterface] -> [Artifact] 
fromInterfaces _   []       = []  
fromInterfaces pkg (i:rest) =
   let moduleName = instMod i in
     if OptHide `notElem` instOptions i then 
      Module moduleName : 
       foldl 
         (\a e -> Function moduleName e : a)
         -- append to artifacts from rest of installed interfaces
         (fromInterfaces pkg rest) 
         (instVisibleExports i)
     else
       fromInterfaces pkg rest 
   
toArtifacts :: Ghc.PackageId -> P.FilePath -> M [Artifact]
toArtifacts pkg haddock' = do 
  interface_file <- liftIO $ readInterfaceFile freshNameCache (P.encodeString haddock')
  case interface_file of
    Left e -> parseError e haddock'
    Right (InterfaceFile _ installed_ifaces) ->
      return $ Haddock haddock' : Package : fromInterfaces pkg installed_ifaces