conduit is a Haskell library for composable processing of streaming data.
1
vote
1answer
55 views
Haskell: Network conduit “callback” questions
I'm using network-conduit and runTCPServer to power my stranded server.
In this case:
-- | Helper which represents a conduit chain for each client connection
serverApp :: Application SessionIO
...
1
vote
1answer
79 views
IO Operations in Conduit?
This is probably a pretty obscure case, but please bear with me.
I'm writing a web crawler that needs to download webpages and save them to local disk. Meanwhile, being a crawler, it needs to find ...
11
votes
1answer
171 views
What's the “easier way” that deprecates the need for Data.Conduit.Util's zip?
Getting started with conduit, and I noticed that in Data.Conduit.Util:
Utility functions from older versions of conduit. These should be considered deprecated, as there are now easier ways to ...
3
votes
2answers
126 views
Fusing conduits with multiple inputs
I am trying to create a conduit that can consume multiple input streams. I need to be able to await on one or the other of the input streams in no particular order (e.g., not alternating) making zip ...
8
votes
2answers
285 views
What's the benefit of conduit's leftovers?
I'm trying to understand the differences between conduit and pipes. Unlike pipes, conduit has the concept of leftovers. What are leftovers useful for? I'd like to see some examples where leftovers are ...
10
votes
2answers
198 views
What's the real benefit of conduit's upstream type parameter?
I'm trying to understand the differences between different implementations of the concept of pipes. One of the differences between conduit and pipes is how they fuse pipes together. Conduit has
...
7
votes
2answers
209 views
Haskell http-conduit web-scraping daemon crashes with out of memory error
I've written a daemon in Haskell that scrapes information from a webpage every 5 minutes.
The daemon originally ran fine for about 50 minutes, but then it unexpectedly died with out of memory ...
2
votes
1answer
64 views
splitting up a conduit chain
I have this conduit expression which works:
main1 = runResourceT
$ CB.sourceHandle stdin
$$ CB.lines
=$ Cl.concatMap matches
=$ Cl.mapMaybe readDouble
=$ Cl.map fst
...
2
votes
2answers
106 views
How to properly close network connections with network-conduit?
To learn the basics of conduit library, I used network-conduit to make a simple echo server:
import Control.Monad.IO.Class
import qualified Data.ByteString.Char8 as BS
import Data.Conduit
import ...
2
votes
2answers
167 views
how to merge mutiple pipes into one or vice versa
Is it possible to merge multiple pipes into one or vice versa?
I'm struggling with implementing the following functions.
merge :: (Monad m) => [Pipe l i o u m r] -> Pipe [l] [i] [o] m [r]
...
3
votes
2answers
190 views
Conduit, replacement for lists?
I was thinking about lists in Haskell, and I thought in other languages, one doesn't use lists for everything. Sure, you might want to store a list if you need the values later on, but if it's just a ...
1
vote
1answer
82 views
conduit and network-conduit: Combine MonadResource and IO
I am experimenting with the conduit package. Having also found the network-conduit package, I tried to make a simple TCP client which sends the contents of a file to a socket:
import Data.Conduit
...
1
vote
1answer
77 views
How to “vertically stack” Control.Frames?
In the pipes package, the tutorial Control.Pipes.Tutorial [1] shows how to "vertically stack" pipe components using the monad >> operator.
How would I go about doing that with Control.Frame?
...
0
votes
1answer
56 views
using console.log with conduit
I'm trying to debug a script written in javascript that runs on a conduit toolbar. for now i'm using simply
window.alert("function x is working");
but this is very disturbing in case of many alerts ...
4
votes
0answers
222 views
Using persistent from within a Conduit
First up, a simplified version of the task I want to accomplish: I have several large files (amounting to 30GB) that I want to prune for duplicate entries. To this end, I establish a database of ...
3
votes
1answer
220 views
Aeson deriveJSON combined with conduit sinkParser
Continuing my exploration of conduit and aeson, how would I go about using my own data type in stead of Value in this (slightly modified) code snippet from the Yesod book.
{-# LANGUAGE ...
1
vote
1answer
102 views
Case of the mysteriously closed handle
First I will give you the code, then the error, then some type information. The questions are these: How can I figure out what is going on? How might I fix the problem?
readTask = do
req' <- ...
1
vote
1answer
52 views
What to do with “release” from unwrapResumable?
I wrote a simple Wai-to-uwsgi proxy, but in doing so, I had to use unwrapResumable. That gives an unwrapped Pipe and a "release" function that needs to be called eventually. The release function's ...
2
votes
1answer
121 views
Attoparsec: Skipping bracketed terms?
I'm trying to make large TSV files with JSON in the 5th column suitable for import to mongoDB.
In particular I want to change top level and only top level key fields to _id. This is what I have so ...
5
votes
1answer
213 views
Sequential Binary Data Decoding Using Conduits
The goal is to have a conduit with the following type signature
protobufConduit :: MonadResource m => (ByteString -> a) -> Conduit ByteString m a
The conduit should repeatedly parse ...
0
votes
1answer
106 views
Converting Haskell's WAI Request to Network.HTTP.Conduit Request
I'm writing a server and I need to forward along a certain Request message. This message is basically either a POST (or GET) message, possibly containing a file of a few megabytes. This message is ...
2
votes
1answer
104 views
WAI/Warp ResponseSource clean up
Can't figure out how to do a clean up when a HTTP client drops connection (or other real world happens). I've tried to wrap my Source into a addCleanup, but it isn't getting called.
Here's my minimal ...
1
vote
2answers
202 views
Lift a function to a Conduit Sink
I am apparently too stupid to properly understand and use Conduit.
I have a function f :: ByteString -> String, and need a Sink ByteString (ResourceT IO).
How do I get this?
Unfortunately, the ...
3
votes
1answer
123 views
Nested ResourceT scopes within a conduit Sink
Is there a way to scope runResourceT to the lifetime of a single Sink?
I'm trying to build a Sink that wraps a potentially infinite number of Sinks. This works fine with threads but I'm trying to do ...
2
votes
0answers
157 views
connecting an http-conduit source to the xml-conduit sink
I tried to follow along this connecting-http-conduit-to-xml-conduit stackoverflow question, as it looks exactly like what I want to do.
I'm building off of the example from the http-conduit section ...
20
votes
2answers
587 views
What is the preferred way to combine two sinks?
I've used zipSinks :: Monad m => Sink i m r -> Sink i m r' -> Sink i m (r, r') for this but it is considered deprecated.
4
votes
2answers
146 views
Nondeterministically interleaving conduit's Sources
I was hoping to see a nondeterministic interleaving operation for sources, with a type signature like
interleave :: WhateverIOMonadClassItWouldWant m => [(k, Source m a)] -> Source m (k, a)
...
4
votes
4answers
469 views
How do I implement `cat` in Haskell?
I am trying to write a simple cat program in Haskell. I would like to take multiple filenames as arguments, and write each file sequentially to STDOUT, but my program only prints one file and exits.
...
3
votes
1answer
92 views
Infinite loop in source with conduit
I decided to try and get a handle on conduit, and I thought I was doing well, but when I try to make this simple source with conduit 4, I get an infinite loop and I don't understand why. This is ...
1
vote
1answer
295 views
Compiling code from conduit tutorial
I’m trying to understand code from http://www.yesodweb.com/book/conduits. After some fixes (like replacing Resource with MonadResource) it still won’t compile:
sumSink :: MonadResource m => Sink ...
2
votes
3answers
279 views
How to number lines read from a file using conduits?
I'm a Haskell beginner trying to wrap my head around the conduit library.
I've tried something like this, but it does not compile:
import Data.Conduit
import Data.Conduit.Binary as CB
import ...
5
votes
1answer
160 views
calling network IO from within haskeline
I have an existing program which takes command line arguments (username, password, date) and then uses the Network.HTTP.Conduit library to post an xml message to a server. I then parse the results, do ...
2
votes
1answer
310 views
Fragile and verbose code using xml-conduit
I built a GPX parser using XML-conduit and have had issues with overly verbose and fragile code for identifying elements and skipping unwanted tags.
Identifying elements (a minor annoyance)
I am ...
6
votes
1answer
175 views
How to use the conduit drop function in a pipeline?
I have a simple task - read a bunch of lines out of a file and do something with each one of them. Except the first one - which are some headings to be ignored.
So I thought I'd try out conduits.
...
3
votes
1answer
163 views
Unexpected conduit behaviour with wai
I'm trying to write a really trivial "echo" webapp using wai; all I want it to do is reply with the data that is POSTed to it (I really don't care about the method, but I'm using curl and curl is ...
0
votes
2answers
280 views
lifting trouble with ResourceT
I'm adapting this example, in particular, the client. I'll tel you what I think the trouble is, following the code and the error it generates.
> {-# LANGUAGE OverloadedStrings #-}
> import ...
20
votes
2answers
1k views
What are the pros and cons of Enumerators vs. Conduits vs. Pipes?
I'd like to hear from someone with a deeper understanding than myself what the fundamental differences are between Enumerators, Conduits, and Pipes as well as the key benefits and drawbacks. Some ...
1
vote
1answer
160 views
Warp web service with a long lived resource (a file handle)
I'm trying to understand how to write a web service using warp that has a long lived resource that I want access to from all my requests (i.e. I want the resource to exist for the life time of server, ...
2
votes
1answer
355 views
connecting http-conduit to xml-conduit
I'm struggling converting a Response from http-conduit to an XML document via xml-conduit.
The doPost function takes an XML Document and posts it to the server. The server responds with an XML ...
1
vote
0answers
245 views
how to add a new source inside a conduit haskell
I have next problem I've got next conduit-network code
mySource :: ResourceT m => Integer -> Source m Int
mySource i = {- function -} undefined
myApp :: Application
myApp src snk =
src $= ...
3
votes
1answer
204 views
Migrating from Network.HTTP.Enumerator to Network.HTTP.Conduit
I don't know why my code breaks. At first I thought it was because parseURL gives [] for the requestHeaders. Okay, so maybe I just need to tell it what the resquestHeaders should be. Well, I examined ...
6
votes
1answer
390 views
How can I turn a Sink into a Conduit?
I'm trying to write a Conduit using an attoparsec parser. Specifically, given parseOne :: Parser T, I'd like to construct a Conduit ByteString m T that repeatedly applies the parser to the input and ...
1
vote
3answers
419 views
How to consume a conduit with WAI (raw request body)
I'm using scotty, which is a sinatra-like wrapper around WAI. I want to get the raw request body as a byte string so I can parse it as json. The following is close. This is similar to other questions ...