Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
1answer
592 views

Scala Parsers: Availability, Differences and Combining?

My question is about the Scala Parsers: Which ones are available (in the Standard library and outside), what's the difference between them, do they share a common API and can different Parsers be ...
15
votes
2answers
2k views

How do Scala parser combinators compare to Haskell's Parsec?

I have read that Haskell parser combinators (in Parsec) can parse context sensitive grammars. Is this also true for Scala parser combinators? If so, is this what the "into" (aka ">>") function is ...
13
votes
3answers
585 views

Scala parser combinators vs ANTLR/Java generated parser?

I am writing an expression parser for an app written mostly in Scala. I have built AST objects in Scala, and now need to write the parser. I have heard of Scala's built-in parser combinators, and also ...
12
votes
2answers
2k views

Use Scala parser combinator to parse CSV files

I'm trying to write a CSV parser using Scala parser combinators. The grammar is based on RFC4180. I came up with the following code. It almost works, but I cannot get it to correctly separate ...
10
votes
1answer
2k views

EBNF to Scala parser combinator

I have the following EBNF that I want to parse: PostfixExp -> PrimaryExp ( "[" Exp "]" | . id "(" ExpList ")" | . length )* ...
9
votes
1answer
326 views

Scala: How to combine parser combinators from different objects

Given a family of objects that implement parser combinators, how do I combine the parsers? Since Parsers.Parser is an inner class, and in Scala inner classes are bound to the outer object, the story ...
8
votes
2answers
561 views

What lexer to build a lexer/parser in Scala

I'm currently looking for a lexer/parser that generate Scala code from a BNF grammar (a ocamlyacc file with precedence and associativity) and I'm quite confused to find.. almost nothing: For parsing, ...
7
votes
2answers
205 views

Turning a list/sequence of combinator parsers into a single one

I have a list of values from which I can construct a list of parsers, that depend on these values by mapping (see example). Then what I want to do is turn the list of parsers into a single parser by ...
7
votes
2answers
987 views

How can I create a parser combinator in which line endings are significant?

I am creating a DSL, and using Scala's parser combinator library to parse the DSL. The DSL follows a simple, Ruby-like syntax. A source file can contain a series of blocks that look like this: ...
7
votes
6answers
1k views

Is Scalas/Haskells parser combinators sufficient?

I'm wondering if Scalas/Haskells parser combinators are sufficient for parsing a programming language. More specifically the language MiniJava. I'm currently reading compiller construction and jflex ...
6
votes
3answers
312 views

Understanding the tilde in Scala's parser combinators

I'm fairly new to Scala and while reading about parser combinators(The Magic Behind Parser Combinators, Domain-Specific Languages in Scala) I came across method definitions like this: def classPrefix ...
6
votes
1answer
152 views

How to change code using Scala Parser Combinators to take operator precedence into account?

Consider this part of the grammar: def expression = SimpleExpression ~ opt(relation ~ SimpleExpression) def relation = "=" | "#" | "<=" | "<" | ">=" | ">" | "IN" | "IS" def ...
6
votes
4answers
958 views

Accessing Scala Parser regular expression match data

I wondering if it's possible to get the MatchData generated from the matching regular expression in the grammar below. object DateParser extends JavaTokenParsers { .... val dateLiteral = ...
5
votes
2answers
158 views

Are there any known parser combinator library's in F# that can parse binary (not text) files?

I am familiar with some of the basics of fparsec but it seems to be geared towards text files or streams. Are there any other F# library's that can efficiently parse binary files? Or can fparsec be ...
5
votes
2answers
295 views

Advanced control of recursive parser in scala

val uninterestingthings = ".".r val parser = "(?ui)(regexvalue)".r | (uninterestingthings~>parser) This recursive parser will try to parse "(?ui)(regexvalue)".r until the end of input. Is in ...
4
votes
2answers
232 views

Scala, Parser Combinator for Tree Structured Data

How can parsers be used to parse records that spans multiple lines? I need to parse tree data (and eventually transform it to a tree data structure). I'm getting a difficult-to-trace parse error in ...
4
votes
1answer
99 views

