monad-schedule-1.7: src/Control/Monad/Schedule/Class.hs
{-# LANGUAGE ApplicativeDo #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE OverloadedLists #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE TypeFamilies #-}
module Control.Monad.Schedule.Class where
-- base
import Control.Arrow
import Control.Concurrent
import Data.Either
import Data.Foldable (fold, forM_)
import Data.Function
import Data.Functor.Identity
import Data.List.NonEmpty hiding (length)
import Prelude hiding (map, zip)
-- base-compat
import Data.Functor.Compat (unzip)
-- transformers
import Control.Monad.Trans.Accum
import Control.Monad.Trans.Class
import Control.Monad.Trans.Except
import Control.Monad.Trans.Identity
import Control.Monad.Trans.Maybe
import Control.Monad.Trans.Reader
import qualified Control.Monad.Trans.Writer.CPS as CPSWriter
import qualified Control.Monad.Trans.Writer.Lazy as LazyWriter
import qualified Control.Monad.Trans.Writer.Strict as StrictWriter
{- | 'Monad's in which actions can be scheduled concurrently.
@'schedule' actions@ is expected to run @actions@ concurrently,
whatever that means for a particular monad @m@.
'schedule' does not return before at least one value has finished,
and the returned values @'NonEmpty' a@ are all those that finish first.
The actions @[m a]@ (possibly empty) are the remaining, still running ones.
Executing any of them is expected to be blocking,
and awaits the return of the corresponding action.
A lawful instance is considered to preserve pure values.
Applying 'schedule' to values like @'pure' a@ will eventually return exactly these values.
'schedule' thus can be thought of as a concurrency-utilizing version of 'sequence'.
-}
class MonadSchedule m where
{- | Run the actions concurrently,
and return the result of the first finishers,
together with completions for the unfinished actions.
-}
schedule :: NonEmpty (m a) -> m (NonEmpty a, [m a])
{- | Keeps 'schedule'ing actions until all are finished.
Returns the same set of values as 'sequence',
but utilises concurrency and may thus change the order of the values.
-}
scheduleAndFinish :: (Monad m, MonadSchedule m) => NonEmpty (m a) -> m (NonEmpty a)
scheduleAndFinish actions = do
(finishedFirst, running) <- schedule actions
case running of
[] -> return finishedFirst
(a : as) -> do
finishedLater <- scheduleAndFinish $ a :| as
return $ finishedFirst <> finishedLater
{- | Uses 'scheduleAndFinish' to execute all actions concurrently,
then orders them again.
Thus it behaves semantically like 'sequence',
but leverages concurrency.
-}
sequenceScheduling :: (Monad m, MonadSchedule m) => NonEmpty (m a) -> m (NonEmpty a)
sequenceScheduling =
zip [1 ..]
>>> map strength
>>> scheduleAndFinish
>>> fmap (sortWith fst >>> map snd)
where
strength :: (Functor m) => (a, m b) -> m (a, b)
strength (a, mb) = (a,) <$> mb
-- | When there are no effects, return all values immediately
instance MonadSchedule Identity where
schedule as = (,[]) <$> sequence as
{- | Fork all actions concurrently in separate threads and wait for the first one to complete.
Many monadic actions complete at nondeterministic times
(such as event listeners),
and it is thus impossible to schedule them deterministically
with most other actions.
Using concurrency, they can still be scheduled with all other actions in 'IO',
by running them in separate GHC threads.
Caution: Using 'schedule' repeatedly on the returned continuations of a previous 'schedule' call
will add a layer of indirection to the continuation every time,
eventually slowing down performance and building up memory.
For a monad that doesn't have this problem, see 'Control.Monad.Schedule.FreeAsync.FreeAsyncT'.
-}
instance MonadSchedule IO where
schedule as = do
var <- newEmptyMVar
forM_ as $ \action -> forkIO $ putMVar var =<< action
a <- takeMVar var
as' <- drain var
let remaining = replicate (length as - 1 - length as') $ takeMVar var
return (a :| as', remaining)
where
drain :: MVar a -> IO [a]
drain var = do
aMaybe <- tryTakeMVar var
case aMaybe of
Just a -> do
as' <- drain var
return $ a : as'
Nothing -> return []
-- TODO Needs dependency
-- instance MonadSchedule STM where
-- | Pass through the scheduling functionality of the underlying monad
instance (Functor m, MonadSchedule m) => MonadSchedule (IdentityT m) where
schedule =
fmap runIdentityT
>>> schedule
>>> fmap (fmap (fmap IdentityT))
>>> IdentityT
{- | Write in the order of scheduling:
The first actions to return write first.
-}
instance (Monoid w, Functor m, MonadSchedule m) => MonadSchedule (LazyWriter.WriterT w m) where
schedule =
fmap LazyWriter.runWriterT
>>> schedule
>>> fmap (first (fmap fst &&& (fmap snd >>> fold)) >>> assoc >>> first (second $ fmap LazyWriter.WriterT))
>>> LazyWriter.WriterT
where
assoc :: ((a, w), c) -> ((a, c), w)
assoc ((a, w), c) = ((a, c), w)
{- | Write in the order of scheduling:
The first actions to return write first.
-}
instance (Monoid w, Functor m, MonadSchedule m) => MonadSchedule (StrictWriter.WriterT w m) where
schedule =
fmap StrictWriter.runWriterT
>>> schedule
>>> fmap (first (fmap fst &&& (fmap snd >>> fold)) >>> assoc >>> first (second $ fmap StrictWriter.WriterT))
>>> StrictWriter.WriterT
where
assoc :: ((a, w), c) -> ((a, c), w)
assoc ((a, w), c) = ((a, c), w)
{- | Write in the order of scheduling:
The first actions to return write first.
-}
instance (Monoid w, Functor m, MonadSchedule m) => MonadSchedule (CPSWriter.WriterT w m) where
schedule =
fmap CPSWriter.runWriterT
>>> schedule
>>> fmap (first (fmap fst &&& (fmap snd >>> fold)) >>> assoc >>> first (second $ fmap CPSWriter.writerT))
>>> CPSWriter.writerT
where
assoc :: ((a, w), c) -> ((a, c), w)
assoc ((a, w), c) = ((a, c), w)
{- | Broadcast the same environment to all actions.
The continuations keep this initial environment.
-}
instance (Monad m, MonadSchedule m) => MonadSchedule (ReaderT r m) where
schedule actions = ReaderT $ \r ->
fmap (`runReaderT` r) actions
& schedule
& fmap (second $ fmap lift)
{- | Combination of 'WriterT' and 'ReaderT'.
Pass the same initial environment to all actions
and write to the log in the order of scheduling in @m@.
-}
instance (Monoid w, Functor m, MonadSchedule m) => MonadSchedule (AccumT w m) where
schedule actions = AccumT $ \w ->
fmap (`runAccumT` w) actions
& schedule
& fmap collectWritesAndWrap
where
collectWritesAndWrap ::
(Monoid w) =>
(NonEmpty (a, w), [m (a, w)]) ->
((NonEmpty a, [AccumT w m a]), w)
collectWritesAndWrap (finished, running) =
let (as, logs) = Data.Functor.Compat.unzip finished
in ((as, AccumT . const <$> running), fold logs)
{- | Schedule all actions according to @m@ and in case of exceptions
throw the first exception of the immediately returning actions.
-}
instance (Applicative m, MonadSchedule m) => MonadSchedule (ExceptT e m) where
schedule =
fmap runExceptT
>>> schedule
>>> fmap (sequenceA *** fmap ExceptT >>> extrudeEither)
>>> ExceptT
where
extrudeEither :: (Either e a, b) -> Either e (a, b)
extrudeEither (ea, b) = (,b) <$> ea
instance (Applicative m, MonadSchedule m) => MonadSchedule (MaybeT m) where
schedule =
fmap (maybeToExceptT ())
>>> schedule
>>> exceptToMaybeT
>>> fmap (second $ fmap exceptToMaybeT)
-- instance (Monad m, MonadSchedule m) => MonadSchedule (ContT r m) where
-- schedule actions = ContT $ \scheduler
-- -> fmap (runContT >>> _) actions
-- & schedule
-- & _
{- | Runs two values in a 'MonadSchedule' concurrently
and returns the first one that yields a value
and a continuation for the other value.
-}
race ::
(Applicative m, MonadSchedule m) =>
m a ->
m b ->
m (Either (a, m b) (m a, b))
race aM bM = recoverResult <$> schedule ((Left <$> aM) :| [Right <$> bM])
where
recoverResult :: (Applicative m) => (NonEmpty (Either a b), [m (Either a b)]) -> Either (a, m b) (m a, b)
recoverResult (Left a :| [], [bM']) = Left (a, fromRight e <$> bM')
recoverResult (Right b :| [], [aM']) = Right (fromLeft e <$> aM', b)
recoverResult (Left a :| [Right b], []) = Left (a, pure b)
recoverResult (Right b :| [Left a], []) = Right (pure a, b)
recoverResult _ = e
e = error "race: Internal error"
-- FIXME I should only need Selective
-- | Runs both schedules concurrently and returns their results at the end.
async ::
(Monad m, MonadSchedule m) =>
m a ->
m b ->
m (a, b)
async aSched bSched = do
ab <- race aSched bSched
case ab of
Left (a, bCont) -> do
b <- bCont
return (a, b)
Right (aCont, b) -> do
a <- aCont
return (a, b)
{- | Run both actions concurrently and apply the first result to the second.
Use as a concurrent replacement for '<*>' from 'Applicative'.
-}
apSchedule :: (MonadSchedule m, Monad m) => m (a -> b) -> m a -> m b
apSchedule f a = uncurry id <$> async f a
-- | Concurrent replacement for '*>' from 'Applicative' or '>>' from 'Monad'.
scheduleWith :: (MonadSchedule m, Monad m) => m a -> m b -> m b
scheduleWith a b = (id <$ a) `apSchedule` b