FIX #2049, another problem with the module context on :reload
[ghc-hetmet.git] / compiler / ghci / InteractiveUI.hs
1 {-# OPTIONS -#include "Linker.h" #-}
2 -----------------------------------------------------------------------------
3 --
4 -- GHC Interactive User Interface
5 --
6 -- (c) The GHC Team 2005-2006
7 --
8 -----------------------------------------------------------------------------
9
10 module InteractiveUI ( interactiveUI, ghciWelcomeMsg ) where
11
12 #include "HsVersions.h"
13
14 import GhciMonad
15 import GhciTags
16 import Debugger
17
18 -- The GHC interface
19 import qualified GHC
20 import GHC              ( Session, LoadHowMuch(..), Target(..),  TargetId(..),
21                           Module, ModuleName, TyThing(..), Phase,
22                           BreakIndex, SrcSpan, Resume, SingleStep )
23 import PprTyThing
24 import DynFlags
25
26 import Packages
27 #ifdef USE_READLINE
28 import PackageConfig
29 import UniqFM
30 #endif
31
32 import HscTypes         ( implicitTyThings )
33 import qualified RdrName ( getGRE_NameQualifier_maybes ) -- should this come via GHC?
34 import Outputable       hiding (printForUser, printForUserPartWay)
35 import Module           -- for ModuleEnv
36 import Name
37 import SrcLoc
38
39 -- Other random utilities
40 import Digraph
41 import BasicTypes hiding (isTopLevel)
42 import Panic      hiding (showException)
43 import Config
44 import StaticFlags
45 import Linker
46 import Util
47 import NameSet
48 import Maybes           ( orElse )
49 import FastString
50 import Encoding
51
52 #ifndef mingw32_HOST_OS
53 import System.Posix hiding (getEnv)
54 #else
55 import GHC.ConsoleHandler ( flushConsole )
56 import qualified System.Win32
57 import System.FilePath
58 #endif
59
60 #ifdef USE_READLINE
61 import Control.Concurrent       ( yield )       -- Used in readline loop
62 import System.Console.Readline as Readline
63 #endif
64
65 --import SystemExts
66
67 import Control.Exception as Exception
68 -- import Control.Concurrent
69
70 import qualified Data.ByteString.Char8 as BS
71 import Data.List
72 import Data.Maybe
73 import System.Cmd
74 import System.Environment
75 import System.Exit      ( exitWith, ExitCode(..) )
76 import System.Directory
77 import System.IO
78 import System.IO.Error as IO
79 import Data.Char
80 import Data.Dynamic
81 import Data.Array
82 import Control.Monad as Monad
83 import Text.Printf
84 import Foreign
85 import Foreign.C
86 import GHC.Exts         ( unsafeCoerce# )
87 import GHC.IOBase       ( IOErrorType(InvalidArgument) )
88 import GHC.TopHandler
89
90 import Data.IORef       ( IORef, readIORef, writeIORef )
91
92 #ifdef USE_READLINE
93 import System.Posix.Internals ( setNonBlockingFD )
94 #endif
95
96 -----------------------------------------------------------------------------
97
98 ghciWelcomeMsg :: String
99 ghciWelcomeMsg = "GHCi, version " ++ cProjectVersion ++
100                  ": http://www.haskell.org/ghc/  :? for help"
101
102 cmdName :: Command -> String
103 cmdName (n,_,_,_) = n
104
105 macros_ref :: IORef [Command]
106 GLOBAL_VAR(macros_ref, [], [Command])
107
108 builtin_commands :: [Command]
109 builtin_commands = [
110         -- Hugs users are accustomed to :e, so make sure it doesn't overlap
111   ("?",         keepGoing help,                 Nothing, completeNone),
112   ("add",       keepGoingPaths addModule,       Just filenameWordBreakChars, completeFilename),
113   ("abandon",   keepGoing abandonCmd,           Nothing, completeNone),
114   ("break",     keepGoing breakCmd,             Nothing, completeIdentifier),
115   ("back",      keepGoing backCmd,              Nothing, completeNone),
116   ("browse",    keepGoing (browseCmd False),    Nothing, completeModule),
117   ("browse!",   keepGoing (browseCmd True),     Nothing, completeModule),
118   ("cd",        keepGoing changeDirectory,      Just filenameWordBreakChars, completeFilename),
119   ("check",     keepGoing checkModule,          Nothing, completeHomeModule),
120   ("continue",  keepGoing continueCmd,          Nothing, completeNone),
121   ("cmd",       keepGoing cmdCmd,               Nothing, completeIdentifier),
122   ("ctags",     keepGoing createCTagsFileCmd,   Just filenameWordBreakChars, completeFilename),
123   ("def",       keepGoing (defineMacro False),  Nothing, completeIdentifier),
124   ("def!",      keepGoing (defineMacro True),   Nothing, completeIdentifier),
125   ("delete",    keepGoing deleteCmd,            Nothing, completeNone),
126   ("e",         keepGoing editFile,             Just filenameWordBreakChars, completeFilename),
127   ("edit",      keepGoing editFile,             Just filenameWordBreakChars, completeFilename),
128   ("etags",     keepGoing createETagsFileCmd,   Just filenameWordBreakChars, completeFilename),
129   ("force",     keepGoing forceCmd,             Nothing, completeIdentifier),
130   ("forward",   keepGoing forwardCmd,           Nothing, completeNone),
131   ("help",      keepGoing help,                 Nothing, completeNone),
132   ("history",   keepGoing historyCmd,           Nothing, completeNone), 
133   ("info",      keepGoing info,                 Nothing, completeIdentifier),
134   ("kind",      keepGoing kindOfType,           Nothing, completeIdentifier),
135   ("load",      keepGoingPaths loadModule_,     Just filenameWordBreakChars, completeHomeModuleOrFile),
136   ("list",      keepGoing listCmd,              Nothing, completeNone),
137   ("module",    keepGoing setContext,           Nothing, completeModule),
138   ("main",      keepGoing runMain,              Nothing, completeIdentifier),
139   ("print",     keepGoing printCmd,             Nothing, completeIdentifier),
140   ("quit",      quit,                           Nothing, completeNone),
141   ("reload",    keepGoing reloadModule,         Nothing, completeNone),
142   ("run",       keepGoing runRun,               Nothing, completeIdentifier),
143   ("set",       keepGoing setCmd,               Just flagWordBreakChars, completeSetOptions),
144   ("show",      keepGoing showCmd,              Nothing, completeNone),
145   ("sprint",    keepGoing sprintCmd,            Nothing, completeIdentifier),
146   ("step",      keepGoing stepCmd,              Nothing, completeIdentifier), 
147   ("steplocal", keepGoing stepLocalCmd,         Nothing, completeIdentifier), 
148   ("stepmodule",keepGoing stepModuleCmd,        Nothing, completeIdentifier), 
149   ("type",      keepGoing typeOfExpr,           Nothing, completeIdentifier),
150   ("trace",     keepGoing traceCmd,             Nothing, completeIdentifier), 
151   ("undef",     keepGoing undefineMacro,        Nothing, completeMacro),
152   ("unset",     keepGoing unsetOptions,         Just flagWordBreakChars,  completeSetOptions)
153   ]
154
155
156 -- We initialize readline (in the interactiveUI function) to use 
157 -- word_break_chars as the default set of completion word break characters.
158 -- This can be overridden for a particular command (for example, filename
159 -- expansion shouldn't consider '/' to be a word break) by setting the third
160 -- entry in the Command tuple above.
161 -- 
162 -- NOTE: in order for us to override the default correctly, any custom entry
163 -- must be a SUBSET of word_break_chars.
164 #ifdef USE_READLINE
165 word_break_chars :: String
166 word_break_chars = let symbols = "!#$%&*+/<=>?@\\^|-~"
167                        specials = "(),;[]`{}"
168                        spaces = " \t\n"
169                    in spaces ++ specials ++ symbols
170 #endif
171
172 flagWordBreakChars, filenameWordBreakChars :: String
173 flagWordBreakChars = " \t\n"
174 filenameWordBreakChars = " \t\n\\`@$><=;|&{(" -- bash defaults
175
176
177 keepGoing :: (String -> GHCi ()) -> (String -> GHCi Bool)
178 keepGoing a str = a str >> return False
179
180 keepGoingPaths :: ([FilePath] -> GHCi ()) -> (String -> GHCi Bool)
181 keepGoingPaths a str
182  = do case toArgs str of
183           Left err -> io (hPutStrLn stderr err)
184           Right args -> a args
185       return False
186
187 shortHelpText :: String
188 shortHelpText = "use :? for help.\n"
189
190 helpText :: String
191 helpText =
192  " Commands available from the prompt:\n" ++
193  "\n" ++
194  "   <statement>                 evaluate/run <statement>\n" ++
195  "   :                           repeat last command\n" ++
196  "   :{\\n ..lines.. \\n:}\\n       multiline command\n" ++
197  "   :add <filename> ...         add module(s) to the current target set\n" ++
198  "   :browse[!] [[*]<mod>]       display the names defined by module <mod>\n" ++
199  "                               (!: more details; *: all top-level names)\n" ++
200  "   :cd <dir>                   change directory to <dir>\n" ++
201  "   :cmd <expr>                 run the commands returned by <expr>::IO String\n" ++
202  "   :ctags [<file>]             create tags file for Vi (default: \"tags\")\n" ++
203  "   :def <cmd> <expr>           define a command :<cmd>\n" ++
204  "   :edit <file>                edit file\n" ++
205  "   :edit                       edit last module\n" ++
206  "   :etags [<file>]             create tags file for Emacs (default: \"TAGS\")\n" ++
207  "   :help, :?                   display this list of commands\n" ++
208  "   :info [<name> ...]          display information about the given names\n" ++
209  "   :kind <type>                show the kind of <type>\n" ++
210  "   :load <filename> ...        load module(s) and their dependents\n" ++
211  "   :main [<arguments> ...]     run the main function with the given arguments\n" ++
212  "   :module [+/-] [*]<mod> ...  set the context for expression evaluation\n" ++
213  "   :quit                       exit GHCi\n" ++
214  "   :reload                     reload the current module set\n" ++
215  "   :run function [<arguments> ...] run the function with the given arguments\n" ++
216  "   :type <expr>                show the type of <expr>\n" ++
217  "   :undef <cmd>                undefine user-defined command :<cmd>\n" ++
218  "   :!<command>                 run the shell command <command>\n" ++
219  "\n" ++
220  " -- Commands for debugging:\n" ++
221  "\n" ++
222  "   :abandon                    at a breakpoint, abandon current computation\n" ++
223  "   :back                       go back in the history (after :trace)\n" ++
224  "   :break [<mod>] <l> [<col>]  set a breakpoint at the specified location\n" ++
225  "   :break <name>               set a breakpoint on the specified function\n" ++
226  "   :continue                   resume after a breakpoint\n" ++
227  "   :delete <number>            delete the specified breakpoint\n" ++
228  "   :delete *                   delete all breakpoints\n" ++
229  "   :force <expr>               print <expr>, forcing unevaluated parts\n" ++
230  "   :forward                    go forward in the history (after :back)\n" ++
231  "   :history [<n>]              show the last <n> items in the history (after :trace)\n" ++
232  "   :print [<name> ...]         prints a value without forcing its computation\n" ++
233  "   :sprint [<name> ...]        simplifed version of :print\n" ++
234  "   :step                       single-step after stopping at a breakpoint\n"++
235  "   :step <expr>                single-step into <expr>\n"++
236  "   :steplocal                  single-step restricted to the current top level decl.\n"++
237  "   :stepmodule                 single-step restricted to the current module\n"++
238  "   :trace                      trace after stopping at a breakpoint\n"++
239  "   :trace <expr>               trace into <expr> (remembers breakpoints for :history)\n"++
240
241  "\n" ++
242  " -- Commands for changing settings:\n" ++
243  "\n" ++
244  "   :set <option> ...           set options\n" ++
245  "   :set args <arg> ...         set the arguments returned by System.getArgs\n" ++
246  "   :set prog <progname>        set the value returned by System.getProgName\n" ++
247  "   :set prompt <prompt>        set the prompt used in GHCi\n" ++
248  "   :set editor <cmd>           set the command used for :edit\n" ++
249  "   :set stop <cmd>             set the command to run when a breakpoint is hit\n" ++
250  "   :unset <option> ...         unset options\n" ++
251  "\n" ++
252  "  Options for ':set' and ':unset':\n" ++
253  "\n" ++
254  "    +r            revert top-level expressions after each evaluation\n" ++
255  "    +s            print timing/memory stats after each evaluation\n" ++
256  "    +t            print type after evaluation\n" ++
257  "    -<flags>      most GHC command line flags can also be set here\n" ++
258  "                         (eg. -v2, -fglasgow-exts, etc.)\n" ++
259  "                    for GHCi-specific flags, see User's Guide,\n"++
260  "                    Flag reference, Interactive-mode options\n" ++
261  "\n" ++
262  " -- Commands for displaying information:\n" ++
263  "\n" ++
264  "   :show bindings              show the current bindings made at the prompt\n" ++
265  "   :show breaks                show the active breakpoints\n" ++
266  "   :show context               show the breakpoint context\n" ++
267  "   :show modules               show the currently loaded modules\n" ++
268  "   :show packages              show the currently active package flags\n" ++
269  "   :show languages             show the currently active language flags\n" ++
270  "   :show <setting>             show anything that can be set with :set (e.g. args)\n" ++
271  "\n" 
272
273 findEditor :: IO String
274 findEditor = do
275   getEnv "EDITOR" 
276     `IO.catch` \_ -> do
277 #if mingw32_HOST_OS
278         win <- System.Win32.getWindowsDirectory
279         return (win </> "notepad.exe")
280 #else
281         return ""
282 #endif
283
284 interactiveUI :: Session -> [(FilePath, Maybe Phase)] -> Maybe [String]
285               -> IO ()
286 interactiveUI session srcs maybe_exprs = do
287    -- HACK! If we happen to get into an infinite loop (eg the user
288    -- types 'let x=x in x' at the prompt), then the thread will block
289    -- on a blackhole, and become unreachable during GC.  The GC will
290    -- detect that it is unreachable and send it the NonTermination
291    -- exception.  However, since the thread is unreachable, everything
292    -- it refers to might be finalized, including the standard Handles.
293    -- This sounds like a bug, but we don't have a good solution right
294    -- now.
295    newStablePtr stdin
296    newStablePtr stdout
297    newStablePtr stderr
298
299     -- Initialise buffering for the *interpreted* I/O system
300    initInterpBuffering session
301
302    when (isNothing maybe_exprs) $ do
303         -- Only for GHCi (not runghc and ghc -e):
304
305         -- Turn buffering off for the compiled program's stdout/stderr
306         turnOffBuffering
307         -- Turn buffering off for GHCi's stdout
308         hFlush stdout
309         hSetBuffering stdout NoBuffering
310         -- We don't want the cmd line to buffer any input that might be
311         -- intended for the program, so unbuffer stdin.
312         hSetBuffering stdin NoBuffering
313
314 #ifdef USE_READLINE
315         is_tty <- hIsTerminalDevice stdin
316         when is_tty $ do
317             Readline.initialize
318             Readline.setAttemptedCompletionFunction (Just completeWord)
319             --Readline.parseAndBind "set show-all-if-ambiguous 1"
320
321             Readline.setBasicWordBreakCharacters word_break_chars
322             Readline.setCompleterWordBreakCharacters word_break_chars
323             Readline.setCompletionAppendCharacter Nothing
324 #endif
325
326    -- initial context is just the Prelude
327    prel_mod <- GHC.findModule session (GHC.mkModuleName "Prelude") 
328                                       (Just basePackageId)
329    GHC.setContext session [] [prel_mod]
330
331    default_editor <- findEditor
332
333    startGHCi (runGHCi srcs maybe_exprs)
334         GHCiState{ progname = "<interactive>",
335                    args = [],
336                    prompt = "%s> ",
337                    stop = "",
338                    editor = default_editor,
339                    session = session,
340                    options = [],
341                    prelude = prel_mod,
342                    break_ctr = 0,
343                    breaks = [],
344                    tickarrays = emptyModuleEnv,
345                    last_command = Nothing,
346                    cmdqueue = [],
347                    remembered_ctx = []
348                  }
349
350 #ifdef USE_READLINE
351    Readline.resetTerminal Nothing
352 #endif
353
354    return ()
355
356 runGHCi :: [(FilePath, Maybe Phase)] -> Maybe [String] -> GHCi ()
357 runGHCi paths maybe_exprs = do
358   let read_dot_files = not opt_IgnoreDotGhci
359
360   when (read_dot_files) $ do
361     -- Read in ./.ghci.
362     let file = "./.ghci"
363     exists <- io (doesFileExist file)
364     when exists $ do
365        dir_ok  <- io (checkPerms ".")
366        file_ok <- io (checkPerms file)
367        when (dir_ok && file_ok) $ do
368           either_hdl <- io (IO.try (openFile "./.ghci" ReadMode))
369           case either_hdl of
370              Left _e   -> return ()
371              Right hdl -> runCommands (fileLoop hdl False False)
372
373   when (read_dot_files) $ do
374     -- Read in $HOME/.ghci
375     either_dir <- io (IO.try getHomeDirectory)
376     case either_dir of
377        Left _e -> return ()
378        Right dir -> do
379           cwd <- io (getCurrentDirectory)
380           when (dir /= cwd) $ do
381              let file = dir ++ "/.ghci"
382              ok <- io (checkPerms file)
383              when ok $ do
384                either_hdl <- io (IO.try (openFile file ReadMode))
385                case either_hdl of
386                   Left _e   -> return ()
387                   Right hdl -> runCommands (fileLoop hdl False False)
388
389   -- Perform a :load for files given on the GHCi command line
390   -- When in -e mode, if the load fails then we want to stop
391   -- immediately rather than going on to evaluate the expression.
392   when (not (null paths)) $ do
393      ok <- ghciHandle (\e -> do showException e; return Failed) $
394                 loadModule paths
395      when (isJust maybe_exprs && failed ok) $
396         io (exitWith (ExitFailure 1))
397
398   -- if verbosity is greater than 0, or we are connected to a
399   -- terminal, display the prompt in the interactive loop.
400   is_tty <- io (hIsTerminalDevice stdin)
401   dflags <- getDynFlags
402   let show_prompt = verbosity dflags > 0 || is_tty
403
404   case maybe_exprs of
405         Nothing ->
406           do
407 #if defined(mingw32_HOST_OS)
408             -- The win32 Console API mutates the first character of
409             -- type-ahead when reading from it in a non-buffered manner. Work
410             -- around this by flushing the input buffer of type-ahead characters,
411             -- but only if stdin is available.
412             flushed <- io (IO.try (GHC.ConsoleHandler.flushConsole stdin))
413             case flushed of
414              Left err | isDoesNotExistError err -> return ()
415                       | otherwise -> io (ioError err)
416              Right () -> return ()
417 #endif
418             -- enter the interactive loop
419             interactiveLoop is_tty show_prompt
420         Just exprs -> do
421             -- just evaluate the expression we were given
422             enqueueCommands exprs
423             let handle e = do st <- getGHCiState
424                                    -- Jump through some hoops to get the
425                                    -- current progname in the exception text:
426                                    -- <progname>: <exception>
427                               io $ withProgName (progname st)
428                                    -- The "fast exit" part just calls exit()
429                                    -- directly instead of doing an orderly
430                                    -- runtime shutdown, otherwise the main
431                                    -- GHCi thread will complain about being
432                                    -- interrupted.
433                                  $ topHandlerFastExit e
434             runCommands' handle (return Nothing)
435
436   -- and finally, exit
437   io $ do when (verbosity dflags > 0) $ putStrLn "Leaving GHCi."
438
439 interactiveLoop :: Bool -> Bool -> GHCi ()
440 interactiveLoop is_tty show_prompt =
441   -- Ignore ^C exceptions caught here
442   ghciHandleDyn (\e -> case e of 
443                         Interrupted -> do
444 #if defined(mingw32_HOST_OS)
445                                 io (putStrLn "")
446 #endif
447                                 interactiveLoop is_tty show_prompt
448                         _other      -> return ()) $ 
449
450   ghciUnblock $ do -- unblock necessary if we recursed from the 
451                    -- exception handler above.
452
453   -- read commands from stdin
454 #ifdef USE_READLINE
455   if (is_tty) 
456         then runCommands readlineLoop
457         else runCommands (fileLoop stdin show_prompt is_tty)
458 #else
459   runCommands (fileLoop stdin show_prompt is_tty)
460 #endif
461
462
463 -- NOTE: We only read .ghci files if they are owned by the current user,
464 -- and aren't world writable.  Otherwise, we could be accidentally 
465 -- running code planted by a malicious third party.
466
467 -- Furthermore, We only read ./.ghci if . is owned by the current user
468 -- and isn't writable by anyone else.  I think this is sufficient: we
469 -- don't need to check .. and ../.. etc. because "."  always refers to
470 -- the same directory while a process is running.
471
472 checkPerms :: String -> IO Bool
473 #ifdef mingw32_HOST_OS
474 checkPerms _ =
475   return True
476 #else
477 checkPerms name =
478   Util.handle (\_ -> return False) $ do
479      st <- getFileStatus name
480      me <- getRealUserID
481      if fileOwner st /= me then do
482         putStrLn $ "WARNING: " ++ name ++ " is owned by someone else, IGNORING!"
483         return False
484       else do
485         let mode =  fileMode st
486         if (groupWriteMode == (mode `intersectFileModes` groupWriteMode))
487            || (otherWriteMode == (mode `intersectFileModes` otherWriteMode)) 
488            then do
489                putStrLn $ "*** WARNING: " ++ name ++ 
490                           " is writable by someone else, IGNORING!"
491                return False
492           else return True
493 #endif
494
495 fileLoop :: Handle -> Bool -> Bool -> GHCi (Maybe String)
496 fileLoop hdl show_prompt is_tty = do
497    when show_prompt $ do
498         prompt <- mkPrompt
499         (io (putStr prompt))
500    l <- io (IO.try (hGetLine hdl))
501    case l of
502         Left e | isEOFError e              -> return Nothing
503                | InvalidArgument <- etype  -> return Nothing
504                | otherwise                 -> io (ioError e)
505                 where etype = ioeGetErrorType e
506                 -- treat InvalidArgument in the same way as EOF:
507                 -- this can happen if the user closed stdin, or
508                 -- perhaps did getContents which closes stdin at
509                 -- EOF.
510         Right l -> do
511                    str <- io $ consoleInputToUnicode is_tty l
512                    return (Just str)
513
514 #ifdef mingw32_HOST_OS
515 -- Convert the console input into Unicode according to the current code page.
516 -- The Windows console stores Unicode characters directly, so this is a
517 -- rather roundabout way of doing things... oh well.
518 -- See #782, #1483, #1649
519 consoleInputToUnicode :: Bool -> String -> IO String
520 consoleInputToUnicode is_tty str
521   | is_tty = do
522     cp <- System.Win32.getConsoleCP
523     System.Win32.stringToUnicode cp str
524   | otherwise =
525     decodeStringAsUTF8 str
526 #else
527 -- for Unix, assume the input is in UTF-8 and decode it to a Unicode String. 
528 -- See #782.
529 consoleInputToUnicode :: Bool -> String -> IO String
530 consoleInputToUnicode _is_tty str = decodeStringAsUTF8 str
531 #endif
532
533 decodeStringAsUTF8 :: String -> IO String
534 decodeStringAsUTF8 str =
535   withCStringLen str $ \(cstr,len) -> 
536     utf8DecodeString (castPtr cstr :: Ptr Word8) len
537
538 mkPrompt :: GHCi String
539 mkPrompt = do
540   session <- getSession
541   (toplevs,exports) <- io (GHC.getContext session)
542   resumes <- io $ GHC.getResumeContext session
543   -- st <- getGHCiState
544
545   context_bit <-
546         case resumes of
547             [] -> return empty
548             r:_ -> do
549                 let ix = GHC.resumeHistoryIx r
550                 if ix == 0
551                    then return (brackets (ppr (GHC.resumeSpan r)) <> space)
552                    else do
553                         let hist = GHC.resumeHistory r !! (ix-1)
554                         span <- io$ GHC.getHistorySpan session hist
555                         return (brackets (ppr (negate ix) <> char ':' 
556                                           <+> ppr span) <> space)
557   let
558         dots | _:rs <- resumes, not (null rs) = text "... "
559              | otherwise = empty
560
561         
562
563         modules_bit = 
564        -- ToDo: maybe...
565        --  let (btoplevs, bexports) = fromMaybe ([],[]) (remembered_ctx st) in
566        --  hsep (map (\m -> text "!*" <> ppr (GHC.moduleName m)) btoplevs) <+>
567        --  hsep (map (\m -> char '!'  <> ppr (GHC.moduleName m)) bexports) <+>
568              hsep (map (\m -> char '*'  <> ppr (GHC.moduleName m)) toplevs) <+>
569              hsep (map (ppr . GHC.moduleName) exports)
570
571         deflt_prompt = dots <> context_bit <> modules_bit
572
573         f ('%':'s':xs) = deflt_prompt <> f xs
574         f ('%':'%':xs) = char '%' <> f xs
575         f (x:xs) = char x <> f xs
576         f [] = empty
577    --
578   st <- getGHCiState
579   return (showSDoc (f (prompt st)))
580
581
582 #ifdef USE_READLINE
583 readlineLoop :: GHCi (Maybe String)
584 readlineLoop = do
585    io yield
586    saveSession -- for use by completion
587    prompt <- mkPrompt
588    l <- io (readline prompt `finally` setNonBlockingFD 0)
589                 -- readline sometimes puts stdin into blocking mode,
590                 -- so we need to put it back for the IO library
591    splatSavedSession
592    case l of
593         Nothing -> return Nothing
594         Just l  -> do
595                    io (addHistory l)
596                    str <- io $ consoleInputToUnicode True l
597                    return (Just str)
598 #endif
599
600 queryQueue :: GHCi (Maybe String)
601 queryQueue = do
602   st <- getGHCiState
603   case cmdqueue st of
604     []   -> return Nothing
605     c:cs -> do setGHCiState st{ cmdqueue = cs }
606                return (Just c)
607
608 runCommands :: GHCi (Maybe String) -> GHCi ()
609 runCommands = runCommands' handler
610
611 runCommands' :: (Exception -> GHCi Bool) -- Exception handler
612              -> GHCi (Maybe String) -> GHCi ()
613 runCommands' eh getCmd = do
614   mb_cmd <- noSpace queryQueue
615   mb_cmd <- maybe (noSpace getCmd) (return . Just) mb_cmd
616   case mb_cmd of 
617     Nothing -> return ()
618     Just c  -> do
619       b <- ghciHandle eh (doCommand c)
620       if b then return () else runCommands' eh getCmd
621   where
622     noSpace q = q >>= maybe (return Nothing)
623                             (\c->case removeSpaces c of 
624                                    ""   -> noSpace q
625                                    ":{" -> multiLineCmd q
626                                    c    -> return (Just c) )
627     multiLineCmd q = do
628       st <- getGHCiState
629       let p = prompt st
630       setGHCiState st{ prompt = "%s| " }
631       mb_cmd <- collectCommand q ""
632       getGHCiState >>= \st->setGHCiState st{ prompt = p }
633       return mb_cmd
634     -- we can't use removeSpaces for the sublines here, so 
635     -- multiline commands are somewhat more brittle against
636     -- fileformat errors (such as \r in dos input on unix), 
637     -- we get rid of any extra spaces for the ":}" test; 
638     -- we also avoid silent failure if ":}" is not found;
639     -- and since there is no (?) valid occurrence of \r (as 
640     -- opposed to its String representation, "\r") inside a
641     -- ghci command, we replace any such with ' ' (argh:-(
642     collectCommand q c = q >>= 
643       maybe (io (ioError collectError))
644             (\l->if removeSpaces l == ":}" 
645                  then return (Just $ removeSpaces c) 
646                  else collectCommand q (c++map normSpace l))
647       where normSpace '\r' = ' '
648             normSpace   c  = c
649     -- QUESTION: is userError the one to use here?
650     collectError = userError "unterminated multiline command :{ .. :}"
651     doCommand (':' : cmd) = specialCommand cmd
652     doCommand stmt        = do timeIt $ runStmt stmt GHC.RunToCompletion
653                                return False
654
655 enqueueCommands :: [String] -> GHCi ()
656 enqueueCommands cmds = do
657   st <- getGHCiState
658   setGHCiState st{ cmdqueue = cmds ++ cmdqueue st }
659
660
661 runStmt :: String -> SingleStep -> GHCi Bool
662 runStmt stmt step
663  | null (filter (not.isSpace) stmt) = return False
664  | ["import", mod] <- words stmt    = keepGoing setContext ('+':mod)
665  | otherwise
666  = do st <- getGHCiState
667       session <- getSession
668       result <- io $ withProgName (progname st) $ withArgs (args st) $
669                      GHC.runStmt session stmt step
670       afterRunStmt (const True) result
671
672
673 --afterRunStmt :: GHC.RunResult -> GHCi Bool
674                                  -- False <=> the statement failed to compile
675 afterRunStmt :: (SrcSpan -> Bool) -> GHC.RunResult -> GHCi Bool
676 afterRunStmt _ (GHC.RunException e) = throw e
677 afterRunStmt step_here run_result = do
678   session     <- getSession
679   resumes <- io $ GHC.getResumeContext session
680   case run_result of
681      GHC.RunOk names -> do
682         show_types <- isOptionSet ShowType
683         when show_types $ printTypeOfNames session names
684      GHC.RunBreak _ names mb_info 
685          | isNothing  mb_info || 
686            step_here (GHC.resumeSpan $ head resumes) -> do
687                printForUser $ ptext SLIT("Stopped at") <+> 
688                        ppr (GHC.resumeSpan $ head resumes)
689 --               printTypeOfNames session names
690                let namesSorted = sortBy compareNames names
691                tythings <- catMaybes `liftM` 
692                               io (mapM (GHC.lookupName session) namesSorted)
693                docs <- io$ pprTypeAndContents session [id | AnId id <- tythings]
694                printForUserPartWay docs
695                maybe (return ()) runBreakCmd mb_info
696                -- run the command set with ":set stop <cmd>"
697                st <- getGHCiState
698                enqueueCommands [stop st]
699                return ()
700          | otherwise -> io(GHC.resume session GHC.SingleStep) >>= 
701                         afterRunStmt step_here >> return ()
702      _ -> return ()
703
704   flushInterpBuffers
705   io installSignalHandlers
706   b <- isOptionSet RevertCAFs
707   io (when b revertCAFs)
708
709   return (case run_result of GHC.RunOk _ -> True; _ -> False)
710
711 runBreakCmd :: GHC.BreakInfo -> GHCi ()
712 runBreakCmd info = do
713   let mod = GHC.breakInfo_module info
714       nm  = GHC.breakInfo_number info
715   st <- getGHCiState
716   case  [ loc | (_,loc) <- breaks st,
717                 breakModule loc == mod, breakTick loc == nm ] of
718         []  -> return ()
719         loc:_ | null cmd  -> return ()
720               | otherwise -> do enqueueCommands [cmd]; return ()
721               where cmd = onBreakCmd loc
722
723 printTypeOfNames :: Session -> [Name] -> GHCi ()
724 printTypeOfNames session names
725  = mapM_ (printTypeOfName session) $ sortBy compareNames names
726
727 compareNames :: Name -> Name -> Ordering
728 n1 `compareNames` n2 = compareWith n1 `compare` compareWith n2
729     where compareWith n = (getOccString n, getSrcSpan n)
730
731 printTypeOfName :: Session -> Name -> GHCi ()
732 printTypeOfName session n
733    = do maybe_tything <- io (GHC.lookupName session n)
734         case maybe_tything of
735             Nothing    -> return ()
736             Just thing -> printTyThing thing
737
738
739 data MaybeCommand = GotCommand Command | BadCommand | NoLastCommand
740
741 specialCommand :: String -> GHCi Bool
742 specialCommand ('!':str) = shellEscape (dropWhile isSpace str)
743 specialCommand str = do
744   let (cmd,rest) = break isSpace str
745   maybe_cmd <- lookupCommand cmd
746   case maybe_cmd of
747     GotCommand (_,f,_,_) -> f (dropWhile isSpace rest)
748     BadCommand ->
749       do io $ hPutStr stdout ("unknown command ':" ++ cmd ++ "'\n"
750                            ++ shortHelpText)
751          return False
752     NoLastCommand ->
753       do io $ hPutStr stdout ("there is no last command to perform\n"
754                            ++ shortHelpText)
755          return False
756
757 lookupCommand :: String -> GHCi (MaybeCommand)
758 lookupCommand "" = do
759   st <- getGHCiState
760   case last_command st of
761       Just c -> return $ GotCommand c
762       Nothing -> return NoLastCommand
763 lookupCommand str = do
764   mc <- io $ lookupCommand' str
765   st <- getGHCiState
766   setGHCiState st{ last_command = mc }
767   return $ case mc of
768            Just c -> GotCommand c
769            Nothing -> BadCommand
770
771 lookupCommand' :: String -> IO (Maybe Command)
772 lookupCommand' str = do
773   macros <- readIORef macros_ref
774   let cmds = builtin_commands ++ macros
775   -- look for exact match first, then the first prefix match
776   return $ case [ c | c <- cmds, str == cmdName c ] of
777            c:_ -> Just c
778            [] -> case [ c | c@(s,_,_,_) <- cmds, str `isPrefixOf` s ] of
779                  [] -> Nothing
780                  c:_ -> Just c
781
782 getCurrentBreakSpan :: GHCi (Maybe SrcSpan)
783 getCurrentBreakSpan = do
784   session <- getSession
785   resumes <- io $ GHC.getResumeContext session
786   case resumes of
787     [] -> return Nothing
788     (r:_) -> do
789         let ix = GHC.resumeHistoryIx r
790         if ix == 0
791            then return (Just (GHC.resumeSpan r))
792            else do
793                 let hist = GHC.resumeHistory r !! (ix-1)
794                 span <- io $ GHC.getHistorySpan session hist
795                 return (Just span)
796
797 getCurrentBreakModule :: GHCi (Maybe Module)
798 getCurrentBreakModule = do
799   session <- getSession
800   resumes <- io $ GHC.getResumeContext session
801   case resumes of
802     [] -> return Nothing
803     (r:_) -> do
804         let ix = GHC.resumeHistoryIx r
805         if ix == 0
806            then return (GHC.breakInfo_module `liftM` GHC.resumeBreakInfo r)
807            else do
808                 let hist = GHC.resumeHistory r !! (ix-1)
809                 return $ Just $ GHC.getHistoryModule  hist
810
811 -----------------------------------------------------------------------------
812 -- Commands
813
814 noArgs :: GHCi () -> String -> GHCi ()
815 noArgs m "" = m
816 noArgs _ _  = io $ putStrLn "This command takes no arguments"
817
818 help :: String -> GHCi ()
819 help _ = io (putStr helpText)
820
821 info :: String -> GHCi ()
822 info "" = throwDyn (CmdLineError "syntax: ':i <thing-you-want-info-about>'")
823 info s  = do { let names = words s
824              ; session <- getSession
825              ; dflags <- getDynFlags
826              ; let pefas = dopt Opt_PrintExplicitForalls dflags
827              ; mapM_ (infoThing pefas session) names }
828   where
829     infoThing pefas session str = io $ do
830         names     <- GHC.parseName session str
831         mb_stuffs <- mapM (GHC.getInfo session) names
832         let filtered = filterOutChildren (\(t,_f,_i) -> t) (catMaybes mb_stuffs)
833         unqual <- GHC.getPrintUnqual session
834         putStrLn (showSDocForUser unqual $
835                    vcat (intersperse (text "") $
836                          map (pprInfo pefas) filtered))
837
838   -- Filter out names whose parent is also there Good
839   -- example is '[]', which is both a type and data
840   -- constructor in the same type
841 filterOutChildren :: (a -> TyThing) -> [a] -> [a]
842 filterOutChildren get_thing xs 
843   = [x | x <- xs, not (getName (get_thing x) `elemNameSet` implicits)]
844   where
845     implicits = mkNameSet [getName t | x <- xs, t <- implicitTyThings (get_thing x)]
846
847 pprInfo :: PrintExplicitForalls -> (TyThing, Fixity, [GHC.Instance]) -> SDoc
848 pprInfo pefas (thing, fixity, insts)
849   =  pprTyThingInContextLoc pefas thing
850   $$ show_fixity fixity
851   $$ vcat (map GHC.pprInstance insts)
852   where
853     show_fixity fix 
854         | fix == GHC.defaultFixity = empty
855         | otherwise                = ppr fix <+> ppr (GHC.getName thing)
856
857 runMain :: String -> GHCi ()
858 runMain s = case toArgs s of
859             Left err   -> io (hPutStrLn stderr err)
860             Right args ->
861                 do dflags <- getDynFlags
862                    case mainFunIs dflags of
863                        Nothing -> doWithArgs args "main"
864                        Just f  -> doWithArgs args f
865
866 runRun :: String -> GHCi ()
867 runRun s = case toCmdArgs s of
868            Left err          -> io (hPutStrLn stderr err)
869            Right (cmd, args) -> doWithArgs args cmd
870
871 doWithArgs :: [String] -> String -> GHCi ()
872 doWithArgs args cmd = enqueueCommands ["System.Environment.withArgs " ++
873                                        show args ++ " (" ++ cmd ++ ")"]
874
875 addModule :: [FilePath] -> GHCi ()
876 addModule files = do
877   io (revertCAFs)                       -- always revert CAFs on load/add.
878   files <- mapM expandPath files
879   targets <- mapM (\m -> io (GHC.guessTarget m Nothing)) files
880   session <- getSession
881   io (mapM_ (GHC.addTarget session) targets)
882   prev_context <- io $ GHC.getContext session
883   ok <- io (GHC.load session LoadAllTargets)
884   afterLoad ok session False prev_context
885
886 changeDirectory :: String -> GHCi ()
887 changeDirectory "" = do
888   -- :cd on its own changes to the user's home directory
889   either_dir <- io (IO.try getHomeDirectory)
890   case either_dir of
891      Left _e -> return ()
892      Right dir -> changeDirectory dir
893 changeDirectory dir = do
894   session <- getSession
895   graph <- io (GHC.getModuleGraph session)
896   when (not (null graph)) $
897         io $ putStr "Warning: changing directory causes all loaded modules to be unloaded,\nbecause the search path has changed.\n"
898   prev_context <- io $ GHC.getContext session
899   io (GHC.setTargets session [])
900   io (GHC.load session LoadAllTargets)
901   setContextAfterLoad session prev_context False []
902   io (GHC.workingDirectoryChanged session)
903   dir <- expandPath dir
904   io (setCurrentDirectory dir)
905
906 editFile :: String -> GHCi ()
907 editFile str =
908   do file <- if null str then chooseEditFile else return str
909      st <- getGHCiState
910      let cmd = editor st
911      when (null cmd) 
912        $ throwDyn (CmdLineError "editor not set, use :set editor")
913      io $ system (cmd ++ ' ':file)
914      return ()
915
916 -- The user didn't specify a file so we pick one for them.
917 -- Our strategy is to pick the first module that failed to load,
918 -- or otherwise the first target.
919 --
920 -- XXX: Can we figure out what happened if the depndecy analysis fails
921 --      (e.g., because the porgrammeer mistyped the name of a module)?
922 -- XXX: Can we figure out the location of an error to pass to the editor?
923 -- XXX: if we could figure out the list of errors that occured during the
924 -- last load/reaload, then we could start the editor focused on the first
925 -- of those.
926 chooseEditFile :: GHCi String
927 chooseEditFile =
928   do session <- getSession
929      let hasFailed x = io $ fmap not $ GHC.isLoaded session $ GHC.ms_mod_name x
930
931      graph <- io (GHC.getModuleGraph session)
932      failed_graph <- filterM hasFailed graph
933      let order g  = flattenSCCs $ GHC.topSortModuleGraph True g Nothing
934          pick xs  = case xs of
935                       x : _ -> GHC.ml_hs_file (GHC.ms_location x)
936                       _     -> Nothing
937
938      case pick (order failed_graph) of
939        Just file -> return file
940        Nothing   -> 
941          do targets <- io (GHC.getTargets session)
942             case msum (map fromTarget targets) of
943               Just file -> return file
944               Nothing   -> throwDyn (CmdLineError "No files to edit.")
945           
946   where fromTarget (GHC.Target (GHC.TargetFile f _) _) = Just f
947         fromTarget _ = Nothing -- when would we get a module target?
948
949 defineMacro :: Bool{-overwrite-} -> String -> GHCi ()
950 defineMacro overwrite s = do
951   let (macro_name, definition) = break isSpace s
952   macros <- io (readIORef macros_ref)
953   let defined = map cmdName macros
954   if (null macro_name) 
955         then if null defined
956                 then io $ putStrLn "no macros defined"
957                 else io $ putStr ("the following macros are defined:\n" ++
958                                   unlines defined)
959         else do
960   if (not overwrite && macro_name `elem` defined)
961         then throwDyn (CmdLineError 
962                 ("macro '" ++ macro_name ++ "' is already defined"))
963         else do
964
965   let filtered = [ cmd | cmd <- macros, cmdName cmd /= macro_name ]
966
967   -- give the expression a type signature, so we can be sure we're getting
968   -- something of the right type.
969   let new_expr = '(' : definition ++ ") :: String -> IO String"
970
971   -- compile the expression
972   cms <- getSession
973   maybe_hv <- io (GHC.compileExpr cms new_expr)
974   case maybe_hv of
975      Nothing -> return ()
976      Just hv -> io (writeIORef macros_ref --
977                     (filtered ++ [(macro_name, runMacro hv, Nothing, completeNone)]))
978
979 runMacro :: GHC.HValue{-String -> IO String-} -> String -> GHCi Bool
980 runMacro fun s = do
981   str <- io ((unsafeCoerce# fun :: String -> IO String) s)
982   enqueueCommands (lines str)
983   return False
984
985 undefineMacro :: String -> GHCi ()
986 undefineMacro str = mapM_ undef (words str) 
987  where undef macro_name = do
988         cmds <- io (readIORef macros_ref)
989         if (macro_name `notElem` map cmdName cmds) 
990            then throwDyn (CmdLineError 
991                 ("macro '" ++ macro_name ++ "' is not defined"))
992            else do
993             io (writeIORef macros_ref (filter ((/= macro_name) . cmdName) cmds))
994
995 cmdCmd :: String -> GHCi ()
996 cmdCmd str = do
997   let expr = '(' : str ++ ") :: IO String"
998   session <- getSession
999   maybe_hv <- io (GHC.compileExpr session expr)
1000   case maybe_hv of
1001     Nothing -> return ()
1002     Just hv -> do 
1003         cmds <- io $ (unsafeCoerce# hv :: IO String)
1004         enqueueCommands (lines cmds)
1005         return ()
1006
1007 loadModule :: [(FilePath, Maybe Phase)] -> GHCi SuccessFlag
1008 loadModule fs = timeIt (loadModule' fs)
1009
1010 loadModule_ :: [FilePath] -> GHCi ()
1011 loadModule_ fs = do loadModule (zip fs (repeat Nothing)); return ()
1012
1013 loadModule' :: [(FilePath, Maybe Phase)] -> GHCi SuccessFlag
1014 loadModule' files = do
1015   session <- getSession
1016   prev_context <- io $ GHC.getContext session
1017
1018   -- unload first
1019   discardActiveBreakPoints
1020   io (GHC.setTargets session [])
1021   io (GHC.load session LoadAllTargets)
1022
1023   -- expand tildes
1024   let (filenames, phases) = unzip files
1025   exp_filenames <- mapM expandPath filenames
1026   let files' = zip exp_filenames phases
1027   targets <- io (mapM (uncurry GHC.guessTarget) files')
1028
1029   -- NOTE: we used to do the dependency anal first, so that if it
1030   -- fails we didn't throw away the current set of modules.  This would
1031   -- require some re-working of the GHC interface, so we'll leave it
1032   -- as a ToDo for now.
1033
1034   io (GHC.setTargets session targets)
1035   doLoad session False prev_context LoadAllTargets
1036
1037 checkModule :: String -> GHCi ()
1038 checkModule m = do
1039   let modl = GHC.mkModuleName m
1040   session <- getSession
1041   prev_context <- io $ GHC.getContext session
1042   result <- io (GHC.checkModule session modl False)
1043   case result of
1044     Nothing -> io $ putStrLn "Nothing"
1045     Just r  -> io $ putStrLn (showSDoc (
1046         case GHC.checkedModuleInfo r of
1047            Just cm | Just scope <- GHC.modInfoTopLevelScope cm -> 
1048                 let
1049                     (local,global) = partition ((== modl) . GHC.moduleName . GHC.nameModule) scope
1050                 in
1051                         (text "global names: " <+> ppr global) $$
1052                         (text "local  names: " <+> ppr local)
1053            _ -> empty))
1054   afterLoad (successIf (isJust result)) session False prev_context
1055
1056 reloadModule :: String -> GHCi ()
1057 reloadModule m = do
1058   session <- getSession
1059   prev_context <- io $ GHC.getContext session
1060   doLoad session True prev_context $ 
1061         if null m then LoadAllTargets 
1062                   else LoadUpTo (GHC.mkModuleName m)
1063   return ()
1064
1065 doLoad :: Session -> Bool -> ([Module],[Module]) -> LoadHowMuch -> GHCi SuccessFlag
1066 doLoad session retain_context prev_context howmuch = do
1067   -- turn off breakpoints before we load: we can't turn them off later, because
1068   -- the ModBreaks will have gone away.
1069   discardActiveBreakPoints
1070   ok <- io (GHC.load session howmuch)
1071   afterLoad ok session retain_context prev_context
1072   return ok
1073
1074 afterLoad :: SuccessFlag -> Session -> Bool -> ([Module],[Module]) -> GHCi ()
1075 afterLoad ok session retain_context prev_context = do
1076   io (revertCAFs)  -- always revert CAFs on load.
1077   discardTickArrays
1078   loaded_mod_summaries <- getLoadedModules session
1079   let loaded_mods = map GHC.ms_mod loaded_mod_summaries
1080       loaded_mod_names = map GHC.moduleName loaded_mods
1081   modulesLoadedMsg ok loaded_mod_names
1082
1083   setContextAfterLoad session prev_context retain_context loaded_mod_summaries
1084
1085
1086 setContextAfterLoad :: Session -> ([Module],[Module]) -> Bool -> [GHC.ModSummary] -> GHCi ()
1087 setContextAfterLoad session prev keep_ctxt [] = do
1088   prel_mod <- getPrelude
1089   setContextKeepingPackageModules session prev keep_ctxt ([], [prel_mod])
1090 setContextAfterLoad session prev keep_ctxt ms = do
1091   -- load a target if one is available, otherwise load the topmost module.
1092   targets <- io (GHC.getTargets session)
1093   case [ m | Just m <- map (findTarget ms) targets ] of
1094         []    -> 
1095           let graph' = flattenSCCs (GHC.topSortModuleGraph True ms Nothing) in
1096           load_this (last graph')         
1097         (m:_) -> 
1098           load_this m
1099  where
1100    findTarget ms t
1101     = case filter (`matches` t) ms of
1102         []    -> Nothing
1103         (m:_) -> Just m
1104
1105    summary `matches` Target (TargetModule m) _
1106         = GHC.ms_mod_name summary == m
1107    summary `matches` Target (TargetFile f _) _ 
1108         | Just f' <- GHC.ml_hs_file (GHC.ms_location summary)   = f == f'
1109    _ `matches` _
1110         = False
1111
1112    load_this summary | m <- GHC.ms_mod summary = do
1113         b <- io (GHC.moduleIsInterpreted session m)
1114         if b then setContextKeepingPackageModules session prev keep_ctxt ([m], [])
1115              else do
1116                 prel_mod <- getPrelude
1117                 setContextKeepingPackageModules session prev keep_ctxt ([],[prel_mod,m])
1118
1119 -- | Keep any package modules (except Prelude) when changing the context.
1120 setContextKeepingPackageModules
1121         :: Session
1122         -> ([Module],[Module])          -- previous context
1123         -> Bool                         -- re-execute :module commands
1124         -> ([Module],[Module])          -- new context
1125         -> GHCi ()
1126 setContextKeepingPackageModules session prev_context keep_ctxt (as,bs) = do
1127   let (_,bs0) = prev_context
1128   prel_mod <- getPrelude
1129   let pkg_modules = filter (\p -> not (isHomeModule p) && p /= prel_mod) bs0
1130   let bs1 = if null as then nub (prel_mod : bs) else bs
1131   io $ GHC.setContext session as (nub (bs1 ++ pkg_modules))
1132   if keep_ctxt
1133      then do
1134           st <- getGHCiState
1135           mapM_ (playCtxtCmd False) (remembered_ctx st)
1136      else do
1137           st <- getGHCiState
1138           setGHCiState st{ remembered_ctx = [] }
1139
1140 isHomeModule :: Module -> Bool
1141 isHomeModule mod = GHC.modulePackageId mod == mainPackageId
1142
1143 modulesLoadedMsg :: SuccessFlag -> [ModuleName] -> GHCi ()
1144 modulesLoadedMsg ok mods = do
1145   dflags <- getDynFlags
1146   when (verbosity dflags > 0) $ do
1147    let mod_commas 
1148         | null mods = text "none."
1149         | otherwise = hsep (
1150             punctuate comma (map ppr mods)) <> text "."
1151    case ok of
1152     Failed ->
1153        io (putStrLn (showSDoc (text "Failed, modules loaded: " <> mod_commas)))
1154     Succeeded  ->
1155        io (putStrLn (showSDoc (text "Ok, modules loaded: " <> mod_commas)))
1156
1157
1158 typeOfExpr :: String -> GHCi ()
1159 typeOfExpr str 
1160   = do cms <- getSession
1161        maybe_ty <- io (GHC.exprType cms str)
1162        case maybe_ty of
1163           Nothing -> return ()
1164           Just ty -> do dflags <- getDynFlags
1165                         let pefas = dopt Opt_PrintExplicitForalls dflags
1166                         printForUser $ text str <+> dcolon
1167                                         <+> pprTypeForUser pefas ty
1168
1169 kindOfType :: String -> GHCi ()
1170 kindOfType str 
1171   = do cms <- getSession
1172        maybe_ty <- io (GHC.typeKind cms str)
1173        case maybe_ty of
1174           Nothing    -> return ()
1175           Just ty    -> printForUser $ text str <+> dcolon <+> ppr ty
1176           
1177 quit :: String -> GHCi Bool
1178 quit _ = return True
1179
1180 shellEscape :: String -> GHCi Bool
1181 shellEscape str = io (system str >> return False)
1182
1183 -----------------------------------------------------------------------------
1184 -- Browsing a module's contents
1185
1186 browseCmd :: Bool -> String -> GHCi ()
1187 browseCmd bang m = 
1188   case words m of
1189     ['*':s] | looksLikeModuleName s -> do 
1190         m <-  wantInterpretedModule s
1191         browseModule bang m False
1192     [s] | looksLikeModuleName s -> do
1193         m <- lookupModule s
1194         browseModule bang m True
1195     [] -> do
1196         s <- getSession
1197         (as,bs) <- io $ GHC.getContext s
1198                 -- Guess which module the user wants to browse.  Pick
1199                 -- modules that are interpreted first.  The most
1200                 -- recently-added module occurs last, it seems.
1201         case (as,bs) of
1202           (as@(_:_), _)   -> browseModule bang (last as) True
1203           ([],  bs@(_:_)) -> browseModule bang (last bs) True
1204           ([],  [])  -> throwDyn (CmdLineError ":browse: no current module")
1205     _ -> throwDyn (CmdLineError "syntax:  :browse <module>")
1206
1207 -- without bang, show items in context of their parents and omit children
1208 -- with bang, show class methods and data constructors separately, and
1209 --            indicate import modules, to aid qualifying unqualified names
1210 -- with sorted, sort items alphabetically
1211 browseModule :: Bool -> Module -> Bool -> GHCi ()
1212 browseModule bang modl exports_only = do
1213   s <- getSession
1214   -- :browse! reports qualifiers wrt current context
1215   current_unqual <- io (GHC.getPrintUnqual s)
1216   -- Temporarily set the context to the module we're interested in,
1217   -- just so we can get an appropriate PrintUnqualified
1218   (as,bs) <- io (GHC.getContext s)
1219   prel_mod <- getPrelude
1220   io (if exports_only then GHC.setContext s [] [prel_mod,modl]
1221                       else GHC.setContext s [modl] [])
1222   target_unqual <- io (GHC.getPrintUnqual s)
1223   io (GHC.setContext s as bs)
1224
1225   let unqual = if bang then current_unqual else target_unqual
1226
1227   mb_mod_info <- io $ GHC.getModuleInfo s modl
1228   case mb_mod_info of
1229     Nothing -> throwDyn (CmdLineError ("unknown module: " ++
1230                                 GHC.moduleNameString (GHC.moduleName modl)))
1231     Just mod_info -> do
1232         dflags <- getDynFlags
1233         let names
1234                | exports_only = GHC.modInfoExports mod_info
1235                | otherwise    = GHC.modInfoTopLevelScope mod_info
1236                                 `orElse` []
1237
1238                 -- sort alphabetically name, but putting
1239                 -- locally-defined identifiers first.
1240                 -- We would like to improve this; see #1799.
1241             sorted_names = loc_sort local ++ occ_sort external
1242                 where 
1243                 (local,external) = partition ((==modl) . nameModule) names
1244                 occ_sort = sortBy (compare `on` nameOccName) 
1245                 -- try to sort by src location.  If the first name in
1246                 -- our list has a good source location, then they all should.
1247                 loc_sort names
1248                       | n:_ <- names, isGoodSrcSpan (nameSrcSpan n)
1249                       = sortBy (compare `on` nameSrcSpan) names
1250                       | otherwise
1251                       = occ_sort names
1252
1253         mb_things <- io $ mapM (GHC.lookupName s) sorted_names
1254         let filtered_things = filterOutChildren (\t -> t) (catMaybes mb_things)
1255
1256         rdr_env <- io $ GHC.getGRE s
1257
1258         let pefas              = dopt Opt_PrintExplicitForalls dflags
1259             things | bang      = catMaybes mb_things
1260                    | otherwise = filtered_things
1261             pretty | bang      = pprTyThing
1262                    | otherwise = pprTyThingInContext
1263
1264             labels  [] = text "-- not currently imported"
1265             labels  l  = text $ intercalate "\n" $ map qualifier l
1266             qualifier  = maybe "-- defined locally" 
1267                              (("-- imported via "++) . intercalate ", " 
1268                                . map GHC.moduleNameString)
1269             importInfo = RdrName.getGRE_NameQualifier_maybes rdr_env
1270             modNames   = map (importInfo . GHC.getName) things
1271                                         
1272             -- annotate groups of imports with their import modules
1273             -- the default ordering is somewhat arbitrary, so we group 
1274             -- by header and sort groups; the names themselves should
1275             -- really come in order of source appearance.. (trac #1799)
1276             annotate mts = concatMap (\(m,ts)->labels m:ts)
1277                          $ sortBy cmpQualifiers $ group mts
1278               where cmpQualifiers = 
1279                       compare `on` (map (fmap (map moduleNameFS)) . fst)
1280             group []            = []
1281             group mts@((m,_):_) = (m,map snd g) : group ng
1282               where (g,ng) = partition ((==m).fst) mts
1283
1284         let prettyThings = map (pretty pefas) things
1285             prettyThings' | bang      = annotate $ zip modNames prettyThings
1286                           | otherwise = prettyThings
1287         io (putStrLn $ showSDocForUser unqual (vcat prettyThings'))
1288         -- ToDo: modInfoInstances currently throws an exception for
1289         -- package modules.  When it works, we can do this:
1290         --        $$ vcat (map GHC.pprInstance (GHC.modInfoInstances mod_info))
1291
1292 -----------------------------------------------------------------------------
1293 -- Setting the module context
1294
1295 setContext :: String -> GHCi ()
1296 setContext str
1297   | all sensible strs = do
1298        playCtxtCmd True (cmd, as, bs)
1299        st <- getGHCiState
1300        setGHCiState st{ remembered_ctx = remembered_ctx st ++ [(cmd,as,bs)] }
1301   | otherwise = throwDyn (CmdLineError "syntax:  :module [+/-] [*]M1 ... [*]Mn")
1302   where
1303     (cmd, strs, as, bs) =
1304         case str of 
1305                 '+':stuff -> rest AddModules stuff
1306                 '-':stuff -> rest RemModules stuff
1307                 stuff     -> rest SetContext stuff
1308
1309     rest cmd stuff = (cmd, strs, as, bs)
1310        where strs = words stuff
1311              (as,bs) = partitionWith starred strs
1312
1313     sensible ('*':m) = looksLikeModuleName m
1314     sensible m       = looksLikeModuleName m
1315
1316     starred ('*':m) = Left m
1317     starred m       = Right m
1318
1319 playCtxtCmd :: Bool -> (CtxtCmd, [String], [String]) -> GHCi ()
1320 playCtxtCmd fail (cmd, as, bs)
1321   = do
1322     s <- getSession
1323     (as',bs') <- do_checks fail
1324     (prev_as,prev_bs) <- io $ GHC.getContext s
1325     (new_as, new_bs) <-
1326       case cmd of
1327         SetContext -> do
1328           prel_mod <- getPrelude
1329           let bs'' = if null as && prel_mod `notElem` bs' then prel_mod:bs'
1330                                                           else bs'
1331           return (as',bs'')
1332         AddModules -> do
1333           let as_to_add = as' \\ (prev_as ++ prev_bs)
1334               bs_to_add = bs' \\ (prev_as ++ prev_bs)
1335           return (prev_as ++ as_to_add, prev_bs ++ bs_to_add)
1336         RemModules -> do
1337           let new_as = prev_as \\ (as' ++ bs')
1338               new_bs = prev_bs \\ (as' ++ bs')
1339           return (new_as, new_bs)
1340     io $ GHC.setContext s new_as new_bs
1341   where
1342     do_checks True = do
1343       as' <- mapM wantInterpretedModule as
1344       bs' <- mapM lookupModule bs
1345       return (as',bs')
1346     do_checks False = do
1347       as' <- mapM (trymaybe . wantInterpretedModule) as
1348       bs' <- mapM (trymaybe . lookupModule) bs
1349       return (catMaybes as', catMaybes bs')
1350
1351     trymaybe m = do
1352         r <- ghciTry m
1353         case r of
1354           Left _  -> return Nothing
1355           Right a -> return (Just a)
1356
1357 ----------------------------------------------------------------------------
1358 -- Code for `:set'
1359
1360 -- set options in the interpreter.  Syntax is exactly the same as the
1361 -- ghc command line, except that certain options aren't available (-C,
1362 -- -E etc.)
1363 --
1364 -- This is pretty fragile: most options won't work as expected.  ToDo:
1365 -- figure out which ones & disallow them.
1366
1367 setCmd :: String -> GHCi ()
1368 setCmd ""
1369   = do st <- getGHCiState
1370        let opts = options st
1371        io $ putStrLn (showSDoc (
1372               text "options currently set: " <> 
1373               if null opts
1374                    then text "none."
1375                    else hsep (map (\o -> char '+' <> text (optToStr o)) opts)
1376            ))
1377        dflags <- getDynFlags
1378        io $ putStrLn (showSDoc (
1379           vcat (text "GHCi-specific dynamic flag settings:" 
1380                :map (flagSetting dflags) ghciFlags)
1381           ))
1382        io $ putStrLn (showSDoc (
1383           vcat (text "other dynamic, non-language, flag settings:" 
1384                :map (flagSetting dflags) nonLanguageDynFlags)
1385           ))
1386   where flagSetting dflags (str,f)
1387           | dopt f dflags = text "  " <> text "-f"    <> text str
1388           | otherwise     = text "  " <> text "-fno-" <> text str
1389         (ghciFlags,others)  = partition (\(_,f)->f `elem` flags) 
1390                                         DynFlags.fFlags
1391         nonLanguageDynFlags = filter (\(_,f)->not $ f `elem` map snd xFlags) 
1392                                      others
1393         flags = [Opt_PrintExplicitForalls
1394                 ,Opt_PrintBindResult
1395                 ,Opt_BreakOnException
1396                 ,Opt_BreakOnError
1397                 ,Opt_PrintEvldWithShow
1398                 ] 
1399 setCmd str
1400   = case getCmd str of
1401     Right ("args",   rest) ->
1402         case toArgs rest of
1403             Left err -> io (hPutStrLn stderr err)
1404             Right args -> setArgs args
1405     Right ("prog",   rest) ->
1406         case toArgs rest of
1407             Right [prog] -> setProg prog
1408             _ -> io (hPutStrLn stderr "syntax: :set prog <progname>")
1409     Right ("prompt", rest) -> setPrompt $ dropWhile isSpace rest
1410     Right ("editor", rest) -> setEditor $ dropWhile isSpace rest
1411     Right ("stop",   rest) -> setStop   $ dropWhile isSpace rest
1412     _ -> case toArgs str of
1413          Left err -> io (hPutStrLn stderr err)
1414          Right wds -> setOptions wds
1415
1416 setArgs, setOptions :: [String] -> GHCi ()
1417 setProg, setEditor, setStop, setPrompt :: String -> GHCi ()
1418
1419 setArgs args = do
1420   st <- getGHCiState
1421   setGHCiState st{ args = args }
1422
1423 setProg prog = do
1424   st <- getGHCiState
1425   setGHCiState st{ progname = prog }
1426
1427 setEditor cmd = do
1428   st <- getGHCiState
1429   setGHCiState st{ editor = cmd }
1430
1431 setStop str@(c:_) | isDigit c
1432   = do let (nm_str,rest) = break (not.isDigit) str
1433            nm = read nm_str
1434        st <- getGHCiState
1435        let old_breaks = breaks st
1436        if all ((/= nm) . fst) old_breaks
1437               then printForUser (text "Breakpoint" <+> ppr nm <+>
1438                                  text "does not exist")
1439               else do
1440        let new_breaks = map fn old_breaks
1441            fn (i,loc) | i == nm   = (i,loc { onBreakCmd = dropWhile isSpace rest })
1442                       | otherwise = (i,loc)
1443        setGHCiState st{ breaks = new_breaks }
1444 setStop cmd = do
1445   st <- getGHCiState
1446   setGHCiState st{ stop = cmd }
1447
1448 setPrompt value = do
1449   st <- getGHCiState
1450   if null value
1451       then io $ hPutStrLn stderr $ "syntax: :set prompt <prompt>, currently \"" ++ prompt st ++ "\""
1452       else setGHCiState st{ prompt = remQuotes value }
1453   where
1454      remQuotes ('\"':xs) | not (null xs) && last xs == '\"' = init xs
1455      remQuotes x = x
1456
1457 setOptions wds =
1458    do -- first, deal with the GHCi opts (+s, +t, etc.)
1459       let (plus_opts, minus_opts)  = partitionWith isPlus wds
1460       mapM_ setOpt plus_opts
1461       -- then, dynamic flags
1462       newDynFlags minus_opts
1463
1464 newDynFlags :: [String] -> GHCi ()
1465 newDynFlags minus_opts = do
1466       dflags <- getDynFlags
1467       let pkg_flags = packageFlags dflags
1468       (dflags',leftovers) <- io $ GHC.parseDynamicFlags dflags minus_opts
1469
1470       if (not (null leftovers))
1471                 then throwDyn (CmdLineError ("unrecognised flags: " ++ 
1472                                                 unwords leftovers))
1473                 else return ()
1474
1475       new_pkgs <- setDynFlags dflags'
1476
1477       -- if the package flags changed, we should reset the context
1478       -- and link the new packages.
1479       dflags <- getDynFlags
1480       when (packageFlags dflags /= pkg_flags) $ do
1481         io $ hPutStrLn stderr "package flags have changed, ressetting and loading new packages..."
1482         session <- getSession
1483         io (GHC.setTargets session [])
1484         io (GHC.load session LoadAllTargets)
1485         io (linkPackages dflags new_pkgs)
1486         -- package flags changed, we can't re-use any of the old context
1487         setContextAfterLoad session ([],[]) False []
1488       return ()
1489
1490
1491 unsetOptions :: String -> GHCi ()
1492 unsetOptions str
1493   = do -- first, deal with the GHCi opts (+s, +t, etc.)
1494        let opts = words str
1495            (minus_opts, rest1) = partition isMinus opts
1496            (plus_opts, rest2)  = partitionWith isPlus rest1
1497
1498        if (not (null rest2)) 
1499           then io (putStrLn ("unknown option: '" ++ head rest2 ++ "'"))
1500           else do
1501
1502        mapM_ unsetOpt plus_opts
1503  
1504        let no_flag ('-':'f':rest) = return ("-fno-" ++ rest)
1505            no_flag f = throwDyn (ProgramError ("don't know how to reverse " ++ f))
1506
1507        no_flags <- mapM no_flag minus_opts
1508        newDynFlags no_flags
1509
1510 isMinus :: String -> Bool
1511 isMinus ('-':_) = True
1512 isMinus _ = False
1513
1514 isPlus :: String -> Either String String
1515 isPlus ('+':opt) = Left opt
1516 isPlus other     = Right other
1517
1518 setOpt, unsetOpt :: String -> GHCi ()
1519
1520 setOpt str
1521   = case strToGHCiOpt str of
1522         Nothing -> io (putStrLn ("unknown option: '" ++ str ++ "'"))
1523         Just o  -> setOption o
1524
1525 unsetOpt str
1526   = case strToGHCiOpt str of
1527         Nothing -> io (putStrLn ("unknown option: '" ++ str ++ "'"))
1528         Just o  -> unsetOption o
1529
1530 strToGHCiOpt :: String -> (Maybe GHCiOption)
1531 strToGHCiOpt "s" = Just ShowTiming
1532 strToGHCiOpt "t" = Just ShowType
1533 strToGHCiOpt "r" = Just RevertCAFs
1534 strToGHCiOpt _   = Nothing
1535
1536 optToStr :: GHCiOption -> String
1537 optToStr ShowTiming = "s"
1538 optToStr ShowType   = "t"
1539 optToStr RevertCAFs = "r"
1540
1541 -- ---------------------------------------------------------------------------
1542 -- code for `:show'
1543
1544 showCmd :: String -> GHCi ()
1545 showCmd str = do
1546   st <- getGHCiState
1547   case words str of
1548         ["args"]     -> io $ putStrLn (show (args st))
1549         ["prog"]     -> io $ putStrLn (show (progname st))
1550         ["prompt"]   -> io $ putStrLn (show (prompt st))
1551         ["editor"]   -> io $ putStrLn (show (editor st))
1552         ["stop"]     -> io $ putStrLn (show (stop st))
1553         ["modules" ] -> showModules
1554         ["bindings"] -> showBindings
1555         ["linker"]   -> io showLinkerState
1556         ["breaks"]   -> showBkptTable
1557         ["context"]  -> showContext
1558         ["packages"]  -> showPackages
1559         ["languages"]  -> showLanguages
1560         _ -> throwDyn (CmdLineError "syntax:  :show [args|prog|prompt|editor|stop|modules|bindings|breaks|context]")
1561
1562 showModules :: GHCi ()
1563 showModules = do
1564   session <- getSession
1565   loaded_mods <- getLoadedModules session
1566         -- we want *loaded* modules only, see #1734
1567   let show_one ms = do m <- io (GHC.showModule session ms); io (putStrLn m)
1568   mapM_ show_one loaded_mods
1569
1570 getLoadedModules :: GHC.Session -> GHCi [GHC.ModSummary]
1571 getLoadedModules session = do
1572   graph <- io (GHC.getModuleGraph session)
1573   filterM (io . GHC.isLoaded session . GHC.ms_mod_name) graph
1574
1575 showBindings :: GHCi ()
1576 showBindings = do
1577   s <- getSession
1578   bindings <- io (GHC.getBindings s)
1579   docs     <- io$ pprTypeAndContents s 
1580                   [ id | AnId id <- sortBy compareTyThings bindings]
1581   printForUserPartWay docs
1582
1583 compareTyThings :: TyThing -> TyThing -> Ordering
1584 t1 `compareTyThings` t2 = getName t1 `compareNames` getName t2
1585
1586 printTyThing :: TyThing -> GHCi ()
1587 printTyThing tyth = do dflags <- getDynFlags
1588                        let pefas = dopt Opt_PrintExplicitForalls dflags
1589                        printForUser (pprTyThing pefas tyth)
1590
1591 showBkptTable :: GHCi ()
1592 showBkptTable = do
1593   st <- getGHCiState
1594   printForUser $ prettyLocations (breaks st)
1595
1596 showContext :: GHCi ()
1597 showContext = do
1598    session <- getSession
1599    resumes <- io $ GHC.getResumeContext session
1600    printForUser $ vcat (map pp_resume (reverse resumes))
1601   where
1602    pp_resume resume =
1603         ptext SLIT("--> ") <> text (GHC.resumeStmt resume)
1604         $$ nest 2 (ptext SLIT("Stopped at") <+> ppr (GHC.resumeSpan resume))
1605
1606 showPackages :: GHCi ()
1607 showPackages = do
1608   pkg_flags <- fmap packageFlags getDynFlags
1609   io $ putStrLn $ showSDoc $ vcat $
1610     text ("active package flags:"++if null pkg_flags then " none" else "")
1611     : map showFlag pkg_flags
1612   pkg_ids <- fmap (preloadPackages . pkgState) getDynFlags
1613   io $ putStrLn $ showSDoc $ vcat $
1614     text "packages currently loaded:" 
1615     : map (nest 2 . text . packageIdString) pkg_ids
1616   where showFlag (ExposePackage p) = text $ "  -package " ++ p
1617         showFlag (HidePackage p)   = text $ "  -hide-package " ++ p
1618         showFlag (IgnorePackage p) = text $ "  -ignore-package " ++ p
1619
1620 showLanguages :: GHCi ()
1621 showLanguages = do
1622    dflags <- getDynFlags
1623    io $ putStrLn $ showSDoc $ vcat $
1624       text "active language flags:" :
1625       [text ("  -X" ++ str) | (str,f) <- DynFlags.xFlags, dopt f dflags]
1626
1627 -- -----------------------------------------------------------------------------
1628 -- Completion
1629
1630 completeNone :: String -> IO [String]
1631 completeNone _w = return []
1632
1633 completeMacro, completeIdentifier, completeModule,
1634     completeHomeModule, completeSetOptions, completeFilename,
1635     completeHomeModuleOrFile 
1636     :: String -> IO [String]
1637
1638 #ifdef USE_READLINE
1639 completeWord :: String -> Int -> Int -> IO (Maybe (String, [String]))
1640 completeWord w start end = do
1641   line <- Readline.getLineBuffer
1642   let line_words = words (dropWhile isSpace line)
1643   case w of
1644      ':':_ | all isSpace (take (start-1) line) -> wrapCompleter completeCmd w
1645      _other
1646         | ((':':c) : _) <- line_words -> do
1647            completionVars <- lookupCompletionVars c
1648            case completionVars of
1649              (Nothing,complete) -> wrapCompleter complete w
1650              (Just breakChars,complete) 
1651                     -> let (n,w') = selectWord 
1652                                         (words' (`elem` breakChars) 0 line)
1653                            complete' w = do rets <- complete w
1654                                             return (map (drop n) rets)
1655                        in wrapCompleter complete' w'
1656         | ("import" : _) <- line_words ->
1657                 wrapCompleter completeModule w
1658         | otherwise     -> do
1659                 --printf "complete %s, start = %d, end = %d\n" w start end
1660                 wrapCompleter completeIdentifier w
1661     where words' _ _ [] = []
1662           words' isBreak n str = let (w,r) = break isBreak str
1663                                      (s,r') = span isBreak r
1664                                  in (n,w):words' isBreak (n+length w+length s) r'
1665           -- In a Haskell expression we want to parse 'a-b' as three words
1666           -- where a compiler flag (ie. -fno-monomorphism-restriction) should
1667           -- only be a single word.
1668           selectWord [] = (0,w)
1669           selectWord ((offset,x):xs)
1670               | offset+length x >= start = (start-offset,take (end-offset) x)
1671               | otherwise = selectWord xs
1672           
1673           lookupCompletionVars ('!':_) = return (Just filenameWordBreakChars,
1674                                             completeFilename)
1675           lookupCompletionVars c = do
1676               maybe_cmd <- lookupCommand' c
1677               case maybe_cmd of
1678                   Just (_,_,ws,f) -> return (ws,f)
1679                   Nothing -> return (Just filenameWordBreakChars,
1680                                         completeFilename)
1681
1682
1683 completeCmd :: String -> IO [String]
1684 completeCmd w = do
1685   cmds <- readIORef macros_ref
1686   return (filter (w `isPrefixOf`) (map (':':) 
1687              (map cmdName (builtin_commands ++ cmds))))
1688
1689 completeMacro w = do
1690   cmds <- readIORef macros_ref
1691   return (filter (w `isPrefixOf`) (map cmdName cmds))
1692
1693 completeIdentifier w = do
1694   s <- restoreSession
1695   rdrs <- GHC.getRdrNamesInScope s
1696   return (filter (w `isPrefixOf`) (map (showSDoc.ppr) rdrs))
1697
1698 completeModule w = do
1699   s <- restoreSession
1700   dflags <- GHC.getSessionDynFlags s
1701   let pkg_mods = allExposedModules dflags
1702   return (filter (w `isPrefixOf`) (map (showSDoc.ppr) pkg_mods))
1703
1704 completeHomeModule w = do
1705   s <- restoreSession
1706   g <- GHC.getModuleGraph s
1707   let home_mods = map GHC.ms_mod_name g
1708   return (filter (w `isPrefixOf`) (map (showSDoc.ppr) home_mods))
1709
1710 completeSetOptions w = do
1711   return (filter (w `isPrefixOf`) options)
1712     where options = "args":"prog":allFlags
1713
1714 completeFilename w = do
1715     ws <- Readline.filenameCompletionFunction w
1716     case ws of
1717         -- If we only found one result, and it's a directory, 
1718         -- add a trailing slash.
1719         [file] -> do
1720                 isDir <- expandPathIO file >>= doesDirectoryExist
1721                 if isDir && last file /= '/'
1722                     then return [file ++ "/"]
1723                     else return [file]
1724         _ -> return ws
1725                 
1726
1727 completeHomeModuleOrFile = unionComplete completeHomeModule completeFilename
1728
1729 unionComplete :: (String -> IO [String]) -> (String -> IO [String]) -> String -> IO [String]
1730 unionComplete f1 f2 w = do
1731   s1 <- f1 w
1732   s2 <- f2 w
1733   return (s1 ++ s2)
1734
1735 wrapCompleter :: (String -> IO [String]) -> String -> IO (Maybe (String,[String]))
1736 wrapCompleter fun w =  do
1737   strs <- fun w
1738   case strs of
1739     []  -> Readline.setAttemptedCompletionOver True >> return Nothing
1740     [x] -> -- Add a trailing space, unless it already has an appended slash.
1741            let appended = if last x == '/' then x else x ++ " "
1742            in return (Just (appended,[]))
1743     xs  -> case getCommonPrefix xs of
1744                 ""   -> return (Just ("",xs))
1745                 pref -> return (Just (pref,xs))
1746
1747 getCommonPrefix :: [String] -> String
1748 getCommonPrefix [] = ""
1749 getCommonPrefix (s:ss) = foldl common s ss
1750   where common _s "" = ""
1751         common "" _s = ""
1752         common (c:cs) (d:ds)
1753            | c == d = c : common cs ds
1754            | otherwise = ""
1755
1756 allExposedModules :: DynFlags -> [ModuleName]
1757 allExposedModules dflags 
1758  = concat (map exposedModules (filter exposed (eltsUFM pkg_db)))
1759  where
1760   pkg_db = pkgIdMap (pkgState dflags)
1761 #else
1762 completeMacro      = completeNone
1763 completeIdentifier = completeNone
1764 completeModule     = completeNone
1765 completeHomeModule = completeNone
1766 completeSetOptions = completeNone
1767 completeFilename   = completeNone
1768 completeHomeModuleOrFile=completeNone
1769 #endif
1770
1771 -- ---------------------------------------------------------------------------
1772 -- User code exception handling
1773
1774 -- This is the exception handler for exceptions generated by the
1775 -- user's code and exceptions coming from children sessions; 
1776 -- it normally just prints out the exception.  The
1777 -- handler must be recursive, in case showing the exception causes
1778 -- more exceptions to be raised.
1779 --
1780 -- Bugfix: if the user closed stdout or stderr, the flushing will fail,
1781 -- raising another exception.  We therefore don't put the recursive
1782 -- handler arond the flushing operation, so if stderr is closed
1783 -- GHCi will just die gracefully rather than going into an infinite loop.
1784 handler :: Exception -> GHCi Bool
1785
1786 handler exception = do
1787   flushInterpBuffers
1788   io installSignalHandlers
1789   ghciHandle handler (showException exception >> return False)
1790
1791 showException :: Exception -> GHCi ()
1792 showException (DynException dyn) =
1793   case fromDynamic dyn of
1794     Nothing               -> io (putStrLn ("*** Exception: (unknown)"))
1795     Just Interrupted      -> io (putStrLn "Interrupted.")
1796     Just (CmdLineError s) -> io (putStrLn s)     -- omit the location for CmdLineError
1797     Just ph@PhaseFailed{} -> io (putStrLn (showGhcException ph "")) -- ditto
1798     Just other_ghc_ex     -> io (print other_ghc_ex)
1799
1800 showException other_exception
1801   = io (putStrLn ("*** Exception: " ++ show other_exception))
1802
1803 -----------------------------------------------------------------------------
1804 -- recursive exception handlers
1805
1806 -- Don't forget to unblock async exceptions in the handler, or if we're
1807 -- in an exception loop (eg. let a = error a in a) the ^C exception
1808 -- may never be delivered.  Thanks to Marcin for pointing out the bug.
1809
1810 ghciHandle :: (Exception -> GHCi a) -> GHCi a -> GHCi a
1811 ghciHandle h (GHCi m) = GHCi $ \s -> 
1812    Exception.catch (m s) 
1813         (\e -> unGHCi (ghciUnblock (h e)) s)
1814
1815 ghciUnblock :: GHCi a -> GHCi a
1816 ghciUnblock (GHCi a) = GHCi $ \s -> Exception.unblock (a s)
1817
1818 ghciTry :: GHCi a -> GHCi (Either Exception a)
1819 ghciTry (GHCi m) = GHCi $ \s -> Exception.try (m s) 
1820
1821 -- ----------------------------------------------------------------------------
1822 -- Utils
1823
1824 expandPath :: String -> GHCi String
1825 expandPath path = io (expandPathIO path)
1826
1827 expandPathIO :: String -> IO String
1828 expandPathIO path = 
1829   case dropWhile isSpace path of
1830    ('~':d) -> do
1831         tilde <- getHomeDirectory -- will fail if HOME not defined
1832         return (tilde ++ '/':d)
1833    other -> 
1834         return other
1835
1836 wantInterpretedModule :: String -> GHCi Module
1837 wantInterpretedModule str = do
1838    session <- getSession
1839    modl <- lookupModule str
1840    is_interpreted <- io (GHC.moduleIsInterpreted session modl)
1841    when (not is_interpreted) $
1842        throwDyn (CmdLineError ("module '" ++ str ++ "' is not interpreted"))
1843    return modl
1844
1845 wantNameFromInterpretedModule :: (Name -> SDoc -> GHCi ()) -> String
1846                               -> (Name -> GHCi ())
1847                               -> GHCi ()
1848 wantNameFromInterpretedModule noCanDo str and_then = do
1849    session <- getSession
1850    names <- io $ GHC.parseName session str
1851    case names of
1852       []    -> return ()
1853       (n:_) -> do
1854             let modl = GHC.nameModule n
1855             if not (GHC.isExternalName n)
1856                then noCanDo n $ ppr n <>
1857                                 text " is not defined in an interpreted module"
1858                else do
1859             is_interpreted <- io (GHC.moduleIsInterpreted session modl)
1860             if not is_interpreted
1861                then noCanDo n $ text "module " <> ppr modl <>
1862                                 text " is not interpreted"
1863                else and_then n
1864
1865 -- -----------------------------------------------------------------------------
1866 -- commands for debugger
1867
1868 sprintCmd, printCmd, forceCmd :: String -> GHCi ()
1869 sprintCmd = pprintCommand False False
1870 printCmd  = pprintCommand True False
1871 forceCmd  = pprintCommand False True
1872
1873 pprintCommand :: Bool -> Bool -> String -> GHCi ()
1874 pprintCommand bind force str = do
1875   session <- getSession
1876   io $ pprintClosureCommand session bind force str
1877
1878 stepCmd :: String -> GHCi ()
1879 stepCmd []         = doContinue (const True) GHC.SingleStep
1880 stepCmd expression = do runStmt expression GHC.SingleStep; return ()
1881
1882 stepLocalCmd :: String -> GHCi ()
1883 stepLocalCmd  [] = do 
1884   mb_span <- getCurrentBreakSpan
1885   case mb_span of
1886     Nothing  -> stepCmd []
1887     Just loc -> do
1888        Just mod <- getCurrentBreakModule
1889        current_toplevel_decl <- enclosingTickSpan mod loc
1890        doContinue (`isSubspanOf` current_toplevel_decl) GHC.SingleStep
1891
1892 stepLocalCmd expression = stepCmd expression
1893
1894 stepModuleCmd :: String -> GHCi ()
1895 stepModuleCmd  [] = do 
1896   mb_span <- getCurrentBreakSpan
1897   case mb_span of
1898     Nothing  -> stepCmd []
1899     Just _ -> do
1900        Just span <- getCurrentBreakSpan
1901        let f some_span = optSrcSpanFileName span == optSrcSpanFileName some_span
1902        doContinue f GHC.SingleStep
1903
1904 stepModuleCmd expression = stepCmd expression
1905
1906 -- | Returns the span of the largest tick containing the srcspan given
1907 enclosingTickSpan :: Module -> SrcSpan -> GHCi SrcSpan
1908 enclosingTickSpan mod src = do
1909   ticks <- getTickArray mod
1910   let line = srcSpanStartLine src
1911   ASSERT (inRange (bounds ticks) line) do
1912   let enclosing_spans = [ span | (_,span) <- ticks ! line
1913                                , srcSpanEnd span >= srcSpanEnd src]
1914   return . head . sortBy leftmost_largest $ enclosing_spans
1915
1916 traceCmd :: String -> GHCi ()
1917 traceCmd []         = doContinue (const True) GHC.RunAndLogSteps
1918 traceCmd expression = do runStmt expression GHC.RunAndLogSteps; return ()
1919
1920 continueCmd :: String -> GHCi ()
1921 continueCmd = noArgs $ doContinue (const True) GHC.RunToCompletion
1922
1923 -- doContinue :: SingleStep -> GHCi ()
1924 doContinue :: (SrcSpan -> Bool) -> SingleStep -> GHCi ()
1925 doContinue pred step = do 
1926   session <- getSession
1927   runResult <- io $ GHC.resume session step
1928   afterRunStmt pred runResult
1929   return ()
1930
1931 abandonCmd :: String -> GHCi ()
1932 abandonCmd = noArgs $ do
1933   s <- getSession
1934   b <- io $ GHC.abandon s -- the prompt will change to indicate the new context
1935   when (not b) $ io $ putStrLn "There is no computation running."
1936   return ()
1937
1938 deleteCmd :: String -> GHCi ()
1939 deleteCmd argLine = do
1940    deleteSwitch $ words argLine
1941    where
1942    deleteSwitch :: [String] -> GHCi ()
1943    deleteSwitch [] = 
1944       io $ putStrLn "The delete command requires at least one argument."
1945    -- delete all break points
1946    deleteSwitch ("*":_rest) = discardActiveBreakPoints
1947    deleteSwitch idents = do
1948       mapM_ deleteOneBreak idents 
1949       where
1950       deleteOneBreak :: String -> GHCi ()
1951       deleteOneBreak str
1952          | all isDigit str = deleteBreak (read str)
1953          | otherwise = return ()
1954
1955 historyCmd :: String -> GHCi ()
1956 historyCmd arg
1957   | null arg        = history 20
1958   | all isDigit arg = history (read arg)
1959   | otherwise       = io $ putStrLn "Syntax:  :history [num]"
1960   where
1961   history num = do
1962     s <- getSession
1963     resumes <- io $ GHC.getResumeContext s
1964     case resumes of
1965       [] -> io $ putStrLn "Not stopped at a breakpoint"
1966       (r:_) -> do
1967         let hist = GHC.resumeHistory r
1968             (took,rest) = splitAt num hist
1969         case hist of
1970           [] -> io $ putStrLn $ 
1971                    "Empty history. Perhaps you forgot to use :trace?"
1972           _  -> do
1973                  spans <- mapM (io . GHC.getHistorySpan s) took
1974                  let nums  = map (printf "-%-3d:") [(1::Int)..]
1975                      names = map GHC.historyEnclosingDecl took
1976                  printForUser (vcat(zipWith3 
1977                                  (\x y z -> x <+> y <+> z) 
1978                                  (map text nums) 
1979                                  (map (bold . ppr) names)
1980                                  (map (parens . ppr) spans)))
1981                  io $ putStrLn $ if null rest then "<end of history>" else "..."
1982
1983 bold :: SDoc -> SDoc
1984 bold c | do_bold   = text start_bold <> c <> text end_bold
1985        | otherwise = c
1986
1987 backCmd :: String -> GHCi ()
1988 backCmd = noArgs $ do
1989   s <- getSession
1990   (names, _, span) <- io $ GHC.back s
1991   printForUser $ ptext SLIT("Logged breakpoint at") <+> ppr span
1992   printTypeOfNames s names
1993    -- run the command set with ":set stop <cmd>"
1994   st <- getGHCiState
1995   enqueueCommands [stop st]
1996
1997 forwardCmd :: String -> GHCi ()
1998 forwardCmd = noArgs $ do
1999   s <- getSession
2000   (names, ix, span) <- io $ GHC.forward s
2001   printForUser $ (if (ix == 0)
2002                     then ptext SLIT("Stopped at")
2003                     else ptext SLIT("Logged breakpoint at")) <+> ppr span
2004   printTypeOfNames s names
2005    -- run the command set with ":set stop <cmd>"
2006   st <- getGHCiState
2007   enqueueCommands [stop st]
2008
2009 -- handle the "break" command
2010 breakCmd :: String -> GHCi ()
2011 breakCmd argLine = do
2012    session <- getSession
2013    breakSwitch session $ words argLine
2014
2015 breakSwitch :: Session -> [String] -> GHCi ()
2016 breakSwitch _session [] = do
2017    io $ putStrLn "The break command requires at least one argument."
2018 breakSwitch session (arg1:rest) 
2019    | looksLikeModuleName arg1 = do
2020         mod <- wantInterpretedModule arg1
2021         breakByModule mod rest
2022    | all isDigit arg1 = do
2023         (toplevel, _) <- io $ GHC.getContext session 
2024         case toplevel of
2025            (mod : _) -> breakByModuleLine mod (read arg1) rest
2026            [] -> do 
2027               io $ putStrLn "Cannot find default module for breakpoint." 
2028               io $ putStrLn "Perhaps no modules are loaded for debugging?"
2029    | otherwise = do -- try parsing it as an identifier
2030         wantNameFromInterpretedModule noCanDo arg1 $ \name -> do
2031         let loc = GHC.srcSpanStart (GHC.nameSrcSpan name)
2032         if GHC.isGoodSrcLoc loc
2033                then findBreakAndSet (GHC.nameModule name) $ 
2034                          findBreakByCoord (Just (GHC.srcLocFile loc))
2035                                           (GHC.srcLocLine loc, 
2036                                            GHC.srcLocCol loc)
2037                else noCanDo name $ text "can't find its location: " <> ppr loc
2038        where
2039           noCanDo n why = printForUser $
2040                 text "cannot set breakpoint on " <> ppr n <> text ": " <> why
2041
2042 breakByModule :: Module -> [String] -> GHCi () 
2043 breakByModule mod (arg1:rest)
2044    | all isDigit arg1 = do  -- looks like a line number
2045         breakByModuleLine mod (read arg1) rest
2046 breakByModule _ _
2047    = breakSyntax
2048
2049 breakByModuleLine :: Module -> Int -> [String] -> GHCi ()
2050 breakByModuleLine mod line args
2051    | [] <- args = findBreakAndSet mod $ findBreakByLine line
2052    | [col] <- args, all isDigit col =
2053         findBreakAndSet mod $ findBreakByCoord Nothing (line, read col)
2054    | otherwise = breakSyntax
2055
2056 breakSyntax :: a
2057 breakSyntax = throwDyn (CmdLineError "Syntax: :break [<mod>] <line> [<column>]")
2058
2059 findBreakAndSet :: Module -> (TickArray -> Maybe (Int, SrcSpan)) -> GHCi ()
2060 findBreakAndSet mod lookupTickTree = do 
2061    tickArray <- getTickArray mod
2062    (breakArray, _) <- getModBreak mod
2063    case lookupTickTree tickArray of 
2064       Nothing  -> io $ putStrLn $ "No breakpoints found at that location."
2065       Just (tick, span) -> do
2066          success <- io $ setBreakFlag True breakArray tick 
2067          if success 
2068             then do
2069                (alreadySet, nm) <- 
2070                      recordBreak $ BreakLocation
2071                              { breakModule = mod
2072                              , breakLoc = span
2073                              , breakTick = tick
2074                              , onBreakCmd = ""
2075                              }
2076                printForUser $
2077                   text "Breakpoint " <> ppr nm <>
2078                   if alreadySet 
2079                      then text " was already set at " <> ppr span
2080                      else text " activated at " <> ppr span
2081             else do
2082             printForUser $ text "Breakpoint could not be activated at" 
2083                                  <+> ppr span
2084
2085 -- When a line number is specified, the current policy for choosing
2086 -- the best breakpoint is this:
2087 --    - the leftmost complete subexpression on the specified line, or
2088 --    - the leftmost subexpression starting on the specified line, or
2089 --    - the rightmost subexpression enclosing the specified line
2090 --
2091 findBreakByLine :: Int -> TickArray -> Maybe (BreakIndex,SrcSpan)
2092 findBreakByLine line arr
2093   | not (inRange (bounds arr) line) = Nothing
2094   | otherwise =
2095     listToMaybe (sortBy (leftmost_largest `on` snd)  complete)   `mplus`
2096     listToMaybe (sortBy (leftmost_smallest `on` snd) incomplete) `mplus`
2097     listToMaybe (sortBy (rightmost `on` snd) ticks)
2098   where 
2099         ticks = arr ! line
2100
2101         starts_here = [ tick | tick@(_,span) <- ticks,
2102                                GHC.srcSpanStartLine span == line ]
2103
2104         (complete,incomplete) = partition ends_here starts_here
2105             where ends_here (_,span) = GHC.srcSpanEndLine span == line
2106
2107 findBreakByCoord :: Maybe FastString -> (Int,Int) -> TickArray
2108                  -> Maybe (BreakIndex,SrcSpan)
2109 findBreakByCoord mb_file (line, col) arr
2110   | not (inRange (bounds arr) line) = Nothing
2111   | otherwise =
2112     listToMaybe (sortBy (rightmost `on` snd) contains ++
2113                  sortBy (leftmost_smallest `on` snd) after_here)
2114   where 
2115         ticks = arr ! line
2116
2117         -- the ticks that span this coordinate
2118         contains = [ tick | tick@(_,span) <- ticks, span `spans` (line,col),
2119                             is_correct_file span ]
2120
2121         is_correct_file span
2122                  | Just f <- mb_file = GHC.srcSpanFile span == f
2123                  | otherwise         = True
2124
2125         after_here = [ tick | tick@(_,span) <- ticks,
2126                               GHC.srcSpanStartLine span == line,
2127                               GHC.srcSpanStartCol span >= col ]
2128
2129 -- For now, use ANSI bold on terminals that we know support it.
2130 -- Otherwise, we add a line of carets under the active expression instead.
2131 -- In particular, on Windows and when running the testsuite (which sets
2132 -- TERM to vt100 for other reasons) we get carets.
2133 -- We really ought to use a proper termcap/terminfo library.
2134 do_bold :: Bool
2135 do_bold = (`isPrefixOf` unsafePerformIO mTerm) `any` ["xterm", "linux"]
2136     where mTerm = System.Environment.getEnv "TERM"
2137                   `Exception.catch` \_ -> return "TERM not set"
2138
2139 start_bold :: String
2140 start_bold = "\ESC[1m"
2141 end_bold :: String
2142 end_bold   = "\ESC[0m"
2143
2144 listCmd :: String -> GHCi ()
2145 listCmd "" = do
2146    mb_span <- getCurrentBreakSpan
2147    case mb_span of
2148       Nothing ->
2149           printForUser $ text "Not stopped at a breakpoint; nothing to list"
2150       Just span
2151        | GHC.isGoodSrcSpan span -> io $ listAround span True
2152        | otherwise ->
2153           do s <- getSession
2154              resumes <- io $ GHC.getResumeContext s
2155              case resumes of
2156                  [] -> panic "No resumes"
2157                  (r:_) ->
2158                      do let traceIt = case GHC.resumeHistory r of
2159                                       [] -> text "rerunning with :trace,"
2160                                       _ -> empty
2161                             doWhat = traceIt <+> text ":back then :list"
2162                         printForUser (text "Unable to list source for" <+>
2163                                       ppr span
2164                                    $$ text "Try" <+> doWhat)
2165 listCmd str = list2 (words str)
2166
2167 list2 :: [String] -> GHCi ()
2168 list2 [arg] | all isDigit arg = do
2169     session <- getSession
2170     (toplevel, _) <- io $ GHC.getContext session 
2171     case toplevel of
2172         [] -> io $ putStrLn "No module to list"
2173         (mod : _) -> listModuleLine mod (read arg)
2174 list2 [arg1,arg2] | looksLikeModuleName arg1, all isDigit arg2 = do
2175         mod <- wantInterpretedModule arg1
2176         listModuleLine mod (read arg2)
2177 list2 [arg] = do
2178         wantNameFromInterpretedModule noCanDo arg $ \name -> do
2179         let loc = GHC.srcSpanStart (GHC.nameSrcSpan name)
2180         if GHC.isGoodSrcLoc loc
2181                then do
2182                   tickArray <- getTickArray (GHC.nameModule name)
2183                   let mb_span = findBreakByCoord (Just (GHC.srcLocFile loc))
2184                                         (GHC.srcLocLine loc, GHC.srcLocCol loc)
2185                                         tickArray
2186                   case mb_span of
2187                     Nothing       -> io $ listAround (GHC.srcLocSpan loc) False
2188                     Just (_,span) -> io $ listAround span False
2189                else
2190                   noCanDo name $ text "can't find its location: " <>
2191                                  ppr loc
2192     where
2193         noCanDo n why = printForUser $
2194             text "cannot list source code for " <> ppr n <> text ": " <> why
2195 list2  _other = 
2196         io $ putStrLn "syntax:  :list [<line> | <module> <line> | <identifier>]"
2197
2198 listModuleLine :: Module -> Int -> GHCi ()
2199 listModuleLine modl line = do
2200    session <- getSession
2201    graph <- io (GHC.getModuleGraph session)
2202    let this = filter ((== modl) . GHC.ms_mod) graph
2203    case this of
2204      [] -> panic "listModuleLine"
2205      summ:_ -> do
2206            let filename = fromJust (ml_hs_file (GHC.ms_location summ))
2207                loc = GHC.mkSrcLoc (mkFastString (filename)) line 0
2208            io $ listAround (GHC.srcLocSpan loc) False
2209
2210 -- | list a section of a source file around a particular SrcSpan.
2211 -- If the highlight flag is True, also highlight the span using
2212 -- start_bold/end_bold.
2213 listAround :: SrcSpan -> Bool -> IO ()
2214 listAround span do_highlight = do
2215       contents <- BS.readFile (unpackFS file)
2216       let 
2217           lines = BS.split '\n' contents
2218           these_lines = take (line2 - line1 + 1 + pad_before + pad_after) $ 
2219                         drop (line1 - 1 - pad_before) $ lines
2220           fst_line = max 1 (line1 - pad_before)
2221           line_nos = [ fst_line .. ]
2222
2223           highlighted | do_highlight = zipWith highlight line_nos these_lines
2224                       | otherwise    = [\p -> BS.concat[p,l] | l <- these_lines]
2225
2226           bs_line_nos = [ BS.pack (show l ++ "  ") | l <- line_nos ]
2227           prefixed = zipWith ($) highlighted bs_line_nos
2228       --
2229       BS.putStrLn (BS.intercalate (BS.pack "\n") prefixed)
2230   where
2231         file  = GHC.srcSpanFile span
2232         line1 = GHC.srcSpanStartLine span
2233         col1  = GHC.srcSpanStartCol span
2234         line2 = GHC.srcSpanEndLine span
2235         col2  = GHC.srcSpanEndCol span
2236
2237         pad_before | line1 == 1 = 0
2238                    | otherwise  = 1
2239         pad_after = 1
2240
2241         highlight | do_bold   = highlight_bold
2242                   | otherwise = highlight_carets
2243
2244         highlight_bold no line prefix
2245           | no == line1 && no == line2
2246           = let (a,r) = BS.splitAt col1 line
2247                 (b,c) = BS.splitAt (col2-col1) r
2248             in
2249             BS.concat [prefix, a,BS.pack start_bold,b,BS.pack end_bold,c]
2250           | no == line1
2251           = let (a,b) = BS.splitAt col1 line in
2252             BS.concat [prefix, a, BS.pack start_bold, b]
2253           | no == line2
2254           = let (a,b) = BS.splitAt col2 line in
2255             BS.concat [prefix, a, BS.pack end_bold, b]
2256           | otherwise   = BS.concat [prefix, line]
2257
2258         highlight_carets no line prefix
2259           | no == line1 && no == line2
2260           = BS.concat [prefix, line, nl, indent, BS.replicate col1 ' ',
2261                                          BS.replicate (col2-col1) '^']
2262           | no == line1
2263           = BS.concat [indent, BS.replicate (col1 - 2) ' ', BS.pack "vv", nl, 
2264                                          prefix, line]
2265           | no == line2
2266           = BS.concat [prefix, line, nl, indent, BS.replicate col2 ' ',
2267                                          BS.pack "^^"]
2268           | otherwise   = BS.concat [prefix, line]
2269          where
2270            indent = BS.pack ("  " ++ replicate (length (show no)) ' ')
2271            nl = BS.singleton '\n'
2272
2273 -- --------------------------------------------------------------------------
2274 -- Tick arrays
2275
2276 getTickArray :: Module -> GHCi TickArray
2277 getTickArray modl = do
2278    st <- getGHCiState
2279    let arrmap = tickarrays st
2280    case lookupModuleEnv arrmap modl of
2281       Just arr -> return arr
2282       Nothing  -> do
2283         (_breakArray, ticks) <- getModBreak modl 
2284         let arr = mkTickArray (assocs ticks)
2285         setGHCiState st{tickarrays = extendModuleEnv arrmap modl arr}
2286         return arr
2287
2288 discardTickArrays :: GHCi ()
2289 discardTickArrays = do
2290    st <- getGHCiState
2291    setGHCiState st{tickarrays = emptyModuleEnv}
2292
2293 mkTickArray :: [(BreakIndex,SrcSpan)] -> TickArray
2294 mkTickArray ticks
2295   = accumArray (flip (:)) [] (1, max_line) 
2296         [ (line, (nm,span)) | (nm,span) <- ticks,
2297                               line <- srcSpanLines span ]
2298     where
2299         max_line = foldr max 0 (map GHC.srcSpanEndLine (map snd ticks))
2300         srcSpanLines span = [ GHC.srcSpanStartLine span .. 
2301                               GHC.srcSpanEndLine span ]
2302
2303 lookupModule :: String -> GHCi Module
2304 lookupModule modName
2305    = do session <- getSession 
2306         io (GHC.findModule session (GHC.mkModuleName modName) Nothing)
2307
2308 -- don't reset the counter back to zero?
2309 discardActiveBreakPoints :: GHCi ()
2310 discardActiveBreakPoints = do
2311    st <- getGHCiState
2312    mapM (turnOffBreak.snd) (breaks st)
2313    setGHCiState $ st { breaks = [] }
2314
2315 deleteBreak :: Int -> GHCi ()
2316 deleteBreak identity = do
2317    st <- getGHCiState
2318    let oldLocations    = breaks st
2319        (this,rest)     = partition (\loc -> fst loc == identity) oldLocations
2320    if null this 
2321       then printForUser (text "Breakpoint" <+> ppr identity <+>
2322                          text "does not exist")
2323       else do
2324            mapM (turnOffBreak.snd) this
2325            setGHCiState $ st { breaks = rest }
2326
2327 turnOffBreak :: BreakLocation -> GHCi Bool
2328 turnOffBreak loc = do
2329   (arr, _) <- getModBreak (breakModule loc)
2330   io $ setBreakFlag False arr (breakTick loc)
2331
2332 getModBreak :: Module -> GHCi (GHC.BreakArray, Array Int SrcSpan)
2333 getModBreak mod = do
2334    session <- getSession
2335    Just mod_info <- io $ GHC.getModuleInfo session mod
2336    let modBreaks  = GHC.modInfoModBreaks mod_info
2337    let array      = GHC.modBreaks_flags modBreaks
2338    let ticks      = GHC.modBreaks_locs  modBreaks
2339    return (array, ticks)
2340
2341 setBreakFlag :: Bool -> GHC.BreakArray -> Int -> IO Bool 
2342 setBreakFlag toggle array index
2343    | toggle    = GHC.setBreakOn array index 
2344    | otherwise = GHC.setBreakOff array index