test/tools/javac/processing/model/element/TestResourceVariable.java

Tue, 01 Feb 2011 10:11:05 -0800

author
darcy
date
Tue, 01 Feb 2011 10:11:05 -0800
changeset 851
cad51b6eb7a6
parent 699
d2aaaec153e8
child 1054
111bbf1ad913
permissions
-rw-r--r--

6961571: Update visitors to support ARM's ElementKind.RESOURCE_VARIABLE
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  */
    24 /*
    25  * @test
    26  * @bug  6911256 6964740 6967842 6961571
    27  * @summary Test that the resource variable kind is appropriately set
    28  * @author  Joseph D. Darcy
    29  * @library ../../../lib
    30  * @build   JavacTestingAbstractProcessor TestResourceVariable
    31  * @compile -processor TestResourceVariable -proc:only TestResourceVariable.java
    32  */
    34 import java.io.*;
    35 import javax.annotation.processing.*;
    36 import javax.lang.model.*;
    37 import javax.lang.model.element.*;
    38 import javax.lang.model.type.*;
    39 import javax.lang.model.util.*;
    40 import java.util.*;
    41 import com.sun.source.tree.*;
    42 import com.sun.source.util.*;
    43 import static javax.tools.Diagnostic.Kind.*;
    45 /**
    46  * Using the tree API, retrieve element representations of the
    47  * resource of an ARM block and verify their kind tags are set
    48  * appropriately.
    49  */
    50 public class TestResourceVariable extends JavacTestingAbstractProcessor implements AutoCloseable {
    51     int resourceVariableCount = 0;
    53     public boolean process(Set<? extends TypeElement> annotations,
    54                           RoundEnvironment roundEnv) {
    55        if (!roundEnv.processingOver()) {
    56            Trees trees = Trees.instance(processingEnv);
    58            for(Element rootElement : roundEnv.getRootElements()) {
    59                TreePath treePath = trees.getPath(rootElement);
    61                (new ResourceVariableScanner(trees)).
    62                    scan(trees.getTree(rootElement),
    63                         treePath.getCompilationUnit());
    64            }
    65            if (resourceVariableCount != 3)
    66                throw new RuntimeException("Bad resource variable count " +
    67                                           resourceVariableCount);
    68        }
    69        return true;
    70     }
    72     @Override
    73     public void close() {}
    75     private void test1() {
    76         try(TestResourceVariable trv = this) {}
    77     }
    79     private void test2() {
    80         try(TestResourceVariable trv1 = this; TestResourceVariable trv2 = trv1) {}
    81     }
    83     /**
    84      * Verify that a resource variable modeled as an element behaves
    85      * as expected under 6 and 7 specific visitors.
    86      */
    87     private static void testResourceVariable(Element element) {
    88         ElementVisitor visitor6 = new ElementKindVisitor6<Void, Void>() {};
    90         try {
    91             visitor6.visit(element);
    92             throw new RuntimeException("Expected UnknownElementException not thrown.");
    93         } catch (UnknownElementException uee) {
    94             ; // Expected.
    95         }
    97         ElementKindVisitor7 visitor7 = new ElementKindVisitor7<Object, Void>() {
    98             @Override
    99             public Object visitVariableAsResourceVariable(VariableElement e,
   100                                                           Void p) {
   101                 return e; // a non-null value
   102             }
   103         };
   105         if (visitor7.visit(element) == null) {
   106             throw new RuntimeException("Null result of resource variable visitation.");
   107         }
   108     }
   110     class ResourceVariableScanner extends TreeScanner<Void, CompilationUnitTree> {
   111        private Trees trees;
   113        public ResourceVariableScanner(Trees trees) {
   114            super();
   115            this.trees = trees;
   116        }
   117        @Override
   118        public Void visitVariable(VariableTree node, CompilationUnitTree cu) {
   119            Element element = trees.getElement(trees.getPath(cu, node));
   121            System.out.println("Name: " + element.getSimpleName() +
   122                               "\tKind: " + element.getKind());
   123            if (element.getKind() == ElementKind.RESOURCE_VARIABLE) {
   124                testResourceVariable(element);
   125                resourceVariableCount++;
   126            }
   127            return super.visitVariable(node, cu);
   128        }
   129     }
   130 }

mercurial