我正在尝试根据此处提供的示例创建异构树:http://www.antlr.org/wiki/display/ANTLR3/Tree+construction#Treeconstruction-Heterogeneoustreenodes
我创建了一个语法文件,如下所示:
grammar T;
options {
language=CSharp3;
ASTLabelType=CommonTree;
output=AST;
TokenLabelType=CommonToken;
k=3;
}
tokens {
ROOT;
UNARY_MIN;
}
@lexer::header
{
using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using ANTLRSandbox.Criteria;
}
@parser::header
{
using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using ANTLRSandbox.Criteria;
}
@parser::namespace { ANTLRSandbox }
@lexer::namespace { ANTLRSandbox }
public
parse
: exp EOF -> ^(ROOT<RootNode> exp)
;
exp
: addExp
;
addExp
: mulExp (('+'<PlusNode> | '-'<MinusNode>)^ mulExp)*
;
mulExp
: unaryExp (('*' | '/')^ unaryExp)*
;
unaryExp
: '-' atom -> ^(UNARY_MIN atom)
| atom
;
atom
: Number
| '(' exp ')' -> exp
;
Number
: ('0'..'9')+ ('.' ('0'..'9')+)?
;
Space
: (' ' | '\t' | '\r' | '\n'){Skip();}
;
节点类看起来像这样:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using Antlr.Runtime;
using Antlr.Runtime.Tree;
namespace ANTLRSandbox.Criteria
{
public class RootNode : CommonTree
{
public RootNode(int ttype) { }
public RootNode(int ttype, IToken t) { }
public RootNode(IToken t) { }
}
}
类PlusNode
和MinusNode
与RootNode
相同,因此我不会在此处发布。
以下是我创建实际树的方法:
string s = "(12.5 + 56 / -7) * 0.5";
ANTLRStringStream Input = new ANTLRStringStream(s);
TLexer Lexer = new TLexer(Input);
CommonTokenStream Tokens = new CommonTokenStream(Lexer);
TParser Parser = new TParser(Tokens);
TParser.parse_return ParseReturn = Parser.parse();
CommonTree Tree = (CommonTree)ParseReturn.Tree;
代码运行时没有任何错误,但是当我'查看'Tree
对象时,其所有节点都是CommonTree
类型,并且我放置在PlusNode
中的所有断点,{{1 },MinusNode
构造函数被遗漏。
我已经跟随ANTLR3维基页面中提供的示例,我在网上找不到任何样本。我知道他们打算在某些时候放弃这种方法(在ANTLR3预览说明中找到),但这种实现更适合我(我需要根据语法上下文创建不同的对象类型)。
所以...任何提示?我错过了什么吗?一些选项/标志将它放入语法定义文件中?
谢谢! d。
答案 0 :(得分:2)
I just received an answer that works from the main contributor of the CSharp3 target。基本上,在指定节点类型时,您必须明确使用node=
;你不能依赖于记录的隐含行为。例如,您需要更改此内容:
parse
: exp EOF -> ^(ROOT<RootNode> exp)
;
......对此:
parse
: exp EOF -> ^(ROOT<node=RootNode> exp)
;
在我自己的语法中,一旦我对重写规则进行了更改,解析器最终会输出异构节点。
答案 1 :(得分:1)
在使用内联树操作符(< ... >
用于根目录和^
用于省略规则)时,我从未运气这些运算符!
。我建议您只使用解析器规则右侧的重写规则(... -> ^(...)
),然后仅在重写规则中定义自定义节点<NodeName>
, not 维基上提到的双方(!):我怀疑维基信息有点过时了。我知道这样的表达式规则使用内联运算符比使用重写规则更具可读性......
我对C#不太流利,所以这是一个Java演示:
grammar T;
options {
ASTLabelType=CommonTree;
output=AST;
}
tokens {
ROOT;
UNARY_MIN;
}
@members {
public static class RootNode extends CommonTree {
public RootNode(Token t) { token=t; }
public RootNode(int ttype) { super(new CommonToken(ttype, "ROOT")); }
public RootNode(RootNode node) { super(node); }
public Tree dupNode() { return new RootNode(this); }
public String toString() { return "RootNode=" + token.getText(); }
}
public static class MinusNode extends CommonTree {
public MinusNode(Token t) { token=t; }
public MinusNode(MinusNode node) { super(node); }
public Tree dupNode() { return new MinusNode(this); }
public String toString() { return "MinusNode=" + token.getText(); }
}
public class PlusNode extends CommonTree {
public PlusNode(Token t) { token=t; }
public PlusNode(PlusNode node) { super(node); }
public Tree dupNode() { return new PlusNode(this); }
public String toString() { return "PlusNode=" + token.getText(); }
}
}
parse
: exp EOF -> ^(ROOT<RootNode> exp)
;
exp
: addExp
;
addExp
: (mulExp -> mulExp) ( '+' m=mulExp -> ^('+'<PlusNode> $m $addExp)
| '-' m=mulExp -> ^('-'<MinusNode> $m $addExp)
)*
;
mulExp
: unaryExp (('*' | '/')^ unaryExp)*
;
unaryExp
: '-' atom -> ^(UNARY_MIN atom)
| atom
;
atom
: Number
| '(' exp ')' -> exp
;
Number
: ('0'..'9')+ ('.' ('0'..'9')+)?
;
Space
: (' ' | '\t' | '\r' | '\n') {skip();}
;
import org.antlr.runtime.*;
import org.antlr.runtime.tree.*;
import org.antlr.stringtemplate.*;
public class Main {
private static void traverse(CommonTree tree, int indent) {
if(tree == null) return;
for(int i = 0; i < indent; i++) System.out.print(" ");
System.out.println(tree.getClass().getName() + " -> " + tree.getText());
for(int i = 0; i < tree.getChildCount(); i++) {
traverse((CommonTree)tree.getChild(i), indent + 1);
}
}
public static void main(String[] args) throws Exception {
TLexer lexer = new TLexer(new ANTLRStringStream("1 + 2 - 3"));
TParser parser = new TParser(new CommonTokenStream(lexer));
CommonTree tree = (CommonTree)parser.parse().getTree();
traverse(tree, 0);
}
}
java -cp antlr-3.3.jar org.antlr.Tool T.g
javac -cp antlr-3.3.jar *.java
java -cp .:antlr-3.3.jar Main
将打印:
TParser$RootNode -> ROOT
TParser$MinusNode -> -
org.antlr.runtime.tree.CommonTree -> 3
TParser$PlusNode -> +
org.antlr.runtime.tree.CommonTree -> 2
org.antlr.runtime.tree.CommonTree -> 1