karps-0.1.9.0: src/Spark/Core/Internal/ContextInteractive.hs
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE FlexibleContexts #-}
-- | Functions to create and manipulate one default context.
--
-- This is most appropriate when working in an interactive session,
-- during which it is usually clear that there is a single
-- Spark context in use.
--
-- This module uses unsafe Haskell code that should not be used
-- outside prototyping in an interactive REPL. In any good case,
-- you should use the SparkState monad.
module Spark.Core.Internal.ContextInteractive(
SparkInteractiveException,
createSparkSessionDef,
exec1Def,
exec1Def',
closeSparkSessionDef,
execStateDef,
computationStatsDef,
currentSessionDef
) where
import qualified Data.Vector as V
import Control.Exception
import Control.Monad.Catch(throwM)
import Data.IORef
import Data.Typeable
import Control.Monad.State(runStateT)
import Data.Text
import System.IO.Unsafe(unsafePerformIO)
import Control.Monad.Logger(runStdoutLoggingT)
import Spark.Core.Internal.Client(BatchComputationResult)
import Spark.Core.Internal.ContextStructures
import Spark.Core.Internal.DatasetStructures
import Spark.Core.Internal.DatasetFunctions(untypedLocalData)
import Spark.Core.Internal.ContextIOInternal
import Spark.Core.Internal.RowGenericsFrom(FromSQL, cellToValue)
import Spark.Core.Internal.RowStructures(Cell)
import Spark.Core.StructuresInternal
import Spark.Core.Try
-- The global session reference. Should not be accessed outside
-- this file.
_globalSessionRef :: IORef (Maybe SparkSession)
{-# NOINLINE _globalSessionRef #-}
_globalSessionRef = unsafePerformIO (newIORef Nothing)
-- | The exception thrown when a request cannot be completed
-- in an interactive session.
data SparkInteractiveException = SparkInteractiveException {
_sieInner :: NodeError
} deriving Typeable
instance Show SparkInteractiveException where
show (SparkInteractiveException inner) =
show inner
instance Exception SparkInteractiveException
{- | Creates a spark session that will be used as the default session.
If a session already exists, an exception will be thrown.
-}
createSparkSessionDef :: SparkSessionConf -> IO ()
createSparkSessionDef conf = do
current <- _currentSession
case current of
Nothing ->
return ()
Just _ ->
-- TODO let users change the state
_throw "A default context already exist. If you wish to modify the exsting context, you must use modifySparkConfDef"
new <- createSparkSession' conf
_setSession new
return ()
{- | Executes a command using the default spark session.
This is the most unsafe way of running a command:
it executes a command using the default spark session, and
throws an exception if any error happens.
-}
exec1Def :: (FromSQL a) => LocalData a -> IO a
exec1Def ld = do
c <- exec1Def' (pure (untypedLocalData ld))
_forceEither $ cellToValue c
exec1Def' :: LocalFrame -> IO Cell
exec1Def' lf = do
ld <- _getOrThrow lf
res <- execStateDef (executeCommand1' ld)
_getOrThrow res
{-| Runs the computation described in the state transform, using the default
Spark session.
Will throw an exception if no session currently exists.
-}
execStateDef :: SparkState a -> IO a
execStateDef s = do
ctx <- _currentSessionOrThrow
(res, newSt) <- (runStateT . runStdoutLoggingT) s ctx
_setSession newSt
return res
{-| Closes the default session. The default session is empty after this call
completes.
NOTE: This does not currently clear up the resources! It is a stub implementation
used in testing.
-}
closeSparkSessionDef :: IO ()
closeSparkSessionDef = do
_ <- _removeSession
return ()
computationStatsDef :: ComputationID -> IO BatchComputationResult
computationStatsDef compId = execStateDef (computationStats compId)
currentSessionDef :: IO (Maybe SparkSession)
currentSessionDef = _currentSession
_currentSession :: IO (Maybe SparkSession)
_currentSession = readIORef _globalSessionRef
_setSession :: SparkSession -> IO ()
_setSession st = writeIORef _globalSessionRef (Just st)
_removeSession :: IO (Maybe SparkSession)
_removeSession = do
current <- _currentSession
_ <- writeIORef _globalSessionRef Nothing
return current
_currentSessionOrThrow :: IO SparkSession
_currentSessionOrThrow = do
mCtx <- _currentSession
case mCtx of
Nothing ->
_throw "No default context found. You must first create a default spark context with createSparkSessionDef"
Just ctx -> return ctx
_getOrThrow :: Try a -> IO a
_getOrThrow (Right x) = return x
_getOrThrow (Left err) = throwM (SparkInteractiveException err)
_forceEither :: Either Text a -> IO a
_forceEither = _getOrThrow . tryEither
_throw :: Text -> IO a
_throw txt = throwM $
SparkInteractiveException Error {
ePath = NodePath V.empty,
eMessage = txt
}