The iteratee tag has no wiki summary.
4
votes
3answers
155 views
Scalaz 7 Iteratee to process large zip file (OutOfMemoryError)
I'm trying to use the scalaz iteratee package to process a large zip file in constant space. I have a long-running process I need to perform on each file in the zip file. Those processes can (and ...
9
votes
1answer
243 views
How to use IO with Scalaz7 Iteratees without overflowing the stack?
Consider this code (taken from here and modified to use bytes rather than lines of characters).
import java.io.{ File, InputStream, BufferedInputStream, FileInputStream }
import scalaz._, Scalaz._, ...
0
votes
1answer
49 views
Need help, accessing more levels of a json/twitter search
I'm using example from @diegolparra of doing a twitter search and/or a streaming.
package controllers
import play.api.mvc.{WebSocket, Action, Controller}
import play.api.libs.functional.syntax._
...
0
votes
0answers
59 views
Computing deltas from a play2 enumerator
Supposing I have:
val enum: Enumerator[I]
def delta(last: I, next: I): Delta
How could I get?
val deltas: Enumerator[Delta]
With a Stream you could do something like:
val deltas = ...
0
votes
0answers
36 views
Can I have some “ordered interleave” method on Enumerator?
The Enumerator#interleave method says
Interleaving is done based on whichever enumerator next has input
ready, if multiple have input ready, the order is undefined.
Say I have two enumerators:
...
0
votes
0answers
42 views
How should I use Concurrent.patchPanel?
I am using Play Framework 2.1.0 iteratee module, and I have the following code:
import play.api.libs.iteratee._
import scala.concurrent.ExecutionContext.Implicits.global
object iteratee extends App ...
2
votes
1answer
198 views
Enumerator vs Iterator in scala and java
What is the difference between Enumerator and Iterator? Per my understanding Enumerator is not a fancy alias for enum in Java. Rather, it seems to be a traversal technique similar to an Iterator. So ...
10
votes
1answer
222 views
What well developed iteratee/pipes libraries are available for Scala?
Does Scala have any well developed libraries in the spirit of Haskell's pipes, or at least iteratee?
I found Play's iteratee library first, but I couldn't make it work, and it seems tightly coupled ...
1
vote
1answer
94 views
How to get an Enumerator[T] from List[T] when using Play 2 Iteratees
I am quite new to Play 2 and am trying Iteratees.
Q1. How can I get an Enumerator[Person] from List[Person]?
Q2. When I try to pass an Enumerator(Option[String]) to Ok.stream I get an error on ...
4
votes
1answer
498 views
How is state managed in Scala Play! 2.0 Websockets?
I'm looking at the example at https://github.com/playframework/Play20/tree/master/samples/scala/websocket-chat
To make a websocket controller, you write something like:
def chat(username: ...
1
vote
1answer
362 views
Play 2 Scala feed a Websocket output Iteratee with several enumerators (PatchPannel?)
I would like to feed a WebSocket output Iteratee with several enumerators progressively (for example I want to add a specific enumerator to the output Iteratee when I receive a specific event through ...
0
votes
0answers
232 views
Scala iteratee to write to a file
I have a method save that takes an Iteratee it and saves some data to it. Inside the method, the data is available as an enumerator producing byte-array chunks.
def save[E](consumer: ...
12
votes
2answers
243 views
What is the connection between Iteratees and FRP?
It seems to me that there is a strong connection between the two ideas. My guess is that FRP could be implemented in terms of Iteratees if there would be a way to express arbitrary graphs with ...
1
vote
2answers
138 views
Can't understand Iteratee.fold in Play 2.0
I'm reading the source code of Iteratee.scala: https://github.com/playframework/Play20/blob/master/framework/src/iteratees/src/main/scala/play/api/libs/iteratee/Iteratee.scala
Specifically the ...
7
votes
2answers
274 views
Handling exceptions in an iteratee library without an error state
I'm trying to write an enumerator for reading files line by line from a java.io.BufferedReader using Scalaz 7's iteratee library, which currently only provides an (extremely slow) enumerator for ...
13
votes
2answers
465 views
Iteratees in Scala that use lazy evaluation or fusion?
I have heard that iteratees are lazy, but how lazy exactly are they? Alternatively, can iteratees be fused with a postprocessing function, so that an intermediate data structure does not have to be ...
5
votes
1answer
183 views
Compose function with Enumerator
Is it possible to compose an arbitrary function with an Enumerator or EnumeratorM, so that each individual item of data being pushed into the iteratee is first preprocessed by applying the function?
5
votes
2answers
279 views
Simple Generators
This code comes from a paper called "Lazy v. Yield". Its about a way to decouple producers and consumer of streams of data. I understand the Haskell portion of the code but the O'Caml/F# eludes me. I ...
3
votes
0answers
151 views
Why does PushEnumerator hang here?
In an sbt play project I run console-project and paste in this code:
import play.api.libs.iteratee._
val e = Enumerator.imperative[String]()
e.push("foo")
e.push("bar")
e.push("bah")
e.close
val ...
1
vote
1answer
309 views
Play2 Framework proxy streaming content to client keeps connection open after streaming is done
The below code does streaming back to client, in, what I gather is a more idiomatic way than using Java's IO Streams. It, however, has an issue: connection is kept open after stream is done.
def ...
1
vote
0answers
50 views
Play2 iteratee and enumerator streaming of large file fails [duplicate]
Possible Duplicate:
Play2 Framework proxy streaming content to client keeps connection open after streaming is done
I am streaming a 11mb file from a web service to the client. This is ...
2
votes
0answers
409 views
Forward a file upload stream to S3 through Iteratee with Play2 / Scala
I've read some stuff about the possibility to send a file to S3 through Iteratee, which seems to permit to send so S3 chunks of a file as we receive them and avoid an OutOfMemory for large files for ...
8
votes
4answers
535 views
Is there an Iteratee-like concept which pulls data from multiple sources?
It is possible to pull on demand from a number (say two for simplicity) of sources using streams (lazy lists). Iteratees can be used to process data coming from a single source.
Is there an ...
4
votes
1answer
159 views
feeding two iteratee with one enumerator
I'm very new to play framework, functional programming and Iteratee I/O, so maybe my question is very out of topic or even stupid.
I would like to upload big text files as stream to a third party and ...
2
votes
0answers
348 views
Play 2 Scala - Best way to upload a big CSV file with Iteratee in order to process each line reactively
I want to use Play2 to upload a very big CSV files (milions of lines) on elasticsearch. I have written the following code that works fine.
I'm not pleased with the way I skip the http response ...
11
votes
1answer
1k views
Play 2.x : Reactive file upload with Iteratees
I will start with question: How to use Scala API's Iteratee to upload file to the cloud storage (Azure Blob Storage in my case, but I don't think it's most important now)
Background:
I need to chunk ...
4
votes
1answer
307 views
Best way to make a periodic WS call to feed an Enumerator with Play2/Scala?
I use the Enumerator pattern to retrieve some tweets every second with WS.url
Enumerator.fromCallback[String](() =>
...
4
votes
2answers
610 views
Play Framework 2.0 BodyParser - push parsing XML streams
I feel rather out of my depth asking this question, since despite reading the official docs and the resources linked in these questions:
How to understand `Iteratee` in play2?
Can't understand ...
2
votes
1answer
105 views
Finalization in Pipes-2.1.0 package
I am using the Pipes-2.1.0 package and the zeromq3-haskell package to construct a little message pipeline. Everything seems to be going well except that I am having trouble understanding finalization ...
4
votes
2answers
454 views
Why makes calling error or done in a BodyParser's Iteratee the request hang in Play Framework 2.0?
I am trying to understand the reactive I/O concepts of Play 2.0 framework. In order to get a better understanding from the start I decided to skip the framework's helpers to construct iteratees of ...
1
vote
2answers
131 views
Understanding iteratee-functions in Haskell
I'm trying to figure out what's iteratee I/O in Haskell. I checked the following Haskell-Wiki with some definitions.
I don't understand the meaning of the second, third and the last two lines of that ...
2
votes
2answers
276 views
Scala/Play: Write Enumeratee that prepends a value to the stream
I want to write an enumeratee that just pushes one Input.El into the iteratee and then returns the remaining iteratee. I call it prepend, because it changes the stream by just prepending a value to ...
0
votes
1answer
201 views
Scala: Getting original iteratee after applying enumeratee (example from play documentation doesn't compile)
I want to apply an enumeratee to an iteratee and afterwards get the original iteratee back, so I can apply further stuff. There is an example in the play documentation which uses an Iteratee[Int,Int] ...
4
votes
3answers
653 views
Scala: Read some data of an Enumerator[T] and return the remaining Enumerator[T]
I am using the asynchronous I/O library of the playframework which uses Iteratees and Enumerators. I now have an Iterator[T] as data sink (for simplification say it's an Iterator[Byte] which stores ...
2
votes
2answers
333 views
play2 making an Enumeratee to transform one Promise in another Promise
I am trying to get the grips of using Iteratees in Play 2 to stream comet results. I have got the handle go creating an enumerator from a callback and an enumeratee from a map.
My issue is with the ...
4
votes
2answers
425 views
How to write an enumeratee to chunk an enumerator along different boundaries
So the Play2.0 Enumeratee page shows an example of using a the &> or through method to change an Enumerator[String] into an Enumerator[Int]:
val toInt: Enumeratee[String,Int] = ...
20
votes
1answer
3k views
Can't understand Iteratee, Enumerator, Enumeratee in Play 2.0 [closed]
I have just started to learn the Play 2.0 Framework. The one thing I just can't understand is the Iteratee, Enumerator and Enumeratee pattern described in the play tutorial. I have very little ...
5
votes
2answers
1k views
How to understand `Iteratee` in play2?
There's a package play.api.libs.iteratee in play2, which has a big object Iteratee which has more than 1000 lines.
Why play2 need such a big object and how to understand it?
13
votes
2answers
779 views
Do guarded pipes behave the same as pipes using await?
Pipes are a really elegant, really simple version of iteratees. You can write pipe code very easily using the primitives await and yield. Paolo Capriotti extended the concept of pipes with guarded ...
5
votes
1answer
239 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
...
4
votes
2answers
142 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
189 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 ...
7
votes
4answers
360 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 ...
19
votes
2answers
331 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
1answer
631 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
242 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 :: ...
10
votes
1answer
283 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 ...
4
votes
1answer
225 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, ...
18
votes
1answer
747 views
Haskell iteratee: simple worked example of stripping trailing whitespace
I'm trying to understand how to use the iteratee library with Haskell. All of the articles I've seen so far seem to focus on building an intuition for how iteratees could be built, which is helpful, ...
10
votes
1answer
858 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 ...