{-# LANGUAGE RecursiveDo, MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, RankNTypes #-}
module Simulation.Aivika.Trans.Internal.Parameter
(
Parameter(..),
ParameterLift(..),
invokeParameter,
runParameter,
runParameters,
catchParameter,
finallyParameter,
throwParameter,
simulationIndex,
simulationCount,
simulationSpecs,
simulationEventQueue,
starttime,
stoptime,
dt,
generatorParameter,
memoParameter,
tableParameter) where
import Control.Exception
import Control.Concurrent.MVar
import Control.Monad
import Control.Monad.Trans
import Control.Monad.Fix
import qualified Control.Monad.Catch as MC
import Control.Applicative
import Data.IORef
import qualified Data.IntMap as M
import Data.Array
import Simulation.Aivika.Trans.Exception
import Simulation.Aivika.Trans.Generator
import Simulation.Aivika.Trans.Comp
import Simulation.Aivika.Trans.DES
import Simulation.Aivika.Trans.Internal.Types
import Simulation.Aivika.Trans.Internal.Specs
import {-# SOURCE #-} Simulation.Aivika.Trans.Concurrent.MVar
instance Monad m => Monad (Parameter m) where
{-# INLINE return #-}
return a = Parameter $ \r -> return a
{-# INLINE (>>=) #-}
(Parameter m) >>= k =
Parameter $ \r ->
do a <- m r
let Parameter m' = k a
m' r
runParameter :: MonadDES m => Parameter m a -> Specs m -> m a
{-# INLINABLE runParameter #-}
runParameter (Parameter m) sc =
do q <- newEventQueue sc
g <- newGenerator $ spcGeneratorType sc
m Run { runSpecs = sc,
runIndex = 1,
runCount = 1,
runEventQueue = q,
runGenerator = g }
runParameters :: MonadDES m => Parameter m a -> Specs m -> Int -> [m a]
{-# INLINABLE runParameters #-}
runParameters (Parameter m) sc runs = map f [1 .. runs]
where f i = do q <- newEventQueue sc
g <- newGenerator $ spcGeneratorType sc
m Run { runSpecs = sc,
runIndex = i,
runCount = runs,
runEventQueue = q,
runGenerator = g }
simulationIndex :: Monad m => Parameter m Int
{-# INLINE simulationIndex #-}
simulationIndex = Parameter $ return . runIndex
simulationCount :: Monad m => Parameter m Int
{-# INLINE simulationCount #-}
simulationCount = Parameter $ return . runCount
simulationSpecs :: Monad m => Parameter m (Specs m)
{-# INLINE simulationSpecs #-}
simulationSpecs = Parameter $ return . runSpecs
generatorParameter :: Monad m => Parameter m (Generator m)
{-# INLINE generatorParameter #-}
generatorParameter = Parameter $ return . runGenerator
instance Functor m => Functor (Parameter m) where
{-# INLINE fmap #-}
fmap f (Parameter x) = Parameter $ \r -> fmap f $ x r
instance Applicative m => Applicative (Parameter m) where
{-# INLINE pure #-}
pure = Parameter . const . pure
{-# INLINE (<*>) #-}
(Parameter x) <*> (Parameter y) = Parameter $ \r -> x r <*> y r
liftMP :: Monad m => (a -> b) -> Parameter m a -> Parameter m b
{-# INLINE liftMP #-}
liftMP f (Parameter x) =
Parameter $ \r -> do { a <- x r; return $ f a }
liftM2P :: Monad m => (a -> b -> c) -> Parameter m a -> Parameter m b -> Parameter m c
{-# INLINE liftM2P #-}
liftM2P f (Parameter x) (Parameter y) =
Parameter $ \r -> do { a <- x r; b <- y r; return $ f a b }
instance (Num a, Monad m) => Num (Parameter m a) where
{-# INLINE (+) #-}
x + y = liftM2P (+) x y
{-# INLINE (-) #-}
x - y = liftM2P (-) x y
{-# INLINE (*) #-}
x * y = liftM2P (*) x y
{-# INLINE negate #-}
negate = liftMP negate
{-# INLINE abs #-}
abs = liftMP abs
{-# INLINE signum #-}
signum = liftMP signum
{-# INLINE fromInteger #-}
fromInteger i = return $ fromInteger i
instance (Fractional a, Monad m) => Fractional (Parameter m a) where
{-# INLINE (/) #-}
x / y = liftM2P (/) x y
{-# INLINE recip #-}
recip = liftMP recip
{-# INLINE fromRational #-}
fromRational t = return $ fromRational t
instance (Floating a, Monad m) => Floating (Parameter m a) where
{-# INLINE pi #-}
pi = return pi
{-# INLINE exp #-}
exp = liftMP exp
{-# INLINE log #-}
log = liftMP log
{-# INLINE sqrt #-}
sqrt = liftMP sqrt
{-# INLINE (**) #-}
x ** y = liftM2P (**) x y
{-# INLINE sin #-}
sin = liftMP sin
{-# INLINE cos #-}
cos = liftMP cos
{-# INLINE tan #-}
tan = liftMP tan
{-# INLINE asin #-}
asin = liftMP asin
{-# INLINE acos #-}
acos = liftMP acos
{-# INLINE atan #-}
atan = liftMP atan
{-# INLINE sinh #-}
sinh = liftMP sinh
{-# INLINE cosh #-}
cosh = liftMP cosh
{-# INLINE tanh #-}
tanh = liftMP tanh
{-# INLINE asinh #-}
asinh = liftMP asinh
{-# INLINE acosh #-}
acosh = liftMP acosh
{-# INLINE atanh #-}
atanh = liftMP atanh
instance MonadTrans Parameter where
{-# INLINE lift #-}
lift = Parameter . const
instance MonadIO m => MonadIO (Parameter m) where
{-# INLINE liftIO #-}
liftIO = Parameter . const . liftIO
instance Monad m => MonadCompTrans Parameter m where
{-# INLINE liftComp #-}
liftComp = Parameter . const
class ParameterLift t m where
liftParameter :: Parameter m a -> t m a
instance Monad m => ParameterLift Parameter m where
{-# INLINE liftParameter #-}
liftParameter = id
catchParameter :: (MonadException m, Exception e) => Parameter m a -> (e -> Parameter m a) -> Parameter m a
{-# INLINABLE catchParameter #-}
catchParameter (Parameter m) h =
Parameter $ \r ->
catchComp (m r) $ \e ->
let Parameter m' = h e in m' r
finallyParameter :: MonadException m => Parameter m a -> Parameter m b -> Parameter m a
{-# INLINABLE finallyParameter #-}
finallyParameter (Parameter m) (Parameter m') =
Parameter $ \r ->
finallyComp (m r) (m' r)
throwParameter :: (MonadException m, Exception e) => e -> Parameter m a
{-# INLINABLE throwParameter #-}
throwParameter e =
Parameter $ \r ->
throwComp e
maskParameter :: MC.MonadMask m => ((forall a. Parameter m a -> Parameter m a) -> Parameter m b) -> Parameter m b
{-# INLINABLE maskParameter #-}
maskParameter a =
Parameter $ \r ->
MC.mask $ \u ->
invokeParameter r (a $ q u)
where q u (Parameter b) = Parameter (u . b)
uninterruptibleMaskParameter :: MC.MonadMask m => ((forall a. Parameter m a -> Parameter m a) -> Parameter m b) -> Parameter m b
{-# INLINABLE uninterruptibleMaskParameter #-}
uninterruptibleMaskParameter a =
Parameter $ \r ->
MC.uninterruptibleMask $ \u ->
invokeParameter r (a $ q u)
where q u (Parameter b) = Parameter (u . b)
instance MonadFix m => MonadFix (Parameter m) where
{-# INLINE mfix #-}
mfix f =
Parameter $ \r ->
do { rec { a <- invokeParameter r (f a) }; return a }
instance MonadException m => MC.MonadThrow (Parameter m) where
{-# INLINE throwM #-}
throwM = throwParameter
instance MonadException m => MC.MonadCatch (Parameter m) where
{-# INLINE catch #-}
catch = catchParameter
instance (MonadException m, MC.MonadMask m) => MC.MonadMask (Parameter m) where
{-# INLINE mask #-}
mask = maskParameter
{-# INLINE uninterruptibleMask #-}
uninterruptibleMask = uninterruptibleMaskParameter
memoParameter :: (MonadComp m, MonadIO m, MC.MonadMask m) => Parameter m a -> m (Parameter m a)
memoParameter x =
do lock <- liftIO $ newMVar ()
dict <- liftIO $ newIORef M.empty
return $ Parameter $ \r ->
do let i = runIndex r
m <- liftIO $ readIORef dict
if M.member i m
then do let Just v = M.lookup i m
return v
else withMVarComp lock $
\() -> do { m <- liftIO $ readIORef dict;
if M.member i m
then do let Just v = M.lookup i m
return v
else do v <- invokeParameter r x
liftIO $ writeIORef dict $ M.insert i v m
return v }
tableParameter :: Monad m => Array Int a -> Parameter m a
{-# INLINABLE tableParameter #-}
tableParameter t =
do i <- simulationIndex
return $ t ! (((i - i1) `mod` n) + i1)
where (i1, i2) = bounds t
n = i2 - i1 + 1
starttime :: Monad m => Parameter m Double
{-# INLINE starttime #-}
starttime =
Parameter $ return . spcStartTime . runSpecs
stoptime :: Monad m => Parameter m Double
{-# INLINE stoptime #-}
stoptime =
Parameter $ return . spcStopTime . runSpecs
dt :: Monad m => Parameter m Double
{-# INLINE dt #-}
dt =
Parameter $ return . spcDT . runSpecs
simulationEventQueue :: Monad m => Parameter m (EventQueue m)
{-# INLINE simulationEventQueue #-}
simulationEventQueue =
Parameter $ return . runEventQueue