The attoparsec tag has no wiki summary.
1
vote
1answer
72 views
Attoparsec /= version of stringCI
I'm parsing robots.txt files and I've written the parser to successfully parse a "well-formed" robots.txt file. I've been able to adjust the parser to skip lines that start with a symbol (like # or / ...
2
votes
1answer
128 views
Incremental Parsing from Handle in Haskell
I'm trying to interface Haskell with a command line program that has a read-eval-print loop. I'd like to put some text into an input handle, and then read from an output handle until I find a prompt ...
4
votes
1answer
93 views
“Sub-parsers” in pipes-attoparsec
I'm trying to parse binary data using pipes-attoparsec in Haskell. The reason pipes (proxies) are involved is to interleave reading with parsing to avoid high memory use for large files. Many binary ...
4
votes
2answers
108 views
attoparsec incorrect parsing of doubles
I am using attoparsec's built-in parsers 'double' and 'number' to parse floating point values and I get different results from different parsers.
>parse number "8.918605790440055e-2"
Done "" ...
0
votes
0answers
41 views
Why does attoparsec use 100 times more memory than my input file?
I have a 2.5 MB file full of floats separated by spaces (the code below can generate it for you) and want to parse it into an array with attoparsec.
It is surprisingly slow, taking almost a second, ...
2
votes
2answers
194 views
Haskell: Traverse through a String/Text File
I am trying to read a script file then process and output it to a html file. In my script file, whenever there is a @title(this is a title), I will add tag [header] this is a title [/header] in my ...
1
vote
1answer
107 views
Parse fixed length text with attoparsec
I need to parse fixed length fields with attoparsec but im now struggling with the compiler.
Im still a newbie, the code below is the closest solution I have:
> {-# LANGUAGE OverloadedStrings #-}
...
2
votes
4answers
148 views
Parse recursive data with parsec
import Data.Attoparsec.Text.Lazy
import Data.Text.Lazy.Internal (Text)
import Data.Text.Lazy (pack)
data List a = Nil | Cons a (List a)
list :: Text
list = pack $ unlines
[ "0"
, "1"
, "2"
, ...
1
vote
1answer
139 views
Parsing Haskell custom data types
I have worked my way through the Haskell Koans provided here:
https://github.com/roman/HaskellKoans
I am stuck on the last two Koans, both involving parsing custom algebraic data types. Here is the ...
8
votes
1answer
143 views
Why do I see Partial results with attoparsec when I expect to see Failure?
I'm a little confused by this behaviour of attoparsec.
$ ghci
> :m Data.Attoparsec.Text
> :m + Data.Text
> parse (string (pack "module")) (pack "mox")
Partial _
> parse (string (pack ...
5
votes
2answers
223 views
Why do library designers use ByteString where Text seems to be appropriate?
Working on my app I've stumbled into a problem of Aeson not decoding UTF8 input. Digging deeper I found out that it relies on Parser ByteString of Attoparsec, which seems to be the source of the ...
0
votes
2answers
87 views
Trying to simplify the checking of an IO Bool in an Attoparsec parser
I'm trying to simplify the below code that's part of an attoparsec parser for a network packet, and I'm at a loss for a nice way to do it.
It starts with a call to atEnd :: IO Bool to determine if ...
3
votes
2answers
205 views
How do I make Attoparsec parser succeed without consuming(like parsec lookAhead)
I wrote a quick attoparsec parser to walk an aspx file and drop all the style attributes, and it's working fine except for one piece of it where I can't figure out how to make it succeed on matching ...
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 ...
0
votes
0answers
202 views
Parsing Karva notation in haskell
Karva notation is used in Gene Expression Programming to represent mathematical expressions.
See here http://www.gene-expression-programming.com/Tutorial002.asp
You create an expression tree by ...
1
vote
1answer
262 views
How to properly add IO to attoparsec Parser?
I want to do some tracing/debugging in my attoparsec parser. Here's minimal [not] working example:
import Data.Text as T
import Data.Attoparsec.Text
import Data.Attoparsec.Combinator
import ...
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
...
1
vote
1answer
250 views
How to do proper case folding with Parsec
Is there a way to do proper case folding with Parsec (say I want a parser that behaves like stringCI from Data.Attoparsec.Text).
The code that does case insensitive parsing in Text.Parsec.Token just ...
1
vote
2answers
117 views
Equivalent of attoparsecs `inClass` in Parsec
I am translating some code from attoparsec to Parsec, because the parser needs to produce better error messages. The attoparsec code uses inClass (and notInClass) extensively. Is there a similar ...
0
votes
1answer
291 views
Conditional parsing and casting in Attoparsec
I'm parsing a length-encoded binary stream and I'm trying to get this code compiling. The combinatorrent code ( https://github.com/jlouis/combinatorrent/blob/master/src/Protocol/Wire.hs ) was very ...
2
votes
2answers
292 views
Performance analysis of a fold using map and ByteString keys
I have a little script to read in, parse and derive some kind of interesting (not really) statistics from an apache log file. So far I've made two simple options, the total number of bytes sent in all ...
3
votes
1answer
419 views
Making attoparsec parsers recursive
I've been coding up an attoparsec parser and have been hitting a pattern where I want to turn parsers into recursive parsers (recursively combining them with the monad bind >>= operator).
So I ...
10
votes
1answer
855 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 ...
1
vote
2answers
439 views
Parsing JPEG markers with attoparsec
As a project to further my knowledge and comfort with Haskell I am working towards implementing a JPEG decoder which will come in handy for future computer vision work.
The first step I have chosen ...
17
votes
1answer
764 views
Attoparsec allocates a ton of memory on large 'take' call
So I am writing a packet sniffing app. Basically I wanted it to sniff for tcp sessions, and then parse them to see if they are http, and if they are, and if they have the right content type, etc, ...
3
votes
2answers
423 views
Haskell : how to stop Data.Attoparsec.Char8.sepBy when input String is empty?
i've wrote the following Haskell code
import Data.Attoparsec (Parser)
import qualified Data.Attoparsec.Char8 as A
import qualified Data.ByteString.Char8 as B
someWithSep sep p = A.sepBy p sep
the ...
6
votes
3answers
868 views
Problem with incomplete input when using Attoparsec
I am converting some functioning Haskell code that uses Parsec to instead use Attoparsec in the hope of getting better performance. I have made the changes and everything compiles but my parser does ...
