Search in sources :

Example 6 with Visitor

use of org.codehaus.groovy.antlr.treewalker.Visitor in project groovy-core by groovy.

the class Java2GroovyProcessor method modifyJavaASTintoGroovyAST.

private static void modifyJavaASTintoGroovyAST(String[] tokenNames, AST ast) {
    // mutate the tree when in Javaland
    Visitor preJava2groovyConverter = new PreJava2GroovyConverter(tokenNames);
    AntlrASTProcessor preJava2groovyTraverser = new PreOrderTraversal(preJava2groovyConverter);
    preJava2groovyTraverser.process(ast);
    // map the nodes to Groovy types
    Visitor java2groovyConverter = new Java2GroovyConverter(tokenNames);
    AntlrASTProcessor java2groovyTraverser = new PreOrderTraversal(java2groovyConverter);
    java2groovyTraverser.process(ast);
}
Also used : PreOrderTraversal(org.codehaus.groovy.antlr.treewalker.PreOrderTraversal) Visitor(org.codehaus.groovy.antlr.treewalker.Visitor) AntlrASTProcessor(org.codehaus.groovy.antlr.AntlrASTProcessor)

Example 7 with Visitor

use of org.codehaus.groovy.antlr.treewalker.Visitor in project groovy-core by groovy.

the class Java2GroovyProcessor method nodePrinter.

public static String nodePrinter(String input) throws Exception {
    JavaRecognizer parser = getJavaParser(input);
    String[] tokenNames = parser.getTokenNames();
    parser.compilationUnit();
    AST ast = parser.getAST();
    // modify the Java AST into a Groovy AST
    modifyJavaASTintoGroovyAST(tokenNames, ast);
    String[] groovyTokenNames = getGroovyTokenNames(input);
    // groovify the fat Java-Like Groovy AST
    groovifyFatJavaLikeGroovyAST(ast, groovyTokenNames);
    // now output
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Visitor visitor = new NodePrinter(new PrintStream(baos), groovyTokenNames);
    AntlrASTProcessor traverser = new SourceCodeTraversal(visitor);
    traverser.process(ast);
    return new String(baos.toByteArray());
}
Also used : PrintStream(java.io.PrintStream) AST(antlr.collections.AST) Visitor(org.codehaus.groovy.antlr.treewalker.Visitor) NodePrinter(org.codehaus.groovy.antlr.treewalker.NodePrinter) ByteArrayOutputStream(java.io.ByteArrayOutputStream) AntlrASTProcessor(org.codehaus.groovy.antlr.AntlrASTProcessor) SourceCodeTraversal(org.codehaus.groovy.antlr.treewalker.SourceCodeTraversal)

Example 8 with Visitor

use of org.codehaus.groovy.antlr.treewalker.Visitor in project groovy-core by groovy.

the class Java2GroovyProcessor method convert.

public static String convert(String filename, String input, boolean withHeader, boolean withNewLines) throws Exception {
    JavaRecognizer parser = getJavaParser(input);
    String[] tokenNames = parser.getTokenNames();
    parser.compilationUnit();
    AST ast = parser.getAST();
    // which is a really nice way of seeing the AST, folding nodes etc
    if ("mindmap".equals(System.getProperty("ANTLR.AST".toLowerCase()))) {
        // uppercase to hide from jarjar
        try {
            PrintStream out = new PrintStream(new FileOutputStream(filename + ".mm"));
            Visitor visitor = new MindMapPrinter(out, tokenNames);
            AntlrASTProcessor treewalker = new PreOrderTraversal(visitor);
            treewalker.process(ast);
        } catch (FileNotFoundException e) {
            System.out.println("Cannot create " + filename + ".mm");
        }
    }
    // modify the Java AST into a Groovy AST
    modifyJavaASTintoGroovyAST(tokenNames, ast);
    String[] groovyTokenNames = getGroovyTokenNames(input);
    // groovify the fat Java-Like Groovy AST
    groovifyFatJavaLikeGroovyAST(ast, groovyTokenNames);
    // now output
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Visitor visitor = new SourcePrinter(new PrintStream(baos), groovyTokenNames, withNewLines);
    AntlrASTProcessor traverser = new SourceCodeTraversal(visitor);
    traverser.process(ast);
    String header = "";
    if (withHeader) {
        header = "/*\n" + "  Automatically Converted from Java Source \n" + "  \n" + "  by java2groovy v0.0.1   Copyright Jeremy Rayner 2007\n" + "  \n" + "  !! NOT FIT FOR ANY PURPOSE !! \n" + "  'java2groovy' cannot be used to convert one working program into another" + "  */\n\n";
    }
    return header + new String(baos.toByteArray());
}
Also used : SourcePrinter(org.codehaus.groovy.antlr.treewalker.SourcePrinter) PrintStream(java.io.PrintStream) AST(antlr.collections.AST) PreOrderTraversal(org.codehaus.groovy.antlr.treewalker.PreOrderTraversal) Visitor(org.codehaus.groovy.antlr.treewalker.Visitor) FileNotFoundException(java.io.FileNotFoundException) ByteArrayOutputStream(java.io.ByteArrayOutputStream) MindMapPrinter(org.codehaus.groovy.antlr.treewalker.MindMapPrinter) AntlrASTProcessor(org.codehaus.groovy.antlr.AntlrASTProcessor) FileOutputStream(java.io.FileOutputStream) SourceCodeTraversal(org.codehaus.groovy.antlr.treewalker.SourceCodeTraversal)

