Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
2answers
282 views

What happens if an Enumerator tries to consume input?

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 ...
19
votes
4answers
2k views

Introduction or simple examples for iteratee?

I find Oleg's docs on Iteratee somewhat difficult to get into. Especially since some of the functions in his posts to Haskell-Cafe aren't in the iteratee library (like enum_file). Is there a good ...
14
votes
1answer
413 views

Comparision of enumerator vs. iteratee package

Currently, there two popular choices which implement the iteratee pattern: The enumerator package and the iteratee package. What are their relative benefits? Is one better than the other, or does ...
10
votes
2answers
155 views

Combining two Enumeratees

I'm trying to wrap my head around the enumerator library and ran into a situation where I want to build a new Enumeratee in terms of two existing Enumeratees. Let's say I have the enumeratees: e1 :: ...
8
votes
1answer
229 views

Why is `http` in http-enumerator an Iteratee?

The type signature for http is: http :: MonadIO m => Request m -> (W.Status -> W.ResponseHeaders -> Iteratee S.ByteString m a) -> Manager -> Iteratee ...
7
votes
4answers
214 views

Writing “wc -l” using Iteratee library - how to filter for newline?

I am trying to come up with equivalent of "wc -l" using Haskell Iteratee library. Below is the code for "wc" (which just counts the words - similar to the code in iteratee example on hackage), and ...
7
votes
1answer
277 views

Why does my Mapreduce implementation (real world haskell) using iteratee IO also fails with “Too many open files”

I am implementing a haskell program wich compares each line of a file with each other line in the file. Which can be implemented single threaded as follows distance :: Int -> Int -> Int ...
5
votes
1answer
100 views

attoparsec-iteratee doesn't work when input is larger than buffer size

I have a simple attoparsec-based pdf parser. It works fine until used with iteratee. When size of input exceeds buffer size. import qualified Data.ByteString as BS import qualified Data.Iteratee as I ...
5
votes
1answer
567 views

Attoparsec Iteratee

I wanted, just to learn a bit about Iteratees, reimplement a simple parser I made, using Data.Iteratee and Data.Attoparsec.Iteratee. I'm pretty much stumped though. Below I have a simple example that ...
4
votes
2answers
99 views

How to create an ever-retrying Enumerator

I'm using John Millikin's enumerator package and am trying to create something roughly equivalent to Data.Enumerator.Binary.enumHandle, except it connects the socket itself, then tries to enumerate ...
4
votes
0answers
128 views

Am I the only one confused by the names Iteratee, Enumerator, and Enumeratee? [closed]

I love iteratees as a paradigm for IO, but I have some concerns about the names. I am having trouble developing a relationship with these names. Could someone explain their origin? The definition ...
3
votes
1answer
161 views

Nested Iteratees

I am working with a particular database where, upon a successful query, you are able to access a group of chunks of the resulting data using a specific command: getResultData :: IO (ResponseCode, ...
2
votes
1answer
216 views

Filtering / branching enumeratee

I am using enumerator-0.4.10, and I need to distribute processing of different parts of the incoming stream to different iteratees (I am parsing a huge XML file, and different sub-trees have different ...
2
votes
2answers
126 views

How do you use the latest version (0.8.1.2 at time of writing) of the iteratee library?

I've read tutorials on the iteratee and enumerator concepts, and have implemented a sample version as a way of learning how they work. However, the types used in the iteratee package are very ...
1
vote
1answer
224 views

Having trouble finishing off this enumeratee

At one point I wrote a packet capture program in haskell and it used lazy IO to catch all the tcp packets. The problem was that sometimes packets are out of order, so I had to insert all of them into ...