Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem parsing integer & hex numbers. I want to parse C++ enums with the following rules:

grammar enum;

rule_enum
:   'enum' ID '{' enum_values+ '}'';';

enum_values
:   enum_value (COMMA enum_value)+;

enum_value
:   ID ('=' number)?;

number  :   hex_number | integer_number;

hex_number
:   '0' 'x' HEX_DIGIT+;

integer_number
:   DIGIT+;

fragment
HEX_DIGIT : ('0'..'9'|'a'..'f'|'A'..'F') ;

fragment
DIGIT   :   ('0'..'9');

COMMA   :   ',';


ID  :   ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;

The problem I have is the following - when parsing code like:

enum Enum
{
    Option1 = 0,
    Option2 = 1
};

it does not recognize the 0 as integer_number but tries to parse it as hex_number. How can I resolve this?

Thank you. Tobias

share|improve this question

2 Answers

up vote 3 down vote accepted

First, fragment rules can only be "seen" by lexer rules, not parser rules. So, the following is invalid:

integer_number
:   DIGIT+; // can't use DIGIT here!

fragment
DIGIT   :   ('0'..'9');

To fix your ambiguity with these numbers, it's IMO best to make these integer- and hex numbers lexer rules instead of parser rules.

An example:

grammar enum;

rule_enum
:   'enum' ID '{' enum_values+ '}'';';

enum_values
:   enum_value (COMMA enum_value)+;

enum_value
:   ID ('=' number)?;

number
  :  HEX_NUMBER
  |  INTEGER_NUMBER
  ;

HEX_NUMBER
:   '0' 'x' HEX_DIGIT+;

INTEGER_NUMBER
:   DIGIT+;

fragment
HEX_DIGIT : ('0'..'9'|'a'..'f'|'A'..'F') ;

fragment
DIGIT   :   ('0'..'9');

COMMA   :   ',';

ID  :   ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;

SPACE : (' ' | '\t' | '\r' | '\n') {skip();};

which produces the following parse tree of your example snippet:

enter image description here

share|improve this answer
thank you - I wasn't aware of the fine difference between lexer & parser rules. – Tobias Langner Feb 18 '11 at 9:07
@Tobias: you're welcome. – Bart Kiers Feb 18 '11 at 10:30

The following ANTLR works for just the number bit of the enum. (editted to include Bart's advice below)

grammar enum;

number  :   
    integer_number | hex_number ;

hex_number
    :   HEX_NUMBER;

integer_number
    :   INT_NUMBER;


HEX_NUMBER
    :   HEX_INTRO HEX_DIGIT+;

INT_NUMBER
    :   DIGIT+;

HEX_INTRO
    :   '0x';


DIGIT   :   ('0'..'9');


HEX_DIGIT 
    : ('0'..'9'|'a'..'f'|'A'..'F') ;
share|improve this answer
HEX_INTRO (DIGIT | HEX_DIGIT) will only match a single hex digits (it fails to match 0xFF). Also, the DIGIT part can be omitted since HEX_DIGIT already contains these. But, I highly discourage to put these things inside parser rules: I am pretty sure C++ parser themselves also handle the tokenizing of integer, hex and octal numbers on a lexer level. – Bart Kiers Feb 18 '11 at 8:06
The above grammar matches 0xFF (when the active rule is number:) on my copy of Antlr (1.4.2). Would your advice to be to match Hex numbers in the entirety at the Lexer level? – Jimmy Feb 18 '11 at 8:26
Ah yes, sorry, I missed the + after HEX_DIGIT. I must say it's a bit misleading: calling something HEX_DIGIT and making it match more than one digit! :) – Bart Kiers Feb 18 '11 at 8:36
Jimmy, your latest suggestion now causes the lexer to possibly produce a token that consists of '0x' only. Better make HEX_INTRO a fragment, or just stick '0x'` inside HEX_NUMBER (in which case, you simply copied my answer! :)) – Bart Kiers Feb 18 '11 at 8:38
The same goes for HEX_DIGIT: if an F is all alone in the source to be parsed, it gets tokenized as a HEX_DIGIT: that can't be the intention. Better make that a fragment as well. – Bart Kiers Feb 18 '11 at 8:41
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.