chatty-0.6.4.0: Text/Chatty/Channel/Printer.hs
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, Safe #-}
{-
This module is part of Chatty.
Copyleft (c) 2014 Marvin Cohrs
All wrongs reversed. Sharing is an act of love, not crime.
Please share Antisplice with everyone you like.
Chatty is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Chatty is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Chatty. If not, see <http://www.gnu.org/licenses/>.
-}
-- | Provides a printer class that offers several channels.
module Text.Chatty.Channel.Printer (
ChChannelPrinter (..),
ArchiverT (..),
IntArchiverT,
BoolArchiverT,
HandleArchiverT,
runArchiverT,
FilterT (..),
IntFilterT,
BoolFilterT,
HandleFilterT,
JoinerT (..)
) where
import Control.Applicative
import Control.Arrow
import Control.Monad
import Control.Monad.IO.Class
import Control.Monad.Trans.Class
import Text.Chatty.Printer
import System.IO
-- | Typeclass for all printers that offer several channels.
class (ChPrinter m,Eq c) => ChChannelPrinter c m where
-- | Run the function with the given channel.
cbracket :: c -> m a -> m a
cbracket c m = cstart c >> m >>= \a -> cfin c >> return a
-- | Switch to the given channel
cstart :: c -> m ()
-- | Return to the previous channel. The argument is bogus (just for type inference).
cfin :: c -> m ()
-- | Print the string to the given channel.
cprint :: c -> String -> m ()
cprint c s = cbracket c $ mprint s
-- | Return the current channel.
cthis :: m c
-- | Catches all output on multiple channels.
newtype ArchiverT c m a = Archiver { runArchiverT' :: ([(c,[String])],[c]) -> m (a,([(c,[String])],[c])) }
instance Monad m => Monad (ArchiverT c m) where
return a = Archiver $ \s -> return (a,s)
(Archiver r) >>= f = Archiver $ \s -> do (a,s') <- r s; runArchiverT' (f a) s'
instance MonadTrans (ArchiverT c) where
lift m = Archiver $ \s -> do a <- m; return (a,s)
instance MonadIO m => MonadIO (ArchiverT c m) where
liftIO = lift . liftIO
instance Monad m => Functor (ArchiverT c m) where
fmap f a = liftM f a
instance Monad m => Applicative (ArchiverT c m) where
(<*>) = ap
pure = return
withAssoc :: Eq b => b -> a -> (a -> a) -> [(b,a)] -> [(b,a)]
withAssoc k n f [] = [(k,f n)]
withAssoc k n f ((p,a):ps)
| p == k = (p,f a) : ps
| otherwise = (p,a) : withAssoc k n f ps
instance (Eq c,Monad m) => ChPrinter (ArchiverT c m) where
mprint s = Archiver $ \(r,c:cx) -> return ((),(withAssoc c [] (s:) r,c:cx))
instance (Eq c,Monad m) => ChChannelPrinter c (ArchiverT c m) where
cbracket c m = Archiver $ \(r,c1) -> do
(a,(r',_)) <- runArchiverT' m (r,c:c1)
return (a,(r',c1))
cstart c = Archiver $ \(r,c1) -> return ((),(r,c:c1))
cfin _ = Archiver $ \(r,_:cx) -> return ((),(r,cx))
cprint c s = Archiver $ \(r,c1) -> return ((),(withAssoc c [] (s:) r,c1))
cthis = Archiver $ \(r,c) -> return (head c,(r,c))
runArchiverT :: (Eq c,Monad m) => c -> ArchiverT c m a -> m (a,[(c,Replayable)])
runArchiverT c = liftM (second $ map (second Replayable) . fst) . flip runArchiverT' ([],[c])
type IntArchiverT = ArchiverT Int
type BoolArchiverT = ArchiverT Bool
type HandleArchiverT = ArchiverT Handle
-- | Forwards output only on a specific channel.
newtype FilterT c m a = Filter { runFilterT :: (c,[c]) -> m (a,[c]) }
instance Monad m => Monad (FilterT c m) where
return a = Filter $ \(c,s) -> return (a,s)
(Filter g) >>= f = Filter $ \(c,s) -> do (a,s') <- g (c,s); runFilterT (f a) (c,s')
instance MonadTrans (FilterT c) where
lift m = Filter $ \(c,s) -> do a <- m; return (a,s)
instance MonadIO m => MonadIO (FilterT c m) where
liftIO = lift . liftIO
instance Monad m => Functor (FilterT c m) where
fmap f a = liftM f a
instance Monad m => Applicative (FilterT c m) where
pure = return
(<*>) = ap
instance (Eq c,ChPrinter m) => ChPrinter (FilterT c m) where
mprint str = Filter $ \(c,c1:cx) -> if c == c1 then mprint str >> return ((),c1:cx) else return ((),c1:cx)
mnomask str = Filter $ \(c,c1:cx) -> if c == c1 then mnomask str >> return ((),c1:cx) else return ((),c1:cx)
instance (Eq c,ChPrinter m) => ChChannelPrinter c (FilterT c m) where
cbracket c m = Filter $ \(cf,cx) -> do
(a,_) <- runFilterT m (cf,c:cx)
return (a,cx)
cstart c = Filter $ \(cf,cx) -> return ((),c:cx)
cfin _ = Filter $ \(cf,_:cx) -> return ((),cx)
cprint c s = Filter $ \(cf,cx) -> if c == cf then mprint s >> return ((),cx) else return ((),cx)
cthis = Filter $ \(cf,cx) -> return (head cx,cx)
type IntFilterT = FilterT Int
type BoolFilterT = FilterT Bool
type HandleFilterT = FilterT Handle
-- | Joins all output regardless of its channel.
newtype JoinerT m a = Joiner { runJoinerT :: m a }
instance Monad m => Monad (JoinerT m) where
return a = Joiner $ return a
(Joiner j) >>= f = Joiner $ do a <- j; runJoinerT (f a)
instance MonadTrans JoinerT where
lift = Joiner
instance MonadIO m => MonadIO (JoinerT m) where
liftIO = lift . liftIO
instance Functor m => Functor (JoinerT m) where
fmap f (Joiner j) = Joiner $ fmap f j
instance (Functor m, Monad m) => Applicative (JoinerT m) where
(<*>) = ap
pure = return
instance ChPrinter m => ChPrinter (JoinerT m) where
mprint = lift . mprint
mnomask = lift . mnomask
instance (Eq c,ChPrinter m) => ChChannelPrinter c (JoinerT m) where
cstart _ = return ()
cfin _ = return ()
cbracket _ m = m
cthis = return undefined
cprint _ s = mprint s