langtools/test/tools/javac/6402516/CheckLocalElements.java
author akulyakh
Thu, 21 May 2015 11:41:04 -0700
changeset 30730 d3ce7619db2c
parent 25690 b1dac768ab79
permissions -rw-r--r--
8076543: Add @modules as needed to the langtools tests Reviewed-by: jjg, shurailine
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 25690
diff changeset
     2
 * Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    21
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    26
 * @bug 6402516 8031569
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary need Trees.getScope(TreePath)
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 25690
diff changeset
    28
 * @modules jdk.compiler/com.sun.tools.javac.api
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 25690
diff changeset
    29
 *          jdk.compiler/com.sun.tools.javac.comp
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 25690
diff changeset
    30
 *          jdk.compiler/com.sun.tools.javac.file
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 25690
diff changeset
    31
 *          jdk.compiler/com.sun.tools.javac.tree
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 25690
diff changeset
    32
 *          jdk.compiler/com.sun.tools.javac.util
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 * @build Checker CheckLocalElements
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 * @run main CheckLocalElements
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    37
import java.io.IOException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import java.util.*;
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    39
import java.util.regex.*;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    40
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import javax.lang.model.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    44
import com.sun.source.tree.*;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    45
import com.sun.source.util.*;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    46
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
/*
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    48
 * Check the local elements of a scope against the contents of string literals and top-level comment.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
public class CheckLocalElements extends Checker {
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    public static void main(String... args) throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
        Checker chk = new CheckLocalElements();
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        chk.check("TestLocalElements.java");
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    protected boolean checkLocal(Scope s, String ref) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
        Iterator<? extends Element> elemIter = s.getLocalElements().iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
        ref = ref.trim();
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        String[] refs = ref.length() == 0 ? new String[0] : ref.split("[ ]*,[ ]*", -1);
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
        Iterator<String> refIter = Arrays.asList(refs).iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
        String r = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        nextElem:
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        while (elemIter.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
            Element e = elemIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
                if (r == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
                    r = refIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
                while (r.endsWith(".*")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
                    String encl = getEnclosingName(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
                    String rBase = r.substring(0, r.length() - 2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
                    if (encl.equals(rBase) || encl.startsWith(rBase + "."))
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
                        continue nextElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
                    r = refIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
                if (r.equals("-") && (e.getSimpleName().length() == 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
                    || e.getSimpleName().toString().equals(r)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
                    r = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
                    continue nextElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
                error(s, ref, "mismatch: " + e.getSimpleName() + " " + r);
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
            } catch (NoSuchElementException ex) { // from refIter.next()
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
                error(s, null, "scope has unexpected entry: " + e.getSimpleName());
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        if (refIter.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
            error(s, ref, "scope is missing entry: " + refIter.next());
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   103
    @Override
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   104
    void additionalChecks(Trees trees, CompilationUnitTree topLevel) throws IOException {
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   105
        Matcher m = TOPLEVEL_SCOPE_DEF.matcher(topLevel.getSourceFile().getCharContent(false));
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   106
        if (!m.find())
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   107
            throw new AssertionError("Should have top-level scope def!");
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   108
        check(trees.getScope(new TreePath(topLevel)), m.group(1));
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   109
    }
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   110
    //where:
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   111
        Pattern TOPLEVEL_SCOPE_DEF = Pattern.compile("TOPLEVEL_SCOPE:(.*)");
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   112
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    private String getEnclosingName(Element e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        Element encl = e.getEnclosingElement();
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        return encl == null ? "" : encl.accept(qualNameVisitor, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 25443
diff changeset
   118
    private ElementVisitor<String,Void> qualNameVisitor = new SimpleElementVisitor9<String,Void>() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
        protected String defaultAction(Element e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        public String visitPackage(PackageElement e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            return e.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
        public String visitType(TypeElement e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
            return e.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
}