Tagged Questions
3
votes
1answer
42 views
why type of Text.Parsec.Token.natural is not the same between Hoogle and what's showed with :t?
I searched for Text.Parsec.Token.natural on Hoogle and found the type of Text.Parsec.Token.natural is natural :: ParsecT s u m Integer.
But that is contradictory to what I got with :t in GHCi.
GHCi ...
7
votes
1answer
86 views
Parsec and custom parsing error type
Is it possible somehow to get parse error of some custom type? It would be cool to get more information about parsing context from error for example. And it seems not very convenient to have error ...
6
votes
2answers
151 views
Using Haskell Parsec to parse a regular expression in one pass
Initial explanation
I am trying to do some testing with a custom regular expression engine but I got tired of writing the NFAs out by hand so I tried to make a parser with little success. Usually ...
1
vote
2answers
61 views
I don't understand how to use the lexeme function
From Text.Parsec.Token:
lexeme p = do { x <- p; whiteSpace; return x }
It appears that lexeme takes a parser p and delivers a parser that has the same behavior as p, except that it also skips ...
2
votes
1answer
72 views
How to make the Parsec chainl1 function follow operator precedence rules
I'm programming a standard math notation -> DC POSIX-compliant format converter. It takes the input string, parses it into an intermediary data type and then turns it into the output string by showing ...
2
votes
1answer
103 views
Haskell: Parsec trouble breaking out of pattern
For reference, here is my code: http://hpaste.org/86949
I am trying to parse the following expression: if (a[1].b[2].c.d[999].e[1+1].f > 3) { }. The method playing up is varExpr, which parses the ...
3
votes
1answer
82 views
Parsec not consuming all Input?
I'am writing some code to parse commands from the Simple Imperative Language defined in
Theory of Programming Languages (Reynolds, 1998).
I have a lexer module that given a string extracts the tokens ...
10
votes
1answer
126 views
Parsec: Consume all input
One common problem I have with Parsec is that it tends to ignore invalid input if it occurs in the "right" place.
As a concrete example, suppose we have integer :: Parser Int, and I write
expression ...
4
votes
1answer
49 views
Haskell parsec operator try issue
I am compiling on Windows using GHC. Here is my code for reference http://hpaste.org/86539
The problem is that the following expression does not parse:
3+2 < 1+-4 <= -3 << 1. It should ...
2
votes
2answers
83 views
parsec using between to parse parens
If I wanted to parse a string with multiple parenthesized groups into a list of strings holding each group, for example
"((a b c) a b c)"
into
["((a b c) a b c)","( a b c)"]
How would I do that ...
0
votes
2answers
56 views
Haskell parsec prefix operator issue
Here is my code: http://hpaste.org/86423 I compile on Windows using GHC.
The problem in question is that parsing prefixed real numbers and variables give weird results.
x=-3 gives [Assign (Just "=") ...
0
votes
1answer
88 views
parsing parentheses from a string
So I have a logical statement such as "((A o B) a B) o (B a C)" and I want to parse each set of statements within the parenthesis to each part in a list... here is what i have so far but since im new ...
3
votes
1answer
59 views
Parsec unexpected character after function call
Here is my code so far: http://hpaste.org/86353 . I'm building w/ GHC on Windows.
The code above produces the following output on my test file:
parse error at (line 3, column 5):
unexpected " "
...
2
votes
1answer
102 views
Haskell parsec match if (3) as if (3 > 0)
I'm using Parsec and the example version of boolExpr http://hpaste.org/86299 at the moment. I'm compiling on Windows via GHC.
The code above will match a boolean expression like 3 < 4 or a not 3 ...
3
votes
3answers
79 views
Difficulty getting a Parsec parser to skip spaces correctly
I'm new to Parsec (and to parsers in general), and I'm having some trouble with this parser I wrote:
list = char '(' *> many (spaces *> some letter) <* spaces <* char ')'
The idea is to ...
0
votes
0answers
85 views
Haskell Parsec parser for an expression starting with a word or parenthesis, ending with end of word or a parenthesis
I'm trying figure out how to write a Haskell Parsec parser for consuming any of these Ruby expressions:
hello("test", 'test2')
my_variable
hello(world("test"))
(hello + " " + world)
...
14
votes
1answer
372 views
Why does Parsec not use Control.Applicative operators
Using Control.Applicative is very useful with Parsec, but you need to always hide <|> and similar objects as they conflict with Parsec's own:
import Control.Applicative hiding ((<|>), ...
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 ...
7
votes
1answer
242 views
Haskell/Parsec: How do you use the functions in Text.Parsec.Indent?
I'm having trouble working out how to use any of the functions in the Text.Parsec.Indent module provided by the indents package for Haskell, which is a sort of add-on for Parsec.
What do all these ...
4
votes
2answers
160 views
How to read exact N chars with Parsec?
I'm new to Haskell and Parsec.
I wish to parse php-serialize format of string 's:numb:"string";' like
s:12:"123";6789012";
where number is count of chars.
So, function looks like:
newtype ...
2
votes
2answers
116 views
Matching bytestrings in Parsec
I am currently trying to use the Full CSV Parser presented in Real World Haskell. In order to I tried to modify the code to use ByteString instead of String, but there is a string combinator which ...
0
votes
1answer
99 views
Grammar issues in haskell with data definitions
I'm attempting to implement a grammar in haskell using the parsec library but I'm having issues with expected Vs. actual types as defined in the grammar, I know the answer to my question is no doubt ...
0
votes
1answer
54 views
Parsec parser: Custom fail is not evaluated in certain conditions
I'm just starting to learn parsing strings with Parsec, and I'm faced with the following problem which I can't get to wrap my mind around:
The following code contains three parser runs, two of which ...
0
votes
2answers
102 views
Parsec hanging on file input
I'm trying to write a parser for a configuration file and I'm hitting a strange error where the parser just freezes. The code can be seen here. I've ran it in the debugger and it appears to happen ...
8
votes
1answer
210 views
Haskell/Parsec: how do I use Text.Parsec.Token with Text.Parsec.Indent (from the indents package)
The indents package for Haskell's Parsec provides a way to parse indentation-style languages (like Haskell and Python). It redefines the Parser type, so how do you use the token parser functions ...
0
votes
1answer
90 views
Emptylist issues when using parsec
Here is some of the code which is causing some very strange errors depending on what is
parsed after the token emptyList in the target file.
data Express = Seq [Express]
| ID String
...
22
votes
1answer
441 views
Should I use a lexer when using a parser combinator library like Parsec?
When writing a parser in a parser combinator library like Haskell's Parsec, you usually have 2 choices:
Write a lexer to split your String input into tokens, then perform parsing on [Token]
Directly ...
0
votes
1answer
67 views
Using statement parsers recursively in Parsec
I have an ifelse parser than should be able to parse embedded ifelse statements in a
java-like language, but it is not recognizing the inner ifelse. Also, if someone could show me a better way to ...
0
votes
1answer
83 views
Haskell Parsec accounting for multiple expression occrrences in grammar
I have been trying to create a parser using details from the following tutorial
much of the code is copied directly from the tutorial with only a few names changed.
import qualified ...
0
votes
1answer
56 views
Haskell Parsec strange issue with multiple expression occurrences
here is the code which to my mind shouldn't cause any issue but for some reason does?
program = expr8
<|> seqOfStmt
seqOfStmt =
do list <- (sepBy1 expr8 ...
4
votes
1answer
98 views
Haskell Parsec, adapting oneOf to [String]
I'm going through the Write yourself a scheme in 48 hours tutorial.
symbol :: Parser Char
symbol = oneOf "!#$%&|*+-/:<=>?@^_~"
This is great for symbols, but what if I have a list of ...
2
votes
2answers
195 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 ...
4
votes
1answer
193 views
Parsec or happy (with alex) or uu-parsinglib
I am going to write a parser of verilog (or vhdl) language and will do a lot of manipulations (sort of transformations) of the parsed data. I intend to parse really big files (full Verilog designs, as ...
2
votes
1answer
97 views
Unit tests of Parsec?
Where can I find tests for the implementation of Parsec?
There aren't any on Parsec's darcs repository.
Note: I'm not asking how to write tests for a Parsec parser, I'm looking for the tests of the ...
2
votes
4answers
149 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
140 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 ...
5
votes
1answer
120 views
Using Parsec to write a Read instance
Using Parsec, I'm able to write a function of type String -> Maybe MyType with relative ease. I would now like to create a Read instance for my type based on that; however, I don't understand how ...
0
votes
1answer
108 views
Haskell parser combinator for Haskell identifier
I'm writing an anti-quoter in Haskell and I need a Parsec combinator that parses a valid Haskell variable identifier.
Is there one already implemented in the quasiquoting libraries or do I need to ...
0
votes
3answers
142 views
How to form an OR choice in Parsec that may match many options, but must match at least one option?
I'm trying to write a parser in Haskell using the Parsec package. One part of the rules for the input requires the parser to match an option of rules. Out of the rules more than one rule may be match, ...
1
vote
1answer
122 views
Parsec does not recognize block comments
I have a problem with Parsec recognizing comments when parsing mustache templates.
The various mustache tags all start with {{ include the block comment ({{!comment}}).
I have set commentStart and ...
0
votes
2answers
138 views
Cannot figure out negative lookahead with Parsec
I'm a beginner with Haskell, so it might be very obvious what I'm doing wrong...
While trying to parse "1:1,2, 2:18, 3:100" into [(1,1), (1,2), (2,18), (3,100)] I got stuck on a lookahead.
To know ...
2
votes
1answer
97 views
Parsec and user defined state
I'm trying to implement js parser in haskell. But I'm stuck with automatic semicolon insertion. I have created test project to play around with problem, but I can not figure out how to solve the ...
1
vote
1answer
138 views
Applicative style parser for constructor with two arguments
I want to write a parser for a comma separated pair of values in angle brackets. I got it to work with the following approach:
pair p1 p2 = do
x1 <- p1
comma
x2 <- p2
return ...
0
votes
2answers
96 views
How to simplify a Parsec rule which modifies user state
In learning Parsec, I've found that somewhat verbose rules like
type PhonemeClassMap = Map Char String
type ContextElement = Parser String
phonemeContext :: Parsec String PhonemeClassMap ...
5
votes
1answer
157 views
<|> doesn’t work with Parsec
I’m trying to parse C++ code. Therefor, I need a context-sensitive lexer. In C++, >> is either one or two tokens (>> or > >), depending on the context. To make it even more complex, ...
0
votes
1answer
56 views
Is there an instance Stream Handle IO Char for Text.Parsec.Stream?
I'm parsing a fairly large file, and I'd like to periodically update a progress bar to indicate how much of it I've parsed thus far.
The most direct way I can think to do this is use ParsecT as a ...
15
votes
2answers
773 views
Memory failure when transposing [(K,[V])] to [(V,[K])]
I've got a 279MB file that contains ~10 million key/value pairs, with ~500,000 unique keys. It's grouped by key (each key only needs to be written once), so all the values for a given key are ...
5
votes
1answer
119 views
Why does only the first defined infix operator parse when using Parsec's buildExpressionParser?
I'm trying to write a parser for the propositional calculus using Parsec. The parser uses the buildExpressionParser function from Text.Parsec.Expr. Here's the code where I define the logical ...
5
votes
2answers
175 views
Is this idiomatic use of Text.Parsec?
My use of Text.Parsec is a little rusty. If I just want to return the matched string is this idiomatic?
category :: Stream s m Char => ParsecT s u m [Char]
category = ...
0
votes
1answer
82 views
Using ParSec integer function to give a Int?
I need to get an Int type from the integer function with Parsec. My code at the moment is
aTerm = parens aExpression
<|> liftM GetV identifier
<|> liftM N integer
Where the ...

