Tagged Questions

JavaCC - the Java Compiler Compiler - is a popular parser generator for Java.

learn more… | top users | synonyms

14
votes
7answers
6k views

What's better, ANTLR or JavaCC?

Concerns are documentation/learnability, eclipse integration, tooling, community support and performance (in roughly that order).
10
votes
3answers
333 views

Parsing Objective-C code for static analysis

I love static analysis and compile-time checks, almost to a fault, but most of my day job is in Objective-C. To resolve this tension, I'd like to be able to write my own analysis tools that I can run ...
5
votes
2answers
778 views

What's JavaCC's ADVANTAGE versus ANTLR

Too many people have told me about the disadvantages, but what is its advantage if any?
5
votes
7answers
2k views

Tips for speeding up build time on Linux using ANT, Javacc, JUnit and compiling Java classes

We have a large codebase that takes approx 12 minutes on the developer machines to auto-generate some Java 5 classes using JavaCC and then compiles all the classes as well as running the units test. ...
3
votes
2answers
296 views

How to match optional open/close tags in JavaCC?

What JavaCC syntax does implement grammar that can parse these kind of lines: [b]content[/b] content[/b] [b]content Although the JavaCC parser needs to parse all lines, it must distinguish correct ...
3
votes
4answers
1k views

JavaCC: Please give me links to “real” examples

I know that there are many examples of JavaCC parsers here, but they all do nothing. They just accept a string, or produce parsing errors. What I need is a few examples of real parsers, which ...
3
votes
3answers
2k views

Javacc parser option LOOKAHEAD, Java

I've recently started to play around with grammatical analyzers using javacc and one of the fields is the options one...I have a code like the folowing: options { LOOKAHEAD=1; } ...
3
votes
2answers
358 views

JavaCC: I wish to generate java classes from dymanicly generated jj files and to compile them at runtime

I am refactoring a project which uses javaCC to create a proprietary language parser during compile time. Due to the fact that different variations of languages can exist at the same time, it has been ...
3
votes
3answers
2k views

Anybody has some links to javacc tutorials?

It's very difficult to find this kind of document online. I found one in JAVAWORLD, but this one does not cover the jjTree and visiter one. Does anybody happen to have some links to the tutorials?
3
votes
1answer
3k views

Parsing RTF Documents with Java/JavaCC

Is anybody familiar with the the RTF document format and parsing using any Java libaries. The standard way people have done this is by using the RTFEditorKit in the JDK Swing API: Swing RTFEditorKit ...
3
votes
7answers
836 views

Parser, Generator for Java with the following requirements

I am looking for a parser generator for Java that does the following: My language project is pretty simple and only contains a small set of tokens. Output in pure READABLE Java code so that I can ...
2
votes
1answer
574 views

How do I use JavaCC / JJTree to store tokens?

I have written a JJTree (JavaCC) configuration for a type of DSL and it successfully tokenizes a given format of file and will dump the AST when requested. The problem is that each of the nodes in ...
2
votes
1answer
511 views

Parsing latex-like language in Java

I'm trying to write a parser in Java for a simple language similar to Latex, i.e. it contains lots of unstructured text with a couple of \commands[with]{some}{parameters} in between. Escape sequences ...
2
votes
3answers
514 views

Which is the best counterpart to ANTLR to create parsers in ruby?

I've used antlr and javacc/freecc for a while. Now I need to write a bunch of parsers using antlr grammars but such parsers need to be written in ruby lang. I googled but nothing found. Is there any ...
2
votes
1answer
646 views

JavaCC: How can one exclude a string from a token? (A.k.a. understanding token ambiguity.)

I had already many problems with understanding, how ambiguous tokens can be handled elegantly (or somehow at all) in JavaCC. Let's take this example: I want to parse XML processing instruction. The ...
2
votes
1answer
360 views

Java, JavaCC: How to parse characters outside the BMP?

I am referring to the XML 1.1 spec. Look at the definition of NameStartChar: NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | ...
2
votes
1answer
201 views

JavaCC for .NET?

I've been spending some time doing JavaCC parser generation for assignments at University and was wondering if there is a similar simple parser generator framework for .NET available? I know there is ...
2
votes
6answers
356 views

