gpt4 book ai didi

java - 如何操作树语法

转载 作者:太空宇宙 更新时间:2023-11-04 07:59:00 24 4
gpt4 key购买 nike

解析器语法
protocol.g

grammar protocol; 

options {
language = Java;
output = AST;
ASTLabelType=CommonTree;
}

tokens{
TRANSITIONS;
PAIR;
}

@header {
package com.javadude.antlr3.x.tutorial;
}

@lexer::header {
package com.javadude.antlr3.x.tutorial;
}

parse
: transitions EOF!
{
CommonTree root = $transitions.tree;

int count = root.getChildCount();

Tree child1 = root.getChild(0);
Tree child2 = root.getChild(1);
Tree child3 = root.getChild(2);
Tree child4 = root.getChild(3);

System.out.println("root=" + root.getToken().getText() + " has " + count + " child nodes:");
System.out.println(" - child1=" + child1.toStringTree());
System.out.println(" - child2=" + child2.toStringTree());
System.out.println(" - child3=" + child3.toStringTree());
System.out.println(" - child4=" + child4.toStringTree());
}
;
transitions
: 'transitions' '=' INT pair+ ';' -> ^(TRANSITIONS INT pair+)
;
pair
: '(' INT ',' INT ')' -> ^(PAIR INT INT)
;

INT
: ('0'..'9')+;
WHITESPACE
: ('\t' | ' ' | '\r' | '\n' | '\u000C')+ {$channel = HIDDEN;};

树语法
protocolWalker.g

tree grammar protocolWalker;

options {
language = Java;
tokenVocab = protocol;
ASTLabelType = CommonTree;
}


@header {
package com.javadude.antlr3.x.tutorial;
}

transitions
: ^(TRANSITIONS INT pair+)
{
System.out.println("transitions=" + $INT.text);
}
;

pair
: ^(PAIR a=INT b=INT)
{
System.out.println("pair=" + $a.text + ", " + $b.text);

}
;

JAVA测试装置
Protocoltest.java

package com.javadude.antlr3.x.tutorial;
import org.antlr.runtime.*;
import org.antlr.runtime.tree.CommonTree;
import org.antlr.runtime.tree.CommonTreeNodeStream;
public class Protocoltest {

/**
* @param args
*/
public static void main(String[] args) throws Exception {
//create input stream from standard input
ANTLRInputStream input = new ANTLRInputStream(System.in);
//create a lexer attached to that input stream
protocolLexer lexer = new protocolLexer(input);
//create a stream of tokens pulled from the lexer
CommonTokenStream tokens = new CommonTokenStream(lexer);

//create a parser attached to teh token stream
protocolParser parser = new protocolParser(tokens);
//invoke the program rule in get return value
protocolParser.parse_return r =parser.parse();

CommonTree t = (CommonTree)r.getTree();
//output the extracted tree to the console
System.out.println("\nAST is: " + t.toStringTree());

//walk resulting tree; create treenode stream first
CommonTreeNodeStream nodes = new CommonTreeNodeStream(t);
//AST nodes have payloads that point into token stream
nodes.setTokenStream(tokens);

//create a tree walker attached to the nodes stream
protocolWalker walker = new protocolWalker(nodes);

//invoke the start symbol, rule parse
walker.transitions();
}
}

输入

transitions = 3(5,0) (5,1) (5,2);

输出

root=TRANSITIONS has 4 child nodes:
- child1=3
- child2=(PAIR 5 0)
- child3=(PAIR 5 1)
- child4=(PAIR 5 2)

AST is: (TRANSITIONS 3 (PAIR 5 0) (PAIR 5 1) (PAIR 5 2))
pair=5, 0
pair=5, 1
pair=5, 2
transitions=3

问题
您可以在上面看到,在解析器语法(protocol.g)中,我可以将转换根的所有子节点存储为 child1、child2、child3 和 child4。另外,我已经打印了这些。 在树语法中,我如何存储这些并可以对它们进行操作?谢谢

最佳答案

I'll instantiate java classes (will create java objects) e.g, The very first number in the tree will determine how many objects will be created, then, PAIR 5 0 will create an object with 2 arguments(5,0), PAIR 5 1 will create 2nd object with 2 arguments (5,1) and PAIR 5 2 will create 3rd object with 2 arguments (5,2).

这是创建转换并向其添加对的简单方法,只需对 protocolWalker.g 进行少量更改。首先,这里是我将使用的虚拟 TransitionsPair 类:

Transitions.java

import java.util.ArrayList;


public class Transitions {
private ArrayList<Pair> pairs = new ArrayList<Pair>();

public void addPair(Pair pair){
System.out.println(String.format("Added pair %s to transitions", pair));
pairs.add(pair);
}

@Override
public String toString() {
return "Pairs: " + pairs;
}
}

Pair.java

public class Pair {
private int a;
private int b;

public Pair(int a, int b){
this.a = a;
this.b = b;
}

@Override
public String toString() {
return String.format("(%d, %d)", a, b);
}
}

这是修改后的protocolWalker.g

protocolWalker.g(已修改)

tree grammar protocolWalker;

options {
language = Java;
tokenVocab = protocol;
ASTLabelType = CommonTree;
}


@header {
package com.javadude.antlr3.x.tutorial;
import java.util.List;
import java.util.ArrayList;
}

@members {
//stores all the transitions objects as they get processed
private ArrayList<Transitions> allTransitions = new ArrayList<Transitions>();

//returns all the transitions
public List<Transitions> getAllTransitions() {
return allTransitions;
}
}


transitions
@init {
//create a Transitions object when the rule is hit
Transitions transitions = new Transitions();

//store it to be accessed later.
allTransitions.add(transitions);
}
: ^(TRANSITIONS INT transitions_pair[transitions]+) //pass the object to transitions_pair for each PAIR encountered
{
System.out.println("transitions=" + $INT.text);
}
;

transitions_pair[Transitions transitions]
: ^(PAIR a=INT b=INT)
{
System.out.println("pair=" + $a.text + ", " + $b.text);
//make a call to the Transitions object that was passed to this rule.
transitions.addPair(new Pair($a.int, $b.int));
}
;

(我将 pair 重命名为 transitions_pair,因为该规则现在与转换构建相关联。)规则 transitions 调用 transitions_pair,同时传递一个新的 Transitions 对象。 transitions_pair 将新的 Pair 对象添加到接收到的 Transitions 对象。

可以使用[ArgType argname,...]方式编写树解析器和 token 解析器中的规则来接受对象。在这种情况下,可以更轻松地访问子 PAIR 树。

我对 Protocoltest.java 添加了一个小更改以打印存储的转换:

        ...
//invoke the start symbol, rule parse
walker.transitions();

//get the stored transitions and print them out.
List<Transitions> transitions = walker.getAllTransitions();
System.out.println(transitions);
...

这是步行者的新输出:

pair=5, 0
Added pair (5, 0) to transitions
pair=5, 1
Added pair (5, 1) to transitions
pair=5, 2
Added pair (5, 2) to transitions
transitions=3
[Pairs: [(5, 0), (5, 1), (5, 2)]]

以下是我所做的主要更改的回顾:

  • 添加了一种存储和返回步行器过渡效果的方法。
  • 添加了在规则 transitions 中创建 Transitions 对象的代码。
  • 添加了将对象传递给 transitions_pair 的代码。
  • 在测试器中添加了代码,用于从 Walker 检索转换并将其打印出来。

我想一旦您实现了自己的 Transitions 类,您就会准备就绪。

关于java - 如何操作树语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13140443/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com