2014-01-08 19:22:51 -05:00
|
|
|
{-# LANGUAGE NoImplicitPrelude, CPP, OverloadedStrings, ScopedTypeVariables #-}
|
2013-10-31 10:51:11 -04:00
|
|
|
-- | Description : Argument parsing and basic messaging loop, using Haskell
|
|
|
|
-- Chans to communicate with the ZeroMQ sockets.
|
|
|
|
module Main where
|
2013-10-12 22:31:47 -07:00
|
|
|
import ClassyPrelude hiding (liftIO)
|
2014-01-08 19:22:51 -05:00
|
|
|
import Prelude (last, read)
|
2013-10-08 19:54:05 -07:00
|
|
|
import Control.Concurrent.Chan
|
2013-12-28 14:37:23 -05:00
|
|
|
import Control.Concurrent (threadDelay)
|
2013-08-26 00:18:30 -07:00
|
|
|
import Data.Aeson
|
2013-10-27 19:08:41 -07:00
|
|
|
import Text.Printf
|
2013-11-09 17:01:18 -08:00
|
|
|
import System.Exit (exitSuccess)
|
2013-12-13 11:15:57 -08:00
|
|
|
import System.Directory
|
2013-08-26 00:18:30 -07:00
|
|
|
|
|
|
|
import qualified Data.Map as Map
|
|
|
|
|
|
|
|
import IHaskell.Types
|
2014-01-08 19:22:51 -05:00
|
|
|
import IPython.ZeroMQ
|
|
|
|
import qualified IPython.Message.UUID as UUID
|
2013-10-10 22:52:32 -07:00
|
|
|
import IHaskell.Eval.Evaluate
|
2013-12-17 21:47:59 -08:00
|
|
|
import IHaskell.Eval.Completion (complete)
|
2013-11-10 18:31:55 -08:00
|
|
|
import IHaskell.Eval.Info
|
2013-10-10 22:52:32 -07:00
|
|
|
import qualified Data.ByteString.Char8 as Chars
|
2013-10-20 20:16:34 -07:00
|
|
|
import IHaskell.IPython
|
2014-01-08 19:22:51 -05:00
|
|
|
import qualified IPython.Stdin as Stdin
|
2014-01-08 16:27:36 -05:00
|
|
|
import IHaskell.Flags
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2014-01-08 19:22:51 -05:00
|
|
|
import GHC hiding (extensions, language)
|
2013-11-04 21:31:27 -05:00
|
|
|
import Outputable (showSDoc, ppr)
|
|
|
|
|
2014-01-08 19:22:51 -05:00
|
|
|
-- | Compute the GHC API version number using the dist/build/autogen/cabal_macros.h
|
|
|
|
ghcVersionInts :: [Int]
|
|
|
|
ghcVersionInts = map read . words . map dotToSpace $ VERSION_ghc
|
|
|
|
where dotToSpace '.' = ' '
|
|
|
|
dotToSpace x = x
|
|
|
|
|
2013-12-28 23:21:04 -05:00
|
|
|
|
2013-08-26 00:18:30 -07:00
|
|
|
main :: IO ()
|
|
|
|
main = do
|
2014-01-08 16:27:36 -05:00
|
|
|
args <- parseFlags <$> map unpack <$> getArgs
|
|
|
|
case args of
|
|
|
|
Left errorMessage ->
|
|
|
|
hPutStrLn stderr errorMessage
|
2013-12-28 23:21:04 -05:00
|
|
|
Right args ->
|
|
|
|
ihaskell args
|
|
|
|
|
|
|
|
ihaskell :: Args -> IO ()
|
|
|
|
-- If no mode is specified, print help text.
|
2014-01-08 16:27:36 -05:00
|
|
|
ihaskell (Args (ShowHelp help) _) =
|
|
|
|
putStrLn $ pack help
|
2013-12-28 23:21:04 -05:00
|
|
|
|
|
|
|
-- Update IPython: remove then reinstall.
|
|
|
|
-- This is in case cabal updates IHaskell but the corresponding IPython
|
|
|
|
-- isn't updated. This is hard to detect since versions of IPython might
|
|
|
|
-- not change!
|
|
|
|
ihaskell (Args UpdateIPython _) = do
|
2014-01-01 15:21:28 -05:00
|
|
|
setupIPython
|
2013-12-28 23:21:04 -05:00
|
|
|
putStrLn "IPython updated."
|
|
|
|
|
|
|
|
ihaskell (Args Console flags) = showingHelp Console flags $ do
|
2014-01-01 15:21:28 -05:00
|
|
|
setupIPython
|
2013-10-27 19:08:41 -07:00
|
|
|
|
2013-12-28 23:21:04 -05:00
|
|
|
flags <- addDefaultConfFile flags
|
2014-01-07 22:48:01 -05:00
|
|
|
info <- initInfo IPythonConsole flags
|
2013-12-28 23:21:04 -05:00
|
|
|
runConsole info
|
2013-10-20 20:16:34 -07:00
|
|
|
|
2014-01-01 15:21:28 -05:00
|
|
|
ihaskell (Args (View (Just fmt) (Just name)) []) =
|
|
|
|
nbconvert fmt name
|
|
|
|
|
2013-12-28 23:21:04 -05:00
|
|
|
ihaskell (Args Notebook flags) = showingHelp Notebook flags $ do
|
2014-01-01 15:21:28 -05:00
|
|
|
setupIPython
|
2013-10-20 20:16:34 -07:00
|
|
|
|
2013-12-28 23:21:04 -05:00
|
|
|
let server = case mapMaybe serveDir flags of
|
|
|
|
[] -> Nothing
|
|
|
|
xs -> Just $ last xs
|
|
|
|
|
|
|
|
flags <- addDefaultConfFile flags
|
2014-01-01 21:36:11 -05:00
|
|
|
|
2014-01-07 22:48:01 -05:00
|
|
|
undirInfo <- initInfo IPythonNotebook flags
|
2014-01-01 21:36:11 -05:00
|
|
|
curdir <- getCurrentDirectory
|
|
|
|
let info = undirInfo { initDir = curdir }
|
|
|
|
|
2013-12-28 23:21:04 -05:00
|
|
|
runNotebook info server
|
|
|
|
where
|
|
|
|
serveDir (ServeFrom dir) = Just dir
|
|
|
|
serveDir _ = Nothing
|
|
|
|
|
|
|
|
ihaskell (Args (Kernel (Just filename)) _) = do
|
|
|
|
initInfo <- readInitInfo
|
|
|
|
runKernel filename initInfo
|
|
|
|
|
|
|
|
-- | Add a conf file to the arguments if none exists.
|
|
|
|
addDefaultConfFile :: [Argument] -> IO [Argument]
|
|
|
|
addDefaultConfFile flags = do
|
|
|
|
def <- defaultConfFile
|
|
|
|
case (find isConfFile flags, def) of
|
|
|
|
(Nothing, Just file) -> return $ ConfFile file : flags
|
|
|
|
_ -> return flags
|
|
|
|
where
|
|
|
|
isConfFile (ConfFile _) = True
|
|
|
|
isConfFile _ = False
|
|
|
|
|
|
|
|
showingHelp :: IHaskellMode -> [Argument] -> IO () -> IO ()
|
|
|
|
showingHelp mode flags act =
|
|
|
|
case find (==Help) flags of
|
|
|
|
Just _ ->
|
2014-01-08 16:27:36 -05:00
|
|
|
putStrLn $ pack $ help mode
|
2013-12-28 23:21:04 -05:00
|
|
|
Nothing ->
|
|
|
|
act
|
|
|
|
|
|
|
|
-- | Parse initialization information from the flags.
|
2014-01-07 22:48:01 -05:00
|
|
|
initInfo :: FrontendType -> [Argument] -> IO InitInfo
|
|
|
|
initInfo front [] = return InitInfo { extensions = [], initCells = [], initDir = ".", frontend = front }
|
|
|
|
initInfo front (flag:flags) = do
|
|
|
|
info <- initInfo front flags
|
2013-12-28 23:21:04 -05:00
|
|
|
case flag of
|
|
|
|
Extension ext -> return info { extensions = ext:extensions info }
|
|
|
|
ConfFile filename -> do
|
|
|
|
cell <- readFile (fpFromText $ pack filename)
|
|
|
|
return info { initCells = cell:initCells info }
|
2013-12-29 12:46:45 -05:00
|
|
|
_ -> return info
|
2013-10-20 20:16:34 -07:00
|
|
|
|
|
|
|
-- | Run the IHaskell language kernel.
|
2013-12-28 23:21:04 -05:00
|
|
|
runKernel :: String -- ^ Filename of profile JSON file.
|
|
|
|
-> InitInfo -- ^ Initialization information from the invocation.
|
|
|
|
-> IO ()
|
|
|
|
runKernel profileSrc initInfo = do
|
2014-01-01 21:36:11 -05:00
|
|
|
setCurrentDirectory $ initDir initInfo
|
2013-12-13 11:15:57 -08:00
|
|
|
|
2013-08-26 14:47:27 -07:00
|
|
|
-- Parse the profile file.
|
2013-10-20 20:16:34 -07:00
|
|
|
Just profile <- liftM decode . readFile . fpFromText $ pack profileSrc
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2014-01-05 23:01:38 -05:00
|
|
|
-- Necessary for `getLine` and their ilk to work.
|
2014-01-08 19:22:51 -05:00
|
|
|
dir <- getIHaskellDir
|
|
|
|
Stdin.recordKernelProfile dir profile
|
2014-01-05 23:01:38 -05:00
|
|
|
|
2013-08-26 14:47:27 -07:00
|
|
|
-- Serve on all sockets and ports defined in the profile.
|
|
|
|
interface <- serveProfile profile
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2014-01-01 21:36:11 -05:00
|
|
|
-- Create initial state in the directory the kernel *should* be in.
|
2013-08-26 14:47:27 -07:00
|
|
|
state <- initialKernelState
|
2014-01-07 22:48:01 -05:00
|
|
|
modifyMVar_ state $ \kernelState -> return $
|
|
|
|
kernelState { getFrontend = frontend initInfo }
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2013-08-26 14:47:27 -07:00
|
|
|
-- Receive and reply to all messages on the shell socket.
|
2014-01-06 14:25:41 -05:00
|
|
|
interpret True $ do
|
2013-12-28 23:21:04 -05:00
|
|
|
-- Initialize the context by evaluating everything we got from the
|
|
|
|
-- command line flags. This includes enabling some extensions and also
|
|
|
|
-- running some code.
|
|
|
|
let extLines = map (":extension " ++) $ extensions initInfo
|
2014-01-06 16:09:53 -05:00
|
|
|
noPublish _ = return ()
|
2013-12-29 17:08:20 -05:00
|
|
|
evaluator line = do
|
|
|
|
-- Create a new state each time.
|
|
|
|
stateVar <- liftIO initialKernelState
|
|
|
|
state <- liftIO $ takeMVar stateVar
|
|
|
|
evaluate state line noPublish
|
|
|
|
|
2013-12-28 23:21:04 -05:00
|
|
|
mapM_ evaluator extLines
|
|
|
|
mapM_ evaluator $ initCells initInfo
|
|
|
|
|
|
|
|
forever $ do
|
|
|
|
-- Read the request from the request channel.
|
|
|
|
request <- liftIO $ readChan $ shellRequestChannel interface
|
|
|
|
|
|
|
|
-- Create a header for the reply.
|
|
|
|
replyHeader <- createReplyHeader (header request)
|
|
|
|
|
|
|
|
-- Create the reply, possibly modifying kernel state.
|
|
|
|
oldState <- liftIO $ takeMVar state
|
|
|
|
(newState, reply) <- replyTo interface request replyHeader oldState
|
|
|
|
liftIO $ putMVar state newState
|
|
|
|
|
|
|
|
-- Write the reply to the reply channel.
|
|
|
|
liftIO $ writeChan (shellReplyChannel interface) reply
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2013-08-26 14:47:27 -07:00
|
|
|
-- Initial kernel state.
|
|
|
|
initialKernelState :: IO (MVar KernelState)
|
2013-10-12 22:31:47 -07:00
|
|
|
initialKernelState =
|
2014-01-04 20:13:06 -05:00
|
|
|
newMVar defaultKernelState
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2013-10-10 22:52:32 -07:00
|
|
|
-- | Duplicate a message header, giving it a new UUID and message type.
|
2013-12-22 01:05:02 -05:00
|
|
|
dupHeader :: MessageHeader -> MessageType -> IO MessageHeader
|
2013-10-10 22:52:32 -07:00
|
|
|
dupHeader header messageType = do
|
2013-10-12 22:31:47 -07:00
|
|
|
uuid <- liftIO UUID.random
|
2013-10-10 22:52:32 -07:00
|
|
|
|
|
|
|
return header { messageId = uuid, msgType = messageType }
|
|
|
|
|
2013-08-26 14:47:27 -07:00
|
|
|
-- | Create a new message header, given a parent message header.
|
2013-10-20 12:22:27 -07:00
|
|
|
createReplyHeader :: MessageHeader -> Interpreter MessageHeader
|
2013-08-26 14:47:27 -07:00
|
|
|
createReplyHeader parent = do
|
|
|
|
-- Generate a new message UUID.
|
2013-10-20 12:22:27 -07:00
|
|
|
newMessageId <- liftIO UUID.random
|
2014-01-08 19:22:51 -05:00
|
|
|
let repType = fromMaybe err (replyType $ msgType parent)
|
|
|
|
err = error $ "No reply for message " ++ show (msgType parent)
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2013-08-26 14:47:27 -07:00
|
|
|
return MessageHeader {
|
|
|
|
identifiers = identifiers parent,
|
|
|
|
parentHeader = Just parent,
|
|
|
|
metadata = Map.fromList [],
|
|
|
|
messageId = newMessageId,
|
|
|
|
sessionId = sessionId parent,
|
|
|
|
username = username parent,
|
2014-01-08 19:22:51 -05:00
|
|
|
msgType = repType
|
2013-08-26 14:47:27 -07:00
|
|
|
}
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2013-10-20 12:22:27 -07:00
|
|
|
-- | Compute a reply to a message.
|
2013-10-12 22:31:47 -07:00
|
|
|
replyTo :: ZeroMQInterface -> Message -> MessageHeader -> KernelState -> Interpreter (KernelState, Message)
|
2013-10-20 12:22:27 -07:00
|
|
|
|
|
|
|
-- Reply to kernel info requests with a kernel info reply. No computation
|
|
|
|
-- needs to be done, as a kernel info reply is a static object (all info is
|
|
|
|
-- hard coded into the representation of that message type).
|
2014-01-05 23:01:38 -05:00
|
|
|
replyTo _ KernelInfoRequest{} replyHeader state =
|
2014-01-08 19:22:51 -05:00
|
|
|
return (state, KernelInfoReply {
|
|
|
|
header = replyHeader,
|
|
|
|
language = "haskell",
|
|
|
|
versionList = ghcVersionInts
|
|
|
|
})
|
2013-08-26 16:14:48 -07:00
|
|
|
|
2013-11-09 17:01:18 -08:00
|
|
|
-- Reply to a shutdown request by exiting the main thread.
|
2013-11-09 17:05:18 -08:00
|
|
|
-- Before shutdown, reply to the request to let the frontend know shutdown
|
|
|
|
-- is happening.
|
|
|
|
replyTo interface ShutdownRequest{restartPending = restartPending} replyHeader _ = liftIO $ do
|
|
|
|
writeChan (shellReplyChannel interface) $ ShutdownReply replyHeader restartPending
|
|
|
|
exitSuccess
|
2013-11-09 17:01:18 -08:00
|
|
|
|
2013-10-20 12:22:27 -07:00
|
|
|
-- Reply to an execution request. The reply itself does not require
|
|
|
|
-- computation, but this causes messages to be sent to the IOPub socket
|
|
|
|
-- with the output of the code in the execution request.
|
2014-01-05 23:01:38 -05:00
|
|
|
replyTo interface req@ExecuteRequest{ getCode = code } replyHeader state = do
|
2013-12-29 17:08:20 -05:00
|
|
|
-- Convenience function to send a message to the IOPub socket.
|
|
|
|
let send msg = liftIO $ writeChan (iopubChannel interface) msg
|
2013-10-07 21:32:51 -07:00
|
|
|
|
2014-01-05 23:01:38 -05:00
|
|
|
-- Log things so that we can use stdin.
|
2014-01-08 19:22:51 -05:00
|
|
|
dir <- liftIO getIHaskellDir
|
|
|
|
liftIO $ Stdin.recordParentHeader dir $ header req
|
2014-01-05 23:01:38 -05:00
|
|
|
|
2013-10-20 12:22:27 -07:00
|
|
|
-- Notify the frontend that the kernel is busy computing.
|
|
|
|
-- All the headers are copies of the reply header with a different
|
|
|
|
-- message type, because this preserves the session ID, parent header,
|
|
|
|
-- and other important information.
|
2013-12-22 01:05:02 -05:00
|
|
|
busyHeader <- liftIO $ dupHeader replyHeader StatusMessage
|
2013-10-10 22:52:32 -07:00
|
|
|
send $ PublishStatus busyHeader Busy
|
|
|
|
|
2013-12-11 18:10:19 -08:00
|
|
|
-- Construct a function for publishing output as this is going.
|
2013-12-22 01:05:02 -05:00
|
|
|
-- This function accepts a boolean indicating whether this is the final
|
|
|
|
-- output and the thing to display. Store the final outputs in a list so
|
|
|
|
-- that when we receive an updated non-final output, we can clear the
|
|
|
|
-- entire output and re-display with the updated output.
|
2014-01-06 16:09:53 -05:00
|
|
|
displayed <- liftIO $ newMVar []
|
2013-12-22 01:05:02 -05:00
|
|
|
updateNeeded <- liftIO $ newMVar False
|
2014-01-06 16:09:53 -05:00
|
|
|
pagerOutput <- liftIO $ newMVar ""
|
2013-12-22 01:05:02 -05:00
|
|
|
let clearOutput = do
|
|
|
|
header <- dupHeader replyHeader ClearOutputMessage
|
|
|
|
send $ ClearOutput header True
|
|
|
|
|
2014-01-09 18:09:57 -05:00
|
|
|
sendOutput (ManyDisplay manyOuts) = mapM_ sendOutput manyOuts
|
|
|
|
sendOutput (Display outs) = do
|
2013-12-11 18:10:19 -08:00
|
|
|
header <- dupHeader replyHeader DisplayDataMessage
|
2013-12-22 01:05:02 -05:00
|
|
|
send $ PublishDisplayData header "haskell" outs
|
|
|
|
|
2014-01-06 16:09:53 -05:00
|
|
|
publish :: EvaluationResult -> IO ()
|
|
|
|
publish result = do
|
|
|
|
let final = case result of
|
|
|
|
IntermediateResult {} -> False
|
|
|
|
FinalResult {} -> True
|
|
|
|
outs = outputs result
|
|
|
|
|
2013-12-22 01:05:02 -05:00
|
|
|
-- If necessary, clear all previous output and redraw.
|
|
|
|
clear <- readMVar updateNeeded
|
|
|
|
when clear $ do
|
|
|
|
clearOutput
|
|
|
|
disps <- readMVar displayed
|
|
|
|
mapM_ sendOutput $ reverse disps
|
|
|
|
|
|
|
|
-- Draw this message.
|
2014-01-06 16:09:53 -05:00
|
|
|
sendOutput outs
|
2013-12-22 01:05:02 -05:00
|
|
|
|
|
|
|
-- If this is the final message, add it to the list of completed
|
|
|
|
-- messages. If it isn't, make sure we clear it later by marking
|
|
|
|
-- update needed as true.
|
|
|
|
modifyMVar_ updateNeeded (const $ return $ not final)
|
2014-01-06 16:09:53 -05:00
|
|
|
when final $ do
|
|
|
|
modifyMVar_ displayed (return . (outs:))
|
|
|
|
|
|
|
|
-- If this has some pager output, store it for later.
|
|
|
|
let pager = pagerOut result
|
|
|
|
unless (null pager) $
|
|
|
|
modifyMVar_ pagerOutput (return . (++ pager ++ "\n"))
|
2013-12-11 18:10:19 -08:00
|
|
|
|
2013-12-12 00:03:20 -08:00
|
|
|
-- Run code and publish to the frontend as we go.
|
2013-12-29 17:08:20 -05:00
|
|
|
let execCount = getExecutionCounter state
|
|
|
|
updatedState <- evaluate state (Chars.unpack code) publish
|
2013-12-11 18:10:19 -08:00
|
|
|
|
2013-10-20 12:22:27 -07:00
|
|
|
-- Notify the frontend that we're done computing.
|
2013-12-22 01:05:02 -05:00
|
|
|
idleHeader <- liftIO $ dupHeader replyHeader StatusMessage
|
2013-10-20 12:22:27 -07:00
|
|
|
send $ PublishStatus idleHeader Idle
|
|
|
|
|
2014-01-06 16:09:53 -05:00
|
|
|
pager <- liftIO $ readMVar pagerOutput
|
2013-12-29 17:08:20 -05:00
|
|
|
return (updatedState, ExecuteReply {
|
2013-08-27 09:46:31 -07:00
|
|
|
header = replyHeader,
|
2014-01-06 16:09:53 -05:00
|
|
|
pagerOutput = pager,
|
2013-10-10 22:52:32 -07:00
|
|
|
executionCounter = execCount,
|
|
|
|
status = Ok
|
2013-08-27 09:46:31 -07:00
|
|
|
})
|
2013-10-23 13:26:33 -04:00
|
|
|
|
|
|
|
|
2013-12-17 21:47:59 -08:00
|
|
|
replyTo _ req@CompleteRequest{} replyHeader state = do
|
|
|
|
(matchedText, completions) <- complete (Chars.unpack $ getCodeLine req) (getCursorPos req)
|
|
|
|
|
|
|
|
let reply = CompleteReply replyHeader (map Chars.pack completions) (Chars.pack matchedText) (getCodeLine req) True
|
|
|
|
return (state, reply)
|
2013-10-23 13:26:33 -04:00
|
|
|
|
2013-11-07 07:44:22 -05:00
|
|
|
-- | Reply to the object_info_request message. Given an object name, return
|
|
|
|
-- | the associated type calculated by GHC.
|
2013-11-04 21:31:27 -05:00
|
|
|
replyTo _ ObjectInfoRequest{objectName=oname} replyHeader state = do
|
2013-11-10 18:31:55 -08:00
|
|
|
docs <- info $ Chars.unpack oname
|
2013-11-04 21:31:27 -05:00
|
|
|
let reply = ObjectInfoReply {
|
|
|
|
header = replyHeader,
|
|
|
|
objectName = oname,
|
2013-11-10 18:31:55 -08:00
|
|
|
objectFound = docs == "",
|
2013-11-04 21:31:27 -05:00
|
|
|
objectTypeString = Chars.pack docs,
|
|
|
|
objectDocString = Chars.pack docs
|
|
|
|
}
|
|
|
|
return (state, reply)
|
|
|
|
|
|
|
|
|
2013-10-23 13:26:33 -04:00
|
|
|
|