What do people do with Parsers, like antlr javacc?

Out of curiosity, I wonder what can people do with parsers, how they are applied, and what do people usually create with it? I know it's widely used in programming language industry, however I think ...
2
votes
2answers
592 views

Recognizing extended characters using JAVACC

I'm creating a grammar using JavaCC and have run across a small problem. I'm trying to allow for any valid character within the ASCII extended set to be recognized by the resulting compiler. After ...
2
votes
1answer
437 views

NULL token in JavaCC

I have strange problem with token < NULL: "null" > in my JavaCC parser. In expression like String IsNullClause(): { String res = ""; } { <IS> {res += " IS ";} [<NOT> ...
1
vote
1answer
52 views

SimpleNode child in JJTree

I read in a tutorial that when you do something like that : SimpleNode Program() #Program : {} { (Class_decl())* <EOF> { return jjtThis; } } it should create a Programm class which ...
1
vote
1answer
58 views

Find references of an Interface across the workspace programatically

Just wondering which tool / approach can solve the following issue easily / with less effort? The need is to invoke via ANT script. The eclipse workspace has a couple of projects, say projectA - ...
1
vote
1answer
72 views

How to mention try-catch block in JavaCC grammar

I am trying to implement Error Reporting and Recovery in JavaCC grammar as given in http://javacc.java.net/doc/errorrecovery.html After mentioning the code; void Stm() : {} { try { ( ...
1
vote
1answer
77 views

Another way to correctly skip single line comments in javacc? <“//” (~[“\n”])* “\n”> causes multi line comment skip to break

So I am having a problem with javacc and skipping comments. I have a multi line comment skip that can contain multiply comments within itself (A comment is anything that appears within /* and a */), I ...
1
vote
3answers
124 views

What parser do JRuby and Jython use for generating JVM bytecode?

Do you guys know what parser JRuby and Jython use for generating JVM bytecode? Is it ANTLR or JavaCC or are they using some other parser in their implementation?
1
vote
1answer
185 views

How make support cyrillic letters in JavaCC?

Can I make cyrillic tokens for *.jjt file? For exampe tokens are given in jjt: TOKEN : /* LITERALS */ { < TEST: "тест" > | < DEVELOP: "разработка" > } but the tokens in jj file ...
1
vote
4answers
104 views

Trying to understand parsers

I'm trying to use JavaCC to build a simple command line calculator that can handle a variety of expressions. While there are plenty of tutorials out there on how to write grammars, none that I've seen ...
1
vote
2answers
258 views

JavaCC parser from Assembly Language to Machine Code -instruction separation problem

HY.I'm trying to make a parser using JavaCC (an assembler) to transform from assembly code (Microcontroller 8051) to Machine COde.I have read about the javaCC grammar and the way it is structured but ...
1
vote
2answers
251 views

JavaCC: Too many warnings

I am using JavaCC version 5.0. with Eclipse Galileo. But when I set option "static=true" in my jj file, the generated TokenManager file has many warnings like "The static method readChar() from the ...
1
vote
0answers
74 views

javacc, translate from dir/x/s to HTML

I would like to translate from dir/x/s language to html. I have Analyzer.j : PARSER_BEGIN(Analyzer) import java.io.*; public class Analyzer { public static void main(String args[]) throws ...
1
vote
1answer
132 views

parsing a specific number of lines in javacc

I have a file with a specific format that I would like to parse. In this file I have a number on a line which specifies the number of lines to follow it. example excerpt from the file: 3 // number ...
1
vote
1answer
67 views

Defining tokens at runtime

I want to write a parser for EDIFACT messages with JavaCC. My problem is that I cannot define all terminal symbols before parsing a message because at the begining of each message there is a so called ...
1
vote
2answers
540 views

JavaCC: How can I specify which token(s) are expected in certain context?

I need to make JavaCC aware of a context (current parent token), and depending on that context, expect different token(s) to occur. Consider the following pseudo-code: TOKEN <abc> { "abc*" } ...
1
vote
2answers
159 views

Interpret a rule applying multiple xpath queries on multiple XML documents

I need to build a component which would take a few XML documents in input and check the following kind of rules: XML1:/bookstore/book[price>35.00] != null and (XML2:/city/name = 'Montreal' ...
1
vote
1answer
49 views

How does one update and print a 'Rational' token in javacc?

I have added the new token RATIONAL that recognises rational numbers on my JavaCC parser. How can I update the output part of the program to print the numeric value of the rational number? For ...
1
vote
1answer
331 views

Print matched token in JavaCC

I need to print the token that was matched by javacc, but I don't know how to "store it". Let's say my token definition is: TOKEN : { < BLAH: ["0"-"9"]> } and my parser.input() function ...
1
vote
2answers
195 views

Preprocessing with Javacc/ push front some chars in the stream?

Using javacc can I push some new characters in front of the inputstream ? for example let's say that my parser parses the following syntax: #define Paragraphs "Paragraph+" #define Volume ...
1
vote
3answers
273 views

Format ParseException with JavaCC

I was wondering how could it be possible to format in a human-readable format a ParseException thrown by JavaCC: in fact it includes fields such asbeginLine, beginColumn, endColumn, endLine in the ...
1
vote
1answer
1k views

JavaCC - Parse math expressions into a class structure

I'm using this grammar to calculate math expressions: // Konfiguration (JavaCC-Manual konsultieren) options { STATIC = true; // alle Parser-operationen sind static // verwende zwei Token ...
1
vote
4answers
979 views

Explanation and solution for JavaCC's warning “Regular expression choice : FOO can never be matched as : BAR”?

I am teaching myself to use JavaCC in a hobby project, and have a simple grammar to write a parser for. Part of the parser includes the following: TOKEN : { < DIGIT : (["0"-"9"]) > } TOKEN : { ...
0
votes
0answers
32 views

javaCC TokenManager issue [Syntax Highlighting Editor]

I wish to create a Syntax Highlighting editor for PL/SQL. I am using JavaCC. I have , for now, only created the Lexer in the JJT file. My aim, for now, is to highlight the keywords, identifiers, ...
0
votes
1answer
76 views

javacc skip comments but need to keep useful comments

I need to use javaCC to parse a data file like: //This is comment to skip //This is also comment to skip //student Table Begin: header:( 1 //name 2 //age ) { ...
0
votes
1answer
60 views

What library I can use for parsing words in Java?

I'm trying to discover the type of words fitting they in a lot of categories (date, year, time, names, punctuation, email, etc). I was making my own code to detect this (and worked), but I found ...
0
votes
1answer
46 views

JavaCC lexical error on any type of whitespace

I cleary have the unicode whitespace characters defined in my SKIP token like so: SKIP { " " | "\r" | "\n" | "\t" } However, when I run Java CC it parses all the tokens fine until I hit any of ...
0
votes
1answer
19 views

Define variable name except reservred worsd in a compiler

I am trying to do a lexer for a subset of Java with JavaCC. And a variable name can be any combination of letter, digit and _, beginning with a letter. I have only one problem, reserved words (such as ...
0
votes
1answer
54 views

Are Commas only used in a picture clause within Cobol

I'm working from this parser http://mapage.noos.fr/~bpinon/cobol.jj and trying to get pictures to work with commas. It seems to just support commas out of the picture string as a separator. Just ...
0
votes
1answer
111 views

This cobol Grammar doesn't handle --9 picture

I'm using the grammar on this site in my javacc. It works fine apart from some picture statements. For example ----,---,---.99 or --9. http://mapage.noos.fr/~bpinon/cobol.jj It doesn't seem to ...
0
votes
2answers
55 views

Java: Stackoverflow in finite recursion

I wrote a javaCC parser for some propositional logic expressions. The expressions can get pretty long, 30k many characters. When I parse such big expressions, I get a stack-overflow exception. Is ...
0
votes
1answer
66 views

JavaCC: Matching with wildcard but not consuming for state switch

In JavaCC, for example in state DEFAULT, I want to perform a state switch, if the next token is <A>, I want to switch to state STATE_A, otherwise, I want to switch to state STATE_B. I tried to ...
0
votes
1answer
28 views

Parallel relational expression(ie. 1<2<3) in JavaCC using JJTree, is it possible?

I've looked through the example of "Interpreter" coming with the JavaCC package. It allows the syntax of parallel relational expression but it didn't give the correct answer. boolean a; a = ...

1 2