In advance, sorry for this long post.
I'm writing an event-driven application in Haskell, as such I need to store several callback functions for further use. I would like such callbacks to be:
- enriched : use of
ReaderT,ErrorT,StateTrather than bareIOs ; - polymorphic : of type
(MonadIO m, MonadReader MyContext m, MonadState MyState m, MonadError MyError m) => m (), rather thanReaderT MyContext (StateT MyState (ErrorT MyError IO)))
Let's forget about the State and Error layers, for the sake of simplicity.
I started writing a record of all callbacks, stored inside MyContext, something like:
data MyContext = MyContext { _callbacks :: Callbacks {- etc -} }
-- In this example, 2 callbacks only
data Callbacks = Callbacks {
_callback1 :: IORef (m ()),
_callback2 :: IORef (m ())}
The main issue is : where to put the typeclasses constraints for m ? I tried the following, but none compiled:
I thought I might parameterize
Callbackswithmsuch as :data (MonadIO m, MonadReader (MyContext m) m) => Callbacks m = Callbacks { _callback1 :: IORef (m ()), _callback2 :: IORef (m ())}As
Callbacksis part ofMyContext, the latter has to be parameterized as well and it results in an infinite type issue (MonadReader (MyContext m) m).I then thought of using existential quantifiers :
data Callbacks = forall m . (MonadIO m, MonadReader MyContext m) => Callbacks { _callback1 :: IORef (m ()), _callback2 :: IORef (m ())}It seemed to work fine until I wrote the actual code that registers a new callback in
Callbacks:register :: (MonadIO m, MonadReader MyContext m) => m () -> m () register f = do (Callbacks { _callback1 = ref1 }) <- asks _callbacks -- Note the necessary use of pattern matching liftIO $ modifyIORef ref1 (const f)But I got the following error (simplified here):
Could not deduce (m ~ m1) from the context (MonadIO m, MonadReader MyContext m) bound by the type signature for register :: (MonadIO m, MonadReader MyContext m) => m () -> m () or from (MonadIO m1, MonadReader MyContext m1) bound by a pattern with constructor Callbacks :: forall (m :: * -> *). (MonadIO m, MonadReader MyContext m) => IORef (m ()) -> IORef (m ()) -> Callbacks, Expected type: m1 () Actual type: m ()I was unable to find a workaround.
I would be really grateful if someone could enlighten me. What would be the good way of designing this, if any ?
Thank you in advance for your comments.
[EDIT] As far as I understood ysdx's answer, I tried parameterizing my datatypes with m without imposing any typeclass constraint, but then I was unable to make Callbacks an instance of Data.Default; writing something like this:
instance (MonadIO m, MonadReader (MyContext m) m) => Default (Callbacks m) where
def = Callbacks {
_callback1 = {- something that makes explicit use of the Reader layer -},
_callback2 = return ()}
... resulted in GHC complaining with:
Variable occurs more often in a constraint than in the instance head
in the constraint: MonadReader (MyContext m) m
It suggests using UndecidableInstances, but I heard it was a very bad thing, although I don't know why. Does it mean I have to give up using Data.Default ?
(MonadIO m, ...) => m ()and have your callbacks beIORef <the newtype>instead. – hzap Aug 20 '12 at 22:19modifyIORef ref1 (const f)instead ofwriteIORef ref1 f? – hzap Aug 20 '12 at 22:22writeIORefmakes more sense here, indeed, thank you. – koral Aug 21 '12 at 17:07