langtools/test/tools/javac/6402516/CheckLocalElements.java
author ohair
Tue, 28 Dec 2010 15:54:52 -0800
changeset 7681 1f0819a3341f
parent 5841 7a8448425bb7
child 10192 378321489bea
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
7681
1f0819a3341f 6962318: Update copyright year
ohair
parents: 5841
diff changeset
     2
 * Copyright (c) 2006, 2010, 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
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 * @bug 6402516
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
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.source.tree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import javax.lang.model.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * Check the local elements of a scope against the contents of string literals.
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
public class CheckLocalElements extends Checker {
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
    public static void main(String... args) throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
        Checker chk = new CheckLocalElements();
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
        chk.check("TestLocalElements.java");
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
    protected boolean checkLocal(Scope s, String ref) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
        Iterator<? extends Element> elemIter = s.getLocalElements().iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
        ref = ref.trim();
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
        String[] refs = ref.length() == 0 ? new String[0] : ref.split("[ ]*,[ ]*", -1);
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
        Iterator<String> refIter = Arrays.asList(refs).iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
        String r = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
        nextElem:
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
        while (elemIter.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
            Element e = elemIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
                if (r == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
                    r = refIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
                while (r.endsWith(".*")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
                    String encl = getEnclosingName(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
                    String rBase = r.substring(0, r.length() - 2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
                    if (encl.equals(rBase) || encl.startsWith(rBase + "."))
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
                        continue nextElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
                    r = refIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
                if (r.equals("-") && (e.getSimpleName().length() == 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
                    || e.getSimpleName().toString().equals(r)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
                    r = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
                    continue nextElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
                error(s, ref, "mismatch: " + e.getSimpleName() + " " + r);
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
            } catch (NoSuchElementException ex) { // from refIter.next()
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
                error(s, null, "scope has unexpected entry: " + e.getSimpleName());
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
        if (refIter.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            error(s, ref, "scope is missing entry: " + refIter.next());
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
    private String getEnclosingName(Element e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        Element encl = e.getEnclosingElement();
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        return encl == null ? "" : encl.accept(qualNameVisitor, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
    98
    private ElementVisitor<String,Void> qualNameVisitor = new SimpleElementVisitor7<String,Void>() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        protected String defaultAction(Element e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
        public String visitPackage(PackageElement e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
            return e.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
        public String visitType(TypeElement e, Void ignore) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
            return e.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
}