{-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE TypeOperators #-} {-# LANGUAGE UndecidableInstances #-} -- | A carrier for the 'Control.Effect.Trace' effect that aggregates and returns all traced values. -- -- @since 1.0.0.0 module Control.Carrier.Trace.Returning ( -- * Trace carrier runTrace , TraceC(TraceC) -- * Trace effect , module Control.Effect.Trace ) where import Control.Algebra import Control.Applicative (Alternative) import Control.Carrier.Writer.Strict import Control.Effect.Trace import Control.Monad (MonadPlus) import Control.Monad.Fail as Fail import Control.Monad.Fix import Control.Monad.IO.Class import Control.Monad.Trans.Class import Data.Bifunctor (first) import Data.Monoid (Endo(..)) -- | Run a 'Trace' effect, returning all traces as a list. -- -- @ -- 'runTrace' ('pure' a) = 'pure' ([], a) -- @ -- @ -- 'runTrace' ('trace' s) = 'pure' ([s], ()) -- @ -- -- @since 1.0.0.0 runTrace :: Functor m => TraceC m a -> m ([String], a) runTrace (TraceC m) = first (($[]) . appEndo) <$> runWriter m {-# INLINE runTrace #-} -- | @since 1.0.0.0 newtype TraceC m a = TraceC { runTraceC :: WriterC (Endo [String]) m a } deriving (Alternative, Applicative, Functor, Monad, Fail.MonadFail, MonadFix, MonadIO, MonadPlus, MonadTrans) instance Algebra sig m => Algebra (Trace :+: sig) (TraceC m) where alg hdl sig ctx = case sig of L (Trace m) -> ctx <$ TraceC (tell (Endo (m :))) R other -> TraceC (alg (runTraceC . hdl) (R other) ctx) {-# INLINE alg #-}