{-# LANGUAGE CPP #-} {-# LANGUAGE Rank2Types #-} {-# LANGUAGE LiberalTypeSynonyms #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE FunctionalDependencies #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE UndecidableInstances #-} ------------------------------------------------------------------------------- -- | -- Module : Control.Lens.Zoom -- Copyright : (C) 2012 Edward Kmett -- License : BSD-style (see the file LICENSE) -- Maintainer : Edward Kmett -- Stability : provisional -- Portability : Rank2Types -- ------------------------------------------------------------------------------- module Control.Lens.Zoom ( Magnify(..) , Zoom(..) ) where import Control.Lens.Internal import Control.Lens.Type import Control.Lens.Getter import Control.Monad import Control.Monad.Reader.Class as Reader import Control.Monad.State.Class as State import Control.Monad.Trans.State.Lazy as Lazy import Control.Monad.Trans.State.Strict as Strict import Control.Monad.Trans.Writer.Lazy as Lazy import Control.Monad.Trans.Writer.Strict as Strict import Control.Monad.Trans.RWS.Lazy as Lazy import Control.Monad.Trans.RWS.Strict as Strict import Control.Monad.Trans.Reader import Control.Monad.Trans.Error import Control.Monad.Trans.List import Control.Monad.Trans.Identity import Control.Monad.Trans.Maybe import Data.Monoid -- | This class allows us to use 'zoom' in, changing the State supplied by -- many different monad transformers, potentially quite deep in a monad transformer stack. class (MonadState s m, MonadState t n) => Zoom m n k s t | m -> s k, n -> t k, m t -> n, n s -> m where -- | Run a monadic action in a larger state than it was defined in, -- using a 'Simple' 'Lens' or 'Simple' 'Control.Lens.Traversal.Traversal'. -- -- This is commonly used to lift actions in a simpler state monad into a -- state monad with a larger state type. -- -- When applied to a 'Simple 'Control.Lens.Traversal.Traversal' over -- multiple values, the actions for each target are executed sequentially -- and the results are aggregated. -- -- This can be used to edit pretty much any monad transformer stack with a state in it! -- -- @ -- 'zoom' :: 'Monad' m => 'Simple' 'Lens' a b -> 'StateT' b m c -> 'StateT' a m c -- 'zoom' :: ('Monad' m, 'Monoid' c) => 'Simple' 'Control.Lens.Traversal.Traversal' a b -> 'StateT' b m c -> 'StateT' a m c -- 'zoom' :: 'Monad' m => 'Simple' 'Lens' a b -> 'RWST' r w b m c -> 'RWST' r w a m c -- 'zoom' :: ('Monad' m, 'Monoid' c) => 'Simple' 'Control.Lens.Traversal.Traversal' a b -> 'RWST' r w b m c -> 'RWST' r w a m c -- 'zoom' :: 'Monad' m => 'Simple' 'Lens' a b -> 'ErrorT' e ('RWST' r w b m c) -> 'ErrorT' e ('RWST' r w a m c) -- 'zoom' :: ('Monad' m, 'Monoid' c) => 'Simple' 'Control.Lens.Traversal.Traversal' a b -> 'ErrorT' e ('RWST' r w b m c) -> 'ErrorT' e ('RWST' r w a m c) -- ... -- @ zoom :: Monad m => SimpleLensLike (k c) t s -> m c -> n c instance Monad z => Zoom (Strict.StateT s z) (Strict.StateT t z) (Focusing z) s t where zoom l (Strict.StateT m) = Strict.StateT $ unfocusing . l (Focusing . m) {-# INLINE zoom #-} instance Monad z => Zoom (Lazy.StateT s z) (Lazy.StateT t z) (Focusing z) s t where zoom l (Lazy.StateT m) = Lazy.StateT $ unfocusing . l (Focusing . m) {-# INLINE zoom #-} instance Zoom m n k s t => Zoom (ReaderT e m) (ReaderT e n) k s t where zoom l (ReaderT m) = ReaderT (zoom l . m) {-# INLINE zoom #-} instance Zoom m n k s t => Zoom (IdentityT m) (IdentityT n) k s t where zoom l (IdentityT m) = IdentityT (zoom l m) {-# INLINE zoom #-} instance (Monoid w, Monad z) => Zoom (Strict.RWST r w s z) (Strict.RWST r w t z) (FocusingWith w z) s t where zoom l (Strict.RWST m) = Strict.RWST $ \r -> unfocusingWith . l (FocusingWith . m r) {-# INLINE zoom #-} instance (Monoid w, Monad z) => Zoom (Lazy.RWST r w s z) (Lazy.RWST r w t z) (FocusingWith w z) s t where zoom l (Lazy.RWST m) = Lazy.RWST $ \r -> unfocusingWith . l (FocusingWith . m r) {-# INLINE zoom #-} instance (Monoid w, Zoom m n k s t) => Zoom (Strict.WriterT w m) (Strict.WriterT w n) (FocusingPlus w k) s t where zoom l = Strict.WriterT . zoom (\cfd -> unfocusingPlus . l (FocusingPlus . cfd)) . Strict.runWriterT {-# INLINE zoom #-} instance (Monoid w, Zoom m n k s t) => Zoom (Lazy.WriterT w m) (Lazy.WriterT w n) (FocusingPlus w k) s t where zoom l = Lazy.WriterT . zoom (\cfd -> unfocusingPlus . l (FocusingPlus . cfd)) . Lazy.runWriterT {-# INLINE zoom #-} instance Zoom m n k s t => Zoom (ListT m) (ListT n) (FocusingOn [] k) s t where zoom l = ListT . zoom (\cfd -> unfocusingOn . l (FocusingOn . cfd)) . runListT {-# INLINE zoom #-} instance Zoom m n k s t => Zoom (MaybeT m) (MaybeT n) (FocusingMay k) s t where zoom l = MaybeT . liftM getMay . zoom (\cfd -> unfocusingMay . l (FocusingMay . cfd)) . liftM May . runMaybeT {-# INLINE zoom #-} instance (Error e, Zoom m n k s t) => Zoom (ErrorT e m) (ErrorT e n) (FocusingErr e k) s t where zoom l = ErrorT . liftM getErr . zoom (\cfd -> unfocusingErr . l (FocusingErr . cfd)) . liftM Err . runErrorT {-# INLINE zoom #-} -- TODO: instance Zoom m m k a a => Zoom (ContT r m) (ContT r m) k a a where -- | This class allows us to use 'magnify' part of the environment, changing the environment supplied by -- many different monad transformers. Unlike 'focus' this can change the environment of a deeply nested monad transformer. -- -- Also, unlike 'focus', this can be used with any valid 'Getter', but cannot be used with a 'Traversal' or 'Fold'. class (MonadReader b m, MonadReader a n) => Magnify m n k b a | m -> b, n -> a, m a -> n, n b -> m where -- | Run a monadic action in a larger environment than it was defined in, using a 'Getter'. -- -- This acts like 'Control.Monad.Reader.Class.local', but can in many cases change the type of the environment as well. -- -- This is commonly used to lift actions in a simpler Reader monad into a monad with a larger environment type. -- -- This can be used to edit pretty much any monad transformer stack with an environment in it: -- -- @ -- 'magnify' :: 'Getter' a b -> (b -> c) -> a -> c -- 'magnify' :: 'Monoid' c => 'Fold' a b -> (b -> c) -> a -> c -- 'magnify' :: 'Monoid' w 'Getter' a b -> 'RWST' a w s c -> 'RWST' b w s c -- 'magnify' :: ('Monoid' w, 'Monoid' c) => 'Fold' a b -> 'RWST' a w s c -> 'RWST' b w s c -- ... -- @ magnify :: ((b -> k c b) -> a -> k c a) -> m c -> n c instance Monad m => Magnify (ReaderT b m) (ReaderT a m) (Effect m) b a where magnify l (ReaderT m) = ReaderT $ getEffect . l (Effect . m) {-# INLINE magnify #-} -- | @'magnify' = 'views'@ instance Magnify ((->) b) ((->) a) Accessor b a where magnify = views {-# INLINE magnify #-} instance (Monad m, Monoid w) => Magnify (Strict.RWST b w s m) (Strict.RWST a w s m) (EffectRWS w s m) b a where magnify l (Strict.RWST m) = Strict.RWST $ getEffectRWS . l (EffectRWS . m) {-# INLINE magnify #-} instance (Monad m, Monoid w) => Magnify (Lazy.RWST b w s m) (Lazy.RWST a w s m) (EffectRWS w s m) b a where magnify l (Lazy.RWST m) = Lazy.RWST $ getEffectRWS . l (EffectRWS . m) {-# INLINE magnify #-} instance Magnify m n k b a => Magnify (IdentityT m) (IdentityT n) k b a where magnify l (IdentityT m) = IdentityT (magnify l m) {-# INLINE magnify #-} {- -- | Wrap a monadic effect with a phantom type argument. Used when magnifying StateT. newtype EffectS s k c a = EffectS { runEffect :: s -> k (c, s) a } instance Functor (k (c, s)) => Functor (EffectS s k c) where fmap f (EffectS m) = EffectS (fmap f . m) instance (Monoid c, Monad m) => Applicative (EffectS s k c) where pure _ = EffectS $ \s -> return (mempty, s) EffectS m <*> EffectS n = EffectS $ \s -> m s >>= \ (c,t) -> n s >>= \ (d, u) -> return (mappend c d, u) instance Magnify m n k b a => Magnify (Strict.StateT s m) (Strict.StateT s n) (EffectS s k) b a where magnify l (Strict.StateT m) = Strict.StateT $ magnify l . m {-# INLINE magnify #-} instance Magnify m n b a => Magnify (Lazy.StateT s m) (Lazy.StateT s n) b a where magnify l (Lazy.StateT m) = Lazy.StateT $ magnify l . m {-# INLINE magnify #-} instance (Monoid w, Magnify m n b a) => Magnify (Strict.WriterT w m) (Strict.WriterT w n) b a where magnify l (Strict.WriterT m) = Strict.WriterT (magnify l m) {-# INLINE magnify #-} instance (Monoid w, Magnify m n b a) => Magnify (Lazy.WriterT w m) (Lazy.WriterT w n) b a where magnify l (Lazy.WriterT m) = Lazy.WriterT (magnify l m) {-# INLINE magnify #-} instance Magnify m n b a => Magnify (ListT m) (ListT n) b a where magnify l (ListT m) = ListT (magnify l m) {-# INLINE magnify #-} instance Magnify m n b a => Magnify (MaybeT m) (MaybeT n) b a where magnify l (MaybeT m) = MaybeT (magnify l m) {-# INLINE magnify #-} instance (Error e, Magnify m n b a) => Magnify (ErrorT e m) (ErrorT e n) b a where magnify l (ErrorT m) = ErrorT (magnify l m) {-# INLINE magnify #-} instance Magnify m m a a => Magnify (ContT r m) (ContT r m) a a where magnify l (ContT m) = ContT $ \k -> do r <- Reader.ask magnify l (m (magnify (to (const r)) . k)) {-# INLINE magnify #-} -}