langtools/test/tools/javac/6402516/CheckLocalElements.java
author darcy
Thu, 17 Jul 2014 09:47:25 -0700
changeset 25690 b1dac768ab79
parent 25443 9187d77f2c64
child 30730 d3ce7619db2c
permissions -rw-r--r--
8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9 Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
     2
 * Copyright (c) 2006, 2014, 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)
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @build Checker CheckLocalElements
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 * @run main CheckLocalElements
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    32
import java.io.IOException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import java.util.*;
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    34
import java.util.regex.*;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    35
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import javax.lang.model.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    39
import com.sun.source.tree.*;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    40
import com.sun.source.util.*;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    41
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
/*
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    43
 * 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
    44
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
public class CheckLocalElements extends Checker {
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    public static void main(String... args) throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
        Checker chk = new CheckLocalElements();
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
        chk.check("TestLocalElements.java");
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    protected boolean checkLocal(Scope s, String ref) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        Iterator<? extends Element> elemIter = s.getLocalElements().iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
        ref = ref.trim();
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
        String[] refs = ref.length() == 0 ? new String[0] : ref.split("[ ]*,[ ]*", -1);
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
        Iterator<String> refIter = Arrays.asList(refs).iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
        String r = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
        nextElem:
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        while (elemIter.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
            Element e = elemIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
                if (r == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
                    r = refIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
                while (r.endsWith(".*")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
                    String encl = getEnclosingName(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
                    String rBase = r.substring(0, r.length() - 2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
                    if (encl.equals(rBase) || encl.startsWith(rBase + "."))
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
                        continue nextElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
                    r = refIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
                if (r.equals("-") && (e.getSimpleName().length() == 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
                    || e.getSimpleName().toString().equals(r)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
                    r = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
                    continue nextElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
                error(s, ref, "mismatch: " + e.getSimpleName() + " " + r);
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
            } catch (NoSuchElementException ex) { // from refIter.next()
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
                error(s, null, "scope has unexpected entry: " + e.getSimpleName());
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        if (refIter.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            error(s, ref, "scope is missing entry: " + refIter.next());
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    98
    @Override
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
    99
    void additionalChecks(Trees trees, CompilationUnitTree topLevel) throws IOException {
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   100
        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
   101
        if (!m.find())
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   102
            throw new AssertionError("Should have top-level scope def!");
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   103
        check(trees.getScope(new TreePath(topLevel)), m.group(1));
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   104
    }
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   105
    //where:
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   106
        Pattern TOPLEVEL_SCOPE_DEF = Pattern.compile("TOPLEVEL_SCOPE:(.*)");
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 10192
diff changeset
   107
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    private String getEnclosingName(Element e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
        Element encl = e.getEnclosingElement();
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
        return encl == null ? "" : encl.accept(qualNameVisitor, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 25443
diff changeset
   113
    private ElementVisitor<String,Void> qualNameVisitor = new SimpleElementVisitor9<String,Void>() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        protected String defaultAction(Element e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        public String visitPackage(PackageElement e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            return e.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
        public String visitType(TypeElement e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
            return e.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
}