aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2007-11-11 19:06:44 +0000
committerDavid Waern <david.waern@gmail.com>2007-11-11 19:06:44 +0000
commit4a9586e05649ec18aa426b51db7098c402505472 (patch)
treeb12cd47c575224a92c5cff7f75a2eb37f1d41a6f /src/Haddock
parentb2315b0bda461ec9dbd2abbe172915aa6727565d (diff)
Don't require -B <ghc-libdir> when no argument files
Change readInterfaceFile to take a Maybe Session, to avoid having to pass -B <ghc-libdir> to Haddock when there're no source files to process. This is nice when computing contents/index for external packages.
Diffstat (limited to 'src/Haddock')
-rw-r--r--src/Haddock/InterfaceFile.hs26
1 files changed, 18 insertions, 8 deletions
diff --git a/src/Haddock/InterfaceFile.hs b/src/Haddock/InterfaceFile.hs
index e822cdda..2fcb9351 100644
--- a/src/Haddock/InterfaceFile.hs
+++ b/src/Haddock/InterfaceFile.hs
@@ -97,8 +97,8 @@ writeInterfaceFile filename iface = do
return ()
-readInterfaceFile :: Session -> FilePath -> IO (Either String InterfaceFile)
-readInterfaceFile session filename = do
+readInterfaceFile :: Maybe Session -> FilePath -> IO (Either String InterfaceFile)
+readInterfaceFile mbSession filename = do
bh <- readBinMem filename
magic <- get bh
@@ -122,19 +122,29 @@ readInterfaceFile session filename = do
ud <- newReadState dict
bh <- return (setUserData bh ud)
- -- get the name cache from the ghc session
- ncRef <- withSession session (return . hsc_NC)
- nc <- readIORef ncRef
+ -- get the name cache from ghc if we have a ghc session,
+ -- otherwise create a new one
+ (theNC, mbRef) <- case mbSession of
+ Just session -> do
+ ref <- withSession session (return . hsc_NC)
+ nc <- readIORef ref
+ return (nc, Just ref)
+ Nothing -> do
+ -- construct an empty name cache
+ u <- mkSplitUniqSupply 'a' -- ??
+ return (initNameCache u [], Nothing)
-- get the symbol table
symtab_p <- get bh
data_p <- tellBin bh
seekBin bh symtab_p
- (nc', symtab) <- getSymbolTable bh nc
+ (nc', symtab) <- getSymbolTable bh theNC
seekBin bh data_p
- -- write back the new name cache
- writeIORef ncRef nc'
+ -- write back the new name cache if we have a ghc session
+ case mbRef of
+ Just ref -> writeIORef ref nc'
+ Nothing -> return ()
-- set the symbol table
let ud = getUserData bh