{-| This module provides the proxy transformer equivalent of 'WriterT'. This module is even stricter than @Control.Monad.Trans.Writer.Strict@ by being strict in the accumulated monoid. The underlying implementation uses the state monad to avoid quadratic blowup from left-associative binds. -} {-# LANGUAGE KindSignatures #-} module Control.Proxy.Trans.Writer ( -- * WriterP WriterP, writerP, runWriterP, runWriterK, execWriterP, execWriterK, -- * Writer operations tell, censor ) where import Control.Applicative (Applicative(pure, (<*>)), Alternative(empty, (<|>))) import Control.Monad (MonadPlus(mzero, mplus)) import Control.Monad.IO.Class (MonadIO(liftIO)) import Control.Monad.Morph (MFunctor(hoist)) import Control.Monad.Trans.Class (MonadTrans(lift)) import Control.Proxy.Class ( Proxy(request, respond, (->>), (>>~)), ProxyInternal(return_P, (?>=), lift_P, liftIO_P, hoist_P), MonadPlusP(mzero_P, mplus_P) ) import Control.Proxy.Morph (PFunctor(hoistP), PMonad(embedP)) import Control.Proxy.Trans (ProxyTrans(liftP)) import Data.Monoid (Monoid(mempty, mappend)) -- | The strict 'Writer' proxy transformer newtype WriterP w p a' a b' b (m :: * -> *) r = WriterP { unWriterP :: w -> p a' a b' b m (r, w) } instance (Proxy p, Monad m) => Functor (WriterP w p a' a b' b m) where fmap f p = WriterP (\w0 -> unWriterP p w0 ?>= \(x, w1) -> return_P (f x, w1) ) instance (Proxy p, Monad m) => Applicative (WriterP w p a' a b' b m) where pure = return fp <*> xp = WriterP (\w0 -> unWriterP fp w0 ?>= \(f, w1) -> unWriterP xp w1 ?>= \(x, w2) -> return_P (f x, w2) ) instance (Proxy p, Monad m) => Monad (WriterP w p a' a b' b m) where return = return_P (>>=) = (?>=) instance (Proxy p) => MonadTrans (WriterP w p a' a b' b) where lift = lift_P instance (Proxy p) => MFunctor (WriterP w p a' a b' b) where hoist = hoist_P instance (Proxy p, MonadIO m) => MonadIO (WriterP w p a' a b' b m) where liftIO = liftIO_P instance (MonadPlusP p, Monad m) => Alternative (WriterP w p a' a b' b m) where empty = mzero (<|>) = mplus instance (MonadPlusP p, Monad m) => MonadPlus (WriterP w p a' a b' b m) where mzero = mzero_P mplus = mplus_P instance (Proxy p) => ProxyInternal (WriterP w p) where return_P = \r -> WriterP (\w -> return_P (r, w)) m ?>= f = WriterP (\w -> unWriterP m w ?>= \(a, w') -> unWriterP (f a) w' ) lift_P m = WriterP (\w -> lift_P (m >>= \r -> return (r, w))) hoist_P nat p = WriterP (\w -> hoist_P nat (unWriterP p w)) liftIO_P m = WriterP (\w -> liftIO_P (m >>= \r -> return (r, w))) instance (Proxy p) => Proxy (WriterP w p) where fb' ->> p = WriterP (\w -> (\b' -> unWriterP (fb' b') w) ->> unWriterP p w) p >>~ fb = WriterP (\w -> unWriterP p w >>~ (\b -> unWriterP (fb b) w)) request = \a' -> WriterP (\w -> request a' ?>= \a -> return_P (a, w)) respond = \b -> WriterP (\w -> respond b ?>= \b' -> return_P (b', w)) instance (MonadPlusP p) => MonadPlusP (WriterP w p) where mzero_P = WriterP (\_ -> mzero_P) mplus_P m1 m2 = WriterP (\w -> mplus_P (unWriterP m1 w) (unWriterP m2 w)) instance ProxyTrans (WriterP w) where liftP m = WriterP (\w -> m ?>= \r -> return_P (r, w)) instance PFunctor (WriterP w) where hoistP nat p = WriterP (\s -> nat (unWriterP p s)) instance (Monoid w) => PMonad (WriterP w) where embedP nat p = writerP ( runWriterP (nat (runWriterP p)) ?>= \((r, w1), w2) -> return_P (r, mappend w1 w2) ) -- | Create a 'WriterP' from a proxy that generates a result and a monoid writerP :: (Monad m, Proxy p, Monoid w) => p a' a b' b m (r, w) -> WriterP w p a' a b' b m r writerP p = WriterP (\w -> p ?>= \(r, w') -> let w'' = mappend w w' in w'' `seq` return_P (r, w'') ) {-# INLINABLE writerP #-} -- | Run a 'WriterP' computation, producing the final result and monoid runWriterP :: (Monoid w) => WriterP w p a' a b' b m r -> p a' a b' b m (r, w) runWriterP p = unWriterP p mempty {-# INLINABLE runWriterP #-} -- | Run a 'WriterP' \'@K@\'leisli arrow, producing the final result and monoid runWriterK :: (Monoid w) => (q -> WriterP w p a' a b' b m r) -> (q -> p a' a b' b m (r, w)) runWriterK k q = runWriterP (k q) {-# INLINABLE runWriterK #-} -- | Evaluate a 'WriterP' computation, but discard the final result execWriterP :: (Proxy p, Monad m, Monoid w) => WriterP w p a' a b' b m r -> p a' a b' b m w execWriterP m = runWriterP m ?>= \(_, w) -> return_P w {-# INLINABLE execWriterP #-} -- | Evaluate a 'WriterP' \'@K@\'leisli arrow, but discard the final result execWriterK :: (Proxy p, Monad m, Monoid w) => (q -> WriterP w p a' a b' b m r) -> (q -> p a' a b' b m w) execWriterK k q= execWriterP (k q) {-# INLINABLE execWriterK #-} -- | Add a value to the monoid tell :: (Proxy p, Monad m, Monoid w) => w -> WriterP w p a' a b' b m () tell w' = WriterP (\w -> let w'' = mappend w w' in w'' `seq` return_P ((), w'')) {-# INLINABLE tell #-} -- | Modify the result of a writer computation censor :: (Proxy p, Monad m, Monoid w) => (w -> w) -> WriterP w p a' a b' b m r -> WriterP w p a' a b' b m r censor f p = WriterP (\w0 -> unWriterP p w0 ?>= \(r, w1) -> return_P (r, f w1) ) {-# INLINABLE censor #-}