The definition of Enumerator is:
type Enumerator a m b = Step a m b -> Iteratee a m b
The documentation states that while Iteratees comsume data, Enumerators produce it. I can understand how one might produce data with such a type:
enumStream :: (Monad m) => Stream a -> Enumerator a m b
enumStream stream step =
case step of
Continue k -> k stream
_ -> returnI step -- Note: 'stream' is discarded
(enumEOF is more complicated than this... it apparently checks to make sure the Iteratee does not Continue after being given EOF, throwing an error if it does.)
Namely, an Iteratee produces a Step when it is run with runIteratee. This Step is then fed to my enumerator, which supplies it with a Stream so it can continue. My enumerator returns the resulting continuation.
One thing stands out at me: this code is running in the Iteratee monad. That means it can consume data, right?
-- | Like 'enumStream', but consume and discard a chunk from the input stream
-- simply because we can.
enumStreamWeird :: (Monad m) => Stream a -> Enumerator a m b
enumStreamWeird stream step = do
_ <- continue return -- Look, mommy, I'm consuming input!
case step of
Continue k -> k stream
_ -> returnI step
The documentation states that when an enumerator acts as both a source and sink, Enumeratee should be used instead:
type Enumeratee ao ai m b = Step ai m b -> Iteratee ao m (Step ai m b)
However, apparently I didn't have to; I could consume input in the definition of an Enumerator, as demonstrated by my enumStreamWeird function.
My questions are:
What happens if you try to "consume" data within an
Enumerator, likeenumStreamWeirddoes? Where does the data come from?Even if we aren't insane enough to consume data in an enumerator, is it valid to perform actions in the underlying monad on the behalf of the enumerator, rather than on behalf of the iteratee reading the data we're producing?
The latter question might be less related to my main question, but I'm trying to understand how an Enumerator does what it does.