Example 9 with Visitor

use of org.codehaus.groovy.antlr.treewalker.Visitor in project groovy-core by groovy.

the class Java2GroovyProcessor method mindmap.

public static String mindmap(String input) throws Exception {
    JavaRecognizer parser = getJavaParser(input);
    String[] tokenNames = parser.getTokenNames();
    parser.compilationUnit();
    AST ast = parser.getAST();
    // modify the Java AST into a Groovy AST
    modifyJavaASTintoGroovyAST(tokenNames, ast);
    String[] groovyTokenNames = getGroovyTokenNames(input);
    // groovify the fat Java-Like Groovy AST
    groovifyFatJavaLikeGroovyAST(ast, groovyTokenNames);
    // now output
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Visitor visitor = new MindMapPrinter(new PrintStream(baos), groovyTokenNames);
    AntlrASTProcessor traverser = new SourceCodeTraversal(visitor);
    traverser.process(ast);
    return new String(baos.toByteArray());
}
Also used : PrintStream(java.io.PrintStream) AST(antlr.collections.AST) Visitor(org.codehaus.groovy.antlr.treewalker.Visitor) ByteArrayOutputStream(java.io.ByteArrayOutputStream) MindMapPrinter(org.codehaus.groovy.antlr.treewalker.MindMapPrinter) AntlrASTProcessor(org.codehaus.groovy.antlr.AntlrASTProcessor) SourceCodeTraversal(org.codehaus.groovy.antlr.treewalker.SourceCodeTraversal)

Example 10 with Visitor

use of org.codehaus.groovy.antlr.treewalker.Visitor in project groovy-core by groovy.

the class Java2GroovyProcessor method groovifyFatJavaLikeGroovyAST.

private static void groovifyFatJavaLikeGroovyAST(AST ast, String[] groovyTokenNames) {
    Visitor groovifier = new Groovifier(groovyTokenNames);
    AntlrASTProcessor groovifierTraverser = new PreOrderTraversal(groovifier);
    groovifierTraverser.process(ast);
}
Also used : PreOrderTraversal(org.codehaus.groovy.antlr.treewalker.PreOrderTraversal) Visitor(org.codehaus.groovy.antlr.treewalker.Visitor) AntlrASTProcessor(org.codehaus.groovy.antlr.AntlrASTProcessor)

Aggregations

Visitor (org.codehaus.groovy.antlr.treewalker.Visitor)15 AntlrASTProcessor (org.codehaus.groovy.antlr.AntlrASTProcessor)14 SourceCodeTraversal (org.codehaus.groovy.antlr.treewalker.SourceCodeTraversal)11 AST (antlr.collections.AST)10 PreOrderTraversal (org.codehaus.groovy.antlr.treewalker.PreOrderTraversal)9 PrintStream (java.io.PrintStream)7 ByteArrayOutputStream (java.io.ByteArrayOutputStream)6 MindMapPrinter (org.codehaus.groovy.antlr.treewalker.MindMapPrinter)5 SourceBuffer (org.codehaus.groovy.antlr.SourceBuffer)4 FileNotFoundException (java.io.FileNotFoundException)3 FileOutputStream (java.io.FileOutputStream)3 SourcePrinter (org.codehaus.groovy.antlr.treewalker.SourcePrinter)3 Groovifier (org.codehaus.groovy.antlr.java.Groovifier)2 Java2GroovyConverter (org.codehaus.groovy.antlr.java.Java2GroovyConverter)2 JavaRecognizer (org.codehaus.groovy.antlr.java.JavaRecognizer)2 GroovyRecognizer (org.codehaus.groovy.antlr.parser.GroovyRecognizer)2 NodePrinter (org.codehaus.groovy.antlr.treewalker.NodePrinter)2 ArrayList (java.util.ArrayList)1 CompositeVisitor (org.codehaus.groovy.antlr.treewalker.CompositeVisitor)1 NodeAsHTMLPrinter (org.codehaus.groovy.antlr.treewalker.NodeAsHTMLPrinter)1