How is scala.util.parsing.ast.Binders supposed to be used?

I am currently implementing a small compiler in Scala and while I was doing the component for context analysis I discovered the trait Binders in package scala.util.parsing.ast (I am using Scala 2.9 ...
4
votes
4answers
2k views

Can parser combinators be made efficient?

Around 6 years ago, I benchmarked my own parser combinators in OCaml and found that they were ~5× slower than the parser generators on offer at the time. I recently revisited this subject and ...
4
votes
2answers
192 views

Expected type of Parser in method “|”

I have the following code being compiled against scala 2.8.0: import scala.util.parsing.combinator.{syntactical,PackratParsers} import syntactical.StandardTokenParsers object MyParser extends ...
4
votes
1answer
250 views

How to parse placeholders from text without throwing away your sword so you can fight off the marauders with a lampshade

I needed to parse placeholders out of text like abc $$FOO$$ cba. I hacked to together something with Scala's parser combinators, but I'm not really happy with the solution. In particular, I resorted ...
4
votes
2answers
878 views

Scala Parser Combinators tricks for recursive bnf?

Im trying to match this syntax: pgm ::= exprs exprs ::= expr [; exprs] expr ::= ID | expr . [0-9]+ My scala packrat parser combinator looks like this: import ...
4
votes
2answers
639 views

what is wrong: “value Parsers is not a member of package scala.util.parsing.combinator”?

I've got the above odd error message that I don't understand "value Parsers is not a member of package scala.util.parsing.combinator". I'm trying to learn Parser combinators by writing a C parser ...
3
votes
1answer
93 views

Recursive parsing based on level numbers

I have a tricky question (at least in my perspective), regarding Scalas parser combinators and recursive parsing. I currently building a small parser which should be able to parse PL/1 structures like ...
3
votes
2answers
287 views

Scala combinator parser, what does >> mean?

I am little bit confusing about ">>" in scala. Daniel said in Scala parser combinators parsing xml? that it could be used to parameterize the parser base on result from previous parser. Could someone ...
3
votes
1answer
128 views

Unit Test a Scala Lexer

I'm working on an interpreter written using Scala parser combinators. My interpreter separates lexing and parsing into two phases. I'd like to write unit tests for my lexer to ensure it produces ...
3
votes
2answers
239 views

Scala parser combinators, parsers fails due to precedence

I am trying to write an interpreter for the programming language Icon. One of the steps in this process is writing a parser for Icon, which I've done in the following way: import java.io.FileReader ...
3
votes
2answers
129 views

Is there a parser combinator as awesome as the Scala one for Java?

I read the tutorial on parser combinators for Scala, and I was wondering if there's something as "magical" for Java. The best thing I could find was JParsec.
3
votes
2answers
98 views

Question about Modifier in Java grammar

The Java grammar defines ModifiersOpt: { Modifier }. Modifier is defined as one of public, protected, private, static etc .... {x} denotes zero or more occurrences of x. We know that public public is ...
3
votes
4answers
453 views

How to write parser for unified diff syntax

Should I use RegexParsers, StandardTokenParsers or are these suitable at all for parsing this kind of syntax? Example of the syntax can be found from here.
3
votes
2answers
568 views

How to further improve error messages in Scala parser-combinator based parsers?

I've coded a parser based on Scala parser combinators: class SxmlParser extends RegexParsers with ImplicitConversions with PackratParsers { [...] lazy val document: ...
3
votes
1answer
360 views

Lexing newlines in scala StdLexical?

I'm trying to lex (then parse) a C like language. In C there are preprocessor directives where line breaks are significant, then the actual code where they are just whitespace. One way of doing this ...
3
votes
2answers
282 views

Parser combinator not terminating - how to log what is going on?

I am experimenting with parser combinators and I often run into what seems like infinite recursions. Here is the first one I ran into: import util.parsing.combinator.Parsers import ...
2
votes
2answers
100 views

How to I get rid of “unchecked due to erasure” warning when pattern matching

Scala 2.8.1 I have implemented a very simple external DSL using parser/combinators for QA to write acceptance tests. Recently I added the ability to loop over a set of expressions like so sealed ...
2
votes
2answers
101 views

Choosing a parsing technology for a large project

I have to deal with lots of different file formats. At least 50, maybe more than 100. I've played around with Antlr in the past. However, I'm not sure that Antlr would be suitable for this project ...
2
votes
3answers
214 views

Scala Parser - Message Length

I'm toying with Scala's Parser library. I am trying to write a parser for a format where a length is specified followed by a message of that length. For example: x.parseAll(x.message, ...
2
votes
1answer
230 views

Ignoring C-style comments in a Scala combinator parser

What is the most simple way to make my parser respect (ignore) C-style comments. I'm interested in both comment types, though a solution for only one type is also welcome. I'm currently simply ...
2
votes
3answers
283 views

How to pattern match on Scala's parser combinator result

We have a multithreaded RPC server that parses input strings. We've run into an issue where Scala's parser combinator library is not multithreaded safe: the var lastNoSuccess in Parsers.scala is used ...
2
votes
3answers
207 views

Scala parser combinators, failure on end of line

I am trying to build an interpreter for the Icon programming language, in Scala. Right now I am working on setting up a parser for it. The code I have written so far is: package interpreter import ...
2
votes
1answer
414 views

Arithmetic Expression Grammar and Parser

Recently I was looking for a decent grammar for arithmetic expressions but found only trivial ones, ignoring pow(..., ...) for example. Then I tried it on my own, but sometimes it didn“t worked as one ...
2
votes
1answer
205 views

Is this a reasonable foundation for a parser combinator library?

I've been working with FParsec lately and I found that the lack of generic parsers is a major stopping point for me. My goal for this little library is simplicity as well as support for generic input. ...
2
votes
1answer
252 views

Parsing a blank / whitespace with RegexParsers

What is the problem with parsing the blank/whitespace? scala> object BlankParser extends RegexParsers { def blank: Parser[Any] = " " def foo: Parser[Any] = "foo" } defined ...
2
votes
2answers
466 views

Filtering tokens from Scala Parser Combinators

How do I filter the sequence of tokens coming from my Lexer to my Parser when using Scala parser combinators? Let me explain - suppose I have the fairly standard pattern of a Lexer (extending ...
2
votes
1answer
173 views

Parser combinators info

I am using parsing combinators in scala If I have recursive parser: val uninterestingthings = ".".r val parser = "(?ui)(regexvalue)".r | (uninterestingthings~>parser) How can I check how many ...
2
votes
1answer
962 views

Scala Parser Token Delimiter Problem

I'm trying to define a grammar for the commands below. object ParserWorkshop { def main(args: Array[String]) = { ChoiceParser("todo link todo to database") ChoiceParser("todo link ...
1
vote
1answer
45 views

scala combinator parser to keep original input

I would like to compose a parser from another parser to have the consumed input as an argument to the ast construction. Say I have def ingredient = amount ~ nameOfIngredient ^^ { case amount ~ ...
1
vote
2answers
81 views

Scala. Difficult expression parser. OutOfMemoryError

I would like to create a parser for difficult expression with order of operations. I have some example but it works very slowly and throw exception OutOfMemoryError. How can I improve it? def expr: ...
1
vote
1answer
51 views

Custom Errors for RegexParsers

May someone help me understand the following behavior: parseAll (parseIf, "If bla blablaa") should result in is expected. Instead I always get string matching regex 'is\b' expected but 'b' found. I ...
1
vote
4answers
114 views

How to write a Parser that validates its input against a predicate and otherwise fails

I want to write a Parser that produces some data structure and validates its consistency by running a predicate on it. In case the predicate returns false the parser should return a custom Error ...
1
vote
2answers
58 views

FParsec default error messages

Let's say I am defining the following parser: let identifier = many1Satisfy isLetter //match an identifier let parser = identifier //our parser is only to match identifiers test parser " abc" //the ...
1
vote
1answer
96 views

Scala parser combinators and Reader infinite loop

I am a little confused by the Scala parser combinators. I'm using a custom implementation of Reader to directly read a list of tokens: private class Token_Reader(tokens: List[Token], val pos: ...

1 2